From 6bb488f550aaa603a67bd9eb1ce26f0b464e41c7 Mon Sep 17 00:00:00 2001 From: Luis Manuel <36008244+LuisManuelNR@users.noreply.github.com> Date: Fri, 19 Oct 2018 12:07:10 +0200 Subject: [PATCH 1/5] added dev and production folder for web test --- web_test/csv_to_test.csv | 64 - .../app.14daf9aed06f69ef52ff8971689f65e3.css | 7 - ...p.14daf9aed06f69ef52ff8971689f65e3.css.map | 1 - .../js/manifest.3ad1d5771e9b13dbdad2.js | 2 - .../static/js/vendor.c2a07eda06ceb06f9226.js | 1210 -- .../js/vendor.c2a07eda06ceb06f9226.js.map | 1 - web_test/web_test_dev/.babelrc | 12 + web_test/web_test_dev/.editorconfig | 9 + web_test/web_test_dev/.eslintignore | 4 + web_test/web_test_dev/.eslintrc.js | 25 + web_test/web_test_dev/.gitignore | 14 + web_test/web_test_dev/.postcssrc.js | 10 + web_test/web_test_dev/README.md | 21 + web_test/web_test_dev/build/build.js | 41 + web_test/web_test_dev/build/check-versions.js | 54 + web_test/web_test_dev/build/logo.png | Bin 0 -> 6849 bytes web_test/web_test_dev/build/utils.js | 101 + .../web_test_dev/build/vue-loader.conf.js | 22 + .../web_test_dev/build/webpack.base.conf.js | 91 + .../web_test_dev/build/webpack.dev.conf.js | 95 + .../web_test_dev/build/webpack.prod.conf.js | 145 + web_test/web_test_dev/config/dev.env.js | 7 + web_test/web_test_dev/config/index.js | 76 + web_test/web_test_dev/config/prod.env.js | 4 + web_test/web_test_dev/index.html | 13 + web_test/web_test_dev/package-lock.json | 14630 ++++++++++++++++ web_test/web_test_dev/package.json | 77 + web_test/web_test_dev/src/.gitrepo | 12 + web_test/web_test_dev/src/App.vue | 23 + .../src/assets/dataTest/csvjson.json | 569 + .../assets/dataTest/dataResponseMulti.json | 117 + .../src/assets/dataTest/dataResponseUni.json | 276 + web_test/web_test_dev/src/assets/logo.png | Bin 0 -> 5674 bytes web_test/web_test_dev/src/components/form.vue | 233 + .../web_test_dev/src/components/graph.vue | 400 + .../src/components/jsonViewer.vue | 69 + web_test/web_test_dev/src/main.js | 21 + web_test/web_test_dev/src/router/index.js | 15 + web_test/web_test_dev/src/view/homeView.vue | 74 + web_test/web_test_dev/static/.gitkeep | 0 .../{ => web_test_dev}/static/img/logo.svg | 0 .../static/img/logo_dark.svg | 0 42 files changed, 17260 insertions(+), 1285 deletions(-) delete mode 100644 web_test/csv_to_test.csv delete mode 100644 web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css delete mode 100644 web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map delete mode 100644 web_test/static/js/manifest.3ad1d5771e9b13dbdad2.js delete mode 100644 web_test/static/js/vendor.c2a07eda06ceb06f9226.js delete mode 100644 web_test/static/js/vendor.c2a07eda06ceb06f9226.js.map create mode 100644 web_test/web_test_dev/.babelrc create mode 100644 web_test/web_test_dev/.editorconfig create mode 100644 web_test/web_test_dev/.eslintignore create mode 100644 web_test/web_test_dev/.eslintrc.js create mode 100644 web_test/web_test_dev/.gitignore create mode 100644 web_test/web_test_dev/.postcssrc.js create mode 100644 web_test/web_test_dev/README.md create mode 100644 web_test/web_test_dev/build/build.js create mode 100644 web_test/web_test_dev/build/check-versions.js create mode 100644 web_test/web_test_dev/build/logo.png create mode 100644 web_test/web_test_dev/build/utils.js create mode 100644 web_test/web_test_dev/build/vue-loader.conf.js create mode 100644 web_test/web_test_dev/build/webpack.base.conf.js create mode 100644 web_test/web_test_dev/build/webpack.dev.conf.js create mode 100644 web_test/web_test_dev/build/webpack.prod.conf.js create mode 100644 web_test/web_test_dev/config/dev.env.js create mode 100644 web_test/web_test_dev/config/index.js create mode 100644 web_test/web_test_dev/config/prod.env.js create mode 100644 web_test/web_test_dev/index.html create mode 100644 web_test/web_test_dev/package-lock.json create mode 100644 web_test/web_test_dev/package.json create mode 100644 web_test/web_test_dev/src/.gitrepo create mode 100644 web_test/web_test_dev/src/App.vue create mode 100644 web_test/web_test_dev/src/assets/dataTest/csvjson.json create mode 100644 web_test/web_test_dev/src/assets/dataTest/dataResponseMulti.json create mode 100644 web_test/web_test_dev/src/assets/dataTest/dataResponseUni.json create mode 100644 web_test/web_test_dev/src/assets/logo.png create mode 100644 web_test/web_test_dev/src/components/form.vue create mode 100644 web_test/web_test_dev/src/components/graph.vue create mode 100644 web_test/web_test_dev/src/components/jsonViewer.vue create mode 100644 web_test/web_test_dev/src/main.js create mode 100644 web_test/web_test_dev/src/router/index.js create mode 100644 web_test/web_test_dev/src/view/homeView.vue create mode 100644 web_test/web_test_dev/static/.gitkeep rename web_test/{ => web_test_dev}/static/img/logo.svg (100%) rename web_test/{ => web_test_dev}/static/img/logo_dark.svg (100%) diff --git a/web_test/csv_to_test.csv b/web_test/csv_to_test.csv deleted file mode 100644 index 388b2ce..0000000 --- a/web_test/csv_to_test.csv +++ /dev/null @@ -1,64 +0,0 @@ -Date,Open,High,Low,Close,Adj Close,Volume -2018-06-18,275.489990,276.700012,274.950012,276.559998,276.559998,52917600 -2018-06-19,274.000000,275.750000,273.529999,275.500000,275.500000,97531500 -2018-06-20,276.269989,276.720001,275.589996,275.970001,275.970001,53785500 -2018-06-21,275.959991,275.980011,273.679993,274.239990,274.239990,71061400 -2018-06-22,275.660004,275.790009,274.489990,274.739990,274.739990,54898500 -2018-06-25,273.440002,273.619995,269.100006,271.000000,271.000000,137854200 -2018-06-26,271.640015,272.559998,270.790009,271.600006,271.600006,68547400 -2018-06-27,272.260010,273.869995,269.179993,269.350006,269.350006,105110700 -2018-06-28,269.290009,271.750000,268.489990,270.890015,270.890015,76650500 -2018-06-29,272.119995,273.660004,271.149994,271.279999,271.279999,97592500 -2018-07-02,269.510010,272.040009,269.239990,271.859985,271.859985,63554800 -2018-07-03,272.869995,272.980011,270.420013,270.899994,270.899994,42187100 -2018-07-05,272.170013,273.179993,270.959991,273.109985,273.109985,56925900 -2018-07-06,273.140015,275.839996,272.709991,275.420013,275.420013,66493700 -2018-07-09,276.549988,277.959991,276.500000,277.899994,277.899994,50550400 -2018-07-10,278.410004,279.010010,278.079987,278.899994,278.899994,51966800 -2018-07-11,277.149994,278.040009,276.519989,276.859985,276.859985,77054700 -2018-07-12,278.279999,279.429993,277.600006,279.369995,279.369995,60124700 -2018-07-13,279.170013,279.929993,278.660004,279.589996,279.589996,48216000 -2018-07-16,279.640015,279.799988,278.839996,279.339996,279.339996,48201000 -2018-07-17,278.470001,280.910004,278.410004,280.470001,280.470001,52315500 -2018-07-18,280.559998,281.179993,280.059998,281.059998,281.059998,44593500 -2018-07-19,280.309998,280.739990,279.459991,280.000000,280.000000,61412100 -2018-07-20,279.769989,280.480011,279.500000,279.679993,279.679993,82337700 -2018-07-23,279.450012,280.429993,279.059998,280.200012,280.200012,47047600 -2018-07-24,281.790009,282.559998,280.630005,281.609985,281.609985,68026900 -2018-07-25,281.329987,284.369995,281.279999,284.010010,284.010010,78882900 -2018-07-26,283.200012,284.109985,283.089996,283.339996,283.339996,57919500 -2018-07-27,283.709991,283.820007,280.380005,281.420013,281.420013,76768700 -2018-07-30,281.510010,281.690002,279.359985,279.950012,279.950012,63742500 -2018-07-31,280.809998,282.019989,280.380005,281.329987,281.329987,68570500 -2018-08-01,281.559998,282.130005,280.130005,280.859985,280.859985,53853300 -2018-08-02,279.390015,282.579987,279.160004,282.390015,282.390015,63426400 -2018-08-03,282.529999,283.660004,282.329987,283.600006,283.600006,53935400 -2018-08-06,283.640015,284.989990,283.200012,284.640015,284.640015,39400900 -2018-08-07,285.390015,286.010010,285.239990,285.579987,285.579987,43196600 -2018-08-08,285.390015,285.910004,284.940002,285.459991,285.459991,42114600 -2018-08-09,285.529999,285.970001,284.920013,285.070007,285.070007,35652400 -2018-08-10,283.450012,284.059998,282.359985,283.160004,283.160004,77076000 -2018-08-13,283.470001,284.160004,281.769989,282.100006,282.100006,65686900 -2018-08-14,282.920013,284.170013,282.480011,283.899994,283.899994,43842000 -2018-08-15,282.380005,282.540009,280.160004,281.779999,281.779999,102925400 -2018-08-16,283.399994,285.040009,283.359985,284.059998,284.059998,69967900 -2018-08-17,283.829987,285.559998,283.369995,285.059998,285.059998,65618500 -2018-08-20,285.570007,285.970001,285.059998,285.670013,285.670013,39807500 -2018-08-21,286.250000,287.309998,285.709991,286.339996,286.339996,67272000 -2018-08-22,285.880005,286.760010,285.579987,286.170013,286.170013,44993300 -2018-08-23,285.970001,286.940002,285.429993,285.790009,285.790009,49204900 -2018-08-24,286.440002,287.670013,286.380005,287.510010,287.510010,57487400 -2018-08-27,288.859985,289.899994,288.679993,289.779999,289.779999,57072400 -2018-08-28,290.299988,290.420013,289.399994,289.920013,289.920013,46943500 -2018-08-29,290.160004,291.739990,289.890015,291.480011,291.480011,61485500 -2018-08-30,290.940002,291.359985,289.630005,290.299988,290.299988,61229500 -2018-08-31,289.839996,290.809998,289.290009,290.309998,290.309998,66140800 -2018-09-04,289.839996,290.209991,288.679993,289.809998,289.809998,57594400 -2018-09-05,289.410004,289.640015,287.890015,289.029999,289.029999,72452400 -2018-09-06,289.149994,289.489990,287.000000,288.160004,288.160004,65909900 -2018-09-07,286.980011,288.700012,286.709991,287.600006,287.600006,73524800 -2018-09-10,288.739990,289.040009,287.880005,288.100006,288.100006,50210900 -2018-09-11,287.369995,289.549988,286.980011,289.049988,289.049988,50530500 -2018-09-12,289.059998,289.799988,288.230011,289.119995,289.119995,59810800 -2018-09-13,290.320007,291.040009,290.000000,290.829987,290.829987,51034200 -2018-09-14,291.059998,291.269989,290.000000,290.880005,290.880005,54962300 diff --git a/web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css b/web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css deleted file mode 100644 index 603bec3..0000000 --- a/web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css +++ /dev/null @@ -1,7 +0,0 @@ -svg{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.column-code{height:85vh;overflow-y:scroll}.winner{position:absolute;right:0;margin-right:-14px;margin-top:-10px;font-size:25px;transform:rotate(28deg)}.graph-inactive-btn{text-decoration:line-through!important;-webkit-text-decoration-style:double!important;text-decoration-style:double!important}.extended-area{width:100%;height:250px} -/*! -* Vuetify v1.2.3 -* Forged by John Leider -* Released under the MIT License. -*/@keyframes shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}.black{background-color:#000!important;border-color:#000!important}.black--text{caret-color:#000!important;color:#000!important}.white{background-color:#fff!important;border-color:#fff!important}.white--text{caret-color:#fff!important;color:#fff!important}.transparent{background-color:transparent!important;border-color:transparent!important}.transparent--text{caret-color:transparent!important;color:transparent!important}.red{background-color:#f44336!important;border-color:#f44336!important}.red--text{caret-color:#f44336!important;color:#f44336!important}.red.lighten-5{background-color:#ffebee!important;border-color:#ffebee!important}.red--text.text--lighten-5{caret-color:#ffebee!important;color:#ffebee!important}.red.lighten-4{background-color:#ffcdd2!important;border-color:#ffcdd2!important}.red--text.text--lighten-4{caret-color:#ffcdd2!important;color:#ffcdd2!important}.red.lighten-3{background-color:#ef9a9a!important;border-color:#ef9a9a!important}.red--text.text--lighten-3{caret-color:#ef9a9a!important;color:#ef9a9a!important}.red.lighten-2{background-color:#e57373!important;border-color:#e57373!important}.red--text.text--lighten-2{caret-color:#e57373!important;color:#e57373!important}.red.lighten-1{background-color:#ef5350!important;border-color:#ef5350!important}.red--text.text--lighten-1{caret-color:#ef5350!important;color:#ef5350!important}.red.darken-1{background-color:#e53935!important;border-color:#e53935!important}.red--text.text--darken-1{caret-color:#e53935!important;color:#e53935!important}.red.darken-2{background-color:#d32f2f!important;border-color:#d32f2f!important}.red--text.text--darken-2{caret-color:#d32f2f!important;color:#d32f2f!important}.red.darken-3{background-color:#c62828!important;border-color:#c62828!important}.red--text.text--darken-3{caret-color:#c62828!important;color:#c62828!important}.red.darken-4{background-color:#b71c1c!important;border-color:#b71c1c!important}.red--text.text--darken-4{caret-color:#b71c1c!important;color:#b71c1c!important}.red.accent-1{background-color:#ff8a80!important;border-color:#ff8a80!important}.red--text.text--accent-1{caret-color:#ff8a80!important;color:#ff8a80!important}.red.accent-2{background-color:#ff5252!important;border-color:#ff5252!important}.red--text.text--accent-2{caret-color:#ff5252!important;color:#ff5252!important}.red.accent-3{background-color:#ff1744!important;border-color:#ff1744!important}.red--text.text--accent-3{caret-color:#ff1744!important;color:#ff1744!important}.red.accent-4{background-color:#d50000!important;border-color:#d50000!important}.red--text.text--accent-4{caret-color:#d50000!important;color:#d50000!important}.pink{background-color:#e91e63!important;border-color:#e91e63!important}.pink--text{caret-color:#e91e63!important;color:#e91e63!important}.pink.lighten-5{background-color:#fce4ec!important;border-color:#fce4ec!important}.pink--text.text--lighten-5{caret-color:#fce4ec!important;color:#fce4ec!important}.pink.lighten-4{background-color:#f8bbd0!important;border-color:#f8bbd0!important}.pink--text.text--lighten-4{caret-color:#f8bbd0!important;color:#f8bbd0!important}.pink.lighten-3{background-color:#f48fb1!important;border-color:#f48fb1!important}.pink--text.text--lighten-3{caret-color:#f48fb1!important;color:#f48fb1!important}.pink.lighten-2{background-color:#f06292!important;border-color:#f06292!important}.pink--text.text--lighten-2{caret-color:#f06292!important;color:#f06292!important}.pink.lighten-1{background-color:#ec407a!important;border-color:#ec407a!important}.pink--text.text--lighten-1{caret-color:#ec407a!important;color:#ec407a!important}.pink.darken-1{background-color:#d81b60!important;border-color:#d81b60!important}.pink--text.text--darken-1{caret-color:#d81b60!important;color:#d81b60!important}.pink.darken-2{background-color:#c2185b!important;border-color:#c2185b!important}.pink--text.text--darken-2{caret-color:#c2185b!important;color:#c2185b!important}.pink.darken-3{background-color:#ad1457!important;border-color:#ad1457!important}.pink--text.text--darken-3{caret-color:#ad1457!important;color:#ad1457!important}.pink.darken-4{background-color:#880e4f!important;border-color:#880e4f!important}.pink--text.text--darken-4{caret-color:#880e4f!important;color:#880e4f!important}.pink.accent-1{background-color:#ff80ab!important;border-color:#ff80ab!important}.pink--text.text--accent-1{caret-color:#ff80ab!important;color:#ff80ab!important}.pink.accent-2{background-color:#ff4081!important;border-color:#ff4081!important}.pink--text.text--accent-2{caret-color:#ff4081!important;color:#ff4081!important}.pink.accent-3{background-color:#f50057!important;border-color:#f50057!important}.pink--text.text--accent-3{caret-color:#f50057!important;color:#f50057!important}.pink.accent-4{background-color:#c51162!important;border-color:#c51162!important}.pink--text.text--accent-4{caret-color:#c51162!important;color:#c51162!important}.purple{background-color:#9c27b0!important;border-color:#9c27b0!important}.purple--text{caret-color:#9c27b0!important;color:#9c27b0!important}.purple.lighten-5{background-color:#f3e5f5!important;border-color:#f3e5f5!important}.purple--text.text--lighten-5{caret-color:#f3e5f5!important;color:#f3e5f5!important}.purple.lighten-4{background-color:#e1bee7!important;border-color:#e1bee7!important}.purple--text.text--lighten-4{caret-color:#e1bee7!important;color:#e1bee7!important}.purple.lighten-3{background-color:#ce93d8!important;border-color:#ce93d8!important}.purple--text.text--lighten-3{caret-color:#ce93d8!important;color:#ce93d8!important}.purple.lighten-2{background-color:#ba68c8!important;border-color:#ba68c8!important}.purple--text.text--lighten-2{caret-color:#ba68c8!important;color:#ba68c8!important}.purple.lighten-1{background-color:#ab47bc!important;border-color:#ab47bc!important}.purple--text.text--lighten-1{caret-color:#ab47bc!important;color:#ab47bc!important}.purple.darken-1{background-color:#8e24aa!important;border-color:#8e24aa!important}.purple--text.text--darken-1{caret-color:#8e24aa!important;color:#8e24aa!important}.purple.darken-2{background-color:#7b1fa2!important;border-color:#7b1fa2!important}.purple--text.text--darken-2{caret-color:#7b1fa2!important;color:#7b1fa2!important}.purple.darken-3{background-color:#6a1b9a!important;border-color:#6a1b9a!important}.purple--text.text--darken-3{caret-color:#6a1b9a!important;color:#6a1b9a!important}.purple.darken-4{background-color:#4a148c!important;border-color:#4a148c!important}.purple--text.text--darken-4{caret-color:#4a148c!important;color:#4a148c!important}.purple.accent-1{background-color:#ea80fc!important;border-color:#ea80fc!important}.purple--text.text--accent-1{caret-color:#ea80fc!important;color:#ea80fc!important}.purple.accent-2{background-color:#e040fb!important;border-color:#e040fb!important}.purple--text.text--accent-2{caret-color:#e040fb!important;color:#e040fb!important}.purple.accent-3{background-color:#d500f9!important;border-color:#d500f9!important}.purple--text.text--accent-3{caret-color:#d500f9!important;color:#d500f9!important}.purple.accent-4{background-color:#a0f!important;border-color:#a0f!important}.purple--text.text--accent-4{caret-color:#a0f!important;color:#a0f!important}.deep-purple{background-color:#673ab7!important;border-color:#673ab7!important}.deep-purple--text{caret-color:#673ab7!important;color:#673ab7!important}.deep-purple.lighten-5{background-color:#ede7f6!important;border-color:#ede7f6!important}.deep-purple--text.text--lighten-5{caret-color:#ede7f6!important;color:#ede7f6!important}.deep-purple.lighten-4{background-color:#d1c4e9!important;border-color:#d1c4e9!important}.deep-purple--text.text--lighten-4{caret-color:#d1c4e9!important;color:#d1c4e9!important}.deep-purple.lighten-3{background-color:#b39ddb!important;border-color:#b39ddb!important}.deep-purple--text.text--lighten-3{caret-color:#b39ddb!important;color:#b39ddb!important}.deep-purple.lighten-2{background-color:#9575cd!important;border-color:#9575cd!important}.deep-purple--text.text--lighten-2{caret-color:#9575cd!important;color:#9575cd!important}.deep-purple.lighten-1{background-color:#7e57c2!important;border-color:#7e57c2!important}.deep-purple--text.text--lighten-1{caret-color:#7e57c2!important;color:#7e57c2!important}.deep-purple.darken-1{background-color:#5e35b1!important;border-color:#5e35b1!important}.deep-purple--text.text--darken-1{caret-color:#5e35b1!important;color:#5e35b1!important}.deep-purple.darken-2{background-color:#512da8!important;border-color:#512da8!important}.deep-purple--text.text--darken-2{caret-color:#512da8!important;color:#512da8!important}.deep-purple.darken-3{background-color:#4527a0!important;border-color:#4527a0!important}.deep-purple--text.text--darken-3{caret-color:#4527a0!important;color:#4527a0!important}.deep-purple.darken-4{background-color:#311b92!important;border-color:#311b92!important}.deep-purple--text.text--darken-4{caret-color:#311b92!important;color:#311b92!important}.deep-purple.accent-1{background-color:#b388ff!important;border-color:#b388ff!important}.deep-purple--text.text--accent-1{caret-color:#b388ff!important;color:#b388ff!important}.deep-purple.accent-2{background-color:#7c4dff!important;border-color:#7c4dff!important}.deep-purple--text.text--accent-2{caret-color:#7c4dff!important;color:#7c4dff!important}.deep-purple.accent-3{background-color:#651fff!important;border-color:#651fff!important}.deep-purple--text.text--accent-3{caret-color:#651fff!important;color:#651fff!important}.deep-purple.accent-4{background-color:#6200ea!important;border-color:#6200ea!important}.deep-purple--text.text--accent-4{caret-color:#6200ea!important;color:#6200ea!important}.indigo{background-color:#3f51b5!important;border-color:#3f51b5!important}.indigo--text{caret-color:#3f51b5!important;color:#3f51b5!important}.indigo.lighten-5{background-color:#e8eaf6!important;border-color:#e8eaf6!important}.indigo--text.text--lighten-5{caret-color:#e8eaf6!important;color:#e8eaf6!important}.indigo.lighten-4{background-color:#c5cae9!important;border-color:#c5cae9!important}.indigo--text.text--lighten-4{caret-color:#c5cae9!important;color:#c5cae9!important}.indigo.lighten-3{background-color:#9fa8da!important;border-color:#9fa8da!important}.indigo--text.text--lighten-3{caret-color:#9fa8da!important;color:#9fa8da!important}.indigo.lighten-2{background-color:#7986cb!important;border-color:#7986cb!important}.indigo--text.text--lighten-2{caret-color:#7986cb!important;color:#7986cb!important}.indigo.lighten-1{background-color:#5c6bc0!important;border-color:#5c6bc0!important}.indigo--text.text--lighten-1{caret-color:#5c6bc0!important;color:#5c6bc0!important}.indigo.darken-1{background-color:#3949ab!important;border-color:#3949ab!important}.indigo--text.text--darken-1{caret-color:#3949ab!important;color:#3949ab!important}.indigo.darken-2{background-color:#303f9f!important;border-color:#303f9f!important}.indigo--text.text--darken-2{caret-color:#303f9f!important;color:#303f9f!important}.indigo.darken-3{background-color:#283593!important;border-color:#283593!important}.indigo--text.text--darken-3{caret-color:#283593!important;color:#283593!important}.indigo.darken-4{background-color:#1a237e!important;border-color:#1a237e!important}.indigo--text.text--darken-4{caret-color:#1a237e!important;color:#1a237e!important}.indigo.accent-1{background-color:#8c9eff!important;border-color:#8c9eff!important}.indigo--text.text--accent-1{caret-color:#8c9eff!important;color:#8c9eff!important}.indigo.accent-2{background-color:#536dfe!important;border-color:#536dfe!important}.indigo--text.text--accent-2{caret-color:#536dfe!important;color:#536dfe!important}.indigo.accent-3{background-color:#3d5afe!important;border-color:#3d5afe!important}.indigo--text.text--accent-3{caret-color:#3d5afe!important;color:#3d5afe!important}.indigo.accent-4{background-color:#304ffe!important;border-color:#304ffe!important}.indigo--text.text--accent-4{caret-color:#304ffe!important;color:#304ffe!important}.blue{background-color:#2196f3!important;border-color:#2196f3!important}.blue--text{caret-color:#2196f3!important;color:#2196f3!important}.blue.lighten-5{background-color:#e3f2fd!important;border-color:#e3f2fd!important}.blue--text.text--lighten-5{caret-color:#e3f2fd!important;color:#e3f2fd!important}.blue.lighten-4{background-color:#bbdefb!important;border-color:#bbdefb!important}.blue--text.text--lighten-4{caret-color:#bbdefb!important;color:#bbdefb!important}.blue.lighten-3{background-color:#90caf9!important;border-color:#90caf9!important}.blue--text.text--lighten-3{caret-color:#90caf9!important;color:#90caf9!important}.blue.lighten-2{background-color:#64b5f6!important;border-color:#64b5f6!important}.blue--text.text--lighten-2{caret-color:#64b5f6!important;color:#64b5f6!important}.blue.lighten-1{background-color:#42a5f5!important;border-color:#42a5f5!important}.blue--text.text--lighten-1{caret-color:#42a5f5!important;color:#42a5f5!important}.blue.darken-1{background-color:#1e88e5!important;border-color:#1e88e5!important}.blue--text.text--darken-1{caret-color:#1e88e5!important;color:#1e88e5!important}.blue.darken-2{background-color:#1976d2!important;border-color:#1976d2!important}.blue--text.text--darken-2{caret-color:#1976d2!important;color:#1976d2!important}.blue.darken-3{background-color:#1565c0!important;border-color:#1565c0!important}.blue--text.text--darken-3{caret-color:#1565c0!important;color:#1565c0!important}.blue.darken-4{background-color:#0d47a1!important;border-color:#0d47a1!important}.blue--text.text--darken-4{caret-color:#0d47a1!important;color:#0d47a1!important}.blue.accent-1{background-color:#82b1ff!important;border-color:#82b1ff!important}.blue--text.text--accent-1{caret-color:#82b1ff!important;color:#82b1ff!important}.blue.accent-2{background-color:#448aff!important;border-color:#448aff!important}.blue--text.text--accent-2{caret-color:#448aff!important;color:#448aff!important}.blue.accent-3{background-color:#2979ff!important;border-color:#2979ff!important}.blue--text.text--accent-3{caret-color:#2979ff!important;color:#2979ff!important}.blue.accent-4{background-color:#2962ff!important;border-color:#2962ff!important}.blue--text.text--accent-4{caret-color:#2962ff!important;color:#2962ff!important}.light-blue{background-color:#03a9f4!important;border-color:#03a9f4!important}.light-blue--text{caret-color:#03a9f4!important;color:#03a9f4!important}.light-blue.lighten-5{background-color:#e1f5fe!important;border-color:#e1f5fe!important}.light-blue--text.text--lighten-5{caret-color:#e1f5fe!important;color:#e1f5fe!important}.light-blue.lighten-4{background-color:#b3e5fc!important;border-color:#b3e5fc!important}.light-blue--text.text--lighten-4{caret-color:#b3e5fc!important;color:#b3e5fc!important}.light-blue.lighten-3{background-color:#81d4fa!important;border-color:#81d4fa!important}.light-blue--text.text--lighten-3{caret-color:#81d4fa!important;color:#81d4fa!important}.light-blue.lighten-2{background-color:#4fc3f7!important;border-color:#4fc3f7!important}.light-blue--text.text--lighten-2{caret-color:#4fc3f7!important;color:#4fc3f7!important}.light-blue.lighten-1{background-color:#29b6f6!important;border-color:#29b6f6!important}.light-blue--text.text--lighten-1{caret-color:#29b6f6!important;color:#29b6f6!important}.light-blue.darken-1{background-color:#039be5!important;border-color:#039be5!important}.light-blue--text.text--darken-1{caret-color:#039be5!important;color:#039be5!important}.light-blue.darken-2{background-color:#0288d1!important;border-color:#0288d1!important}.light-blue--text.text--darken-2{caret-color:#0288d1!important;color:#0288d1!important}.light-blue.darken-3{background-color:#0277bd!important;border-color:#0277bd!important}.light-blue--text.text--darken-3{caret-color:#0277bd!important;color:#0277bd!important}.light-blue.darken-4{background-color:#01579b!important;border-color:#01579b!important}.light-blue--text.text--darken-4{caret-color:#01579b!important;color:#01579b!important}.light-blue.accent-1{background-color:#80d8ff!important;border-color:#80d8ff!important}.light-blue--text.text--accent-1{caret-color:#80d8ff!important;color:#80d8ff!important}.light-blue.accent-2{background-color:#40c4ff!important;border-color:#40c4ff!important}.light-blue--text.text--accent-2{caret-color:#40c4ff!important;color:#40c4ff!important}.light-blue.accent-3{background-color:#00b0ff!important;border-color:#00b0ff!important}.light-blue--text.text--accent-3{caret-color:#00b0ff!important;color:#00b0ff!important}.light-blue.accent-4{background-color:#0091ea!important;border-color:#0091ea!important}.light-blue--text.text--accent-4{caret-color:#0091ea!important;color:#0091ea!important}.cyan{background-color:#00bcd4!important;border-color:#00bcd4!important}.cyan--text{caret-color:#00bcd4!important;color:#00bcd4!important}.cyan.lighten-5{background-color:#e0f7fa!important;border-color:#e0f7fa!important}.cyan--text.text--lighten-5{caret-color:#e0f7fa!important;color:#e0f7fa!important}.cyan.lighten-4{background-color:#b2ebf2!important;border-color:#b2ebf2!important}.cyan--text.text--lighten-4{caret-color:#b2ebf2!important;color:#b2ebf2!important}.cyan.lighten-3{background-color:#80deea!important;border-color:#80deea!important}.cyan--text.text--lighten-3{caret-color:#80deea!important;color:#80deea!important}.cyan.lighten-2{background-color:#4dd0e1!important;border-color:#4dd0e1!important}.cyan--text.text--lighten-2{caret-color:#4dd0e1!important;color:#4dd0e1!important}.cyan.lighten-1{background-color:#26c6da!important;border-color:#26c6da!important}.cyan--text.text--lighten-1{caret-color:#26c6da!important;color:#26c6da!important}.cyan.darken-1{background-color:#00acc1!important;border-color:#00acc1!important}.cyan--text.text--darken-1{caret-color:#00acc1!important;color:#00acc1!important}.cyan.darken-2{background-color:#0097a7!important;border-color:#0097a7!important}.cyan--text.text--darken-2{caret-color:#0097a7!important;color:#0097a7!important}.cyan.darken-3{background-color:#00838f!important;border-color:#00838f!important}.cyan--text.text--darken-3{caret-color:#00838f!important;color:#00838f!important}.cyan.darken-4{background-color:#006064!important;border-color:#006064!important}.cyan--text.text--darken-4{caret-color:#006064!important;color:#006064!important}.cyan.accent-1{background-color:#84ffff!important;border-color:#84ffff!important}.cyan--text.text--accent-1{caret-color:#84ffff!important;color:#84ffff!important}.cyan.accent-2{background-color:#18ffff!important;border-color:#18ffff!important}.cyan--text.text--accent-2{caret-color:#18ffff!important;color:#18ffff!important}.cyan.accent-3{background-color:#00e5ff!important;border-color:#00e5ff!important}.cyan--text.text--accent-3{caret-color:#00e5ff!important;color:#00e5ff!important}.cyan.accent-4{background-color:#00b8d4!important;border-color:#00b8d4!important}.cyan--text.text--accent-4{caret-color:#00b8d4!important;color:#00b8d4!important}.teal{background-color:#009688!important;border-color:#009688!important}.teal--text{caret-color:#009688!important;color:#009688!important}.teal.lighten-5{background-color:#e0f2f1!important;border-color:#e0f2f1!important}.teal--text.text--lighten-5{caret-color:#e0f2f1!important;color:#e0f2f1!important}.teal.lighten-4{background-color:#b2dfdb!important;border-color:#b2dfdb!important}.teal--text.text--lighten-4{caret-color:#b2dfdb!important;color:#b2dfdb!important}.teal.lighten-3{background-color:#80cbc4!important;border-color:#80cbc4!important}.teal--text.text--lighten-3{caret-color:#80cbc4!important;color:#80cbc4!important}.teal.lighten-2{background-color:#4db6ac!important;border-color:#4db6ac!important}.teal--text.text--lighten-2{caret-color:#4db6ac!important;color:#4db6ac!important}.teal.lighten-1{background-color:#26a69a!important;border-color:#26a69a!important}.teal--text.text--lighten-1{caret-color:#26a69a!important;color:#26a69a!important}.teal.darken-1{background-color:#00897b!important;border-color:#00897b!important}.teal--text.text--darken-1{caret-color:#00897b!important;color:#00897b!important}.teal.darken-2{background-color:#00796b!important;border-color:#00796b!important}.teal--text.text--darken-2{caret-color:#00796b!important;color:#00796b!important}.teal.darken-3{background-color:#00695c!important;border-color:#00695c!important}.teal--text.text--darken-3{caret-color:#00695c!important;color:#00695c!important}.teal.darken-4{background-color:#004d40!important;border-color:#004d40!important}.teal--text.text--darken-4{caret-color:#004d40!important;color:#004d40!important}.teal.accent-1{background-color:#a7ffeb!important;border-color:#a7ffeb!important}.teal--text.text--accent-1{caret-color:#a7ffeb!important;color:#a7ffeb!important}.teal.accent-2{background-color:#64ffda!important;border-color:#64ffda!important}.teal--text.text--accent-2{caret-color:#64ffda!important;color:#64ffda!important}.teal.accent-3{background-color:#1de9b6!important;border-color:#1de9b6!important}.teal--text.text--accent-3{caret-color:#1de9b6!important;color:#1de9b6!important}.teal.accent-4{background-color:#00bfa5!important;border-color:#00bfa5!important}.teal--text.text--accent-4{caret-color:#00bfa5!important;color:#00bfa5!important}.green{background-color:#4caf50!important;border-color:#4caf50!important}.green--text{caret-color:#4caf50!important;color:#4caf50!important}.green.lighten-5{background-color:#e8f5e9!important;border-color:#e8f5e9!important}.green--text.text--lighten-5{caret-color:#e8f5e9!important;color:#e8f5e9!important}.green.lighten-4{background-color:#c8e6c9!important;border-color:#c8e6c9!important}.green--text.text--lighten-4{caret-color:#c8e6c9!important;color:#c8e6c9!important}.green.lighten-3{background-color:#a5d6a7!important;border-color:#a5d6a7!important}.green--text.text--lighten-3{caret-color:#a5d6a7!important;color:#a5d6a7!important}.green.lighten-2{background-color:#81c784!important;border-color:#81c784!important}.green--text.text--lighten-2{caret-color:#81c784!important;color:#81c784!important}.green.lighten-1{background-color:#66bb6a!important;border-color:#66bb6a!important}.green--text.text--lighten-1{caret-color:#66bb6a!important;color:#66bb6a!important}.green.darken-1{background-color:#43a047!important;border-color:#43a047!important}.green--text.text--darken-1{caret-color:#43a047!important;color:#43a047!important}.green.darken-2{background-color:#388e3c!important;border-color:#388e3c!important}.green--text.text--darken-2{caret-color:#388e3c!important;color:#388e3c!important}.green.darken-3{background-color:#2e7d32!important;border-color:#2e7d32!important}.green--text.text--darken-3{caret-color:#2e7d32!important;color:#2e7d32!important}.green.darken-4{background-color:#1b5e20!important;border-color:#1b5e20!important}.green--text.text--darken-4{caret-color:#1b5e20!important;color:#1b5e20!important}.green.accent-1{background-color:#b9f6ca!important;border-color:#b9f6ca!important}.green--text.text--accent-1{caret-color:#b9f6ca!important;color:#b9f6ca!important}.green.accent-2{background-color:#69f0ae!important;border-color:#69f0ae!important}.green--text.text--accent-2{caret-color:#69f0ae!important;color:#69f0ae!important}.green.accent-3{background-color:#00e676!important;border-color:#00e676!important}.green--text.text--accent-3{caret-color:#00e676!important;color:#00e676!important}.green.accent-4{background-color:#00c853!important;border-color:#00c853!important}.green--text.text--accent-4{caret-color:#00c853!important;color:#00c853!important}.light-green{background-color:#8bc34a!important;border-color:#8bc34a!important}.light-green--text{caret-color:#8bc34a!important;color:#8bc34a!important}.light-green.lighten-5{background-color:#f1f8e9!important;border-color:#f1f8e9!important}.light-green--text.text--lighten-5{caret-color:#f1f8e9!important;color:#f1f8e9!important}.light-green.lighten-4{background-color:#dcedc8!important;border-color:#dcedc8!important}.light-green--text.text--lighten-4{caret-color:#dcedc8!important;color:#dcedc8!important}.light-green.lighten-3{background-color:#c5e1a5!important;border-color:#c5e1a5!important}.light-green--text.text--lighten-3{caret-color:#c5e1a5!important;color:#c5e1a5!important}.light-green.lighten-2{background-color:#aed581!important;border-color:#aed581!important}.light-green--text.text--lighten-2{caret-color:#aed581!important;color:#aed581!important}.light-green.lighten-1{background-color:#9ccc65!important;border-color:#9ccc65!important}.light-green--text.text--lighten-1{caret-color:#9ccc65!important;color:#9ccc65!important}.light-green.darken-1{background-color:#7cb342!important;border-color:#7cb342!important}.light-green--text.text--darken-1{caret-color:#7cb342!important;color:#7cb342!important}.light-green.darken-2{background-color:#689f38!important;border-color:#689f38!important}.light-green--text.text--darken-2{caret-color:#689f38!important;color:#689f38!important}.light-green.darken-3{background-color:#558b2f!important;border-color:#558b2f!important}.light-green--text.text--darken-3{caret-color:#558b2f!important;color:#558b2f!important}.light-green.darken-4{background-color:#33691e!important;border-color:#33691e!important}.light-green--text.text--darken-4{caret-color:#33691e!important;color:#33691e!important}.light-green.accent-1{background-color:#ccff90!important;border-color:#ccff90!important}.light-green--text.text--accent-1{caret-color:#ccff90!important;color:#ccff90!important}.light-green.accent-2{background-color:#b2ff59!important;border-color:#b2ff59!important}.light-green--text.text--accent-2{caret-color:#b2ff59!important;color:#b2ff59!important}.light-green.accent-3{background-color:#76ff03!important;border-color:#76ff03!important}.light-green--text.text--accent-3{caret-color:#76ff03!important;color:#76ff03!important}.light-green.accent-4{background-color:#64dd17!important;border-color:#64dd17!important}.light-green--text.text--accent-4{caret-color:#64dd17!important;color:#64dd17!important}.lime{background-color:#cddc39!important;border-color:#cddc39!important}.lime--text{caret-color:#cddc39!important;color:#cddc39!important}.lime.lighten-5{background-color:#f9fbe7!important;border-color:#f9fbe7!important}.lime--text.text--lighten-5{caret-color:#f9fbe7!important;color:#f9fbe7!important}.lime.lighten-4{background-color:#f0f4c3!important;border-color:#f0f4c3!important}.lime--text.text--lighten-4{caret-color:#f0f4c3!important;color:#f0f4c3!important}.lime.lighten-3{background-color:#e6ee9c!important;border-color:#e6ee9c!important}.lime--text.text--lighten-3{caret-color:#e6ee9c!important;color:#e6ee9c!important}.lime.lighten-2{background-color:#dce775!important;border-color:#dce775!important}.lime--text.text--lighten-2{caret-color:#dce775!important;color:#dce775!important}.lime.lighten-1{background-color:#d4e157!important;border-color:#d4e157!important}.lime--text.text--lighten-1{caret-color:#d4e157!important;color:#d4e157!important}.lime.darken-1{background-color:#c0ca33!important;border-color:#c0ca33!important}.lime--text.text--darken-1{caret-color:#c0ca33!important;color:#c0ca33!important}.lime.darken-2{background-color:#afb42b!important;border-color:#afb42b!important}.lime--text.text--darken-2{caret-color:#afb42b!important;color:#afb42b!important}.lime.darken-3{background-color:#9e9d24!important;border-color:#9e9d24!important}.lime--text.text--darken-3{caret-color:#9e9d24!important;color:#9e9d24!important}.lime.darken-4{background-color:#827717!important;border-color:#827717!important}.lime--text.text--darken-4{caret-color:#827717!important;color:#827717!important}.lime.accent-1{background-color:#f4ff81!important;border-color:#f4ff81!important}.lime--text.text--accent-1{caret-color:#f4ff81!important;color:#f4ff81!important}.lime.accent-2{background-color:#eeff41!important;border-color:#eeff41!important}.lime--text.text--accent-2{caret-color:#eeff41!important;color:#eeff41!important}.lime.accent-3{background-color:#c6ff00!important;border-color:#c6ff00!important}.lime--text.text--accent-3{caret-color:#c6ff00!important;color:#c6ff00!important}.lime.accent-4{background-color:#aeea00!important;border-color:#aeea00!important}.lime--text.text--accent-4{caret-color:#aeea00!important;color:#aeea00!important}.yellow{background-color:#ffeb3b!important;border-color:#ffeb3b!important}.yellow--text{caret-color:#ffeb3b!important;color:#ffeb3b!important}.yellow.lighten-5{background-color:#fffde7!important;border-color:#fffde7!important}.yellow--text.text--lighten-5{caret-color:#fffde7!important;color:#fffde7!important}.yellow.lighten-4{background-color:#fff9c4!important;border-color:#fff9c4!important}.yellow--text.text--lighten-4{caret-color:#fff9c4!important;color:#fff9c4!important}.yellow.lighten-3{background-color:#fff59d!important;border-color:#fff59d!important}.yellow--text.text--lighten-3{caret-color:#fff59d!important;color:#fff59d!important}.yellow.lighten-2{background-color:#fff176!important;border-color:#fff176!important}.yellow--text.text--lighten-2{caret-color:#fff176!important;color:#fff176!important}.yellow.lighten-1{background-color:#ffee58!important;border-color:#ffee58!important}.yellow--text.text--lighten-1{caret-color:#ffee58!important;color:#ffee58!important}.yellow.darken-1{background-color:#fdd835!important;border-color:#fdd835!important}.yellow--text.text--darken-1{caret-color:#fdd835!important;color:#fdd835!important}.yellow.darken-2{background-color:#fbc02d!important;border-color:#fbc02d!important}.yellow--text.text--darken-2{caret-color:#fbc02d!important;color:#fbc02d!important}.yellow.darken-3{background-color:#f9a825!important;border-color:#f9a825!important}.yellow--text.text--darken-3{caret-color:#f9a825!important;color:#f9a825!important}.yellow.darken-4{background-color:#f57f17!important;border-color:#f57f17!important}.yellow--text.text--darken-4{caret-color:#f57f17!important;color:#f57f17!important}.yellow.accent-1{background-color:#ffff8d!important;border-color:#ffff8d!important}.yellow--text.text--accent-1{caret-color:#ffff8d!important;color:#ffff8d!important}.yellow.accent-2{background-color:#ff0!important;border-color:#ff0!important}.yellow--text.text--accent-2{caret-color:#ff0!important;color:#ff0!important}.yellow.accent-3{background-color:#ffea00!important;border-color:#ffea00!important}.yellow--text.text--accent-3{caret-color:#ffea00!important;color:#ffea00!important}.yellow.accent-4{background-color:#ffd600!important;border-color:#ffd600!important}.yellow--text.text--accent-4{caret-color:#ffd600!important;color:#ffd600!important}.amber{background-color:#ffc107!important;border-color:#ffc107!important}.amber--text{caret-color:#ffc107!important;color:#ffc107!important}.amber.lighten-5{background-color:#fff8e1!important;border-color:#fff8e1!important}.amber--text.text--lighten-5{caret-color:#fff8e1!important;color:#fff8e1!important}.amber.lighten-4{background-color:#ffecb3!important;border-color:#ffecb3!important}.amber--text.text--lighten-4{caret-color:#ffecb3!important;color:#ffecb3!important}.amber.lighten-3{background-color:#ffe082!important;border-color:#ffe082!important}.amber--text.text--lighten-3{caret-color:#ffe082!important;color:#ffe082!important}.amber.lighten-2{background-color:#ffd54f!important;border-color:#ffd54f!important}.amber--text.text--lighten-2{caret-color:#ffd54f!important;color:#ffd54f!important}.amber.lighten-1{background-color:#ffca28!important;border-color:#ffca28!important}.amber--text.text--lighten-1{caret-color:#ffca28!important;color:#ffca28!important}.amber.darken-1{background-color:#ffb300!important;border-color:#ffb300!important}.amber--text.text--darken-1{caret-color:#ffb300!important;color:#ffb300!important}.amber.darken-2{background-color:#ffa000!important;border-color:#ffa000!important}.amber--text.text--darken-2{caret-color:#ffa000!important;color:#ffa000!important}.amber.darken-3{background-color:#ff8f00!important;border-color:#ff8f00!important}.amber--text.text--darken-3{caret-color:#ff8f00!important;color:#ff8f00!important}.amber.darken-4{background-color:#ff6f00!important;border-color:#ff6f00!important}.amber--text.text--darken-4{caret-color:#ff6f00!important;color:#ff6f00!important}.amber.accent-1{background-color:#ffe57f!important;border-color:#ffe57f!important}.amber--text.text--accent-1{caret-color:#ffe57f!important;color:#ffe57f!important}.amber.accent-2{background-color:#ffd740!important;border-color:#ffd740!important}.amber--text.text--accent-2{caret-color:#ffd740!important;color:#ffd740!important}.amber.accent-3{background-color:#ffc400!important;border-color:#ffc400!important}.amber--text.text--accent-3{caret-color:#ffc400!important;color:#ffc400!important}.amber.accent-4{background-color:#ffab00!important;border-color:#ffab00!important}.amber--text.text--accent-4{caret-color:#ffab00!important;color:#ffab00!important}.orange{background-color:#ff9800!important;border-color:#ff9800!important}.orange--text{caret-color:#ff9800!important;color:#ff9800!important}.orange.lighten-5{background-color:#fff3e0!important;border-color:#fff3e0!important}.orange--text.text--lighten-5{caret-color:#fff3e0!important;color:#fff3e0!important}.orange.lighten-4{background-color:#ffe0b2!important;border-color:#ffe0b2!important}.orange--text.text--lighten-4{caret-color:#ffe0b2!important;color:#ffe0b2!important}.orange.lighten-3{background-color:#ffcc80!important;border-color:#ffcc80!important}.orange--text.text--lighten-3{caret-color:#ffcc80!important;color:#ffcc80!important}.orange.lighten-2{background-color:#ffb74d!important;border-color:#ffb74d!important}.orange--text.text--lighten-2{caret-color:#ffb74d!important;color:#ffb74d!important}.orange.lighten-1{background-color:#ffa726!important;border-color:#ffa726!important}.orange--text.text--lighten-1{caret-color:#ffa726!important;color:#ffa726!important}.orange.darken-1{background-color:#fb8c00!important;border-color:#fb8c00!important}.orange--text.text--darken-1{caret-color:#fb8c00!important;color:#fb8c00!important}.orange.darken-2{background-color:#f57c00!important;border-color:#f57c00!important}.orange--text.text--darken-2{caret-color:#f57c00!important;color:#f57c00!important}.orange.darken-3{background-color:#ef6c00!important;border-color:#ef6c00!important}.orange--text.text--darken-3{caret-color:#ef6c00!important;color:#ef6c00!important}.orange.darken-4{background-color:#e65100!important;border-color:#e65100!important}.orange--text.text--darken-4{caret-color:#e65100!important;color:#e65100!important}.orange.accent-1{background-color:#ffd180!important;border-color:#ffd180!important}.orange--text.text--accent-1{caret-color:#ffd180!important;color:#ffd180!important}.orange.accent-2{background-color:#ffab40!important;border-color:#ffab40!important}.orange--text.text--accent-2{caret-color:#ffab40!important;color:#ffab40!important}.orange.accent-3{background-color:#ff9100!important;border-color:#ff9100!important}.orange--text.text--accent-3{caret-color:#ff9100!important;color:#ff9100!important}.orange.accent-4{background-color:#ff6d00!important;border-color:#ff6d00!important}.orange--text.text--accent-4{caret-color:#ff6d00!important;color:#ff6d00!important}.deep-orange{background-color:#ff5722!important;border-color:#ff5722!important}.deep-orange--text{caret-color:#ff5722!important;color:#ff5722!important}.deep-orange.lighten-5{background-color:#fbe9e7!important;border-color:#fbe9e7!important}.deep-orange--text.text--lighten-5{caret-color:#fbe9e7!important;color:#fbe9e7!important}.deep-orange.lighten-4{background-color:#ffccbc!important;border-color:#ffccbc!important}.deep-orange--text.text--lighten-4{caret-color:#ffccbc!important;color:#ffccbc!important}.deep-orange.lighten-3{background-color:#ffab91!important;border-color:#ffab91!important}.deep-orange--text.text--lighten-3{caret-color:#ffab91!important;color:#ffab91!important}.deep-orange.lighten-2{background-color:#ff8a65!important;border-color:#ff8a65!important}.deep-orange--text.text--lighten-2{caret-color:#ff8a65!important;color:#ff8a65!important}.deep-orange.lighten-1{background-color:#ff7043!important;border-color:#ff7043!important}.deep-orange--text.text--lighten-1{caret-color:#ff7043!important;color:#ff7043!important}.deep-orange.darken-1{background-color:#f4511e!important;border-color:#f4511e!important}.deep-orange--text.text--darken-1{caret-color:#f4511e!important;color:#f4511e!important}.deep-orange.darken-2{background-color:#e64a19!important;border-color:#e64a19!important}.deep-orange--text.text--darken-2{caret-color:#e64a19!important;color:#e64a19!important}.deep-orange.darken-3{background-color:#d84315!important;border-color:#d84315!important}.deep-orange--text.text--darken-3{caret-color:#d84315!important;color:#d84315!important}.deep-orange.darken-4{background-color:#bf360c!important;border-color:#bf360c!important}.deep-orange--text.text--darken-4{caret-color:#bf360c!important;color:#bf360c!important}.deep-orange.accent-1{background-color:#ff9e80!important;border-color:#ff9e80!important}.deep-orange--text.text--accent-1{caret-color:#ff9e80!important;color:#ff9e80!important}.deep-orange.accent-2{background-color:#ff6e40!important;border-color:#ff6e40!important}.deep-orange--text.text--accent-2{caret-color:#ff6e40!important;color:#ff6e40!important}.deep-orange.accent-3{background-color:#ff3d00!important;border-color:#ff3d00!important}.deep-orange--text.text--accent-3{caret-color:#ff3d00!important;color:#ff3d00!important}.deep-orange.accent-4{background-color:#dd2c00!important;border-color:#dd2c00!important}.deep-orange--text.text--accent-4{caret-color:#dd2c00!important;color:#dd2c00!important}.brown{background-color:#795548!important;border-color:#795548!important}.brown--text{caret-color:#795548!important;color:#795548!important}.brown.lighten-5{background-color:#efebe9!important;border-color:#efebe9!important}.brown--text.text--lighten-5{caret-color:#efebe9!important;color:#efebe9!important}.brown.lighten-4{background-color:#d7ccc8!important;border-color:#d7ccc8!important}.brown--text.text--lighten-4{caret-color:#d7ccc8!important;color:#d7ccc8!important}.brown.lighten-3{background-color:#bcaaa4!important;border-color:#bcaaa4!important}.brown--text.text--lighten-3{caret-color:#bcaaa4!important;color:#bcaaa4!important}.brown.lighten-2{background-color:#a1887f!important;border-color:#a1887f!important}.brown--text.text--lighten-2{caret-color:#a1887f!important;color:#a1887f!important}.brown.lighten-1{background-color:#8d6e63!important;border-color:#8d6e63!important}.brown--text.text--lighten-1{caret-color:#8d6e63!important;color:#8d6e63!important}.brown.darken-1{background-color:#6d4c41!important;border-color:#6d4c41!important}.brown--text.text--darken-1{caret-color:#6d4c41!important;color:#6d4c41!important}.brown.darken-2{background-color:#5d4037!important;border-color:#5d4037!important}.brown--text.text--darken-2{caret-color:#5d4037!important;color:#5d4037!important}.brown.darken-3{background-color:#4e342e!important;border-color:#4e342e!important}.brown--text.text--darken-3{caret-color:#4e342e!important;color:#4e342e!important}.brown.darken-4{background-color:#3e2723!important;border-color:#3e2723!important}.brown--text.text--darken-4{caret-color:#3e2723!important;color:#3e2723!important}.blue-grey{background-color:#607d8b!important;border-color:#607d8b!important}.blue-grey--text{caret-color:#607d8b!important;color:#607d8b!important}.blue-grey.lighten-5{background-color:#eceff1!important;border-color:#eceff1!important}.blue-grey--text.text--lighten-5{caret-color:#eceff1!important;color:#eceff1!important}.blue-grey.lighten-4{background-color:#cfd8dc!important;border-color:#cfd8dc!important}.blue-grey--text.text--lighten-4{caret-color:#cfd8dc!important;color:#cfd8dc!important}.blue-grey.lighten-3{background-color:#b0bec5!important;border-color:#b0bec5!important}.blue-grey--text.text--lighten-3{caret-color:#b0bec5!important;color:#b0bec5!important}.blue-grey.lighten-2{background-color:#90a4ae!important;border-color:#90a4ae!important}.blue-grey--text.text--lighten-2{caret-color:#90a4ae!important;color:#90a4ae!important}.blue-grey.lighten-1{background-color:#78909c!important;border-color:#78909c!important}.blue-grey--text.text--lighten-1{caret-color:#78909c!important;color:#78909c!important}.blue-grey.darken-1{background-color:#546e7a!important;border-color:#546e7a!important}.blue-grey--text.text--darken-1{caret-color:#546e7a!important;color:#546e7a!important}.blue-grey.darken-2{background-color:#455a64!important;border-color:#455a64!important}.blue-grey--text.text--darken-2{caret-color:#455a64!important;color:#455a64!important}.blue-grey.darken-3{background-color:#37474f!important;border-color:#37474f!important}.blue-grey--text.text--darken-3{caret-color:#37474f!important;color:#37474f!important}.blue-grey.darken-4{background-color:#263238!important;border-color:#263238!important}.blue-grey--text.text--darken-4{caret-color:#263238!important;color:#263238!important}.grey{background-color:#9e9e9e!important;border-color:#9e9e9e!important}.grey--text{caret-color:#9e9e9e!important;color:#9e9e9e!important}.grey.lighten-5{background-color:#fafafa!important;border-color:#fafafa!important}.grey--text.text--lighten-5{caret-color:#fafafa!important;color:#fafafa!important}.grey.lighten-4{background-color:#f5f5f5!important;border-color:#f5f5f5!important}.grey--text.text--lighten-4{caret-color:#f5f5f5!important;color:#f5f5f5!important}.grey.lighten-3{background-color:#eee!important;border-color:#eee!important}.grey--text.text--lighten-3{caret-color:#eee!important;color:#eee!important}.grey.lighten-2{background-color:#e0e0e0!important;border-color:#e0e0e0!important}.grey--text.text--lighten-2{caret-color:#e0e0e0!important;color:#e0e0e0!important}.grey.lighten-1{background-color:#bdbdbd!important;border-color:#bdbdbd!important}.grey--text.text--lighten-1{caret-color:#bdbdbd!important;color:#bdbdbd!important}.grey.darken-1{background-color:#757575!important;border-color:#757575!important}.grey--text.text--darken-1{caret-color:#757575!important;color:#757575!important}.grey.darken-2{background-color:#616161!important;border-color:#616161!important}.grey--text.text--darken-2{caret-color:#616161!important;color:#616161!important}.grey.darken-3{background-color:#424242!important;border-color:#424242!important}.grey--text.text--darken-3{caret-color:#424242!important;color:#424242!important}.grey.darken-4{background-color:#212121!important;border-color:#212121!important}.grey--text.text--darken-4{caret-color:#212121!important;color:#212121!important}.shades.black{background-color:#000!important;border-color:#000!important}.shades--text.text--black{caret-color:#000!important;color:#000!important}.shades.white{background-color:#fff!important;border-color:#fff!important}.shades--text.text--white{caret-color:#fff!important;color:#fff!important}.shades.transparent{background-color:transparent!important;border-color:transparent!important}.shades--text.text--transparent{caret-color:transparent!important;color:transparent!important}.elevation-0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.elevation-1{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important}.elevation-2{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important}.elevation-3{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)!important}.elevation-4{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important}.elevation-5{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)!important}.elevation-6{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)!important}.elevation-7{box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important}.elevation-8{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important}.elevation-9{box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)!important}.elevation-10{box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)!important}.elevation-11{box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)!important}.elevation-12{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important}.elevation-13{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)!important}.elevation-14{box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)!important}.elevation-15{box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)!important}.elevation-16{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)!important}.elevation-17{box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)!important}.elevation-18{box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)!important}.elevation-19{box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)!important}.elevation-20{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)!important}.elevation-21{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)!important}.elevation-22{box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)!important}.elevation-23{box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)!important}.elevation-24{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)!important}html{-webkit-text-size-adjust:100%;box-sizing:border-box;overflow-y:scroll}*,:after,:before{box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{background-repeat:no-repeat;margin:0;padding:0}audio:not([controls]){display:none;height:0}hr{overflow:visible}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}summary{display:list-item}small{font-size:80%}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted;text-decoration:none}a{-webkit-text-decoration-skip:objects;background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[disabled]{cursor:default}[type=number]{width:auto}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:0;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{border:0;outline:0}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,select{text-transform:none}button,input,select,textarea{background-color:transparent;border-style:none;color:inherit}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}img{border-style:none}progress{vertical-align:baseline}svg:not(:root){overflow:hidden}audio,canvas,progress,video{display:inline-block}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.bottom-sheet-transition-enter,.bottom-sheet-transition-leave-to{transform:translateY(100%)}.carousel-transition-enter{transform:translate(100%)}.carousel-transition-leave,.carousel-transition-leave-to{position:absolute;top:0}.carousel-reverse-transition-enter,.carousel-transition-leave,.carousel-transition-leave-to{transform:translate(-100%)}.carousel-reverse-transition-leave,.carousel-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.dialog-transition-enter,.dialog-transition-leave-to{-webkit-transform:scale(.5);opacity:0;transform:scale(.5)}.dialog-transition-enter-to,.dialog-transition-leave{opacity:1}.dialog-bottom-transition-enter,.dialog-bottom-transition-leave-to{transform:translateY(100%)}.picker-reverse-transition-enter-active,.picker-reverse-transition-leave-active,.picker-transition-enter-active,.picker-transition-leave-active{transition:.3s cubic-bezier(0,0,.2,1)}.picker-reverse-transition-enter,.picker-reverse-transition-leave-to,.picker-transition-enter,.picker-transition-leave-to{opacity:0}.picker-reverse-transition-leave,.picker-reverse-transition-leave-active,.picker-reverse-transition-leave-to,.picker-transition-leave,.picker-transition-leave-active,.picker-transition-leave-to{position:absolute!important}.picker-transition-enter{transform:translateY(100%)}.picker-reverse-transition-enter,.picker-transition-leave-to{transform:translateY(-100%)}.picker-reverse-transition-leave-to{transform:translateY(100%)}.picker-title-transition-enter-to,.picker-title-transition-leave{transform:translate(0)}.picker-title-transition-enter{transform:translate(-100%)}.picker-title-transition-leave-to{-webkit-transform:translate(100%);opacity:0;transform:translate(100%)}.picker-title-transition-leave,.picker-title-transition-leave-active,.picker-title-transition-leave-to{position:absolute!important}.tab-transition-enter{transform:translate(100%)}.tab-transition-leave,.tab-transition-leave-active{position:absolute;top:0}.tab-transition-leave-to{position:absolute}.tab-reverse-transition-enter,.tab-transition-leave-to{transform:translate(-100%)}.tab-reverse-transition-leave,.tab-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.expand-transition-enter-active,.expand-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.expand-transition-move{transition:transform .6s}.scale-transition-enter-active,.scale-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scale-transition-move{transition:transform .6s}.scale-transition-enter,.scale-transition-leave,.scale-transition-leave-to{-webkit-transform:scale(0);opacity:0;transform:scale(0)}.message-transition-enter-active,.message-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.message-transition-move{transition:transform .6s}.message-transition-enter,.message-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.message-transition-leave,.message-transition-leave-active{position:absolute}.slide-y-transition-enter-active,.slide-y-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-transition-move{transition:transform .6s}.slide-y-transition-enter,.slide-y-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.slide-y-reverse-transition-enter-active,.slide-y-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-reverse-transition-move{transition:transform .6s}.slide-y-reverse-transition-enter,.slide-y-reverse-transition-leave-to{-webkit-transform:translateY(15px);opacity:0;transform:translateY(15px)}.scroll-y-transition-enter-active,.scroll-y-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-transition-move{transition:transform .6s}.scroll-y-transition-enter,.scroll-y-transition-leave-to{opacity:0}.scroll-y-transition-enter{transform:translateY(-15px)}.scroll-y-transition-leave-to{transform:translateY(15px)}.scroll-y-reverse-transition-enter-active,.scroll-y-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-reverse-transition-move{transition:transform .6s}.scroll-y-reverse-transition-enter,.scroll-y-reverse-transition-leave-to{opacity:0}.scroll-y-reverse-transition-enter{transform:translateY(15px)}.scroll-y-reverse-transition-leave-to{transform:translateY(-15px)}.scroll-x-transition-enter-active,.scroll-x-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-transition-move{transition:transform .6s}.scroll-x-transition-enter,.scroll-x-transition-leave-to{opacity:0}.scroll-x-transition-enter{transform:translateX(-15px)}.scroll-x-transition-leave-to{transform:translateX(15px)}.scroll-x-reverse-transition-enter-active,.scroll-x-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-reverse-transition-move{transition:transform .6s}.scroll-x-reverse-transition-enter,.scroll-x-reverse-transition-leave-to{opacity:0}.scroll-x-reverse-transition-enter{transform:translateX(15px)}.scroll-x-reverse-transition-leave-to{transform:translateX(-15px)}.slide-x-transition-enter-active,.slide-x-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-transition-move{transition:transform .6s}.slide-x-transition-enter,.slide-x-transition-leave-to{-webkit-transform:translateX(-15px);opacity:0;transform:translateX(-15px)}.slide-x-reverse-transition-enter-active,.slide-x-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-reverse-transition-move{transition:transform .6s}.slide-x-reverse-transition-enter,.slide-x-reverse-transition-leave-to{-webkit-transform:translateX(15px);opacity:0;transform:translateX(15px)}.fade-transition-enter-active,.fade-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.fade-transition-move{transition:transform .6s}.fade-transition-enter,.fade-transition-leave-to{opacity:0}.fab-transition-enter-active,.fab-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.fab-transition-move{transition:transform .6s}.fab-transition-enter,.fab-transition-leave-to{transform:scale(0) rotate(-45deg)}.blockquote{font-size:18px;font-weight:300;padding:16px 0 16px 24px}code,kbd{border-radius:3px;display:inline-block;font-size:85%;font-weight:900;white-space:pre-wrap}code:after,code:before,kbd:after,kbd:before{content:"\A0";letter-spacing:-1px}code{background-color:#f5f5f5;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);color:#bd4147}kbd{background:#424242;color:#fff}html{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);font-size:14px;overflow-x:hidden;text-rendering:optimizeLegibility}.application{font-family:Roboto,sans-serif;line-height:1.5}::-ms-clear,::-ms-reveal{display:none}ol,ul{padding-left:24px}.display-4{font-family:Roboto,sans-serif!important;font-size:112px!important;font-weight:300;letter-spacing:-.04em!important;line-height:1!important}.display-3{font-size:56px!important;letter-spacing:-.02em!important;line-height:1.35!important}.display-2,.display-3{font-family:Roboto,sans-serif!important;font-weight:400}.display-2{font-size:45px!important;letter-spacing:normal!important;line-height:48px!important}.display-1{font-size:34px!important;line-height:40px!important}.display-1,.headline{font-family:Roboto,sans-serif!important;font-weight:400;letter-spacing:normal!important}.headline{font-size:24px!important;line-height:32px!important}.title{font-family:Roboto,sans-serif!important;font-size:20px!important;font-weight:500;letter-spacing:.02em!important;line-height:1!important}.subheading{font-size:16px!important;font-weight:400}.body-2{font-weight:500}.body-1,.body-2{font-size:14px!important}.body-1,.caption{font-weight:400}.caption{font-size:12px!important}p{margin-bottom:16px}.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.right{float:right!important}.left{float:left!important}.ma-auto{margin:auto!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mt-auto{margin-top:auto}.mr-auto{margin-right:auto}.mb-auto{margin-bottom:auto}.ml-auto{margin-left:auto}.ma-0{margin:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.pa-0{padding:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.ma-1{margin:4px!important}.my-1{margin-bottom:4px!important;margin-top:4px!important}.mx-1{margin-left:4px!important;margin-right:4px!important}.mt-1{margin-top:4px!important}.mr-1{margin-right:4px!important}.mb-1{margin-bottom:4px!important}.ml-1{margin-left:4px!important}.pa-1{padding:4px!important}.py-1{padding-bottom:4px!important;padding-top:4px!important}.px-1{padding-left:4px!important;padding-right:4px!important}.pt-1{padding-top:4px!important}.pr-1{padding-right:4px!important}.pb-1{padding-bottom:4px!important}.pl-1{padding-left:4px!important}.ma-2{margin:8px!important}.my-2{margin-bottom:8px!important;margin-top:8px!important}.mx-2{margin-left:8px!important;margin-right:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.pa-2{padding:8px!important}.py-2{padding-bottom:8px!important;padding-top:8px!important}.px-2{padding-left:8px!important;padding-right:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2{padding-left:8px!important}.ma-3{margin:16px!important}.my-3{margin-bottom:16px!important;margin-top:16px!important}.mx-3{margin-left:16px!important;margin-right:16px!important}.mt-3{margin-top:16px!important}.mr-3{margin-right:16px!important}.mb-3{margin-bottom:16px!important}.ml-3{margin-left:16px!important}.pa-3{padding:16px!important}.py-3{padding-bottom:16px!important;padding-top:16px!important}.px-3{padding-left:16px!important;padding-right:16px!important}.pt-3{padding-top:16px!important}.pr-3{padding-right:16px!important}.pb-3{padding-bottom:16px!important}.pl-3{padding-left:16px!important}.ma-4{margin:24px!important}.my-4{margin-bottom:24px!important;margin-top:24px!important}.mx-4{margin-left:24px!important;margin-right:24px!important}.mt-4{margin-top:24px!important}.mr-4{margin-right:24px!important}.mb-4{margin-bottom:24px!important}.ml-4{margin-left:24px!important}.pa-4{padding:24px!important}.py-4{padding-bottom:24px!important;padding-top:24px!important}.px-4{padding-left:24px!important;padding-right:24px!important}.pt-4{padding-top:24px!important}.pr-4{padding-right:24px!important}.pb-4{padding-bottom:24px!important}.pl-4{padding-left:24px!important}.ma-5{margin:48px!important}.my-5{margin-bottom:48px!important;margin-top:48px!important}.mx-5{margin-left:48px!important;margin-right:48px!important}.mt-5{margin-top:48px!important}.mr-5{margin-right:48px!important}.mb-5{margin-bottom:48px!important}.ml-5{margin-left:48px!important}.pa-5{padding:48px!important}.py-5{padding-bottom:48px!important;padding-top:48px!important}.px-5{padding-left:48px!important;padding-right:48px!important}.pt-5{padding-top:48px!important}.pr-5{padding-right:48px!important}.pb-5{padding-bottom:48px!important}.pl-5{padding-left:48px!important}.font-weight-thin{font-weight:100!important}.font-weight-light{font-weight:300!important}.font-weight-regular{font-weight:400!important}.font-weight-medium{font-weight:500!important}.font-weight-bold{font-weight:700!important}.font-weight-black{font-weight:900!important}.font-italic{font-style:italic!important}.text-capitalize{text-transform:capitalize!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-no-wrap,.text-truncate{white-space:nowrap!important}.text-truncate{overflow:hidden!important;text-overflow:ellipsis!important}.transition-fast-out-slow-in{transition:.3s cubic-bezier(.4,0,.2,1)!important}.transition-linear-out-slow-in{transition:.3s cubic-bezier(0,0,.2,1)!important}.transition-fast-out-linear-in{transition:.3s cubic-bezier(.4,0,1,1)!important}.transition-ease-in-out{transition:.3s cubic-bezier(.4,0,.6,1)!important}.transition-fast-in-fast-out{transition:.3s cubic-bezier(.25,.8,.25,1)!important}.transition-swing{transition:.3s cubic-bezier(.25,.8,.5,1)!important}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){clip:rect(0 0 0 0)!important;position:absolute!important}}@media only screen and (max-width:599px){.hidden-xs-only{display:none!important}}@media only screen and (min-width:600px) and (max-width:959px){.hidden-sm-only{display:none!important}}@media only screen and (max-width:959px){.hidden-sm-and-down{display:none!important}}@media only screen and (min-width:600px){.hidden-sm-and-up{display:none!important}}@media only screen and (min-width:960px) and (max-width:1263px){.hidden-md-only{display:none!important}}@media only screen and (max-width:1263px){.hidden-md-and-down{display:none!important}}@media only screen and (min-width:960px){.hidden-md-and-up{display:none!important}}@media only screen and (min-width:1264px) and (max-width:1903px){.hidden-lg-only{display:none!important}}@media only screen and (max-width:1903px){.hidden-lg-and-down{display:none!important}}@media only screen and (min-width:1264px){.hidden-lg-and-up{display:none!important}}@media only screen and (min-width:1904px){.hidden-xl-only{display:none!important}}@media (min-width:0){.text-xs-left{text-align:left!important}.text-xs-center{text-align:center!important}.text-xs-right{text-align:right!important}.text-xs-justify{text-align:justify!important}}@media (min-width:600px){.text-sm-left{text-align:left!important}.text-sm-center{text-align:center!important}.text-sm-right{text-align:right!important}.text-sm-justify{text-align:justify!important}}@media (min-width:960px){.text-md-left{text-align:left!important}.text-md-center{text-align:center!important}.text-md-right{text-align:right!important}.text-md-justify{text-align:justify!important}}@media (min-width:1264px){.text-lg-left{text-align:left!important}.text-lg-center{text-align:center!important}.text-lg-right{text-align:right!important}.text-lg-justify{text-align:justify!important}}@media (min-width:1904px){.text-xl-left{text-align:left!important}.text-xl-center{text-align:center!important}.text-xl-right{text-align:right!important}.text-xl-justify{text-align:justify!important}}.application{display:-ms-flexbox;display:flex}.application a{cursor:pointer}.application--is-rtl{direction:rtl}.application--wrap{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column;flex-direction:column;max-width:100%;min-height:100vh;position:relative}.theme--light.application{background:#fafafa;color:rgba(0,0,0,.87)}.theme--light.application .text--primary{color:rgba(0,0,0,.87)!important}.theme--light.application .text--secondary{color:rgba(0,0,0,.54)!important}.theme--light.application .text--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.application{background:#303030;color:#fff}.theme--dark.application .text--primary{color:#fff!important}.theme--dark.application .text--secondary{color:hsla(0,0%,100%,.7)!important}.theme--dark.application .text--disabled{color:hsla(0,0%,100%,.5)!important}@media print{@-moz-document url-prefix(){.application,.application--wrap{display:block}}}.v-alert{border-radius:0;border-style:solid;border-width:4px 0 0;color:#fff;display:-ms-flexbox;display:flex;font-size:14px;margin:4px auto;padding:16px;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-alert .v-alert__icon.v-icon,.v-alert__dismissible .v-icon{-ms-flex-item-align:center;align-self:center;color:rgba(0,0,0,.3);font-size:24px}.v-alert--outline .v-icon{color:inherit!important}.v-alert__icon{margin-right:16px}.v-alert__dismissible{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;color:inherit;margin-left:16px;margin-right:0;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-alert__dismissible:hover{opacity:.8}.v-alert--no-icon .v-alert__icon{display:none}.v-alert>div{-ms-flex-item-align:center;align-self:center;-ms-flex:1 1;flex:1 1}.v-alert.v-alert{border-color:rgba(0,0,0,.12)!important}.v-alert.v-alert--outline{border:1px solid!important}@media screen and (max-width:600px){.v-alert__icon{display:none}}.theme--light.v-icon{color:rgba(0,0,0,.54)}.theme--light.v-icon.v-icon--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.v-icon{color:#fff}.theme--dark.v-icon.v-icon--disabled{color:hsla(0,0%,100%,.5)!important}.v-icon{-webkit-font-feature-settings:"liga";-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-feature-settings:"liga";font-size:24px;-ms-flex-pack:center;justify-content:center;line-height:1;transition:.3s cubic-bezier(.25,.8,.5,1);vertical-align:text-bottom}.v-icon.v-icon.v-icon--link{cursor:pointer}.v-icon.v-icon--large{font-size:2.5rem}.v-icon.v-icon--medium{font-size:2rem}.v-icon.v-icon--x-large{font-size:3rem}.v-icon.v-icon--disabled{pointer-events:none}.v-autocomplete.v-input>.v-input__control>.v-input__slot{cursor:text}.v-autocomplete input{-ms-flex-item-align:center;align-self:center}.v-autocomplete--is-selecting-index input{opacity:0}.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo) .v-select__slot>input{margin-top:24px}.v-autocomplete:not(.v-input--is-disabled).v-select.v-text-field input{pointer-events:auto}.v-autocomplete__content.v-menu__content,.v-autocomplete__content.v-menu__content .v-card{border-radius:0}.theme--light.v-text-field .v-input__slot:before{border-color:rgba(0,0,0,.42)}.theme--light.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:rgba(0,0,0,.87)}.theme--light.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38),rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38),rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat}.theme--light.v-text-field__prefix,.theme--light.v-text-field__suffix{color:rgba(0,0,0,.54)}.theme--light.v-text-field--solo .v-input__slot{background:#fff;border-radius:2px}.theme--light.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:rgba(0,0,0,.16)}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#424242}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:#fff}.theme--light.v-text-field--box .v-input__slot{background:rgba(0,0,0,.06)}.theme--light.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.12)}.theme--light.v-text-field--outline .v-input__slot{border:2px solid rgba(0,0,0,.54)}.theme--light.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid rgba(0,0,0,.87)}.theme--dark.v-text-field .v-input__slot:before{border-color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:#fff}.theme--dark.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5),hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5),hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat}.theme--dark.v-text-field__prefix,.theme--dark.v-text-field__suffix{color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field--solo .v-input__slot{background:#424242;border-radius:2px}.theme--dark.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:hsla(0,0%,100%,.16)}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#fff}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:rgba(0,0,0,.87)}.theme--dark.v-text-field--box .v-input__slot{background:rgba(0,0,0,.1)}.theme--dark.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.2)}.theme--dark.v-text-field--outline .v-input__slot{border:2px solid hsla(0,0%,100%,.7)}.theme--dark.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid #fff}.application--is-rtl .v-text-field .v-label{transform-origin:top right}.application--is-rtl .v-text-field .v-counter{margin-left:0;margin-right:8px}.application--is-rtl .v-text-field--enclosed .v-input__append-outer{margin-left:0;margin-right:16px}.application--is-rtl .v-text-field--enclosed .v-input__prepend-outer{margin-left:16px;margin-right:0}.application--is-rtl .v-text-field--reverse input{text-align:left}.application--is-rtl .v-text-field--reverse .v-label{transform-origin:top left}.application--is-rtl .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.application--is-rtl .v-text-field__suffix{padding-left:0;padding-right:4px}.application--is-rtl .v-text-field--reverse .v-text-field__prefix{padding-left:0;padding-right:4px;text-align:right}.application--is-rtl .v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field{margin-top:4px;padding-top:12px}.v-text-field input{-ms-flex:1 1 auto;flex:1 1 auto;line-height:20px;max-width:100%;min-width:0;padding:8px 0;width:100%}.v-text-field .v-input__append-inner,.v-text-field .v-input__prepend-inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-top:4px;user-select:none}.v-text-field .v-input__prepend-inner{margin-right:auto;padding-right:4px}.v-text-field .v-input__append-inner{margin-left:auto;padding-left:4px}.v-text-field .v-counter{margin-left:8px;white-space:nowrap}.v-text-field .v-label{-webkit-transform-origin:top left;max-width:90%;overflow:hidden;pointer-events:none;text-overflow:ellipsis;top:6px;transform-origin:top left;white-space:nowrap}.v-text-field .v-label--active{-webkit-transform:translateY(-18px) scale(.75);max-width:100%;transform:translateY(-18px) scale(.75)}.v-text-field>.v-input__control>.v-input__slot{cursor:text;transition:background .3s cubic-bezier(.25,.8,.5,1)}.v-text-field>.v-input__control>.v-input__slot:after,.v-text-field>.v-input__control>.v-input__slot:before{bottom:-1px;content:"";left:0;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-text-field>.v-input__control>.v-input__slot:before{border-style:solid;border-width:thin 0 0}.v-text-field>.v-input__control>.v-input__slot:after{-webkit-transform:scaleX(0);border-color:currentColor;border-style:solid;border-width:thin 0;transform:scaleX(0)}.v-text-field__details{display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;overflow:hidden}.v-text-field__prefix,.v-text-field__suffix{-ms-flex-item-align:center;align-self:center;cursor:default}.v-text-field__prefix{padding-right:4px;text-align:right;width:16px}.v-text-field__suffix{padding-left:4px;white-space:nowrap}.v-text-field--reverse .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field__slot{display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.v-text-field--box,.v-text-field--outline{position:relative}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{-ms-flex-align:stretch;align-items:stretch}.v-text-field--box input,.v-text-field--outline input{margin-top:22px}.v-text-field--box.v-text-field--single-line input,.v-text-field--outline.v-text-field--single-line input{margin-top:12px}.v-text-field--box .v-label,.v-text-field--outline .v-label{top:18px}.v-text-field--box .v-label--active,.v-text-field--outline .v-label--active{transform:translateY(-6px) scale(.75)}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{min-height:56px}.v-text-field--box .v-input__slot{border-top-left-radius:4px;border-top-right-radius:4px}.v-text-field--box .v-input__slot:before{border-style:solid;border-width:thin 0}.v-text-field.v-text-field--enclosed{margin:0;padding:0}.v-text-field.v-text-field--enclosed:not(.v-text-field--box) .v-progress-linear__background{display:none}.v-text-field.v-text-field--enclosed .v-input__append-inner,.v-text-field.v-text-field--enclosed .v-input__append-outer,.v-text-field.v-text-field--enclosed .v-input__prepend-inner,.v-text-field.v-text-field--enclosed .v-input__prepend-outer{margin-top:16px}.v-text-field.v-text-field--enclosed .v-input__slot,.v-text-field.v-text-field--enclosed .v-text-field__details{padding:0 12px}.v-text-field.v-text-field--enclosed .v-text-field__details{margin-bottom:8px}.v-text-field.v-text-field--full-width.v-input{margin-bottom:0;margin-top:0}.v-text-field.v-text-field--full-width .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--full-width .v-input__control{padding:12px 0}.v-text-field.v-text-field--full-width .v-input__append-outer,.v-text-field.v-text-field--full-width .v-input__prepend-outer{margin-top:4px}.v-text-field.v-text-field--full-width .v-input__append-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field--reverse input{text-align:right}.v-text-field--reverse .v-label{transform-origin:top right}.v-text-field--reverse .v-input__slot,.v-text-field--reverse .v-text-field__slot{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-text-field--full-width .v-input__slot:after,.v-text-field--full-width .v-input__slot:before,.v-text-field--outline .v-input__slot:after,.v-text-field--outline .v-input__slot:before,.v-text-field--solo .v-input__slot:after,.v-text-field--solo .v-input__slot:before{display:none}.v-text-field--outline{margin-bottom:16px;transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field--outline .v-input__slot{background:transparent!important;border-radius:4px}.v-text-field--outline .v-input__append-outer,.v-text-field--outline .v-input__prepend-outer{margin-top:18px}.v-text-field--outline.v-input--is-focused .v-input__slot{border:2px solid;transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field.v-text-field--solo .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--solo .v-input__control{min-height:48px;padding:0}.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat) .v-input__slot{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-text-field.v-text-field--solo .v-text-field__slot{-ms-flex-align:center;align-items:center}.v-text-field.v-text-field--solo .v-input__append-inner,.v-text-field.v-text-field--solo .v-input__prepend-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field.v-text-field--solo .v-input__append-outer,.v-text-field.v-text-field--solo .v-input__prepend-outer{margin-top:12px}.v-text-field.v-input--is-focused .v-input__slot:after{transform:scaleX(1)}.v-text-field.v-input--has-state .v-input__slot:before{border-color:currentColor}.theme--light.v-select .v-select__selections{color:rgba(0,0,0,.87)}.theme--light.v-select .v-chip--disabled,.theme--light.v-select.v-input--is-disabled .v-select__selections,.theme--light.v-select .v-select__selection--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-select .v-select__selections,.theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:#fff}.theme--dark.v-select .v-chip--disabled,.theme--dark.v-select.v-input--is-disabled .v-select__selections,.theme--dark.v-select .v-select__selection--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:rgba(0,0,0,.87)}.v-select{position:relative}.v-select>.v-input__control>.v-input__slot{cursor:pointer}.v-select .v-chip{-ms-flex:0 1 auto;flex:0 1 auto}.v-select .fade-transition-leave-active{left:0;position:absolute}.v-select.v-input--is-dirty ::-webkit-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty :-ms-input-placeholder,.v-select.v-input--is-dirty ::-ms-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty ::placeholder{color:transparent!important}.v-select.v-text-field--enclosed:not(.v-text-field--single-line) .v-select__selections{padding-top:24px}.v-select.v-text-field input{-ms-flex:1 1;flex:1 1;margin-top:0;min-width:0;pointer-events:none;position:relative}.v-select.v-select--is-menu-active .v-input__icon--append .v-icon{transform:rotate(180deg)}.v-select.v-select--chips input{margin:0}.v-select.v-select--chips .v-select__selections{min-height:42px}.v-select.v-select--chips.v-select--chips--small .v-select__selections{min-height:32px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections{min-height:68px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections{min-height:56px}.v-select.v-text-field--reverse .v-select__selections,.v-select.v-text-field--reverse .v-select__slot{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-select__selections{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:18px}.v-select__selection{max-width:90%}.v-select__selection--comma{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;margin:7px 4px 7px 0}.v-select__slot{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;position:relative;width:100%}.v-select:not(.v-text-field--single-line) .v-select__slot>input{-ms-flex-item-align:end;align-self:flex-end}.theme--light.v-chip{background:#e0e0e0;color:rgba(0,0,0,.87)}.theme--light.v-chip--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-chip{background:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-chip--disabled{color:hsla(0,0%,100%,.5)}.v-chip{border:1px solid transparent;border-radius:28px;font-size:13px;margin:4px;outline:none;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-chip,.v-chip .v-chip__content{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.v-chip .v-chip__content{border-radius:28px;cursor:default;height:32px;-ms-flex-pack:justify;justify-content:space-between;padding:0 12px;white-space:nowrap;z-index:1}.v-chip--removable .v-chip__content{padding:0 4px 0 12px}.v-chip .v-avatar{height:32px!important;margin-left:-12px;margin-right:8px;min-width:32px;width:32px!important}.v-chip .v-avatar img{height:100%;width:100%}.v-chip--active,.v-chip--selected,.v-chip:focus:not(.v-chip--disabled){border-color:rgba(0,0,0,.13);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-chip--active:after,.v-chip--selected:after,.v-chip:focus:not(.v-chip--disabled):after{background:currentColor;border-radius:inherit;content:"";height:100%;left:0;opacity:.13;pointer-events:none;position:absolute;top:0;transition:inherit;width:100%}.v-chip--label,.v-chip--label .v-chip__content{border-radius:2px}.v-chip.v-chip.v-chip--outline{background:transparent!important;border-color:currentColor;color:#9e9e9e}.v-chip--small{height:24px}.v-chip--small .v-avatar{height:24px;min-width:24px;width:24px}.v-chip--small .v-icon{font-size:20px}.v-chip__close{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;font-size:20px;margin:0 2px 0 8px;text-decoration:none;user-select:none}.v-chip__close>.v-icon{color:inherit!important;cursor:pointer;font-size:20px;opacity:.5}.v-chip__close>.v-icon:hover{opacity:1}.v-chip--disabled .v-chip__close{pointer-events:none}.v-chip--select-multi{margin:4px 4px 4px 0}.v-chip .v-icon{color:inherit}.v-chip .v-icon--right{margin-left:12px;margin-right:-8px}.v-chip .v-icon--left{margin-left:-8px;margin-right:12px}.v-menu{display:block;position:relative;vertical-align:middle}.v-menu--inline{display:inline-block}.v-menu__activator{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex;position:relative}.v-menu__activator *{cursor:pointer}.v-menu__activator--disabled{pointer-events:none}.v-menu__content{border-radius:2px;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);contain:content;display:inline-block;max-width:80%;overflow-x:hidden;overflow-y:auto;position:absolute;will-change:transform}.v-menu__content--active{pointer-events:none}.v-menu__content>.card{-webkit-backface-visibility:hidden;backface-visibility:hidden;contain:content}.v-menu>.v-menu__content{max-width:none}.v-menu-transition-enter .v-list__tile{min-width:0;pointer-events:none}.v-menu-transition-enter-to .v-list__tile{pointer-events:auto;transition-delay:.1s}.v-menu-transition-leave-active,.v-menu-transition-leave-to{pointer-events:none}.v-menu-transition-enter,.v-menu-transition-leave-to{opacity:0}.v-menu-transition-enter-active,.v-menu-transition-leave-active{transition:all .3s cubic-bezier(.25,.8,.25,1)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile--active{-webkit-transform:none!important;opacity:1;pointer-events:auto;transform:none!important}.theme--light.v-card{background-color:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-card{background-color:#424242;color:#fff}.v-card{border-radius:2px;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:block;min-width:0;position:relative;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-card>:first-child:not(.v-btn):not(.v-chip){border-top-left-radius:inherit;border-top-right-radius:inherit}.v-card>:last-child:not(.v-btn):not(.v-chip){border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.v-card--raised{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.v-card--tile{border-radius:0}.v-card--flat{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-card--hover{cursor:pointer;transition:all .4s cubic-bezier(.25,.8,.25,1);transition-property:box-shadow}.v-card--hover:hover{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-card__title{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:16px}.v-card__title--primary{padding-top:24px}.v-card__text{padding:16px;width:100%}.v-card__actions{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;padding:8px}.v-card__actions .v-btn,.v-card__actions>*{margin:0}.v-card__actions .v-btn+.v-btn{margin-left:8px}.theme--light.v-input--selection-controls.v-input--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-input--selection-controls.v-input--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.application--is-rtl .v-input--selection-controls .v-input--selection-controls__input{margin-left:8px;margin-right:0}.v-input--selection-controls{margin-top:16px;padding-top:4px}.v-input--selection-controls .v-input__append-outer,.v-input--selection-controls .v-input__prepend-outer{margin-bottom:0;margin-top:0}.v-input--selection-controls .v-input__slot{margin-bottom:12px}.v-input--selection-controls__input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;color:inherit;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 0 auto;flex:0 0 auto;height:24px;margin-right:8px;position:relative;transition:color .2s cubic-bezier(.25,.8,.25,1),transform .3s cubic-bezier(.25,.8,.25,1);user-select:none;width:24px}.v-input--selection-controls__input input{height:100%;opacity:0;position:absolute;width:100%}.v-input--selection-controls__input+.v-label,.v-input--selection-controls__input input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-input--selection-controls__ripple{cursor:pointer;height:48px;left:-12px;position:absolute;top:calc(50% - 24px);transition:inherit;width:48px}.v-input--selection-controls__ripple:before{-webkit-transform:scale(.2);-webkit-transform-origin:center center;border-radius:50%;bottom:0;content:"";left:0;opacity:.2;position:absolute;right:0;top:0;transform:scale(.2);transform-origin:center center;transition:inherit}.v-input--selection-controls.v-input .v-label{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;height:auto;top:0}.v-input--selection-controls.v-input--is-focused .v-input--selection-controls__ripple:before,.v-input--selection-controls .v-radio--is-focused .v-input--selection-controls__ripple:before{-webkit-transform:scale(.8);background:currentColor;transform:scale(.8)}.theme--light.v-input:not(.v-input--is-disabled) input,.theme--light.v-input:not(.v-input--is-disabled) textarea{color:rgba(0,0,0,.87)}.theme--light.v-input input::-webkit-input-placeholder,.theme--light.v-input textarea::-webkit-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input:-ms-input-placeholder,.theme--light.v-input input::-ms-input-placeholder,.theme--light.v-input textarea:-ms-input-placeholder,.theme--light.v-input textarea::-ms-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input::placeholder,.theme--light.v-input textarea::placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input--is-disabled .v-label,.theme--light.v-input--is-disabled input,.theme--light.v-input--is-disabled textarea{color:rgba(0,0,0,.38)}.theme--dark.v-input:not(.v-input--is-disabled) input,.theme--dark.v-input:not(.v-input--is-disabled) textarea{color:#fff}.theme--dark.v-input input::-webkit-input-placeholder,.theme--dark.v-input textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input:-ms-input-placeholder,.theme--dark.v-input input::-ms-input-placeholder,.theme--dark.v-input textarea:-ms-input-placeholder,.theme--dark.v-input textarea::-ms-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input::placeholder,.theme--dark.v-input textarea::placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input--is-disabled .v-label,.theme--dark.v-input--is-disabled input,.theme--dark.v-input--is-disabled textarea{color:hsla(0,0%,100%,.5)}.v-input{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;text-align:left}.v-input .v-progress-linear{left:0;margin:0;position:absolute;top:calc(100% - 1px)}.v-input input{max-height:32px}.v-input input:invalid,.v-input textarea:invalid{box-shadow:none}.v-input input:active,.v-input input:focus,.v-input textarea:active,.v-input textarea:focus{outline:none}.v-input .v-label{height:20px;line-height:20px}.v-input__append-outer,.v-input__prepend-outer{display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-bottom:4px;margin-top:4px}.v-input__append-outer .v-icon,.v-input__prepend-outer .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.v-input__append-outer{margin-left:9px}.v-input__prepend-outer{margin-right:9px}.v-input__control{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto;position:relative;width:100%}.v-input__icon{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:1 0 auto;flex:1 0 auto;height:24px;-ms-flex-pack:center;justify-content:center;min-width:24px;width:24px}.v-input__icon--clear{border-radius:50%}.v-input__slot{-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;margin-bottom:8px;min-height:inherit;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-input--is-disabled:not(.v-input--is-readonly){pointer-events:none}.v-input--is-loading .v-input__slot:after,.v-input--is-loading .v-input__slot:before{display:none}.v-input--hide-details .v-input__slot{margin-bottom:0}.v-input--has-state.error--text .v-label{animation:shake .6s cubic-bezier(.25,.8,.5,1)}.theme--light.v-label{color:rgba(0,0,0,.54)}.theme--light.v-label--is-disabled{color:rgba(0,0,0,.38)}.theme--dark.v-label{color:hsla(0,0%,100%,.7)}.theme--dark.v-label--is-disabled{color:hsla(0,0%,100%,.5)}.v-label{font-size:16px;line-height:1;min-height:8px;transition:.3s cubic-bezier(.25,.8,.5,1)}.theme--light.v-messages{color:rgba(0,0,0,.54)}.theme--dark.v-messages{color:hsla(0,0%,100%,.7)}.application--is-rtl .v-messages{text-align:right}.v-messages{-ms-flex:1 1 auto;flex:1 1 auto;font-size:12px;min-height:12px;min-width:1px;position:relative}.v-messages__message{-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;line-height:1;overflow-wrap:break-word;word-break:break-word;word-wrap:break-word}.v-progress-linear{background:transparent;margin:1rem 0;overflow:hidden;position:relative;width:100%}.v-progress-linear__bar{position:relative;width:100%;z-index:1}.v-progress-linear__bar,.v-progress-linear__bar__determinate{height:inherit;transition:.2s}.v-progress-linear__bar__indeterminate .long,.v-progress-linear__bar__indeterminate .short{background-color:inherit;bottom:0;height:inherit;left:0;position:absolute;top:0;width:auto;will-change:left,right}.v-progress-linear__bar__indeterminate--active .long{-webkit-animation:indeterminate;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__bar__indeterminate--active .short{-webkit-animation:indeterminate-short;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate-short;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__background{bottom:0;left:0;position:absolute;top:0;transition:.3s ease-in}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .long{-webkit-animation:query;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query;animation-duration:2s;animation-iteration-count:infinite}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .short{-webkit-animation:query-short;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query-short;animation-duration:2s;animation-iteration-count:infinite}@keyframes indeterminate{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes query{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes query-short{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}.theme--light.v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-divider{border-color:hsla(0,0%,100%,.12)}.v-divider{border:solid;border-width:thin 0 0;display:block;-ms-flex:1 1 0px;flex:1 1 0px;height:0;max-height:0;max-width:100%;transition:inherit}.v-divider--inset:not(.v-divider--vertical){margin-left:72px;max-width:calc(100% - 72px)}.v-divider--vertical{-ms-flex-item-align:stretch;align-self:stretch;border:solid;border-width:0 thin 0 0;display:-ms-inline-flexbox;display:inline-flex;height:inherit;max-height:100%;max-width:0;min-height:100%;vertical-align:text-bottom;width:0}.v-divider--vertical.v-divider--inset{margin-top:8px;max-height:calc(100% - 16px);min-height:0}.theme--light.v-subheader{color:rgba(0,0,0,.54)}.theme--dark.v-subheader{color:hsla(0,0%,100%,.7)}.v-subheader{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;height:48px;padding:0 16px}.v-subheader--inset{margin-left:56px}.theme--light.v-list{background:#fff;color:rgba(0,0,0,.87)}.theme--light.v-list .v-list--disabled{color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__tile__sub-title{color:rgba(0,0,0,.54)}.theme--light.v-list .v-list__tile__mask{background:#eee;color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__group__header:hover,.theme--light.v-list .v-list__tile--highlighted,.theme--light.v-list .v-list__tile--link:hover{background:rgba(0,0,0,.04)}.theme--light.v-list .v-list__group--active:after,.theme--light.v-list .v-list__group--active:before{background:rgba(0,0,0,.12)}.theme--light.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--light.v-list .v-list__group--disabled .v-list__tile{color:rgba(0,0,0,.38)!important}.theme--dark.v-list{background:#424242;color:#fff}.theme--dark.v-list .v-list--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__tile__sub-title{color:hsla(0,0%,100%,.7)}.theme--dark.v-list .v-list__tile__mask{background:#494949;color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__group__header:hover,.theme--dark.v-list .v-list__tile--highlighted,.theme--dark.v-list .v-list__tile--link:hover{background:hsla(0,0%,100%,.08)}.theme--dark.v-list .v-list__group--active:after,.theme--dark.v-list .v-list__group--active:before{background:hsla(0,0%,100%,.12)}.theme--dark.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--dark.v-list .v-list__group--disabled .v-list__tile{color:hsla(0,0%,100%,.5)!important}.v-list{list-style-type:none;padding:8px 0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list .v-input .v-messages{display:none}.v-list .v-input,.v-list .v-input__slot{margin:0}.v-list>div{transition:inherit}.v-list__tile{-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;font-size:16px;font-weight:400;height:48px;margin:0;padding:0 16px;position:relative;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list__tile--link{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-list__tile__action,.v-list__tile__content{height:100%}.v-list__tile__sub-title,.v-list__tile__title{overflow:hidden;text-overflow:ellipsis;transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:100%}.v-list__tile__title{height:24px;line-height:24px;position:relative;text-align:left}.v-list__tile__sub-title{font-size:14px}.v-list__tile__action,.v-list__tile__avatar{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__tile__action{-ms-flex-align:center;align-items:center}.v-list__tile__action .v-btn{margin:0;padding:0}.v-list__tile__action .v-btn--icon{margin:-6px}.v-list__tile__action .v-radio.v-radio{margin:0}.v-list__tile__action .v-input--selection-controls{padding:0}.v-list__tile__action-text{color:#9e9e9e;font-size:12px}.v-list__tile__action--stack{-ms-flex-align:end;align-items:flex-end;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:8px;padding-top:8px;white-space:nowrap}.v-list__tile__content{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;text-align:left}.v-list__tile__content~.v-list__tile__action:not(.v-list__tile__action--stack),.v-list__tile__content~.v-list__tile__avatar{-ms-flex-pack:end;justify-content:flex-end}.v-list__tile--active .v-list__tile__action:first-of-type .v-icon{color:inherit}.v-list__tile--avatar{height:56px}.v-list--dense{padding-bottom:4px;padding-top:4px}.v-list--dense .v-subheader{font-size:13px;height:40px}.v-list--dense .v-list__group .v-subheader{height:40px}.v-list--dense .v-list__tile{font-size:13px}.v-list--dense .v-list__tile--avatar{height:48px}.v-list--dense .v-list__tile:not(.v-list__tile--avatar){height:40px}.v-list--dense .v-list__tile .v-icon{font-size:22px}.v-list--dense .v-list__tile__sub-title{font-size:13px}.v-list--disabled{pointer-events:none}.v-list--two-line .v-list__tile{height:72px}.v-list--two-line.v-list--dense .v-list__tile{height:60px}.v-list--three-line .v-list__tile{height:88px}.v-list--three-line .v-list__tile__avatar{margin-top:-18px}.v-list--three-line .v-list__tile__sub-title{-webkit-line-clamp:2;display:-webkit-box;white-space:normal}.v-list--three-line.v-list--dense .v-list__tile{height:76px}.v-list>.v-list__group:before{top:0}.v-list>.v-list__group:before .v-list__tile__avatar{margin-top:-14px}.v-list__group{padding:0;position:relative;transition:inherit}.v-list__group:after,.v-list__group:before{content:"";height:1px;left:0;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-list__group--active~.v-list__group:before{display:none}.v-list__group__header{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex;list-style-type:none}.v-list__group__header>div:not(.v-list__group__header__prepend-icon):not(.v-list__group__header__append-icon){-ms-flex:1 0 auto;flex:1 0 auto}.v-list__group__header .v-list__group__header__append-icon,.v-list__group__header .v-list__group__header__prepend-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;padding:0 16px;user-select:none}.v-list__group__header--sub-group{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}.v-list__group__header--sub-group div .v-list__tile{padding-left:0}.v-list__group__header--sub-group .v-list__group__header__prepend-icon{margin-right:8px;padding:0 0 0 40px}.v-list__group__header .v-list__group__header__prepend-icon{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__group__header--active .v-list__group__header__append-icon .v-icon{transform:rotate(-180deg)}.v-list__group__header--active .v-list__group__header__prepend-icon .v-icon{color:inherit}.v-list__group__header--active.v-list__group__header--sub-group .v-list__group__header__prepend-icon .v-icon{transform:rotate(-180deg)}.v-list__group__items{padding:0;position:relative;transition:inherit}.v-list__group__items>div{display:block}.v-list__group__items--no-action .v-list__tile{padding-left:72px}.v-list__group--disabled{pointer-events:none}.v-list--subheader{padding-top:0}.v-avatar{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;position:relative;text-align:center;vertical-align:middle}.v-avatar,.v-avatar .v-icon,.v-avatar .v-image,.v-avatar img{border-radius:50%;display:-ms-inline-flexbox;display:inline-flex}.v-avatar .v-icon,.v-avatar .v-image,.v-avatar img{height:inherit;width:inherit}.v-avatar--tile,.v-avatar--tile .v-icon,.v-avatar--tile .v-image,.v-avatar--tile img{border-radius:0}.theme--light.v-counter{color:rgba(0,0,0,.54)}.theme--dark.v-counter{color:hsla(0,0%,100%,.7)}.v-counter{-ms-flex:0 1 auto;flex:0 1 auto;font-size:12px;line-height:1;min-height:12px}.v-badge{display:inline-block;position:relative}.v-badge__badge{-ms-flex-align:center;align-items:center;border-radius:50%;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:14px;height:22px;-ms-flex-pack:center;justify-content:center;position:absolute;right:-22px;top:-11px;transition:.3s cubic-bezier(.25,.8,.5,1);width:22px}.v-badge__badge .v-icon{font-size:14px}.v-badge--overlap .v-badge__badge{right:-8px;top:-8px}.v-badge--overlap.v-badge--left .v-badge__badge{left:-8px;right:auto}.v-badge--overlap.v-badge--bottom .v-badge__badge{bottom:-8px;top:auto}.v-badge--left .v-badge__badge{left:-22px}.v-badge--bottom .v-badge__badge{bottom:-11px;top:auto}.theme--light.v-bottom-nav{background-color:#fff}.theme--dark.v-bottom-nav{background-color:#424242}.v-bottom-nav{-webkit-transform:translateY(60px);bottom:0;box-shadow:0 3px 14px 2px rgba(0,0,0,.12);display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;left:0;transform:translateY(60px);transition:all .4s cubic-bezier(.25,.8,.5,1);width:100%}.v-bottom-nav--absolute{position:absolute}.v-bottom-nav--active{transform:translate(0)}.v-bottom-nav--fixed{position:fixed;z-index:4}.v-bottom-nav .v-btn{background:transparent!important;border-radius:0;box-shadow:none!important;-ms-flex-negative:1;flex-shrink:1;font-weight:400;height:100%;margin:0;max-width:168px;min-width:80px;opacity:.5;padding:8px 12px 10px;text-transform:none;width:100%}.v-bottom-nav .v-btn .v-btn__content{-ms-flex-direction:column-reverse;flex-direction:column-reverse;font-size:12px;white-space:nowrap;will-change:font-size}.v-bottom-nav .v-btn .v-btn__content i.v-icon{color:inherit;margin-bottom:4px;transition:all .4s cubic-bezier(.25,.8,.5,1)}.v-bottom-nav .v-btn .v-btn__content span{line-height:1}.v-bottom-nav .v-btn--active{opacity:1;padding-top:6px}.v-bottom-nav .v-btn--active:before{background-color:transparent}.v-bottom-nav .v-btn--active .v-btn__content{font-size:14px}.v-bottom-nav .v-btn--active .v-btn__content .v-icon{transform:none}.v-bottom-nav .v-btn:not(.v-btn--active){filter:grayscale(100%)}.v-bottom-nav--shift .v-btn__content{font-size:14px}.v-bottom-nav--shift .v-btn{max-width:96px;min-width:56px;transition:all .3s}.v-bottom-nav--shift .v-btn--active{max-width:168px;min-width:96px}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content .v-icon{transform:scale(1) translateY(8px)}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content span{color:transparent}.v-bottom-sheet.v-dialog{-ms-flex-item-align:end;align-self:flex-end;border-radius:0;-ms-flex:1 0 100%;flex:1 0 100%;margin:0;min-width:100%;overflow:visible;transition:.3s cubic-bezier(.25,.8,.25,1)}.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:70%;min-width:0}@media only screen and (max-width:599px){.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:none}}.v-dialog{border-radius:2px;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);margin:24px;overflow-y:auto;pointer-events:auto;transition:.3s cubic-bezier(.25,.8,.25,1);width:100%;z-index:inherit}.v-dialog__content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;-ms-flex-pack:center;justify-content:center;left:0;outline:none;pointer-events:none;position:fixed;top:0;transition:.2s cubic-bezier(.25,.8,.25,1);width:100%;z-index:6}.v-dialog:not(.v-dialog--fullscreen){max-height:90%}.v-dialog__activator,.v-dialog__activator *{cursor:pointer}.v-dialog__activator--disabled{pointer-events:none}.v-dialog__container{display:inline-block;vertical-align:middle}.v-dialog--animated{-webkit-animation-duration:.15s;-webkit-animation-name:animate-dialog;-webkit-animation-timing-function:cubic-bezier(.25,.8,.25,1);animation-duration:.15s;animation-name:animate-dialog;animation-timing-function:cubic-bezier(.25,.8,.25,1)}.v-dialog--fullscreen{border-radius:0;height:100%;left:0;margin:0;overflow-y:auto;position:fixed;top:0}.v-dialog--fullscreen>.v-card{margin:0!important;min-height:100%;min-width:100%;padding:0!important}.v-dialog--scrollable,.v-dialog--scrollable>.v-card{display:-ms-flexbox;display:flex}.v-dialog--scrollable>.v-card{-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column;flex-direction:column}.v-dialog--scrollable>.v-card>.v-card__actions,.v-dialog--scrollable>.v-card>.v-card__title{-ms-flex:1 0 auto;flex:1 0 auto}.v-dialog--scrollable>.v-card>.v-card__text{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow-y:auto}@keyframes animate-dialog{0%{transform:scale(1)}50%{transform:scale(1.03)}to{transform:scale(1)}}.v-overlay{bottom:0;left:0;pointer-events:none;position:fixed;right:0;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);z-index:5}.v-overlay--absolute{position:absolute}.v-overlay:before{background-color:#212121;bottom:0;content:"";height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:inherit;transition-delay:.15s;width:100%}.v-overlay--active{pointer-events:auto;-ms-touch-action:none;touch-action:none}.v-overlay--active:before{opacity:.46}.theme--light.v-breadcrumbs li.v-breadcrumbs__divider,.theme--light.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--light.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:rgba(0,0,0,.38)}.theme--dark.v-breadcrumbs li.v-breadcrumbs__divider,.theme--dark.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--dark.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:hsla(0,0%,100%,.5)}.v-breadcrumbs{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 1 auto;flex:0 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style-type:none;margin:0;padding:18px 12px}.v-breadcrumbs li{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-size:14px}.v-breadcrumbs li .v-icon{font-size:16px}.v-breadcrumbs li:last-child a{cursor:default;pointer-events:none}.v-breadcrumbs li:nth-child(2n){padding:0 12px}.v-breadcrumbs--large li,.v-breadcrumbs--large li .v-icon{font-size:16px}.v-breadcrumbs__item{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-breadcrumbs__item--disabled{pointer-events:none}.v-ripple__container{border-radius:inherit;contain:strict;height:100%;width:100%;z-index:0}.v-ripple__animation,.v-ripple__container{color:inherit;left:0;overflow:hidden;pointer-events:none;position:absolute;top:0}.v-ripple__animation{background:currentColor;border-radius:50%;opacity:0;transition:.4s cubic-bezier(0,0,.2,1);will-change:transform,opacity}.v-ripple__animation--enter{transition:none}.v-ripple__animation--visible{opacity:.15}.theme--light.v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn.v-btn--disabled,.theme--light.v-btn.v-btn--disabled .v-btn__loading,.theme--light.v-btn.v-btn--disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--light.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:rgba(0,0,0,.12)!important}.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#f5f5f5}.theme--dark.v-btn{color:#fff}.theme--dark.v-btn.v-btn--disabled,.theme--dark.v-btn.v-btn--disabled .v-btn__loading,.theme--dark.v-btn.v-btn--disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.theme--dark.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#212121}.v-btn{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;border-radius:2px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 0 auto;flex:0 0 auto;font-size:14px;font-weight:500;height:36px;-ms-flex-pack:center;justify-content:center;margin:6px 8px;min-width:88px;outline:0;position:relative;text-decoration:none;text-transform:uppercase;transition:.3s cubic-bezier(.25,.8,.5,1),color 1ms;user-select:none;vertical-align:middle}.v-btn:before{border-radius:inherit;color:inherit;content:"";height:100%;left:0;opacity:.12;position:absolute;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-btn{padding:0 16px}.v-btn--active,.v-btn:focus,.v-btn:hover{position:relative}.v-btn--active:before,.v-btn:focus:before,.v-btn:hover:before{background-color:currentColor}.v-btn__content{-ms-flex-align:center;align-items:center;border-radius:inherit;color:inherit;display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-pack:center;justify-content:center;margin:0 auto;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:inherit}.v-btn--small{font-size:13px;height:28px;padding:0 8px}.v-btn--large{font-size:15px;height:44px;padding:0 32px}.v-btn .v-btn__content .v-icon{color:inherit}.v-btn:not(.v-btn--depressed):not(.v-btn--flat){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);will-change:box-shadow}.v-btn:not(.v-btn--depressed):not(.v-btn--flat):active{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-btn--icon{background:transparent;border-radius:50%;box-shadow:none!important;-ms-flex-pack:center;justify-content:center;min-width:0;width:36px}.v-btn--icon.v-btn--small{width:28px}.v-btn--icon.v-btn--large{width:44px}.v-btn--floating,.v-btn--icon:before{border-radius:50%}.v-btn--floating{height:56px;min-width:0;padding:0;width:56px}.v-btn--floating.v-btn--absolute,.v-btn--floating.v-btn--fixed{z-index:4}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat):active{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.v-btn--floating .v-btn__content{-ms-flex:1 1 auto;flex:1 1 auto;height:100%;margin:0}.v-btn--floating:after{border-radius:50%}.v-btn--floating .v-btn__content :not(:only-child){transition:.3s cubic-bezier(.25,.8,.5,1)}.v-btn--floating .v-btn__content :not(:only-child):first-child{opacity:1}.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(-45deg);opacity:0;transform:rotate(-45deg)}.v-btn--floating .v-btn__content :not(:only-child):first-child,.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-backface-visibility:hidden;left:0;position:absolute;top:0}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):first-child{-webkit-transform:rotate(45deg);opacity:0;transform:rotate(45deg)}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(0);opacity:1;transform:rotate(0)}.v-btn--floating .v-icon{height:inherit;width:inherit}.v-btn--floating.v-btn--small{height:40px;width:40px}.v-btn--floating.v-btn--small .v-icon{font-size:18px}.v-btn--floating.v-btn--large{height:72px;width:72px}.v-btn--floating.v-btn--large .v-icon{font-size:30px}.v-btn--reverse .v-btn__content{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-btn--reverse.v-btn--column .v-btn__content{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-btn--absolute,.v-btn--fixed{margin:0}.v-btn.v-btn--absolute{position:absolute}.v-btn.v-btn--fixed{position:fixed}.v-btn--top:not(.v-btn--absolute){top:16px}.v-btn--top.v-btn--absolute{top:-28px}.v-btn--top.v-btn--absolute.v-btn--small{top:-20px}.v-btn--top.v-btn--absolute.v-btn--large{top:-36px}.v-btn--bottom:not(.v-btn--absolute){bottom:16px}.v-btn--bottom.v-btn--absolute{bottom:-28px}.v-btn--bottom.v-btn--absolute.v-btn--small{bottom:-20px}.v-btn--bottom.v-btn--absolute.v-btn--large{bottom:-36px}.v-btn--left{left:16px}.v-btn--right{right:16px}.v-btn.v-btn--disabled{box-shadow:none!important;pointer-events:none}.v-btn:not(.v-btn--disabled):not(.v-btn--floating):not(.v-btn--icon) .v-btn__content .v-icon{transition:none}.v-btn--icon{padding:0}.v-btn--loader{pointer-events:none}.v-btn--loader .v-btn__content{opacity:0}.v-btn__loading{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loading .v-icon--left{line-height:inherit;margin-right:1rem}.v-btn__loading .v-icon--right{line-height:inherit;margin-left:1rem}.v-btn.v-btn--outline{background:transparent!important;border:1px solid;box-shadow:none}.v-btn.v-btn--outline:hover{box-shadow:none}.v-btn--block{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;margin:6px 0;width:100%}.v-btn--round,.v-btn--round:after{border-radius:28px}.v-btn .v-icon--right{margin-left:16px}.v-btn .v-icon--left{margin-right:16px}.v-btn:not(.v-btn--outline).accent,.v-btn:not(.v-btn--outline).error,.v-btn:not(.v-btn--outline).info,.v-btn:not(.v-btn--outline).primary,.v-btn:not(.v-btn--outline).secondary,.v-btn:not(.v-btn--outline).success,.v-btn:not(.v-btn--outline).warning{color:#fff}.v-progress-circular{display:-ms-inline-flexbox;display:inline-flex;position:relative;vertical-align:middle}.v-progress-circular svg{bottom:0;height:100%;left:0;margin:auto;position:absolute;right:0;top:0;width:100%;z-index:0}.v-progress-circular--indeterminate svg{-webkit-animation:progress-circular-rotate 1.4s linear infinite;-webkit-transform-origin:center center;animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite;stroke-dasharray:80,200;stroke-dashoffset:0px;stroke-linecap:round}.v-progress-circular__underlay{stroke:rgba(0,0,0,.1);z-index:1}.v-progress-circular__overlay{stroke:currentColor;transition:all .6s ease-in-out;z-index:2}.v-progress-circular__info{-webkit-transform:translate(-50%,-50%);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@keyframes progress-circular-rotate{to{transform:rotate(1turn)}}.theme--light.v-btn-toggle{background:#fff}.theme--light.v-btn-toggle .v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:rgba(0,0,0,.26)}.theme--dark.v-btn-toggle{background:#424242}.theme--dark.v-btn-toggle .v-btn{color:#fff}.theme--dark.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:hsla(0,0%,100%,.3)}.v-btn-toggle{border-radius:2px;display:-ms-inline-flexbox;display:inline-flex;transition:.3s cubic-bezier(.25,.8,.5,1);will-change:background,box-shadow}.v-btn-toggle .v-btn{border-radius:0;-ms-flex-pack:center;justify-content:center;margin:0;min-width:auto;opacity:.4;padding:0 8px;width:auto}.v-btn-toggle .v-btn:not(:last-child){border-right:1px solid transparent}.v-btn-toggle .v-btn:after{display:none}.v-btn-toggle .v-btn.v-btn--active{opacity:1}.v-btn-toggle .v-btn span+.v-icon{font-size:medium;margin-left:10px}.v-btn-toggle .v-btn:first-child{border-radius:2px 0 0 2px}.v-btn-toggle .v-btn:last-child{border-radius:0 2px 2px 0}.v-btn-toggle--selected{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-image{z-index:0}.v-image__image,.v-image__placeholder{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.v-image__image{background-repeat:no-repeat}.v-image__image--preload{filter:blur(2px)}.v-image__image--contain{background-size:contain}.v-image__image--cover{background-size:cover}.v-responsive{display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;overflow:hidden;position:relative}.v-responsive__content{-ms-flex:1 0 0px;flex:1 0 0px}.v-responsive__sizer{-ms-flex:0 0 0px;flex:0 0 0px;transition:padding-bottom .2s cubic-bezier(.25,.8,.5,1)}.application--is-rtl .v-carousel__prev{left:auto;right:5px}.application--is-rtl .v-carousel__next{left:5px;right:auto}.v-carousel{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);height:500px;overflow:hidden;position:relative;width:100%}.v-carousel__item{position:absolute;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-carousel__next,.v-carousel__prev{-webkit-transform:translateY(-50%);position:absolute;top:50%;transform:translateY(-50%);z-index:1}.v-carousel__next .v-btn,.v-carousel__prev .v-btn{height:auto;margin:0;width:auto}.v-carousel__next .v-btn i,.v-carousel__prev .v-btn i{font-size:48px}.v-carousel__next .v-btn:hover,.v-carousel__prev .v-btn:hover{background:none}.v-carousel__prev{left:5px}.v-carousel__next{right:5px}.v-carousel__controls{-ms-flex-align:center;align-items:center;background:rgba(0,0,0,.5);bottom:0;display:-ms-flexbox;display:flex;height:50px;-ms-flex-pack:center;justify-content:center;left:0;list-style-type:none;position:absolute;width:100%;z-index:1}.v-carousel__controls__item{margin:0 8px!important}.v-carousel__controls__item .v-icon{opacity:.5;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-carousel__controls__item--active .v-icon{opacity:1;vertical-align:middle}.v-carousel__controls__item:hover{background:none}.v-carousel__controls__item:hover .v-icon{opacity:.8}.theme--light.v-data-iterator .v-data-iterator__actions{color:rgba(0,0,0,.54)}.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:rgba(0,0,0,.54)!important}.theme--dark.v-data-iterator .v-data-iterator__actions{color:hsla(0,0%,100%,.7)}.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:hsla(0,0%,100%,.7)!important}.v-data-iterator__actions{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-ms-flex-pack:end;justify-content:flex-end}.v-data-iterator__actions .v-btn{color:inherit}.v-data-iterator__actions .v-btn:last-of-type{margin-left:14px}.v-data-iterator__actions__range-controls{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;min-height:48px}.v-data-iterator__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-data-iterator__actions__select{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin-right:14px}.v-data-iterator__actions__select .v-select{margin:13px 0 13px 34px;padding:0;position:static}.v-data-iterator__actions__select .v-select .v-select__selection--comma{font-size:12px}.theme--light.v-overflow-btn .v-input__control:before,.theme--light.v-overflow-btn .v-input__slot:before{background-color:rgba(0,0,0,.12)!important}.theme--light.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--light.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--light.v-overflow-btn--editable:hover .v-input__append-inner,.theme--light.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid rgba(0,0,0,.12)}.theme--light.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--light.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--light.v-overflow-btn:hover .v-input__slot{background:#fff}.theme--dark.v-overflow-btn .v-input__control:before,.theme--dark.v-overflow-btn .v-input__slot:before{background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--dark.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--dark.v-overflow-btn--editable:hover .v-input__append-inner,.theme--dark.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--dark.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--dark.v-overflow-btn:hover .v-input__slot{background:#424242}.v-overflow-btn{margin-top:12px}.v-overflow-btn:not(.v-overflow-btn--editable)>.v-input__control>.v-input__slot{cursor:pointer}.v-overflow-btn .v-select__slot{height:48px}.v-overflow-btn .v-select__selection--comma:first-child,.v-overflow-btn .v-select__slot input{margin-left:16px}.v-overflow-btn .v-input__slot{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-overflow-btn .v-input__slot:after{content:none}.v-overflow-btn .v-label{margin-left:16px;top:calc(50% - 10px)}.v-overflow-btn .v-input__append-inner{-ms-flex-align:center;align-items:center;-ms-flex-item-align:auto;align-self:auto;-ms-flex-negative:0;flex-shrink:0;height:48px;margin-top:0;padding:0;width:48px}.v-overflow-btn .v-input__append-outer,.v-overflow-btn .v-input__prepend-outer{margin-bottom:12px;margin-top:12px}.v-overflow-btn .v-input__control:before{content:"";height:1px;left:0;position:absolute;top:-1px;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-overflow-btn.v-input--is-focused .v-input__slot,.v-overflow-btn.v-select--is-menu-active .v-input__slot{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-overflow-btn .v-select__selections{width:0}.v-overflow-btn--segmented .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-overflow-btn--segmented .v-select__selections .v-btn{border-radius:0;height:48px;margin:0 -16px 0 0;width:100%}.v-overflow-btn--segmented .v-select__selections .v-btn__content{-ms-flex-pack:start;justify-content:start}.v-overflow-btn--segmented .v-select__selections .v-btn__content:before{background-color:transparent}.v-overflow-btn--editable .v-input__append-inner,.v-overflow-btn--editable .v-input__append-inner *{cursor:pointer}.theme--light.v-table{background-color:#fff;color:rgba(0,0,0,.87)}.theme--light.v-table thead tr:first-child{border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table thead th{color:rgba(0,0,0,.54)}.theme--light.v-table tbody tr:not(:last-child){border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table tbody tr[active]{background:#f5f5f5}.theme--light.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#eee}.theme--light.v-table tfoot tr{border-top:1px solid rgba(0,0,0,.12)}.theme--dark.v-table{background-color:#424242;color:#fff}.theme--dark.v-table thead tr:first-child{border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table thead th{color:hsla(0,0%,100%,.7)}.theme--dark.v-table tbody tr:not(:last-child){border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table tbody tr[active]{background:#505050}.theme--dark.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#616161}.theme--dark.v-table tfoot tr{border-top:1px solid hsla(0,0%,100%,.12)}.v-table__overflow{overflow-x:auto;overflow-y:hidden;width:100%}table.v-table{border-collapse:collapse;border-radius:2px;border-spacing:0;max-width:100%;width:100%}table.v-table tbody td:first-child,table.v-table tbody td:not(:first-child),table.v-table tbody th:first-child,table.v-table tbody th:not(:first-child),table.v-table thead td:first-child,table.v-table thead td:not(:first-child),table.v-table thead th:first-child,table.v-table thead th:not(:first-child){padding:0 24px}table.v-table thead tr{height:56px}table.v-table thead th{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;font-size:12px;font-weight:500;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:nowrap}table.v-table thead th.sortable{pointer-events:auto}table.v-table thead th>div{width:100%}table.v-table tbody tr{transition:background .3s cubic-bezier(.25,.8,.5,1);will-change:background}table.v-table tbody td,table.v-table tbody th{height:48px}table.v-table tbody td{font-size:13px;font-weight:400}table.v-table .input-group--selection-controls{padding:0}table.v-table .input-group--selection-controls .input-group__details{display:none}table.v-table .input-group--selection-controls.checkbox .v-icon{-webkit-transform:translateX(-50%);left:50%;transform:translateX(-50%)}table.v-table .input-group--selection-controls.checkbox .input-group--selection-controls__ripple{-webkit-transform:translate(-50%,-50%);left:50%;transform:translate(-50%,-50%)}table.v-table tfoot tr{height:48px}table.v-table tfoot tr td{padding:0 24px}.theme--light.v-datatable thead th.column.sortable i{color:rgba(0,0,0,.38)}.theme--light.v-datatable thead th.column.sortable.active,.theme--light.v-datatable thead th.column.sortable.active i,.theme--light.v-datatable thead th.column.sortable:hover{color:rgba(0,0,0,.87)}.theme--light.v-datatable .v-datatable__actions{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.54)}.theme--dark.v-datatable thead th.column.sortable i{color:hsla(0,0%,100%,.5)}.theme--dark.v-datatable thead th.column.sortable.active,.theme--dark.v-datatable thead th.column.sortable.active i,.theme--dark.v-datatable thead th.column.sortable:hover{color:#fff}.theme--dark.v-datatable .v-datatable__actions{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:hsla(0,0%,100%,.7)}.v-datatable .v-input--selection-controls{margin:0}.v-datatable thead th.column.sortable{cursor:pointer;outline:0}.v-datatable thead th.column.sortable i{display:inline-block;font-size:16px;opacity:0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-datatable thead th.column.sortable:focus i,.v-datatable thead th.column.sortable:hover i{opacity:.6}.v-datatable thead th.column.sortable.active{transform:none}.v-datatable thead th.column.sortable.active i{opacity:1}.v-datatable thead th.column.sortable.active.desc i{transform:rotate(-180deg)}.v-datatable__actions{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-ms-flex-pack:end;justify-content:flex-end}.v-datatable__actions .v-btn{color:inherit}.v-datatable__actions .v-btn:last-of-type{margin-left:14px}.v-datatable__actions__range-controls{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;min-height:48px}.v-datatable__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-datatable__actions__select{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;margin-right:14px;white-space:nowrap}.v-datatable__actions__select .v-select{-ms-flex:0 1 0px;flex:0 1 0;margin:13px 0 13px 34px;padding:0;position:static}.v-datatable__actions__select .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-datatable__actions__select .v-select__selections .v-select__selection--comma{font-size:12px}.v-datatable__progress,.v-datatable__progress td,.v-datatable__progress th,.v-datatable__progress tr{height:auto!important}.v-datatable__progress th{padding:0!important}.v-datatable__progress th .v-progress-linear{margin:0}.v-datatable__expand-row{border:none!important}.v-datatable__expand-col{height:0!important;padding:0!important}.v-datatable__expand-col--expanded{border-bottom:1px solid rgba(0,0,0,.12)}.v-datatable__expand-content{transition:height .3s cubic-bezier(.25,.8,.5,1)}.v-datatable__expand-content>.card{border-radius:0;box-shadow:none}.theme--light.v-small-dialog a{color:rgba(0,0,0,.87)}.theme--dark.v-small-dialog a{color:#fff}.theme--light.v-small-dialog__content{background:#fff}.theme--dark.v-small-dialog__content{background:#424242}.theme--light.v-small-dialog__actions{background:#fff}.theme--dark.v-small-dialog__actions{background:#424242}.v-small-dialog{display:block;height:100%;width:100%}.v-small-dialog__content{padding:0 24px}.v-small-dialog__actions{text-align:right;white-space:pre}.v-small-dialog a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;text-decoration:none}.v-small-dialog a>*{width:100%}.v-small-dialog .v-menu__activator{height:100%}.application--is-rtl .v-date-picker-title .v-picker__title__btn{text-align:right}.v-date-picker-title{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;line-height:1}.v-date-picker-title__year{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-size:14px;font-weight:500;margin-bottom:8px}.v-date-picker-title__date{font-size:34px;font-weight:500;overflow:hidden;position:relative;text-align:left}.v-date-picker-title__date>div{position:relative}.theme--light.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:rgba(0,0,0,.87)!important}.theme--light.v-date-picker-header .v-date-picker-header__value--disabled strong{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:#fff!important}.theme--dark.v-date-picker-header .v-date-picker-header__value--disabled strong{color:hsla(0,0%,100%,.5)}.v-date-picker-header{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:4px 16px;position:relative}.v-date-picker-header .v-btn{margin:0;z-index:auto}.v-date-picker-header .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-date-picker-header__value{-ms-flex:1;flex:1;overflow:hidden;position:relative;text-align:center}.v-date-picker-header__value strong{cursor:pointer;display:block;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.theme--light.v-date-picker-table th{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-table th{color:hsla(0,0%,100%,.5)}.v-date-picker-table{height:242px;padding:0 12px;position:relative}.v-date-picker-table table{table-layout:fixed;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-date-picker-table td,.v-date-picker-table th{position:relative;text-align:center}.v-date-picker-table th{font-size:12px}.v-date-picker-table--date .v-btn{height:32px;width:32px}.v-date-picker-table .v-btn{font-size:12px;margin:0;z-index:auto}.v-date-picker-table .v-btn.v-btn--active{color:#fff}.v-date-picker-table--month td{height:56px;text-align:center;vertical-align:middle;width:33.333333%}.v-date-picker-table--month td .v-btn{margin:0 auto;max-width:160px;min-width:40px;width:100%}.v-date-picker-table--date th{font-weight:600;padding:8px 0}.v-date-picker-table--date td{width:45px}.v-date-picker-table__event{-webkit-transform:translateX(-4px);border-radius:50%;bottom:2px;content:"";display:block;height:8px;left:50%;position:absolute;transform:translateX(-4px);width:8px}.v-date-picker-years{font-size:16px;font-weight:400;height:286px;list-style-type:none;overflow:auto;padding:0;text-align:center}.v-date-picker-years li{cursor:pointer;padding:8px 0;transition:none}.v-date-picker-years li.active{font-size:26px;font-weight:500;padding:10px 0}.v-date-picker-years li:hover{background:rgba(0,0,0,.12)}.v-picker--landscape .v-date-picker-years{height:286px}.theme--light.v-picker__title{background:#e0e0e0}.theme--dark.v-picker__title{background:#616161}.theme--light.v-picker__body{background:#fff}.theme--dark.v-picker__body{background:#424242}.v-picker{border-radius:2px;contain:layout style;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;vertical-align:top}.v-picker--full-width{display:-ms-flexbox;display:flex}.v-picker__title{border-top-left-radius:2px;border-top-right-radius:2px;color:#fff;padding:16px}.v-picker__title__btn{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-picker__title__btn:not(.active){cursor:pointer;opacity:.6}.v-picker__title__btn:not(.active):hover{opacity:1}.v-picker__title__btn--readonly{pointer-events:none}.v-picker__title__btn--active{opacity:1}.v-picker__body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden;position:relative;z-index:0}.v-picker__body>div{width:100%}.v-picker__body>div.fade-transition-leave-active{position:absolute}.v-picker--landscape .v-picker__title{border-bottom-right-radius:0;border-top-right-radius:0;height:100%;left:0;position:absolute;top:0;width:170px;z-index:1}.v-picker--landscape .v-picker__actions,.v-picker--landscape .v-picker__body{margin-left:170px}.theme--light.v-expansion-panel .v-expansion-panel__container{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.87)}.theme--light.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-expansion-panel .v-expansion-panel__container--disabled{color:rgba(0,0,0,.38)}.theme--light.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#eee}.theme--dark.v-expansion-panel .v-expansion-panel__container{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#494949}.v-expansion-panel{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;list-style-type:none;padding:0;text-align:left;width:100%}.v-expansion-panel__container{-ms-flex:1 0 100%;flex:1 0 100%;max-width:100%;outline:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__container:first-child{border-top:none!important}.v-expansion-panel__container .v-expansion-panel__header__iconnel__header__icon{margin-left:auto}.v-expansion-panel__container--disabled .v-expansion-panel__header{pointer-events:none}.v-expansion-panel__container--active>.v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{transform:rotate(-180deg)}.v-expansion-panel__header{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex;min-height:48px;padding:12px 24px;position:relative}.v-expansion-panel__header>:not(.v-expansion-panel__header__icon){-ms-flex:1 1 auto;flex:1 1 auto}.v-expansion-panel__body{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__body .v-card{border-radius:0}.v-expansion-panel--inset,.v-expansion-panel--popout,.v-expansion-panel__body .v-card{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-expansion-panel--inset .v-expansion-panel__container--active,.v-expansion-panel--popout .v-expansion-panel__container--active{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);margin:16px}.v-expansion-panel--inset .v-expansion-panel__container,.v-expansion-panel--popout .v-expansion-panel__container{max-width:95%}.v-expansion-panel--popout .v-expansion-panel__container--active{max-width:100%}.v-expansion-panel--inset .v-expansion-panel__container--active{max-width:85%}.theme--light.v-footer{background:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-footer{background:#212121;color:#fff}.v-footer{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 1 auto!important;flex:0 1 auto!important;min-height:36px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-footer--absolute,.v-footer--fixed{bottom:0;left:0;width:100%;z-index:3}.v-footer--inset{z-index:2}.v-footer--absolute{position:absolute}.v-footer--fixed{position:fixed}.v-form>.container{padding:16px}.v-form>.container>.layout>.flex{padding:8px}.v-form>.container>.layout:only-child{margin:-8px}.v-form>.container>.layout:not(:only-child){margin:auto -8px}.container{-ms-flex:1 1 100%;flex:1 1 100%;margin:auto;padding:24px;width:100%}.container.fluid{max-width:100%}.container.fill-height{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}.container.fill-height>.layout{-ms-flex:1 1 auto;flex:1 1 auto;height:100%}.container.grid-list-xs .layout .flex{padding:1px}.container.grid-list-xs .layout:only-child{margin:-1px}.container.grid-list-xs .layout:not(:only-child){margin:auto -1px}.container.grid-list-xs :not(:only-child) .layout:first-child{margin-top:-1px}.container.grid-list-xs :not(:only-child) .layout:last-child{margin-bottom:-1px}.container.grid-list-sm .layout .flex{padding:2px}.container.grid-list-sm .layout:only-child{margin:-2px}.container.grid-list-sm .layout:not(:only-child){margin:auto -2px}.container.grid-list-sm :not(:only-child) .layout:first-child{margin-top:-2px}.container.grid-list-sm :not(:only-child) .layout:last-child{margin-bottom:-2px}.container.grid-list-md .layout .flex{padding:4px}.container.grid-list-md .layout:only-child{margin:-4px}.container.grid-list-md .layout:not(:only-child){margin:auto -4px}.container.grid-list-md :not(:only-child) .layout:first-child{margin-top:-4px}.container.grid-list-md :not(:only-child) .layout:last-child{margin-bottom:-4px}.container.grid-list-lg .layout .flex{padding:8px}.container.grid-list-lg .layout:only-child{margin:-8px}.container.grid-list-lg .layout:not(:only-child){margin:auto -8px}.container.grid-list-lg :not(:only-child) .layout:first-child{margin-top:-8px}.container.grid-list-lg :not(:only-child) .layout:last-child{margin-bottom:-8px}.container.grid-list-xl .layout .flex{padding:12px}.container.grid-list-xl .layout:only-child{margin:-12px}.container.grid-list-xl .layout:not(:only-child){margin:auto -12px}.container.grid-list-xl :not(:only-child) .layout:first-child{margin-top:-12px}.container.grid-list-xl :not(:only-child) .layout:last-child{margin-bottom:-12px}.layout{display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:nowrap;flex-wrap:nowrap;min-width:0}.layout.row{-ms-flex-direction:row;flex-direction:row}.layout.row.reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.layout.column{-ms-flex-direction:column;flex-direction:column}.layout.column.reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.layout.column>.flex{max-width:100%}.layout.wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.child-flex>*,.flex{-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.align-start{-ms-flex-align:start;align-items:flex-start}.align-end{-ms-flex-align:end;align-items:flex-end}.align-center{-ms-flex-align:center;align-items:center}.align-baseline{-ms-flex-align:baseline;align-items:baseline}.align-self-start{-ms-flex-item-align:start;align-self:flex-start}.align-self-end{-ms-flex-item-align:end;align-self:flex-end}.align-self-center{-ms-flex-item-align:center;align-self:center}.align-self-baseline{-ms-flex-item-align:baseline;align-self:baseline}.align-content-start{-ms-flex-line-pack:start;align-content:flex-start}.align-content-end{-ms-flex-line-pack:end;align-content:flex-end}.align-content-center{-ms-flex-line-pack:center;align-content:center}.align-content-space-between{-ms-flex-line-pack:justify;align-content:space-between}.align-content-space-around{-ms-flex-line-pack:distribute;align-content:space-around}.justify-start{-ms-flex-pack:start;justify-content:flex-start}.justify-end{-ms-flex-pack:end;justify-content:flex-end}.justify-center{-ms-flex-pack:center;justify-content:center}.justify-space-around{-ms-flex-pack:distribute;justify-content:space-around}.justify-space-between{-ms-flex-pack:justify;justify-content:space-between}.justify-self-start{justify-self:flex-start}.justify-self-end{justify-self:flex-end}.justify-self-center{justify-self:center}.justify-self-baseline{justify-self:baseline}.grow,.spacer{-ms-flex-positive:1!important;flex-grow:1!important}.grow{-ms-flex-negative:0!important;flex-shrink:0!important}.shrink{-ms-flex-positive:0!important;flex-grow:0!important;-ms-flex-negative:1!important;flex-shrink:1!important}.scroll-y{overflow-y:auto}.fill-height{height:100%}.hide-overflow{overflow:hidden!important}.show-overflow{overflow:visible!important}.ellipsis,.no-wrap{white-space:nowrap}.ellipsis{overflow:hidden;text-overflow:ellipsis}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}.d-flex>*,.d-inline-flex>*{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.d-block{display:block!important}.d-inline-block{display:inline-block!important}.d-inline{display:inline!important}@media only screen and (min-width:960px){.container{max-width:900px}}@media only screen and (min-width:1264px){.container{max-width:1185px}}@media only screen and (min-width:1904px){.container{max-width:1785px}}@media only screen and (max-width:959px){.container{padding:16px}}@media (min-width:0){.flex.xs1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xs1{-ms-flex-order:1;order:1}.flex.xs2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xs2{-ms-flex-order:2;order:2}.flex.xs3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xs3{-ms-flex-order:3;order:3}.flex.xs4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xs4{-ms-flex-order:4;order:4}.flex.xs5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xs5{-ms-flex-order:5;order:5}.flex.xs6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xs6{-ms-flex-order:6;order:6}.flex.xs7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xs7{-ms-flex-order:7;order:7}.flex.xs8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xs8{-ms-flex-order:8;order:8}.flex.xs9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xs9{-ms-flex-order:9;order:9}.flex.xs10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xs10{-ms-flex-order:10;order:10}.flex.xs11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xs11{-ms-flex-order:11;order:11}.flex.xs12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xs12{-ms-flex-order:12;order:12}.flex.offset-xs0{margin-left:0}.flex.offset-xs1{margin-left:8.333333333333332%}.flex.offset-xs2{margin-left:16.666666666666664%}.flex.offset-xs3{margin-left:25%}.flex.offset-xs4{margin-left:33.33333333333333%}.flex.offset-xs5{margin-left:41.66666666666667%}.flex.offset-xs6{margin-left:50%}.flex.offset-xs7{margin-left:58.333333333333336%}.flex.offset-xs8{margin-left:66.66666666666666%}.flex.offset-xs9{margin-left:75%}.flex.offset-xs10{margin-left:83.33333333333334%}.flex.offset-xs11{margin-left:91.66666666666666%}.flex.offset-xs12{margin-left:100%}}@media (min-width:600px){.flex.sm1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-sm1{-ms-flex-order:1;order:1}.flex.sm2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-sm2{-ms-flex-order:2;order:2}.flex.sm3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-sm3{-ms-flex-order:3;order:3}.flex.sm4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-sm4{-ms-flex-order:4;order:4}.flex.sm5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-sm5{-ms-flex-order:5;order:5}.flex.sm6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-sm6{-ms-flex-order:6;order:6}.flex.sm7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-sm7{-ms-flex-order:7;order:7}.flex.sm8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-sm8{-ms-flex-order:8;order:8}.flex.sm9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-sm9{-ms-flex-order:9;order:9}.flex.sm10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-sm10{-ms-flex-order:10;order:10}.flex.sm11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-sm11{-ms-flex-order:11;order:11}.flex.sm12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-sm12{-ms-flex-order:12;order:12}.flex.offset-sm0{margin-left:0}.flex.offset-sm1{margin-left:8.333333333333332%}.flex.offset-sm2{margin-left:16.666666666666664%}.flex.offset-sm3{margin-left:25%}.flex.offset-sm4{margin-left:33.33333333333333%}.flex.offset-sm5{margin-left:41.66666666666667%}.flex.offset-sm6{margin-left:50%}.flex.offset-sm7{margin-left:58.333333333333336%}.flex.offset-sm8{margin-left:66.66666666666666%}.flex.offset-sm9{margin-left:75%}.flex.offset-sm10{margin-left:83.33333333333334%}.flex.offset-sm11{margin-left:91.66666666666666%}.flex.offset-sm12{margin-left:100%}}@media (min-width:960px){.flex.md1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-md1{-ms-flex-order:1;order:1}.flex.md2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-md2{-ms-flex-order:2;order:2}.flex.md3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-md3{-ms-flex-order:3;order:3}.flex.md4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-md4{-ms-flex-order:4;order:4}.flex.md5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-md5{-ms-flex-order:5;order:5}.flex.md6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-md6{-ms-flex-order:6;order:6}.flex.md7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-md7{-ms-flex-order:7;order:7}.flex.md8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-md8{-ms-flex-order:8;order:8}.flex.md9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-md9{-ms-flex-order:9;order:9}.flex.md10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-md10{-ms-flex-order:10;order:10}.flex.md11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-md11{-ms-flex-order:11;order:11}.flex.md12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-md12{-ms-flex-order:12;order:12}.flex.offset-md0{margin-left:0}.flex.offset-md1{margin-left:8.333333333333332%}.flex.offset-md2{margin-left:16.666666666666664%}.flex.offset-md3{margin-left:25%}.flex.offset-md4{margin-left:33.33333333333333%}.flex.offset-md5{margin-left:41.66666666666667%}.flex.offset-md6{margin-left:50%}.flex.offset-md7{margin-left:58.333333333333336%}.flex.offset-md8{margin-left:66.66666666666666%}.flex.offset-md9{margin-left:75%}.flex.offset-md10{margin-left:83.33333333333334%}.flex.offset-md11{margin-left:91.66666666666666%}.flex.offset-md12{margin-left:100%}}@media (min-width:1264px){.flex.lg1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-lg1{-ms-flex-order:1;order:1}.flex.lg2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-lg2{-ms-flex-order:2;order:2}.flex.lg3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-lg3{-ms-flex-order:3;order:3}.flex.lg4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-lg4{-ms-flex-order:4;order:4}.flex.lg5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-lg5{-ms-flex-order:5;order:5}.flex.lg6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-lg6{-ms-flex-order:6;order:6}.flex.lg7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-lg7{-ms-flex-order:7;order:7}.flex.lg8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-lg8{-ms-flex-order:8;order:8}.flex.lg9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-lg9{-ms-flex-order:9;order:9}.flex.lg10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-lg10{-ms-flex-order:10;order:10}.flex.lg11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-lg11{-ms-flex-order:11;order:11}.flex.lg12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-lg12{-ms-flex-order:12;order:12}.flex.offset-lg0{margin-left:0}.flex.offset-lg1{margin-left:8.333333333333332%}.flex.offset-lg2{margin-left:16.666666666666664%}.flex.offset-lg3{margin-left:25%}.flex.offset-lg4{margin-left:33.33333333333333%}.flex.offset-lg5{margin-left:41.66666666666667%}.flex.offset-lg6{margin-left:50%}.flex.offset-lg7{margin-left:58.333333333333336%}.flex.offset-lg8{margin-left:66.66666666666666%}.flex.offset-lg9{margin-left:75%}.flex.offset-lg10{margin-left:83.33333333333334%}.flex.offset-lg11{margin-left:91.66666666666666%}.flex.offset-lg12{margin-left:100%}}@media (min-width:1904px){.flex.xl1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xl1{-ms-flex-order:1;order:1}.flex.xl2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xl2{-ms-flex-order:2;order:2}.flex.xl3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xl3{-ms-flex-order:3;order:3}.flex.xl4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xl4{-ms-flex-order:4;order:4}.flex.xl5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xl5{-ms-flex-order:5;order:5}.flex.xl6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xl6{-ms-flex-order:6;order:6}.flex.xl7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xl7{-ms-flex-order:7;order:7}.flex.xl8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xl8{-ms-flex-order:8;order:8}.flex.xl9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xl9{-ms-flex-order:9;order:9}.flex.xl10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xl10{-ms-flex-order:10;order:10}.flex.xl11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xl11{-ms-flex-order:11;order:11}.flex.xl12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xl12{-ms-flex-order:12;order:12}.flex.offset-xl0{margin-left:0}.flex.offset-xl1{margin-left:8.333333333333332%}.flex.offset-xl2{margin-left:16.666666666666664%}.flex.offset-xl3{margin-left:25%}.flex.offset-xl4{margin-left:33.33333333333333%}.flex.offset-xl5{margin-left:41.66666666666667%}.flex.offset-xl6{margin-left:50%}.flex.offset-xl7{margin-left:58.333333333333336%}.flex.offset-xl8{margin-left:66.66666666666666%}.flex.offset-xl9{margin-left:75%}.flex.offset-xl10{margin-left:83.33333333333334%}.flex.offset-xl11{margin-left:91.66666666666666%}.flex.offset-xl12{margin-left:100%}}.v-content{display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;transition:none}.v-content[data-booted=true]{transition:.2s cubic-bezier(.4,0,.2,1)}.v-content__wrap{-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%;position:relative}@media print{@-moz-document url-prefix(){.v-content{display:block}}}.theme--light.v-jumbotron .v-jumbotron__content{color:rgba(0,0,0,.87)}.theme--dark.v-jumbotron .v-jumbotron__content{color:#fff}.v-jumbotron{display:block;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-jumbotron__wrapper{height:100%;overflow:hidden;position:relative;transition:inherit;width:100%}.v-jumbotron__background{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;transition:inherit}.v-jumbotron__image{-webkit-transform:translate(-50%,-50%);left:50%;min-width:100%;position:absolute;top:50%;transform:translate(-50%,-50%);transition:inherit;will-change:transform}.v-jumbotron__content{height:100%;position:relative;transition:inherit}.theme--light.v-navigation-drawer{background-color:#fff}.theme--light.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:rgba(0,0,0,.12)}.theme--light.v-navigation-drawer .v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-navigation-drawer{background-color:#424242}.theme--dark.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:hsla(0,0%,100%,.12)}.theme--dark.v-navigation-drawer .v-divider{border-color:hsla(0,0%,100%,.12)}.v-navigation-drawer{-webkit-overflow-scrolling:touch;display:block;left:0;max-width:100%;overflow-x:hidden;overflow-y:auto;pointer-events:auto;top:0;transition:none;will-change:transform;z-index:3}.v-navigation-drawer[data-booted=true]{transition:.2s cubic-bezier(.4,0,.2,1);transition-property:transform,width}.v-navigation-drawer__border{height:100%;position:absolute;right:0;top:0;width:1px}.v-navigation-drawer.v-navigation-drawer--right:after{left:0;right:auto}.v-navigation-drawer--right{left:auto;right:0}.v-navigation-drawer--right>.v-navigation-drawer__border{left:0;right:auto}.v-navigation-drawer--absolute{position:absolute}.v-navigation-drawer--fixed{position:fixed}.v-navigation-drawer--floating:after{display:none}.v-navigation-drawer--mini-variant{overflow:hidden}.v-navigation-drawer--mini-variant .v-list__group__header__prepend-icon{-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-pack:center;justify-content:center;width:100%}.v-navigation-drawer--mini-variant .v-list__tile__action,.v-navigation-drawer--mini-variant .v-list__tile__avatar{-ms-flex-pack:center;justify-content:center;min-width:48px}.v-navigation-drawer--mini-variant .v-list__tile:after,.v-navigation-drawer--mini-variant .v-list__tile__content{opacity:0}.v-navigation-drawer--mini-variant .v-divider,.v-navigation-drawer--mini-variant .v-list--group,.v-navigation-drawer--mini-variant .v-subheader{display:none!important}.v-navigation-drawer--is-mobile,.v-navigation-drawer--temporary{z-index:6}.v-navigation-drawer--is-mobile:not(.v-navigation-drawer--close),.v-navigation-drawer--temporary:not(.v-navigation-drawer--close){box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.v-navigation-drawer .v-list{background:inherit}.v-navigation-drawer>.v-list .v-list__tile{font-weight:500;transition:none}.v-navigation-drawer>.v-list .v-list__tile--active .v-list__tile__title{color:inherit}.v-navigation-drawer>.v-list .v-list--group .v-list__tile{font-weight:400}.v-navigation-drawer>.v-list .v-list--group__header--active:after{background:transparent}.v-navigation-drawer>.v-list:not(.v-list--dense) .v-list__tile{font-size:14px}.theme--light.v-pagination .v-pagination__item{background:#fff;color:#000}.theme--light.v-pagination .v-pagination__item--active{color:#fff}.theme--light.v-pagination .v-pagination__navigation{background:#fff}.theme--light.v-pagination .v-pagination__navigation .v-icon{color:rgba(0,0,0,.54)}.theme--dark.v-pagination .v-pagination__item{background:#424242;color:#fff}.theme--dark.v-pagination .v-pagination__item--active{color:#fff}.theme--dark.v-pagination .v-pagination__navigation{background:#424242}.theme--dark.v-pagination .v-pagination__navigation .v-icon{color:#fff}.v-pagination{display:-ms-inline-flexbox;display:inline-flex;list-style-type:none;margin:0;max-width:100%;padding:0}.v-pagination,.v-pagination>li{-ms-flex-align:center;align-items:center}.v-pagination>li{display:-ms-flexbox;display:flex}.v-pagination--circle .v-pagination__item,.v-pagination--circle .v-pagination__more,.v-pagination--circle .v-pagination__navigation{border-radius:50%}.v-pagination--disabled{opacity:.6;pointer-events:none}.v-pagination__item{-ms-flex-align:center;align-items:center;background:transparent;border-radius:4px;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-ms-inline-flexbox;display:inline-flex;font-size:14px;height:34px;-ms-flex-pack:center;justify-content:center;margin:.3rem;text-decoration:none;transition:.3s cubic-bezier(0,0,.2,1);width:34px}.v-pagination__item--active{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-pagination__navigation{-ms-flex-align:center;align-items:center;border-radius:4px;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-ms-inline-flexbox;display:inline-flex;height:2rem;-ms-flex-pack:center;justify-content:center;margin:.3rem 10px;text-decoration:none;width:2rem}.v-pagination__navigation .v-icon{font-size:2rem;transition:.2s cubic-bezier(.4,0,.6,1);vertical-align:middle}.v-pagination__navigation--disabled{opacity:.6;pointer-events:none}.v-pagination__more{-ms-flex-align:end;align-items:flex-end;display:-ms-inline-flexbox;display:inline-flex;height:2rem;-ms-flex-pack:center;justify-content:center;margin:.3rem;width:2rem}.v-parallax{overflow:hidden;position:relative;z-index:0}.v-parallax__image-container{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;z-index:1}.v-parallax__image{-webkit-transform:translate(-50%);bottom:0;display:none;left:50%;min-height:100%;min-width:100%;position:absolute;transform:translate(-50%);transition:opacity .3s cubic-bezier(.25,.8,.5,1);will-change:transform;z-index:1}.v-parallax__content{color:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;-ms-flex-pack:center;justify-content:center;padding:0 1rem;position:relative;z-index:2}.v-input--radio-group .v-radio{margin-bottom:8px}.v-input--radio-group__input{display:-ms-flexbox;display:flex;width:100%}.v-input--radio-group__input>.v-label{padding-bottom:8px}.v-input--radio-group--row .v-input--radio-group__input{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.v-input--radio-group--column .v-input--radio-group__input{-ms-flex-direction:column;flex-direction:column}.theme--light.v-radio--is-disabled label{color:rgba(0,0,0,.38)}.theme--light.v-radio--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-radio--is-disabled label{color:hsla(0,0%,100%,.5)}.theme--dark.v-radio--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.v-radio{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:auto;margin-right:16px;outline:none}.v-radio--is-disabled{pointer-events:none}.theme--light.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#bdbdbd}.theme--dark.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#424242}.v-input--range-slider.v-input--is-disabled .v-slider__track-fill{display:none}.v-input--range-slider.v-input--is-disabled.v-input--slider .v-slider.v-slider .v-slider__thumb{border-color:transparent}.theme--light.v-input--slider .v-slider__track,.theme--light.v-input--slider .v-slider__track-fill{background:rgba(0,0,0,.26)}.theme--light.v-input--slider .v-slider__track__container:after{border:1px solid rgba(0,0,0,.87)}.theme--light.v-input--slider .v-slider__ticks{border-color:rgba(0,0,0,.87);color:rgba(0,0,0,.54)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid rgba(0,0,0,.38)}.theme--light.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--slider--is-active .v-slider__track{background:rgba(0,0,0,.38)}.theme--dark.v-input--slider .v-slider__track,.theme--dark.v-input--slider .v-slider__track-fill{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider .v-slider__track__container:after{border:1px solid #fff}.theme--dark.v-input--slider .v-slider__ticks{border-color:#fff;color:hsla(0,0%,100%,.7)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid hsla(0,0%,100%,.3)}.theme--dark.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--slider--is-active .v-slider__track{background:hsla(0,0%,100%,.3)}.application--is-rtl .v-input--slider .v-label{margin-left:16px;margin-right:0}.v-input--slider{margin-top:16px}.v-input--slider.v-input--is-focused .v-slider__thumb-container--is-active:not(.v-slider__thumb-container--show-label):before{-webkit-transform:scale(1);opacity:.2;transform:scale(1)}.v-input--slider.v-input--is-focused .v-slider__track{transition:none}.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider .v-slider__tick,.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider__track__container:after,.v-input--slider.v-input--slider--ticks .v-slider__ticks.v-slider__ticks--always-show{opacity:1}.v-input--slider.v-input--slider--ticks-labels .v-input__slot{margin-bottom:16px}.v-input--slider.v-input--is-readonly{pointer-events:none}.v-input--slider.v-input--is-disabled .v-slider__thumb{transform:translateY(-50%) scale(.45)}.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{border:0 solid transparent}.v-input--slider .v-input__slot>:first-child:not(:only-child){margin-right:16px}.v-slider{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;cursor:default;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;height:32px;outline:none;position:relative;user-select:none}.v-slider input{cursor:default;opacity:0;padding:0;width:100%}.v-slider__track__container{-webkit-transform:translateY(-50%);height:2px;left:0;overflow:hidden;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__track__container:after{content:"";height:2px;opacity:0;position:absolute;right:0;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:2px}.v-slider__thumb,.v-slider__ticks,.v-slider__track{position:absolute;top:0}.v-slider__track{-webkit-transform-origin:right;overflow:hidden;transform-origin:right}.v-slider__track,.v-slider__track-fill{height:2px;left:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-slider__track-fill{-webkit-transform-origin:left;position:absolute;transform-origin:left}.v-slider__ticks-container{-webkit-transform:translateY(-50%);height:2px;left:0;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__ticks{border-style:solid;opacity:0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__ticks>span{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateX(-50%);-webkit-user-select:none;position:absolute;top:8px;transform:translateX(-50%);user-select:none;white-space:nowrap}.v-slider__ticks:first-child>span{transform:translateX(0)}.v-slider__ticks:last-child>span{transform:translateX(-100%)}.v-slider:not(.v-input--is-dirty) .v-slider__ticks:first-child{border-color:transparent}.v-slider__thumb-container{position:absolute;top:50%;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__thumb-container:before{-webkit-transform:scale(.2);background:currentColor;border-radius:50%;color:inherit;content:"";height:32px;left:-16px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;top:-16px;transform:scale(.2);transition:.4s cubic-bezier(0,0,.2,1);width:32px;will-change:transform,opacity}.v-slider__thumb{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-50%) scale(.6);-webkit-user-select:none;background:transparent;border-radius:50%;height:24px;left:-12px;top:50%;transform:translateY(-50%) scale(.6);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;width:24px}.v-slider--is-active .v-slider__thumb-container--is-active .v-slider__thumb{transform:translateY(-50%) scale(1)}.v-slider--is-active .v-slider__thumb-container--is-active.v-slider__thumb-container--show-label .v-slider__thumb{transform:translateY(-50%) scale(0)}.v-slider--is-active .v-slider__ticks-container .v-slider__ticks{opacity:1}.v-slider__thumb-label__container{top:0}.v-slider__thumb-label,.v-slider__thumb-label__container{left:0;position:absolute;transition:.3s cubic-bezier(.25,.8,.25,1)}.v-slider__thumb-label{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);-webkit-user-select:none;-ms-flex-align:center;align-items:center;border-radius:50% 50% 0;bottom:100%;color:#fff;display:-ms-flexbox;display:flex;font-size:12px;height:32px;-ms-flex-pack:center;justify-content:center;transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);user-select:none;width:32px}.v-slider__thumb-label>*{transform:rotate(-45deg)}.v-slider__track,.v-slider__track-fill{position:absolute}.v-rating .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:50%;padding:.5rem;user-select:none}.v-rating--readonly .v-icon{pointer-events:none}.v-rating--dense .v-icon{padding:.1rem}.v-snack{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-size:14px;left:0;pointer-events:none;position:fixed;right:0;z-index:1000}.v-snack--absolute{position:absolute}.v-snack--top{top:0}.v-snack--bottom{bottom:0}.v-snack__wrapper{background-color:#323232;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);pointer-events:auto}.v-snack__content,.v-snack__wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;width:100%}.v-snack__content{height:48px;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden;padding:14px 24px}.v-snack__content .v-btn{color:#fff;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;margin:0 0 0 24px;min-width:auto;padding:8px;width:auto}.v-snack__content .v-btn__content{margin:-2px}.v-snack__content .v-btn:before{display:none}.v-snack--multi-line .v-snack__content{height:80px;padding:24px}.v-snack--vertical .v-snack__content{-ms-flex-align:stretch;align-items:stretch;-ms-flex-direction:column;flex-direction:column;height:112px;padding:24px 24px 14px}.v-snack--vertical .v-snack__content .v-btn.v-btn{-ms-flex-pack:end;justify-content:flex-end;margin-left:0;margin-top:24px;padding:0}.v-snack--vertical .v-snack__content .v-btn__content{-ms-flex:0 0 auto;flex:0 0 auto;margin:0}.v-snack--auto-height .v-snack__content{height:auto}.v-snack-transition-enter-active,.v-snack-transition-leave-active{transition:transform .4s cubic-bezier(.25,.8,.5,1)}.v-snack-transition-enter-active .v-snack__content,.v-snack-transition-leave-active .v-snack__content{transition:opacity .3s linear .1s}.v-snack-transition-enter .v-snack__content{opacity:0}.v-snack-transition-enter-to .v-snack__content,.v-snack-transition-leave .v-snack__content{opacity:1}.v-snack-transition-enter.v-snack.v-snack--top,.v-snack-transition-leave-to.v-snack.v-snack--top{transform:translateY(calc(-100% - 8px))}.v-snack-transition-enter.v-snack.v-snack--bottom,.v-snack-transition-leave-to.v-snack.v-snack--bottom{transform:translateY(100%)}@media only screen and (min-width:600px){.v-snack__wrapper{border-radius:2px;margin:0 auto;max-width:568px;min-width:288px;width:auto}.v-snack--left .v-snack__wrapper{margin-left:0}.v-snack--right .v-snack__wrapper{margin-right:0}.v-snack--left,.v-snack--right{margin:0 24px}.v-snack--left.v-snack--top,.v-snack--right.v-snack--top{transform:translateY(24px)}.v-snack--left.v-snack--bottom,.v-snack--right.v-snack--bottom{transform:translateY(-24px)}.v-snack__content .v-btn:first-of-type{margin-left:42px}}.v-speed-dial{position:relative}.v-speed-dial--absolute{position:absolute}.v-speed-dial--fixed{position:fixed}.v-speed-dial--absolute,.v-speed-dial--fixed{z-index:4}.v-speed-dial--absolute>.v-btn--floating,.v-speed-dial--fixed>.v-btn--floating{margin:0}.v-speed-dial--top:not(.v-speed-dial--absolute){top:16px}.v-speed-dial--top.v-speed-dial--absolute{-webkit-transform:translateY(-50%);top:50%;transform:translateY(-50%)}.v-speed-dial--bottom:not(.v-speed-dial--absolute){bottom:16px}.v-speed-dial--bottom.v-speed-dial--absolute{-webkit-transform:translateY(50%);bottom:50%;transform:translateY(50%)}.v-speed-dial--left{left:16px}.v-speed-dial--right{right:16px}.v-speed-dial--direction-left .v-speed-dial__list,.v-speed-dial--direction-right .v-speed-dial__list{height:100%;top:0}.v-speed-dial--direction-bottom .v-speed-dial__list,.v-speed-dial--direction-top .v-speed-dial__list{left:0;width:100%}.v-speed-dial--direction-top .v-speed-dial__list{bottom:100%;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-speed-dial--direction-right .v-speed-dial__list{-ms-flex-direction:row;flex-direction:row;left:100%}.v-speed-dial--direction-bottom .v-speed-dial__list{-ms-flex-direction:column;flex-direction:column;top:100%}.v-speed-dial--direction-left .v-speed-dial__list{-ms-flex-direction:row-reverse;flex-direction:row-reverse;right:100%}.v-speed-dial__list{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;position:absolute}.v-speed-dial__list .v-btn:first-child{transition-delay:.05s}.v-speed-dial__list .v-btn:nth-child(2){transition-delay:.1s}.v-speed-dial__list .v-btn:nth-child(3){transition-delay:.15s}.v-speed-dial__list .v-btn:nth-child(4){transition-delay:.2s}.v-speed-dial__list .v-btn:nth-child(5){transition-delay:.25s}.v-speed-dial__list .v-btn:nth-child(6){transition-delay:.3s}.v-speed-dial__list .v-btn:nth-child(7){transition-delay:.35s}.theme--light.v-stepper{background:#fff}.theme--light.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:rgba(0,0,0,.38)}.theme--light.v-stepper .v-stepper__step__step,.theme--light.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--light.v-stepper .v-stepper__header .v-divider{border-color:rgba(0,0,0,.12)}.theme--light.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--editable:hover{background:rgba(0,0,0,.06)}.theme--light.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--complete .v-stepper__label{color:rgba(0,0,0,.87)}.theme--light.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:rgba(0,0,0,.54)}.theme--light.v-stepper .v-stepper__label{color:rgba(0,0,0,.38)}.theme--light.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--light.v-stepper .v-stepper__label small{color:rgba(0,0,0,.54)}.theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid rgba(0,0,0,.12)}.theme--dark.v-stepper{background:#303030}.theme--dark.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:hsla(0,0%,100%,.5)}.theme--dark.v-stepper .v-stepper__step__step,.theme--dark.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--dark.v-stepper .v-stepper__header .v-divider{border-color:hsla(0,0%,100%,.12)}.theme--dark.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--editable:hover{background:hsla(0,0%,100%,.06)}.theme--dark.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--complete .v-stepper__label{color:hsla(0,0%,100%,.87)}.theme--dark.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:hsla(0,0%,100%,.75)}.theme--dark.v-stepper .v-stepper__label{color:hsla(0,0%,100%,.5)}.theme--dark.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--dark.v-stepper .v-stepper__label small{color:hsla(0,0%,100%,.7)}.theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid hsla(0,0%,100%,.12)}.v-stepper{overflow:hidden;position:relative}.v-stepper,.v-stepper__header{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-stepper__header{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:72px;-ms-flex-pack:justify;justify-content:space-between}.v-stepper__header .v-divider{-ms-flex-item-align:center;align-self:center;margin:0 -16px}.v-stepper__items{overflow:hidden;position:relative}.v-stepper__step__step{-ms-flex-align:center;align-items:center;border-radius:50%;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;height:24px;-ms-flex-pack:center;justify-content:center;margin-right:8px;min-width:24px;transition:.3s cubic-bezier(.25,.8,.25,1);width:24px}.v-stepper__step__step .v-icon{font-size:18px}.v-stepper__step{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;padding:24px;position:relative}.v-stepper__step--active .v-stepper__label{transition:.3s cubic-bezier(.4,0,.6,1)}.v-stepper__step--editable{cursor:pointer}.v-stepper__step.v-stepper__step--error .v-stepper__step__step{background:transparent;color:inherit}.v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon{color:inherit;font-size:24px}.v-stepper__step.v-stepper__step--error .v-stepper__label{color:inherit;font-weight:500;text-shadow:none}.v-stepper__step.v-stepper__step--error .v-stepper__label small{color:inherit}.v-stepper__label{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;text-align:left}.v-stepper__label small{font-size:12px;font-weight:300;text-shadow:none}.v-stepper__wrapper{overflow:hidden;transition:none}.v-stepper__content{-ms-flex:1 0 auto;flex:1 0 auto;padding:24px 24px 16px;top:0;width:100%}.v-stepper__content>.v-btn{margin:24px 8px 8px 0}.v-stepper--is-booted .v-stepper__content,.v-stepper--is-booted .v-stepper__wrapper{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-stepper--vertical{padding-bottom:36px}.v-stepper--vertical .v-stepper__content{margin:-8px -36px -16px 36px;padding:16px 60px 16px 23px;width:auto}.v-stepper--vertical .v-stepper__step{padding:24px 24px 16px}.v-stepper--vertical .v-stepper__step__step{margin-right:12px}.v-stepper--alt-labels .v-stepper__header{height:auto}.v-stepper--alt-labels .v-stepper__header .v-divider{-ms-flex-item-align:start;align-self:flex-start;margin:35px -67px 0}.v-stepper--alt-labels .v-stepper__step{-ms-flex-align:center;align-items:center;-ms-flex-preferred-size:175px;flex-basis:175px;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:flex-start}.v-stepper--alt-labels .v-stepper__step small{-ms-flex-item-align:center;align-self:center}.v-stepper--alt-labels .v-stepper__step__step{margin-bottom:11px;margin-right:0}@media only screen and (max-width:959px){.v-stepper:not(.v-stepper--vertical) .v-stepper__label{display:none}.v-stepper:not(.v-stepper--vertical) .v-stepper__step__step{margin-right:0}}.theme--light.v-input--switch__thumb{color:#fafafa}.theme--light.v-input--switch__track{color:rgba(0,0,0,.38)}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#bdbdbd!important}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__track{color:rgba(0,0,0,.12)!important}.theme--dark.v-input--switch__thumb{color:#bdbdbd}.theme--dark.v-input--switch__track{color:hsla(0,0%,100%,.3)}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#424242!important}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__track{color:hsla(0,0%,100%,.1)!important}.application--is-rtl .v-input--switch .v-input--selection-controls__ripple{left:auto;right:-14px}.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--switch__thumb{transform:translate(-16px)}.v-input--switch__thumb,.v-input--switch__track{background-color:currentColor;pointer-events:none;transition:inherit}.v-input--switch__track{border-radius:8px;height:14px;left:2px;opacity:.6;position:absolute;right:2px;top:calc(50% - 7px)}.v-input--switch__thumb{border-radius:50%;box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);height:20px;position:relative;top:calc(50% - 10px);width:20px}.v-input--switch .v-input--selection-controls__input{width:38px}.v-input--switch .v-input--selection-controls__ripple{left:-14px;top:calc(50% - 24px)}.v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.v-input--switch.v-input--is-dirty .v-input--switch__thumb{transform:translate(16px)}.theme--light.v-system-bar{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.theme--light.v-system-bar .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-system-bar--lights-out{background-color:hsla(0,0%,100%,.7)!important}.theme--dark.v-system-bar{background-color:#000;color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar .v-icon{color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar--lights-out{background-color:rgba(0,0,0,.2)!important}.v-system-bar{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;padding:0 8px}.v-system-bar .v-icon{font-size:16px}.v-system-bar--absolute,.v-system-bar--fixed{left:0;top:0;width:100%;z-index:3}.v-system-bar--fixed{position:fixed}.v-system-bar--absolute{position:absolute}.v-system-bar--status .v-icon{margin-right:4px}.v-system-bar--window .v-icon{font-size:20px;margin-right:8px}.theme--light.v-tabs__bar{background-color:#fff}.theme--light.v-tabs__bar .v-tabs__div{color:rgba(0,0,0,.87)}.theme--light.v-tabs__bar .v-tabs__item--disabled{color:rgba(0,0,0,.26)}.theme--dark.v-tabs__bar{background-color:#424242}.theme--dark.v-tabs__bar .v-tabs__div{color:#fff}.theme--dark.v-tabs__bar .v-tabs__item--disabled{color:hsla(0,0%,100%,.3)}.v-tabs,.v-tabs__bar{position:relative}.v-tabs__icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;height:100%;position:absolute;top:0;user-select:none;width:32px}.v-tabs__icon--prev{left:4px}.v-tabs__icon--next{right:4px}.v-tabs__wrapper{contain:content;display:-ms-flexbox;display:flex;overflow:hidden}.v-tabs__wrapper--show-arrows{margin-left:40px;margin-right:40px}.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:16px}.v-tabs__container{display:-ms-flexbox;display:flex;height:48px;list-style-type:none;position:relative;transition:transform .6s cubic-bezier(.86,0,.07,1);white-space:nowrap}.v-tabs__container,.v-tabs__container--overflow .v-tabs__div{-ms-flex:1 0 auto;flex:1 0 auto}.v-tabs__container--grow .v-tabs__div{-ms-flex:1 0 auto;flex:1 0 auto;max-width:none}.v-tabs__container--icons-and-text{height:72px}.v-tabs__container--align-with-title{padding-left:56px}.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:72px}.v-tabs__container--centered .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--centered>.v-tabs__div:first-child,.v-tabs__container--fixed-tabs .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--fixed-tabs>.v-tabs__div:first-child,.v-tabs__container--right .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--right>.v-tabs__div:first-child{margin-left:auto}.v-tabs__container--centered>.v-tabs__div:last-child,.v-tabs__container--fixed-tabs>.v-tabs__div:last-child{margin-right:auto}.v-tabs__container--icons-and-text .v-tabs__item{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-tabs__container--icons-and-text .v-tabs__item .v-icon{margin-bottom:6px}.v-tabs__div{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 1 auto;flex:0 1 auto;font-size:14px;font-weight:500;height:inherit;line-height:normal;max-width:264px;text-align:center;text-transform:uppercase;vertical-align:middle}.v-tabs__item{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;-ms-flex-pack:center;justify-content:center;max-width:inherit;padding:6px 12px;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:normal}.v-tabs__item:not(.v-tabs__item--active){opacity:.7}.v-tabs__item--disabled{pointer-events:none}.v-tabs__slider{height:2px;width:100%}.v-tabs__slider-wrapper{bottom:0;margin:0!important;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-tabs__items{overflow:hidden;position:relative}.v-tabs__content{transition:transform .4s cubic-bezier(.86,0,.07,1);width:100%}@media only screen and (max-width:599px){.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:24px}.v-tabs__container--fixed-tabs .v-tabs__div{-ms-flex:1 0 auto;flex:1 0 auto}}@media only screen and (min-width:600px){.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:160px}}.theme--light.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:#fff}.theme--dark.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:rgba(0,0,0,.87)}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot{margin-left:-12px;margin-right:0}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-left:12px;padding-right:0}.v-textarea textarea{-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px;max-width:100%;min-height:32px;outline:none;padding:7px 0 8px;width:100%}.v-textarea .v-text-field__prefix{-ms-flex-item-align:start;align-self:start;padding-top:4px}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__slot textarea,.v-textarea.v-text-field--full-width .v-text-field__slot textarea{margin-top:0}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__details,.v-textarea.v-text-field--full-width .v-text-field__details{bottom:4px}.v-textarea.v-text-field--enclosed .v-text-field__slot{margin-right:-12px}.v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-right:12px}.v-textarea.v-text-field--box .v-text-field__prefix,.v-textarea.v-text-field--box textarea,.v-textarea.v-text-field--enclosed .v-text-field__prefix,.v-textarea.v-text-field--enclosed textarea{margin-top:24px}.v-textarea.v-text-field--box.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--single-line textarea,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--single-line textarea{margin-top:12px}.v-textarea.v-text-field--box.v-text-field--single-line .v-label,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-label{top:18px}.v-textarea.v-text-field--box.v-text-field--single-line.v-text-field--outline .v-input__control,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-text-field--outline .v-input__control{padding-top:0}.v-textarea.v-text-field--solo{-ms-flex-align:start;align-items:flex-start}.v-textarea.v-text-field--solo .v-input__append-inner,.v-textarea.v-text-field--solo .v-input__append-outer,.v-textarea.v-text-field--solo .v-input__prepend-inner,.v-textarea.v-text-field--solo .v-input__prepend-outer{-ms-flex-item-align:start;align-self:flex-start;margin-top:16px}.v-textarea--auto-grow textarea{overflow:hidden}.v-textarea--no-resize textarea{resize:none}.v-time-picker-title{color:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;line-height:1}.v-time-picker-title__time{white-space:nowrap}.v-time-picker-title__time .v-picker__title__btn,.v-time-picker-title__time span{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-size:70px;height:70px;-ms-flex-pack:center;justify-content:center}.v-time-picker-title__ampm{-ms-flex-item-align:end;align-self:flex-end;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font-size:16px;margin:8px 0 6px 8px;text-transform:uppercase}.v-time-picker-title__ampm div:only-child{-ms-flex-direction:row;flex-direction:row}.v-picker__title--landscape .v-time-picker-title{-ms-flex-direction:column;flex-direction:column;height:100%;-ms-flex-pack:center;justify-content:center}.v-picker__title--landscape .v-time-picker-title__time{text-align:right}.v-picker__title--landscape .v-time-picker-title__time .v-picker__title__btn,.v-picker__title--landscape .v-time-picker-title__time span{font-size:55px;height:55px}.v-picker__title--landscape .v-time-picker-title__ampm{-ms-flex-item-align:auto;align-self:auto;margin:16px 0 0;text-align:center}.theme--light.v-time-picker-clock{background:#e0e0e0}.theme--light.v-time-picker-clock>span.disabled{color:rgba(0,0,0,.26)}.theme--light.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate>span.active{background-color:#bdbdbd}.theme--dark.v-time-picker-clock{background:#616161}.theme--dark.v-time-picker-clock>span.disabled,.theme--dark.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#757575}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#757575}.theme--dark.v-time-picker-clock--indeterminate>span.active{background-color:#757575}.v-time-picker-clock{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:100%;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-time-picker-clock__container{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding:10px}.v-time-picker-clock__hand{-webkit-transform-origin:center bottom;bottom:50%;height:calc(50% - 28px);left:calc(50% - 1px);position:absolute;transform-origin:center bottom;width:2px;will-change:transform;z-index:1}.v-time-picker-clock__hand:before{background:transparent;border:2px solid;border-color:inherit;border-radius:100%;height:10px;top:-3%;width:10px}.v-time-picker-clock__hand:after,.v-time-picker-clock__hand:before{-webkit-transform:translate(-50%,-50%);content:"";left:50%;position:absolute;transform:translate(-50%,-50%)}.v-time-picker-clock__hand:after{background-color:inherit;border-color:inherit;border-radius:100%;border-style:solid;height:8px;top:100%;width:8px}.v-time-picker-clock>span{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;border-radius:100%;cursor:default;display:-ms-flexbox;display:flex;font-size:16px;height:40px;-ms-flex-pack:center;justify-content:center;left:calc(50% - 20px);position:absolute;text-align:center;top:calc(50% - 20px);user-select:none;width:40px}.v-time-picker-clock>span>span{z-index:1}.v-time-picker-clock>span:after,.v-time-picker-clock>span:before{-webkit-transform:translate(-50%,-50%);border-radius:100%;content:"";height:14px;height:40px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:14px;width:40px}.v-time-picker-clock>span.active{color:#fff;cursor:default;z-index:2}.v-time-picker-clock>span.disabled{pointer-events:none}.theme--light.v-toolbar{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-toolbar{background-color:#212121;color:#fff}.v-toolbar{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);position:relative;transition:none;width:100%;will-change:padding-left,padding-right}.v-toolbar[data-booted=true]{transition:.2s cubic-bezier(.4,0,.2,1)}.v-toolbar .v-text-field--box,.v-toolbar .v-text-field--enclosed{margin:0}.v-toolbar .v-text-field--box .v-text-field__details,.v-toolbar .v-text-field--enclosed .v-text-field__details{display:none}.v-toolbar .v-tabs{width:100%}.v-toolbar__title{font-size:20px;font-weight:500;letter-spacing:.02em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar__title:not(:first-child){margin-left:20px}.v-toolbar__content,.v-toolbar__extension{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;padding:0 24px}.v-toolbar__content .v-btn--icon,.v-toolbar__extension .v-btn--icon{margin:6px}.v-toolbar__content>:first-child,.v-toolbar__extension>:first-child{margin-left:0}.v-toolbar__content>:first-child.v-btn--icon,.v-toolbar__extension>:first-child.v-btn--icon{margin-left:-6px}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:first-child.v-tooltip span .v-btn,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:first-child.v-tooltip span .v-btn{margin-left:0}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:first-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:first-child.v-tooltip span .v-btn--icon{margin-left:-6px}.v-toolbar__content>:last-child,.v-toolbar__extension>:last-child{margin-right:0}.v-toolbar__content>:last-child.v-btn--icon,.v-toolbar__extension>:last-child.v-btn--icon{margin-right:-6px}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:last-child.v-tooltip span .v-btn,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:last-child.v-tooltip span .v-btn{margin-right:0}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:last-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:last-child.v-tooltip span .v-btn--icon{margin-right:-6px}.v-toolbar__content>.v-list,.v-toolbar__extension>.v-list{-ms-flex:1 1 auto;flex:1 1 auto;max-height:100%}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-24px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-24px}.v-toolbar__extension>.v-toolbar__title{margin-left:72px}.v-toolbar__items{display:-ms-flexbox;display:flex;height:inherit;max-width:100%;padding:0}.v-toolbar__items .v-btn{-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center}.v-toolbar__items .v-tooltip,.v-toolbar__items .v-tooltip>span{height:inherit}.v-toolbar__items .v-btn:not(.v-btn--floating):not(.v-btn--icon),.v-toolbar__items .v-menu,.v-toolbar__items .v-menu__activator{height:inherit;margin:0}.v-toolbar .v-btn-toggle,.v-toolbar .v-overflow-btn{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar .v-input{margin:0}.v-toolbar .v-overflow-btn .v-input__control:before,.v-toolbar .v-overflow-btn .v-input__slot:before{display:none}.v-toolbar--card{border-radius:2px 2px 0 0;box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar--fixed{position:fixed;z-index:2}.v-toolbar--absolute,.v-toolbar--fixed{left:0;top:0}.v-toolbar--absolute{position:absolute;z-index:2}.v-toolbar--floating{display:-ms-inline-flexbox;display:inline-flex;margin:16px;width:auto}.v-toolbar--clipped{z-index:3}@media only screen and (max-width:959px){.v-toolbar__content,.v-toolbar__extension{padding:0 16px}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-16px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-16px}}.v-tooltip{position:relative}.v-tooltip__content{background:#616161;border-radius:2px;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);color:#fff;display:inline-block;font-size:12px;padding:5px 8px;position:absolute;text-transform:none;transition:.15s cubic-bezier(.25,.8,.5,1);width:auto}.v-tooltip__content[class*=-active]{pointer-events:none}@media only screen and (max-width:959px){.v-tooltip .v-tooltip__content{padding:10px 16px}} -/*# sourceMappingURL=app.14daf9aed06f69ef52ff8971689f65e3.css.map */ \ No newline at end of file diff --git a/web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map b/web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map deleted file mode 100644 index db7da77..0000000 --- a/web_test/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["app.14daf9aed06f69ef52ff8971689f65e3.css"],"names":[],"mappings":"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","file":"app.14daf9aed06f69ef52ff8971689f65e3.css","sourcesContent":["\nsvg {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n\n.column-code {\r\n height: 85vh;\r\n overflow-y: scroll;\n}\r\n\n.winner {\r\n position: absolute;\r\n right: 0;\r\n margin-right: -14px;\r\n margin-top: -10px;\r\n font-size: 25px;\r\n -webkit-transform: rotateZ(28deg);\r\n transform: rotateZ(28deg);\n}\n.graph-inactive-btn {\r\n text-decoration: line-through !important;\r\n -webkit-text-decoration-style: double !important;\r\n text-decoration-style: double !important;\n}\n.extended-area {\r\n width: 100%;\r\n height: 250px;\n}\r\n/*!\n* Vuetify v1.2.3\n* Forged by John Leider\n* Released under the MIT License.\n*/@-webkit-keyframes shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}@keyframes shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}.black{background-color:#000!important;border-color:#000!important}.black--text{caret-color:#000!important;color:#000!important}.white{background-color:#fff!important;border-color:#fff!important}.white--text{caret-color:#fff!important;color:#fff!important}.transparent{background-color:transparent!important;border-color:transparent!important}.transparent--text{caret-color:transparent!important;color:transparent!important}.red{background-color:#f44336!important;border-color:#f44336!important}.red--text{caret-color:#f44336!important;color:#f44336!important}.red.lighten-5{background-color:#ffebee!important;border-color:#ffebee!important}.red--text.text--lighten-5{caret-color:#ffebee!important;color:#ffebee!important}.red.lighten-4{background-color:#ffcdd2!important;border-color:#ffcdd2!important}.red--text.text--lighten-4{caret-color:#ffcdd2!important;color:#ffcdd2!important}.red.lighten-3{background-color:#ef9a9a!important;border-color:#ef9a9a!important}.red--text.text--lighten-3{caret-color:#ef9a9a!important;color:#ef9a9a!important}.red.lighten-2{background-color:#e57373!important;border-color:#e57373!important}.red--text.text--lighten-2{caret-color:#e57373!important;color:#e57373!important}.red.lighten-1{background-color:#ef5350!important;border-color:#ef5350!important}.red--text.text--lighten-1{caret-color:#ef5350!important;color:#ef5350!important}.red.darken-1{background-color:#e53935!important;border-color:#e53935!important}.red--text.text--darken-1{caret-color:#e53935!important;color:#e53935!important}.red.darken-2{background-color:#d32f2f!important;border-color:#d32f2f!important}.red--text.text--darken-2{caret-color:#d32f2f!important;color:#d32f2f!important}.red.darken-3{background-color:#c62828!important;border-color:#c62828!important}.red--text.text--darken-3{caret-color:#c62828!important;color:#c62828!important}.red.darken-4{background-color:#b71c1c!important;border-color:#b71c1c!important}.red--text.text--darken-4{caret-color:#b71c1c!important;color:#b71c1c!important}.red.accent-1{background-color:#ff8a80!important;border-color:#ff8a80!important}.red--text.text--accent-1{caret-color:#ff8a80!important;color:#ff8a80!important}.red.accent-2{background-color:#ff5252!important;border-color:#ff5252!important}.red--text.text--accent-2{caret-color:#ff5252!important;color:#ff5252!important}.red.accent-3{background-color:#ff1744!important;border-color:#ff1744!important}.red--text.text--accent-3{caret-color:#ff1744!important;color:#ff1744!important}.red.accent-4{background-color:#d50000!important;border-color:#d50000!important}.red--text.text--accent-4{caret-color:#d50000!important;color:#d50000!important}.pink{background-color:#e91e63!important;border-color:#e91e63!important}.pink--text{caret-color:#e91e63!important;color:#e91e63!important}.pink.lighten-5{background-color:#fce4ec!important;border-color:#fce4ec!important}.pink--text.text--lighten-5{caret-color:#fce4ec!important;color:#fce4ec!important}.pink.lighten-4{background-color:#f8bbd0!important;border-color:#f8bbd0!important}.pink--text.text--lighten-4{caret-color:#f8bbd0!important;color:#f8bbd0!important}.pink.lighten-3{background-color:#f48fb1!important;border-color:#f48fb1!important}.pink--text.text--lighten-3{caret-color:#f48fb1!important;color:#f48fb1!important}.pink.lighten-2{background-color:#f06292!important;border-color:#f06292!important}.pink--text.text--lighten-2{caret-color:#f06292!important;color:#f06292!important}.pink.lighten-1{background-color:#ec407a!important;border-color:#ec407a!important}.pink--text.text--lighten-1{caret-color:#ec407a!important;color:#ec407a!important}.pink.darken-1{background-color:#d81b60!important;border-color:#d81b60!important}.pink--text.text--darken-1{caret-color:#d81b60!important;color:#d81b60!important}.pink.darken-2{background-color:#c2185b!important;border-color:#c2185b!important}.pink--text.text--darken-2{caret-color:#c2185b!important;color:#c2185b!important}.pink.darken-3{background-color:#ad1457!important;border-color:#ad1457!important}.pink--text.text--darken-3{caret-color:#ad1457!important;color:#ad1457!important}.pink.darken-4{background-color:#880e4f!important;border-color:#880e4f!important}.pink--text.text--darken-4{caret-color:#880e4f!important;color:#880e4f!important}.pink.accent-1{background-color:#ff80ab!important;border-color:#ff80ab!important}.pink--text.text--accent-1{caret-color:#ff80ab!important;color:#ff80ab!important}.pink.accent-2{background-color:#ff4081!important;border-color:#ff4081!important}.pink--text.text--accent-2{caret-color:#ff4081!important;color:#ff4081!important}.pink.accent-3{background-color:#f50057!important;border-color:#f50057!important}.pink--text.text--accent-3{caret-color:#f50057!important;color:#f50057!important}.pink.accent-4{background-color:#c51162!important;border-color:#c51162!important}.pink--text.text--accent-4{caret-color:#c51162!important;color:#c51162!important}.purple{background-color:#9c27b0!important;border-color:#9c27b0!important}.purple--text{caret-color:#9c27b0!important;color:#9c27b0!important}.purple.lighten-5{background-color:#f3e5f5!important;border-color:#f3e5f5!important}.purple--text.text--lighten-5{caret-color:#f3e5f5!important;color:#f3e5f5!important}.purple.lighten-4{background-color:#e1bee7!important;border-color:#e1bee7!important}.purple--text.text--lighten-4{caret-color:#e1bee7!important;color:#e1bee7!important}.purple.lighten-3{background-color:#ce93d8!important;border-color:#ce93d8!important}.purple--text.text--lighten-3{caret-color:#ce93d8!important;color:#ce93d8!important}.purple.lighten-2{background-color:#ba68c8!important;border-color:#ba68c8!important}.purple--text.text--lighten-2{caret-color:#ba68c8!important;color:#ba68c8!important}.purple.lighten-1{background-color:#ab47bc!important;border-color:#ab47bc!important}.purple--text.text--lighten-1{caret-color:#ab47bc!important;color:#ab47bc!important}.purple.darken-1{background-color:#8e24aa!important;border-color:#8e24aa!important}.purple--text.text--darken-1{caret-color:#8e24aa!important;color:#8e24aa!important}.purple.darken-2{background-color:#7b1fa2!important;border-color:#7b1fa2!important}.purple--text.text--darken-2{caret-color:#7b1fa2!important;color:#7b1fa2!important}.purple.darken-3{background-color:#6a1b9a!important;border-color:#6a1b9a!important}.purple--text.text--darken-3{caret-color:#6a1b9a!important;color:#6a1b9a!important}.purple.darken-4{background-color:#4a148c!important;border-color:#4a148c!important}.purple--text.text--darken-4{caret-color:#4a148c!important;color:#4a148c!important}.purple.accent-1{background-color:#ea80fc!important;border-color:#ea80fc!important}.purple--text.text--accent-1{caret-color:#ea80fc!important;color:#ea80fc!important}.purple.accent-2{background-color:#e040fb!important;border-color:#e040fb!important}.purple--text.text--accent-2{caret-color:#e040fb!important;color:#e040fb!important}.purple.accent-3{background-color:#d500f9!important;border-color:#d500f9!important}.purple--text.text--accent-3{caret-color:#d500f9!important;color:#d500f9!important}.purple.accent-4{background-color:#a0f!important;border-color:#a0f!important}.purple--text.text--accent-4{caret-color:#a0f!important;color:#a0f!important}.deep-purple{background-color:#673ab7!important;border-color:#673ab7!important}.deep-purple--text{caret-color:#673ab7!important;color:#673ab7!important}.deep-purple.lighten-5{background-color:#ede7f6!important;border-color:#ede7f6!important}.deep-purple--text.text--lighten-5{caret-color:#ede7f6!important;color:#ede7f6!important}.deep-purple.lighten-4{background-color:#d1c4e9!important;border-color:#d1c4e9!important}.deep-purple--text.text--lighten-4{caret-color:#d1c4e9!important;color:#d1c4e9!important}.deep-purple.lighten-3{background-color:#b39ddb!important;border-color:#b39ddb!important}.deep-purple--text.text--lighten-3{caret-color:#b39ddb!important;color:#b39ddb!important}.deep-purple.lighten-2{background-color:#9575cd!important;border-color:#9575cd!important}.deep-purple--text.text--lighten-2{caret-color:#9575cd!important;color:#9575cd!important}.deep-purple.lighten-1{background-color:#7e57c2!important;border-color:#7e57c2!important}.deep-purple--text.text--lighten-1{caret-color:#7e57c2!important;color:#7e57c2!important}.deep-purple.darken-1{background-color:#5e35b1!important;border-color:#5e35b1!important}.deep-purple--text.text--darken-1{caret-color:#5e35b1!important;color:#5e35b1!important}.deep-purple.darken-2{background-color:#512da8!important;border-color:#512da8!important}.deep-purple--text.text--darken-2{caret-color:#512da8!important;color:#512da8!important}.deep-purple.darken-3{background-color:#4527a0!important;border-color:#4527a0!important}.deep-purple--text.text--darken-3{caret-color:#4527a0!important;color:#4527a0!important}.deep-purple.darken-4{background-color:#311b92!important;border-color:#311b92!important}.deep-purple--text.text--darken-4{caret-color:#311b92!important;color:#311b92!important}.deep-purple.accent-1{background-color:#b388ff!important;border-color:#b388ff!important}.deep-purple--text.text--accent-1{caret-color:#b388ff!important;color:#b388ff!important}.deep-purple.accent-2{background-color:#7c4dff!important;border-color:#7c4dff!important}.deep-purple--text.text--accent-2{caret-color:#7c4dff!important;color:#7c4dff!important}.deep-purple.accent-3{background-color:#651fff!important;border-color:#651fff!important}.deep-purple--text.text--accent-3{caret-color:#651fff!important;color:#651fff!important}.deep-purple.accent-4{background-color:#6200ea!important;border-color:#6200ea!important}.deep-purple--text.text--accent-4{caret-color:#6200ea!important;color:#6200ea!important}.indigo{background-color:#3f51b5!important;border-color:#3f51b5!important}.indigo--text{caret-color:#3f51b5!important;color:#3f51b5!important}.indigo.lighten-5{background-color:#e8eaf6!important;border-color:#e8eaf6!important}.indigo--text.text--lighten-5{caret-color:#e8eaf6!important;color:#e8eaf6!important}.indigo.lighten-4{background-color:#c5cae9!important;border-color:#c5cae9!important}.indigo--text.text--lighten-4{caret-color:#c5cae9!important;color:#c5cae9!important}.indigo.lighten-3{background-color:#9fa8da!important;border-color:#9fa8da!important}.indigo--text.text--lighten-3{caret-color:#9fa8da!important;color:#9fa8da!important}.indigo.lighten-2{background-color:#7986cb!important;border-color:#7986cb!important}.indigo--text.text--lighten-2{caret-color:#7986cb!important;color:#7986cb!important}.indigo.lighten-1{background-color:#5c6bc0!important;border-color:#5c6bc0!important}.indigo--text.text--lighten-1{caret-color:#5c6bc0!important;color:#5c6bc0!important}.indigo.darken-1{background-color:#3949ab!important;border-color:#3949ab!important}.indigo--text.text--darken-1{caret-color:#3949ab!important;color:#3949ab!important}.indigo.darken-2{background-color:#303f9f!important;border-color:#303f9f!important}.indigo--text.text--darken-2{caret-color:#303f9f!important;color:#303f9f!important}.indigo.darken-3{background-color:#283593!important;border-color:#283593!important}.indigo--text.text--darken-3{caret-color:#283593!important;color:#283593!important}.indigo.darken-4{background-color:#1a237e!important;border-color:#1a237e!important}.indigo--text.text--darken-4{caret-color:#1a237e!important;color:#1a237e!important}.indigo.accent-1{background-color:#8c9eff!important;border-color:#8c9eff!important}.indigo--text.text--accent-1{caret-color:#8c9eff!important;color:#8c9eff!important}.indigo.accent-2{background-color:#536dfe!important;border-color:#536dfe!important}.indigo--text.text--accent-2{caret-color:#536dfe!important;color:#536dfe!important}.indigo.accent-3{background-color:#3d5afe!important;border-color:#3d5afe!important}.indigo--text.text--accent-3{caret-color:#3d5afe!important;color:#3d5afe!important}.indigo.accent-4{background-color:#304ffe!important;border-color:#304ffe!important}.indigo--text.text--accent-4{caret-color:#304ffe!important;color:#304ffe!important}.blue{background-color:#2196f3!important;border-color:#2196f3!important}.blue--text{caret-color:#2196f3!important;color:#2196f3!important}.blue.lighten-5{background-color:#e3f2fd!important;border-color:#e3f2fd!important}.blue--text.text--lighten-5{caret-color:#e3f2fd!important;color:#e3f2fd!important}.blue.lighten-4{background-color:#bbdefb!important;border-color:#bbdefb!important}.blue--text.text--lighten-4{caret-color:#bbdefb!important;color:#bbdefb!important}.blue.lighten-3{background-color:#90caf9!important;border-color:#90caf9!important}.blue--text.text--lighten-3{caret-color:#90caf9!important;color:#90caf9!important}.blue.lighten-2{background-color:#64b5f6!important;border-color:#64b5f6!important}.blue--text.text--lighten-2{caret-color:#64b5f6!important;color:#64b5f6!important}.blue.lighten-1{background-color:#42a5f5!important;border-color:#42a5f5!important}.blue--text.text--lighten-1{caret-color:#42a5f5!important;color:#42a5f5!important}.blue.darken-1{background-color:#1e88e5!important;border-color:#1e88e5!important}.blue--text.text--darken-1{caret-color:#1e88e5!important;color:#1e88e5!important}.blue.darken-2{background-color:#1976d2!important;border-color:#1976d2!important}.blue--text.text--darken-2{caret-color:#1976d2!important;color:#1976d2!important}.blue.darken-3{background-color:#1565c0!important;border-color:#1565c0!important}.blue--text.text--darken-3{caret-color:#1565c0!important;color:#1565c0!important}.blue.darken-4{background-color:#0d47a1!important;border-color:#0d47a1!important}.blue--text.text--darken-4{caret-color:#0d47a1!important;color:#0d47a1!important}.blue.accent-1{background-color:#82b1ff!important;border-color:#82b1ff!important}.blue--text.text--accent-1{caret-color:#82b1ff!important;color:#82b1ff!important}.blue.accent-2{background-color:#448aff!important;border-color:#448aff!important}.blue--text.text--accent-2{caret-color:#448aff!important;color:#448aff!important}.blue.accent-3{background-color:#2979ff!important;border-color:#2979ff!important}.blue--text.text--accent-3{caret-color:#2979ff!important;color:#2979ff!important}.blue.accent-4{background-color:#2962ff!important;border-color:#2962ff!important}.blue--text.text--accent-4{caret-color:#2962ff!important;color:#2962ff!important}.light-blue{background-color:#03a9f4!important;border-color:#03a9f4!important}.light-blue--text{caret-color:#03a9f4!important;color:#03a9f4!important}.light-blue.lighten-5{background-color:#e1f5fe!important;border-color:#e1f5fe!important}.light-blue--text.text--lighten-5{caret-color:#e1f5fe!important;color:#e1f5fe!important}.light-blue.lighten-4{background-color:#b3e5fc!important;border-color:#b3e5fc!important}.light-blue--text.text--lighten-4{caret-color:#b3e5fc!important;color:#b3e5fc!important}.light-blue.lighten-3{background-color:#81d4fa!important;border-color:#81d4fa!important}.light-blue--text.text--lighten-3{caret-color:#81d4fa!important;color:#81d4fa!important}.light-blue.lighten-2{background-color:#4fc3f7!important;border-color:#4fc3f7!important}.light-blue--text.text--lighten-2{caret-color:#4fc3f7!important;color:#4fc3f7!important}.light-blue.lighten-1{background-color:#29b6f6!important;border-color:#29b6f6!important}.light-blue--text.text--lighten-1{caret-color:#29b6f6!important;color:#29b6f6!important}.light-blue.darken-1{background-color:#039be5!important;border-color:#039be5!important}.light-blue--text.text--darken-1{caret-color:#039be5!important;color:#039be5!important}.light-blue.darken-2{background-color:#0288d1!important;border-color:#0288d1!important}.light-blue--text.text--darken-2{caret-color:#0288d1!important;color:#0288d1!important}.light-blue.darken-3{background-color:#0277bd!important;border-color:#0277bd!important}.light-blue--text.text--darken-3{caret-color:#0277bd!important;color:#0277bd!important}.light-blue.darken-4{background-color:#01579b!important;border-color:#01579b!important}.light-blue--text.text--darken-4{caret-color:#01579b!important;color:#01579b!important}.light-blue.accent-1{background-color:#80d8ff!important;border-color:#80d8ff!important}.light-blue--text.text--accent-1{caret-color:#80d8ff!important;color:#80d8ff!important}.light-blue.accent-2{background-color:#40c4ff!important;border-color:#40c4ff!important}.light-blue--text.text--accent-2{caret-color:#40c4ff!important;color:#40c4ff!important}.light-blue.accent-3{background-color:#00b0ff!important;border-color:#00b0ff!important}.light-blue--text.text--accent-3{caret-color:#00b0ff!important;color:#00b0ff!important}.light-blue.accent-4{background-color:#0091ea!important;border-color:#0091ea!important}.light-blue--text.text--accent-4{caret-color:#0091ea!important;color:#0091ea!important}.cyan{background-color:#00bcd4!important;border-color:#00bcd4!important}.cyan--text{caret-color:#00bcd4!important;color:#00bcd4!important}.cyan.lighten-5{background-color:#e0f7fa!important;border-color:#e0f7fa!important}.cyan--text.text--lighten-5{caret-color:#e0f7fa!important;color:#e0f7fa!important}.cyan.lighten-4{background-color:#b2ebf2!important;border-color:#b2ebf2!important}.cyan--text.text--lighten-4{caret-color:#b2ebf2!important;color:#b2ebf2!important}.cyan.lighten-3{background-color:#80deea!important;border-color:#80deea!important}.cyan--text.text--lighten-3{caret-color:#80deea!important;color:#80deea!important}.cyan.lighten-2{background-color:#4dd0e1!important;border-color:#4dd0e1!important}.cyan--text.text--lighten-2{caret-color:#4dd0e1!important;color:#4dd0e1!important}.cyan.lighten-1{background-color:#26c6da!important;border-color:#26c6da!important}.cyan--text.text--lighten-1{caret-color:#26c6da!important;color:#26c6da!important}.cyan.darken-1{background-color:#00acc1!important;border-color:#00acc1!important}.cyan--text.text--darken-1{caret-color:#00acc1!important;color:#00acc1!important}.cyan.darken-2{background-color:#0097a7!important;border-color:#0097a7!important}.cyan--text.text--darken-2{caret-color:#0097a7!important;color:#0097a7!important}.cyan.darken-3{background-color:#00838f!important;border-color:#00838f!important}.cyan--text.text--darken-3{caret-color:#00838f!important;color:#00838f!important}.cyan.darken-4{background-color:#006064!important;border-color:#006064!important}.cyan--text.text--darken-4{caret-color:#006064!important;color:#006064!important}.cyan.accent-1{background-color:#84ffff!important;border-color:#84ffff!important}.cyan--text.text--accent-1{caret-color:#84ffff!important;color:#84ffff!important}.cyan.accent-2{background-color:#18ffff!important;border-color:#18ffff!important}.cyan--text.text--accent-2{caret-color:#18ffff!important;color:#18ffff!important}.cyan.accent-3{background-color:#00e5ff!important;border-color:#00e5ff!important}.cyan--text.text--accent-3{caret-color:#00e5ff!important;color:#00e5ff!important}.cyan.accent-4{background-color:#00b8d4!important;border-color:#00b8d4!important}.cyan--text.text--accent-4{caret-color:#00b8d4!important;color:#00b8d4!important}.teal{background-color:#009688!important;border-color:#009688!important}.teal--text{caret-color:#009688!important;color:#009688!important}.teal.lighten-5{background-color:#e0f2f1!important;border-color:#e0f2f1!important}.teal--text.text--lighten-5{caret-color:#e0f2f1!important;color:#e0f2f1!important}.teal.lighten-4{background-color:#b2dfdb!important;border-color:#b2dfdb!important}.teal--text.text--lighten-4{caret-color:#b2dfdb!important;color:#b2dfdb!important}.teal.lighten-3{background-color:#80cbc4!important;border-color:#80cbc4!important}.teal--text.text--lighten-3{caret-color:#80cbc4!important;color:#80cbc4!important}.teal.lighten-2{background-color:#4db6ac!important;border-color:#4db6ac!important}.teal--text.text--lighten-2{caret-color:#4db6ac!important;color:#4db6ac!important}.teal.lighten-1{background-color:#26a69a!important;border-color:#26a69a!important}.teal--text.text--lighten-1{caret-color:#26a69a!important;color:#26a69a!important}.teal.darken-1{background-color:#00897b!important;border-color:#00897b!important}.teal--text.text--darken-1{caret-color:#00897b!important;color:#00897b!important}.teal.darken-2{background-color:#00796b!important;border-color:#00796b!important}.teal--text.text--darken-2{caret-color:#00796b!important;color:#00796b!important}.teal.darken-3{background-color:#00695c!important;border-color:#00695c!important}.teal--text.text--darken-3{caret-color:#00695c!important;color:#00695c!important}.teal.darken-4{background-color:#004d40!important;border-color:#004d40!important}.teal--text.text--darken-4{caret-color:#004d40!important;color:#004d40!important}.teal.accent-1{background-color:#a7ffeb!important;border-color:#a7ffeb!important}.teal--text.text--accent-1{caret-color:#a7ffeb!important;color:#a7ffeb!important}.teal.accent-2{background-color:#64ffda!important;border-color:#64ffda!important}.teal--text.text--accent-2{caret-color:#64ffda!important;color:#64ffda!important}.teal.accent-3{background-color:#1de9b6!important;border-color:#1de9b6!important}.teal--text.text--accent-3{caret-color:#1de9b6!important;color:#1de9b6!important}.teal.accent-4{background-color:#00bfa5!important;border-color:#00bfa5!important}.teal--text.text--accent-4{caret-color:#00bfa5!important;color:#00bfa5!important}.green{background-color:#4caf50!important;border-color:#4caf50!important}.green--text{caret-color:#4caf50!important;color:#4caf50!important}.green.lighten-5{background-color:#e8f5e9!important;border-color:#e8f5e9!important}.green--text.text--lighten-5{caret-color:#e8f5e9!important;color:#e8f5e9!important}.green.lighten-4{background-color:#c8e6c9!important;border-color:#c8e6c9!important}.green--text.text--lighten-4{caret-color:#c8e6c9!important;color:#c8e6c9!important}.green.lighten-3{background-color:#a5d6a7!important;border-color:#a5d6a7!important}.green--text.text--lighten-3{caret-color:#a5d6a7!important;color:#a5d6a7!important}.green.lighten-2{background-color:#81c784!important;border-color:#81c784!important}.green--text.text--lighten-2{caret-color:#81c784!important;color:#81c784!important}.green.lighten-1{background-color:#66bb6a!important;border-color:#66bb6a!important}.green--text.text--lighten-1{caret-color:#66bb6a!important;color:#66bb6a!important}.green.darken-1{background-color:#43a047!important;border-color:#43a047!important}.green--text.text--darken-1{caret-color:#43a047!important;color:#43a047!important}.green.darken-2{background-color:#388e3c!important;border-color:#388e3c!important}.green--text.text--darken-2{caret-color:#388e3c!important;color:#388e3c!important}.green.darken-3{background-color:#2e7d32!important;border-color:#2e7d32!important}.green--text.text--darken-3{caret-color:#2e7d32!important;color:#2e7d32!important}.green.darken-4{background-color:#1b5e20!important;border-color:#1b5e20!important}.green--text.text--darken-4{caret-color:#1b5e20!important;color:#1b5e20!important}.green.accent-1{background-color:#b9f6ca!important;border-color:#b9f6ca!important}.green--text.text--accent-1{caret-color:#b9f6ca!important;color:#b9f6ca!important}.green.accent-2{background-color:#69f0ae!important;border-color:#69f0ae!important}.green--text.text--accent-2{caret-color:#69f0ae!important;color:#69f0ae!important}.green.accent-3{background-color:#00e676!important;border-color:#00e676!important}.green--text.text--accent-3{caret-color:#00e676!important;color:#00e676!important}.green.accent-4{background-color:#00c853!important;border-color:#00c853!important}.green--text.text--accent-4{caret-color:#00c853!important;color:#00c853!important}.light-green{background-color:#8bc34a!important;border-color:#8bc34a!important}.light-green--text{caret-color:#8bc34a!important;color:#8bc34a!important}.light-green.lighten-5{background-color:#f1f8e9!important;border-color:#f1f8e9!important}.light-green--text.text--lighten-5{caret-color:#f1f8e9!important;color:#f1f8e9!important}.light-green.lighten-4{background-color:#dcedc8!important;border-color:#dcedc8!important}.light-green--text.text--lighten-4{caret-color:#dcedc8!important;color:#dcedc8!important}.light-green.lighten-3{background-color:#c5e1a5!important;border-color:#c5e1a5!important}.light-green--text.text--lighten-3{caret-color:#c5e1a5!important;color:#c5e1a5!important}.light-green.lighten-2{background-color:#aed581!important;border-color:#aed581!important}.light-green--text.text--lighten-2{caret-color:#aed581!important;color:#aed581!important}.light-green.lighten-1{background-color:#9ccc65!important;border-color:#9ccc65!important}.light-green--text.text--lighten-1{caret-color:#9ccc65!important;color:#9ccc65!important}.light-green.darken-1{background-color:#7cb342!important;border-color:#7cb342!important}.light-green--text.text--darken-1{caret-color:#7cb342!important;color:#7cb342!important}.light-green.darken-2{background-color:#689f38!important;border-color:#689f38!important}.light-green--text.text--darken-2{caret-color:#689f38!important;color:#689f38!important}.light-green.darken-3{background-color:#558b2f!important;border-color:#558b2f!important}.light-green--text.text--darken-3{caret-color:#558b2f!important;color:#558b2f!important}.light-green.darken-4{background-color:#33691e!important;border-color:#33691e!important}.light-green--text.text--darken-4{caret-color:#33691e!important;color:#33691e!important}.light-green.accent-1{background-color:#ccff90!important;border-color:#ccff90!important}.light-green--text.text--accent-1{caret-color:#ccff90!important;color:#ccff90!important}.light-green.accent-2{background-color:#b2ff59!important;border-color:#b2ff59!important}.light-green--text.text--accent-2{caret-color:#b2ff59!important;color:#b2ff59!important}.light-green.accent-3{background-color:#76ff03!important;border-color:#76ff03!important}.light-green--text.text--accent-3{caret-color:#76ff03!important;color:#76ff03!important}.light-green.accent-4{background-color:#64dd17!important;border-color:#64dd17!important}.light-green--text.text--accent-4{caret-color:#64dd17!important;color:#64dd17!important}.lime{background-color:#cddc39!important;border-color:#cddc39!important}.lime--text{caret-color:#cddc39!important;color:#cddc39!important}.lime.lighten-5{background-color:#f9fbe7!important;border-color:#f9fbe7!important}.lime--text.text--lighten-5{caret-color:#f9fbe7!important;color:#f9fbe7!important}.lime.lighten-4{background-color:#f0f4c3!important;border-color:#f0f4c3!important}.lime--text.text--lighten-4{caret-color:#f0f4c3!important;color:#f0f4c3!important}.lime.lighten-3{background-color:#e6ee9c!important;border-color:#e6ee9c!important}.lime--text.text--lighten-3{caret-color:#e6ee9c!important;color:#e6ee9c!important}.lime.lighten-2{background-color:#dce775!important;border-color:#dce775!important}.lime--text.text--lighten-2{caret-color:#dce775!important;color:#dce775!important}.lime.lighten-1{background-color:#d4e157!important;border-color:#d4e157!important}.lime--text.text--lighten-1{caret-color:#d4e157!important;color:#d4e157!important}.lime.darken-1{background-color:#c0ca33!important;border-color:#c0ca33!important}.lime--text.text--darken-1{caret-color:#c0ca33!important;color:#c0ca33!important}.lime.darken-2{background-color:#afb42b!important;border-color:#afb42b!important}.lime--text.text--darken-2{caret-color:#afb42b!important;color:#afb42b!important}.lime.darken-3{background-color:#9e9d24!important;border-color:#9e9d24!important}.lime--text.text--darken-3{caret-color:#9e9d24!important;color:#9e9d24!important}.lime.darken-4{background-color:#827717!important;border-color:#827717!important}.lime--text.text--darken-4{caret-color:#827717!important;color:#827717!important}.lime.accent-1{background-color:#f4ff81!important;border-color:#f4ff81!important}.lime--text.text--accent-1{caret-color:#f4ff81!important;color:#f4ff81!important}.lime.accent-2{background-color:#eeff41!important;border-color:#eeff41!important}.lime--text.text--accent-2{caret-color:#eeff41!important;color:#eeff41!important}.lime.accent-3{background-color:#c6ff00!important;border-color:#c6ff00!important}.lime--text.text--accent-3{caret-color:#c6ff00!important;color:#c6ff00!important}.lime.accent-4{background-color:#aeea00!important;border-color:#aeea00!important}.lime--text.text--accent-4{caret-color:#aeea00!important;color:#aeea00!important}.yellow{background-color:#ffeb3b!important;border-color:#ffeb3b!important}.yellow--text{caret-color:#ffeb3b!important;color:#ffeb3b!important}.yellow.lighten-5{background-color:#fffde7!important;border-color:#fffde7!important}.yellow--text.text--lighten-5{caret-color:#fffde7!important;color:#fffde7!important}.yellow.lighten-4{background-color:#fff9c4!important;border-color:#fff9c4!important}.yellow--text.text--lighten-4{caret-color:#fff9c4!important;color:#fff9c4!important}.yellow.lighten-3{background-color:#fff59d!important;border-color:#fff59d!important}.yellow--text.text--lighten-3{caret-color:#fff59d!important;color:#fff59d!important}.yellow.lighten-2{background-color:#fff176!important;border-color:#fff176!important}.yellow--text.text--lighten-2{caret-color:#fff176!important;color:#fff176!important}.yellow.lighten-1{background-color:#ffee58!important;border-color:#ffee58!important}.yellow--text.text--lighten-1{caret-color:#ffee58!important;color:#ffee58!important}.yellow.darken-1{background-color:#fdd835!important;border-color:#fdd835!important}.yellow--text.text--darken-1{caret-color:#fdd835!important;color:#fdd835!important}.yellow.darken-2{background-color:#fbc02d!important;border-color:#fbc02d!important}.yellow--text.text--darken-2{caret-color:#fbc02d!important;color:#fbc02d!important}.yellow.darken-3{background-color:#f9a825!important;border-color:#f9a825!important}.yellow--text.text--darken-3{caret-color:#f9a825!important;color:#f9a825!important}.yellow.darken-4{background-color:#f57f17!important;border-color:#f57f17!important}.yellow--text.text--darken-4{caret-color:#f57f17!important;color:#f57f17!important}.yellow.accent-1{background-color:#ffff8d!important;border-color:#ffff8d!important}.yellow--text.text--accent-1{caret-color:#ffff8d!important;color:#ffff8d!important}.yellow.accent-2{background-color:#ff0!important;border-color:#ff0!important}.yellow--text.text--accent-2{caret-color:#ff0!important;color:#ff0!important}.yellow.accent-3{background-color:#ffea00!important;border-color:#ffea00!important}.yellow--text.text--accent-3{caret-color:#ffea00!important;color:#ffea00!important}.yellow.accent-4{background-color:#ffd600!important;border-color:#ffd600!important}.yellow--text.text--accent-4{caret-color:#ffd600!important;color:#ffd600!important}.amber{background-color:#ffc107!important;border-color:#ffc107!important}.amber--text{caret-color:#ffc107!important;color:#ffc107!important}.amber.lighten-5{background-color:#fff8e1!important;border-color:#fff8e1!important}.amber--text.text--lighten-5{caret-color:#fff8e1!important;color:#fff8e1!important}.amber.lighten-4{background-color:#ffecb3!important;border-color:#ffecb3!important}.amber--text.text--lighten-4{caret-color:#ffecb3!important;color:#ffecb3!important}.amber.lighten-3{background-color:#ffe082!important;border-color:#ffe082!important}.amber--text.text--lighten-3{caret-color:#ffe082!important;color:#ffe082!important}.amber.lighten-2{background-color:#ffd54f!important;border-color:#ffd54f!important}.amber--text.text--lighten-2{caret-color:#ffd54f!important;color:#ffd54f!important}.amber.lighten-1{background-color:#ffca28!important;border-color:#ffca28!important}.amber--text.text--lighten-1{caret-color:#ffca28!important;color:#ffca28!important}.amber.darken-1{background-color:#ffb300!important;border-color:#ffb300!important}.amber--text.text--darken-1{caret-color:#ffb300!important;color:#ffb300!important}.amber.darken-2{background-color:#ffa000!important;border-color:#ffa000!important}.amber--text.text--darken-2{caret-color:#ffa000!important;color:#ffa000!important}.amber.darken-3{background-color:#ff8f00!important;border-color:#ff8f00!important}.amber--text.text--darken-3{caret-color:#ff8f00!important;color:#ff8f00!important}.amber.darken-4{background-color:#ff6f00!important;border-color:#ff6f00!important}.amber--text.text--darken-4{caret-color:#ff6f00!important;color:#ff6f00!important}.amber.accent-1{background-color:#ffe57f!important;border-color:#ffe57f!important}.amber--text.text--accent-1{caret-color:#ffe57f!important;color:#ffe57f!important}.amber.accent-2{background-color:#ffd740!important;border-color:#ffd740!important}.amber--text.text--accent-2{caret-color:#ffd740!important;color:#ffd740!important}.amber.accent-3{background-color:#ffc400!important;border-color:#ffc400!important}.amber--text.text--accent-3{caret-color:#ffc400!important;color:#ffc400!important}.amber.accent-4{background-color:#ffab00!important;border-color:#ffab00!important}.amber--text.text--accent-4{caret-color:#ffab00!important;color:#ffab00!important}.orange{background-color:#ff9800!important;border-color:#ff9800!important}.orange--text{caret-color:#ff9800!important;color:#ff9800!important}.orange.lighten-5{background-color:#fff3e0!important;border-color:#fff3e0!important}.orange--text.text--lighten-5{caret-color:#fff3e0!important;color:#fff3e0!important}.orange.lighten-4{background-color:#ffe0b2!important;border-color:#ffe0b2!important}.orange--text.text--lighten-4{caret-color:#ffe0b2!important;color:#ffe0b2!important}.orange.lighten-3{background-color:#ffcc80!important;border-color:#ffcc80!important}.orange--text.text--lighten-3{caret-color:#ffcc80!important;color:#ffcc80!important}.orange.lighten-2{background-color:#ffb74d!important;border-color:#ffb74d!important}.orange--text.text--lighten-2{caret-color:#ffb74d!important;color:#ffb74d!important}.orange.lighten-1{background-color:#ffa726!important;border-color:#ffa726!important}.orange--text.text--lighten-1{caret-color:#ffa726!important;color:#ffa726!important}.orange.darken-1{background-color:#fb8c00!important;border-color:#fb8c00!important}.orange--text.text--darken-1{caret-color:#fb8c00!important;color:#fb8c00!important}.orange.darken-2{background-color:#f57c00!important;border-color:#f57c00!important}.orange--text.text--darken-2{caret-color:#f57c00!important;color:#f57c00!important}.orange.darken-3{background-color:#ef6c00!important;border-color:#ef6c00!important}.orange--text.text--darken-3{caret-color:#ef6c00!important;color:#ef6c00!important}.orange.darken-4{background-color:#e65100!important;border-color:#e65100!important}.orange--text.text--darken-4{caret-color:#e65100!important;color:#e65100!important}.orange.accent-1{background-color:#ffd180!important;border-color:#ffd180!important}.orange--text.text--accent-1{caret-color:#ffd180!important;color:#ffd180!important}.orange.accent-2{background-color:#ffab40!important;border-color:#ffab40!important}.orange--text.text--accent-2{caret-color:#ffab40!important;color:#ffab40!important}.orange.accent-3{background-color:#ff9100!important;border-color:#ff9100!important}.orange--text.text--accent-3{caret-color:#ff9100!important;color:#ff9100!important}.orange.accent-4{background-color:#ff6d00!important;border-color:#ff6d00!important}.orange--text.text--accent-4{caret-color:#ff6d00!important;color:#ff6d00!important}.deep-orange{background-color:#ff5722!important;border-color:#ff5722!important}.deep-orange--text{caret-color:#ff5722!important;color:#ff5722!important}.deep-orange.lighten-5{background-color:#fbe9e7!important;border-color:#fbe9e7!important}.deep-orange--text.text--lighten-5{caret-color:#fbe9e7!important;color:#fbe9e7!important}.deep-orange.lighten-4{background-color:#ffccbc!important;border-color:#ffccbc!important}.deep-orange--text.text--lighten-4{caret-color:#ffccbc!important;color:#ffccbc!important}.deep-orange.lighten-3{background-color:#ffab91!important;border-color:#ffab91!important}.deep-orange--text.text--lighten-3{caret-color:#ffab91!important;color:#ffab91!important}.deep-orange.lighten-2{background-color:#ff8a65!important;border-color:#ff8a65!important}.deep-orange--text.text--lighten-2{caret-color:#ff8a65!important;color:#ff8a65!important}.deep-orange.lighten-1{background-color:#ff7043!important;border-color:#ff7043!important}.deep-orange--text.text--lighten-1{caret-color:#ff7043!important;color:#ff7043!important}.deep-orange.darken-1{background-color:#f4511e!important;border-color:#f4511e!important}.deep-orange--text.text--darken-1{caret-color:#f4511e!important;color:#f4511e!important}.deep-orange.darken-2{background-color:#e64a19!important;border-color:#e64a19!important}.deep-orange--text.text--darken-2{caret-color:#e64a19!important;color:#e64a19!important}.deep-orange.darken-3{background-color:#d84315!important;border-color:#d84315!important}.deep-orange--text.text--darken-3{caret-color:#d84315!important;color:#d84315!important}.deep-orange.darken-4{background-color:#bf360c!important;border-color:#bf360c!important}.deep-orange--text.text--darken-4{caret-color:#bf360c!important;color:#bf360c!important}.deep-orange.accent-1{background-color:#ff9e80!important;border-color:#ff9e80!important}.deep-orange--text.text--accent-1{caret-color:#ff9e80!important;color:#ff9e80!important}.deep-orange.accent-2{background-color:#ff6e40!important;border-color:#ff6e40!important}.deep-orange--text.text--accent-2{caret-color:#ff6e40!important;color:#ff6e40!important}.deep-orange.accent-3{background-color:#ff3d00!important;border-color:#ff3d00!important}.deep-orange--text.text--accent-3{caret-color:#ff3d00!important;color:#ff3d00!important}.deep-orange.accent-4{background-color:#dd2c00!important;border-color:#dd2c00!important}.deep-orange--text.text--accent-4{caret-color:#dd2c00!important;color:#dd2c00!important}.brown{background-color:#795548!important;border-color:#795548!important}.brown--text{caret-color:#795548!important;color:#795548!important}.brown.lighten-5{background-color:#efebe9!important;border-color:#efebe9!important}.brown--text.text--lighten-5{caret-color:#efebe9!important;color:#efebe9!important}.brown.lighten-4{background-color:#d7ccc8!important;border-color:#d7ccc8!important}.brown--text.text--lighten-4{caret-color:#d7ccc8!important;color:#d7ccc8!important}.brown.lighten-3{background-color:#bcaaa4!important;border-color:#bcaaa4!important}.brown--text.text--lighten-3{caret-color:#bcaaa4!important;color:#bcaaa4!important}.brown.lighten-2{background-color:#a1887f!important;border-color:#a1887f!important}.brown--text.text--lighten-2{caret-color:#a1887f!important;color:#a1887f!important}.brown.lighten-1{background-color:#8d6e63!important;border-color:#8d6e63!important}.brown--text.text--lighten-1{caret-color:#8d6e63!important;color:#8d6e63!important}.brown.darken-1{background-color:#6d4c41!important;border-color:#6d4c41!important}.brown--text.text--darken-1{caret-color:#6d4c41!important;color:#6d4c41!important}.brown.darken-2{background-color:#5d4037!important;border-color:#5d4037!important}.brown--text.text--darken-2{caret-color:#5d4037!important;color:#5d4037!important}.brown.darken-3{background-color:#4e342e!important;border-color:#4e342e!important}.brown--text.text--darken-3{caret-color:#4e342e!important;color:#4e342e!important}.brown.darken-4{background-color:#3e2723!important;border-color:#3e2723!important}.brown--text.text--darken-4{caret-color:#3e2723!important;color:#3e2723!important}.blue-grey{background-color:#607d8b!important;border-color:#607d8b!important}.blue-grey--text{caret-color:#607d8b!important;color:#607d8b!important}.blue-grey.lighten-5{background-color:#eceff1!important;border-color:#eceff1!important}.blue-grey--text.text--lighten-5{caret-color:#eceff1!important;color:#eceff1!important}.blue-grey.lighten-4{background-color:#cfd8dc!important;border-color:#cfd8dc!important}.blue-grey--text.text--lighten-4{caret-color:#cfd8dc!important;color:#cfd8dc!important}.blue-grey.lighten-3{background-color:#b0bec5!important;border-color:#b0bec5!important}.blue-grey--text.text--lighten-3{caret-color:#b0bec5!important;color:#b0bec5!important}.blue-grey.lighten-2{background-color:#90a4ae!important;border-color:#90a4ae!important}.blue-grey--text.text--lighten-2{caret-color:#90a4ae!important;color:#90a4ae!important}.blue-grey.lighten-1{background-color:#78909c!important;border-color:#78909c!important}.blue-grey--text.text--lighten-1{caret-color:#78909c!important;color:#78909c!important}.blue-grey.darken-1{background-color:#546e7a!important;border-color:#546e7a!important}.blue-grey--text.text--darken-1{caret-color:#546e7a!important;color:#546e7a!important}.blue-grey.darken-2{background-color:#455a64!important;border-color:#455a64!important}.blue-grey--text.text--darken-2{caret-color:#455a64!important;color:#455a64!important}.blue-grey.darken-3{background-color:#37474f!important;border-color:#37474f!important}.blue-grey--text.text--darken-3{caret-color:#37474f!important;color:#37474f!important}.blue-grey.darken-4{background-color:#263238!important;border-color:#263238!important}.blue-grey--text.text--darken-4{caret-color:#263238!important;color:#263238!important}.grey{background-color:#9e9e9e!important;border-color:#9e9e9e!important}.grey--text{caret-color:#9e9e9e!important;color:#9e9e9e!important}.grey.lighten-5{background-color:#fafafa!important;border-color:#fafafa!important}.grey--text.text--lighten-5{caret-color:#fafafa!important;color:#fafafa!important}.grey.lighten-4{background-color:#f5f5f5!important;border-color:#f5f5f5!important}.grey--text.text--lighten-4{caret-color:#f5f5f5!important;color:#f5f5f5!important}.grey.lighten-3{background-color:#eee!important;border-color:#eee!important}.grey--text.text--lighten-3{caret-color:#eee!important;color:#eee!important}.grey.lighten-2{background-color:#e0e0e0!important;border-color:#e0e0e0!important}.grey--text.text--lighten-2{caret-color:#e0e0e0!important;color:#e0e0e0!important}.grey.lighten-1{background-color:#bdbdbd!important;border-color:#bdbdbd!important}.grey--text.text--lighten-1{caret-color:#bdbdbd!important;color:#bdbdbd!important}.grey.darken-1{background-color:#757575!important;border-color:#757575!important}.grey--text.text--darken-1{caret-color:#757575!important;color:#757575!important}.grey.darken-2{background-color:#616161!important;border-color:#616161!important}.grey--text.text--darken-2{caret-color:#616161!important;color:#616161!important}.grey.darken-3{background-color:#424242!important;border-color:#424242!important}.grey--text.text--darken-3{caret-color:#424242!important;color:#424242!important}.grey.darken-4{background-color:#212121!important;border-color:#212121!important}.grey--text.text--darken-4{caret-color:#212121!important;color:#212121!important}.shades.black{background-color:#000!important;border-color:#000!important}.shades--text.text--black{caret-color:#000!important;color:#000!important}.shades.white{background-color:#fff!important;border-color:#fff!important}.shades--text.text--white{caret-color:#fff!important;color:#fff!important}.shades.transparent{background-color:transparent!important;border-color:transparent!important}.shades--text.text--transparent{caret-color:transparent!important;color:transparent!important}.elevation-0{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important;box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.elevation-1{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important}.elevation-2{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important}.elevation-3{-webkit-box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)!important}.elevation-4{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important;box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important}.elevation-5{-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)!important}.elevation-6{-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)!important}.elevation-7{-webkit-box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important;box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important}.elevation-8{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important}.elevation-9{-webkit-box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)!important;box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)!important}.elevation-10{-webkit-box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)!important;box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)!important}.elevation-11{-webkit-box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)!important;box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)!important}.elevation-12{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important;box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important}.elevation-13{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)!important;box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)!important}.elevation-14{-webkit-box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)!important;box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)!important}.elevation-15{-webkit-box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)!important;box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)!important}.elevation-16{-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)!important;box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)!important}.elevation-17{-webkit-box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)!important;box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)!important}.elevation-18{-webkit-box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)!important;box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)!important}.elevation-19{-webkit-box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)!important;box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)!important}.elevation-20{-webkit-box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)!important;box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)!important}.elevation-21{-webkit-box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)!important;box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)!important}.elevation-22{-webkit-box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)!important;box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)!important}.elevation-23{-webkit-box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)!important;box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)!important}.elevation-24{-webkit-box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)!important;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)!important}html{-webkit-text-size-adjust:100%;-webkit-box-sizing:border-box;box-sizing:border-box;overflow-y:scroll}*,:after,:before{-webkit-box-sizing:inherit;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{background-repeat:no-repeat;margin:0;padding:0}audio:not([controls]){display:none;height:0}hr{overflow:visible}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}summary{display:list-item}small{font-size:80%}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted;text-decoration:none}a{-webkit-text-decoration-skip:objects;background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[disabled]{cursor:default}[type=number]{width:auto}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:0;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{border:0;outline:0}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,select{text-transform:none}button,input,select,textarea{background-color:transparent;border-style:none;color:inherit}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}img{border-style:none}progress{vertical-align:baseline}svg:not(:root){overflow:hidden}audio,canvas,progress,video{display:inline-block}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.bottom-sheet-transition-enter,.bottom-sheet-transition-leave-to{-webkit-transform:translateY(100%);transform:translateY(100%)}.carousel-transition-enter{-webkit-transform:translate(100%);transform:translate(100%)}.carousel-transition-leave,.carousel-transition-leave-to{position:absolute;top:0}.carousel-reverse-transition-enter,.carousel-transition-leave,.carousel-transition-leave-to{-webkit-transform:translate(-100%);transform:translate(-100%)}.carousel-reverse-transition-leave,.carousel-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.dialog-transition-enter,.dialog-transition-leave-to{-webkit-transform:scale(.5);opacity:0;transform:scale(.5)}.dialog-transition-enter-to,.dialog-transition-leave{opacity:1}.dialog-bottom-transition-enter,.dialog-bottom-transition-leave-to{-webkit-transform:translateY(100%);transform:translateY(100%)}.picker-reverse-transition-enter-active,.picker-reverse-transition-leave-active,.picker-transition-enter-active,.picker-transition-leave-active{-webkit-transition:.3s cubic-bezier(0,0,.2,1);transition:.3s cubic-bezier(0,0,.2,1)}.picker-reverse-transition-enter,.picker-reverse-transition-leave-to,.picker-transition-enter,.picker-transition-leave-to{opacity:0}.picker-reverse-transition-leave,.picker-reverse-transition-leave-active,.picker-reverse-transition-leave-to,.picker-transition-leave,.picker-transition-leave-active,.picker-transition-leave-to{position:absolute!important}.picker-transition-enter{-webkit-transform:translateY(100%);transform:translateY(100%)}.picker-reverse-transition-enter,.picker-transition-leave-to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.picker-reverse-transition-leave-to{-webkit-transform:translateY(100%);transform:translateY(100%)}.picker-title-transition-enter-to,.picker-title-transition-leave{-webkit-transform:translate(0);transform:translate(0)}.picker-title-transition-enter{-webkit-transform:translate(-100%);transform:translate(-100%)}.picker-title-transition-leave-to{-webkit-transform:translate(100%);opacity:0;transform:translate(100%)}.picker-title-transition-leave,.picker-title-transition-leave-active,.picker-title-transition-leave-to{position:absolute!important}.tab-transition-enter{-webkit-transform:translate(100%);transform:translate(100%)}.tab-transition-leave,.tab-transition-leave-active{position:absolute;top:0}.tab-transition-leave-to{position:absolute}.tab-reverse-transition-enter,.tab-transition-leave-to{-webkit-transform:translate(-100%);transform:translate(-100%)}.tab-reverse-transition-leave,.tab-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.expand-transition-enter-active,.expand-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.expand-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scale-transition-enter-active,.scale-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scale-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scale-transition-enter,.scale-transition-leave,.scale-transition-leave-to{-webkit-transform:scale(0);opacity:0;transform:scale(0)}.message-transition-enter-active,.message-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.message-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.message-transition-enter,.message-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.message-transition-leave,.message-transition-leave-active{position:absolute}.slide-y-transition-enter-active,.slide-y-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-y-transition-enter,.slide-y-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.slide-y-reverse-transition-enter-active,.slide-y-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-y-reverse-transition-enter,.slide-y-reverse-transition-leave-to{-webkit-transform:translateY(15px);opacity:0;transform:translateY(15px)}.scroll-y-transition-enter-active,.scroll-y-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-y-transition-enter,.scroll-y-transition-leave-to{opacity:0}.scroll-y-transition-enter{-webkit-transform:translateY(-15px);transform:translateY(-15px)}.scroll-y-transition-leave-to{-webkit-transform:translateY(15px);transform:translateY(15px)}.scroll-y-reverse-transition-enter-active,.scroll-y-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-y-reverse-transition-enter,.scroll-y-reverse-transition-leave-to{opacity:0}.scroll-y-reverse-transition-enter{-webkit-transform:translateY(15px);transform:translateY(15px)}.scroll-y-reverse-transition-leave-to{-webkit-transform:translateY(-15px);transform:translateY(-15px)}.scroll-x-transition-enter-active,.scroll-x-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-x-transition-enter,.scroll-x-transition-leave-to{opacity:0}.scroll-x-transition-enter{-webkit-transform:translateX(-15px);transform:translateX(-15px)}.scroll-x-transition-leave-to{-webkit-transform:translateX(15px);transform:translateX(15px)}.scroll-x-reverse-transition-enter-active,.scroll-x-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-x-reverse-transition-enter,.scroll-x-reverse-transition-leave-to{opacity:0}.scroll-x-reverse-transition-enter{-webkit-transform:translateX(15px);transform:translateX(15px)}.scroll-x-reverse-transition-leave-to{-webkit-transform:translateX(-15px);transform:translateX(-15px)}.slide-x-transition-enter-active,.slide-x-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-x-transition-enter,.slide-x-transition-leave-to{-webkit-transform:translateX(-15px);opacity:0;transform:translateX(-15px)}.slide-x-reverse-transition-enter-active,.slide-x-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-x-reverse-transition-enter,.slide-x-reverse-transition-leave-to{-webkit-transform:translateX(15px);opacity:0;transform:translateX(15px)}.fade-transition-enter-active,.fade-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.fade-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.fade-transition-enter,.fade-transition-leave-to{opacity:0}.fab-transition-enter-active,.fab-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.fab-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.fab-transition-enter,.fab-transition-leave-to{-webkit-transform:scale(0) rotate(-45deg);transform:scale(0) rotate(-45deg)}.blockquote{font-size:18px;font-weight:300;padding:16px 0 16px 24px}code,kbd{border-radius:3px;display:inline-block;font-size:85%;font-weight:900;white-space:pre-wrap}code:after,code:before,kbd:after,kbd:before{content:\"\\A0\";letter-spacing:-1px}code{background-color:#f5f5f5;-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);color:#bd4147}kbd{background:#424242;color:#fff}html{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);font-size:14px;overflow-x:hidden;text-rendering:optimizeLegibility}.application{font-family:Roboto,sans-serif;line-height:1.5}::-ms-clear,::-ms-reveal{display:none}ol,ul{padding-left:24px}.display-4{font-family:Roboto,sans-serif!important;font-size:112px!important;font-weight:300;letter-spacing:-.04em!important;line-height:1!important}.display-3{font-size:56px!important;letter-spacing:-.02em!important;line-height:1.35!important}.display-2,.display-3{font-family:Roboto,sans-serif!important;font-weight:400}.display-2{font-size:45px!important;letter-spacing:normal!important;line-height:48px!important}.display-1{font-size:34px!important;line-height:40px!important}.display-1,.headline{font-family:Roboto,sans-serif!important;font-weight:400;letter-spacing:normal!important}.headline{font-size:24px!important;line-height:32px!important}.title{font-family:Roboto,sans-serif!important;font-size:20px!important;font-weight:500;letter-spacing:.02em!important;line-height:1!important}.subheading{font-size:16px!important;font-weight:400}.body-2{font-weight:500}.body-1,.body-2{font-size:14px!important}.body-1,.caption{font-weight:400}.caption{font-size:12px!important}p{margin-bottom:16px}.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.right{float:right!important}.left{float:left!important}.ma-auto{margin:auto!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mt-auto{margin-top:auto}.mr-auto{margin-right:auto}.mb-auto{margin-bottom:auto}.ml-auto{margin-left:auto}.ma-0{margin:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.pa-0{padding:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.ma-1{margin:4px!important}.my-1{margin-bottom:4px!important;margin-top:4px!important}.mx-1{margin-left:4px!important;margin-right:4px!important}.mt-1{margin-top:4px!important}.mr-1{margin-right:4px!important}.mb-1{margin-bottom:4px!important}.ml-1{margin-left:4px!important}.pa-1{padding:4px!important}.py-1{padding-bottom:4px!important;padding-top:4px!important}.px-1{padding-left:4px!important;padding-right:4px!important}.pt-1{padding-top:4px!important}.pr-1{padding-right:4px!important}.pb-1{padding-bottom:4px!important}.pl-1{padding-left:4px!important}.ma-2{margin:8px!important}.my-2{margin-bottom:8px!important;margin-top:8px!important}.mx-2{margin-left:8px!important;margin-right:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.pa-2{padding:8px!important}.py-2{padding-bottom:8px!important;padding-top:8px!important}.px-2{padding-left:8px!important;padding-right:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2{padding-left:8px!important}.ma-3{margin:16px!important}.my-3{margin-bottom:16px!important;margin-top:16px!important}.mx-3{margin-left:16px!important;margin-right:16px!important}.mt-3{margin-top:16px!important}.mr-3{margin-right:16px!important}.mb-3{margin-bottom:16px!important}.ml-3{margin-left:16px!important}.pa-3{padding:16px!important}.py-3{padding-bottom:16px!important;padding-top:16px!important}.px-3{padding-left:16px!important;padding-right:16px!important}.pt-3{padding-top:16px!important}.pr-3{padding-right:16px!important}.pb-3{padding-bottom:16px!important}.pl-3{padding-left:16px!important}.ma-4{margin:24px!important}.my-4{margin-bottom:24px!important;margin-top:24px!important}.mx-4{margin-left:24px!important;margin-right:24px!important}.mt-4{margin-top:24px!important}.mr-4{margin-right:24px!important}.mb-4{margin-bottom:24px!important}.ml-4{margin-left:24px!important}.pa-4{padding:24px!important}.py-4{padding-bottom:24px!important;padding-top:24px!important}.px-4{padding-left:24px!important;padding-right:24px!important}.pt-4{padding-top:24px!important}.pr-4{padding-right:24px!important}.pb-4{padding-bottom:24px!important}.pl-4{padding-left:24px!important}.ma-5{margin:48px!important}.my-5{margin-bottom:48px!important;margin-top:48px!important}.mx-5{margin-left:48px!important;margin-right:48px!important}.mt-5{margin-top:48px!important}.mr-5{margin-right:48px!important}.mb-5{margin-bottom:48px!important}.ml-5{margin-left:48px!important}.pa-5{padding:48px!important}.py-5{padding-bottom:48px!important;padding-top:48px!important}.px-5{padding-left:48px!important;padding-right:48px!important}.pt-5{padding-top:48px!important}.pr-5{padding-right:48px!important}.pb-5{padding-bottom:48px!important}.pl-5{padding-left:48px!important}.font-weight-thin{font-weight:100!important}.font-weight-light{font-weight:300!important}.font-weight-regular{font-weight:400!important}.font-weight-medium{font-weight:500!important}.font-weight-bold{font-weight:700!important}.font-weight-black{font-weight:900!important}.font-italic{font-style:italic!important}.text-capitalize{text-transform:capitalize!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-no-wrap,.text-truncate{white-space:nowrap!important}.text-truncate{overflow:hidden!important;text-overflow:ellipsis!important}.transition-fast-out-slow-in{-webkit-transition:.3s cubic-bezier(.4,0,.2,1)!important;transition:.3s cubic-bezier(.4,0,.2,1)!important}.transition-linear-out-slow-in{-webkit-transition:.3s cubic-bezier(0,0,.2,1)!important;transition:.3s cubic-bezier(0,0,.2,1)!important}.transition-fast-out-linear-in{-webkit-transition:.3s cubic-bezier(.4,0,1,1)!important;transition:.3s cubic-bezier(.4,0,1,1)!important}.transition-ease-in-out{-webkit-transition:.3s cubic-bezier(.4,0,.6,1)!important;transition:.3s cubic-bezier(.4,0,.6,1)!important}.transition-fast-in-fast-out{-webkit-transition:.3s cubic-bezier(.25,.8,.25,1)!important;transition:.3s cubic-bezier(.25,.8,.25,1)!important}.transition-swing{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1)!important;transition:.3s cubic-bezier(.25,.8,.5,1)!important}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){clip:rect(0 0 0 0)!important;position:absolute!important}}@media only screen and (max-width:599px){.hidden-xs-only{display:none!important}}@media only screen and (min-width:600px) and (max-width:959px){.hidden-sm-only{display:none!important}}@media only screen and (max-width:959px){.hidden-sm-and-down{display:none!important}}@media only screen and (min-width:600px){.hidden-sm-and-up{display:none!important}}@media only screen and (min-width:960px) and (max-width:1263px){.hidden-md-only{display:none!important}}@media only screen and (max-width:1263px){.hidden-md-and-down{display:none!important}}@media only screen and (min-width:960px){.hidden-md-and-up{display:none!important}}@media only screen and (min-width:1264px) and (max-width:1903px){.hidden-lg-only{display:none!important}}@media only screen and (max-width:1903px){.hidden-lg-and-down{display:none!important}}@media only screen and (min-width:1264px){.hidden-lg-and-up{display:none!important}}@media only screen and (min-width:1904px){.hidden-xl-only{display:none!important}}@media (min-width:0){.text-xs-left{text-align:left!important}.text-xs-center{text-align:center!important}.text-xs-right{text-align:right!important}.text-xs-justify{text-align:justify!important}}@media (min-width:600px){.text-sm-left{text-align:left!important}.text-sm-center{text-align:center!important}.text-sm-right{text-align:right!important}.text-sm-justify{text-align:justify!important}}@media (min-width:960px){.text-md-left{text-align:left!important}.text-md-center{text-align:center!important}.text-md-right{text-align:right!important}.text-md-justify{text-align:justify!important}}@media (min-width:1264px){.text-lg-left{text-align:left!important}.text-lg-center{text-align:center!important}.text-lg-right{text-align:right!important}.text-lg-justify{text-align:justify!important}}@media (min-width:1904px){.text-xl-left{text-align:left!important}.text-xl-center{text-align:center!important}.text-xl-right{text-align:right!important}.text-xl-justify{text-align:justify!important}}.application{display:-webkit-box;display:-ms-flexbox;display:flex}.application a{cursor:pointer}.application--is-rtl{direction:rtl}.application--wrap{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;min-height:100vh;position:relative}.theme--light.application{background:#fafafa;color:rgba(0,0,0,.87)}.theme--light.application .text--primary{color:rgba(0,0,0,.87)!important}.theme--light.application .text--secondary{color:rgba(0,0,0,.54)!important}.theme--light.application .text--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.application{background:#303030;color:#fff}.theme--dark.application .text--primary{color:#fff!important}.theme--dark.application .text--secondary{color:hsla(0,0%,100%,.7)!important}.theme--dark.application .text--disabled{color:hsla(0,0%,100%,.5)!important}@media print{@-moz-document url-prefix(){.application,.application--wrap{display:block}}}.v-alert{border-radius:0;border-style:solid;border-width:4px 0 0;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;margin:4px auto;padding:16px;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-alert .v-alert__icon.v-icon,.v-alert__dismissible .v-icon{-ms-flex-item-align:center;align-self:center;color:rgba(0,0,0,.3);font-size:24px}.v-alert--outline .v-icon{color:inherit!important}.v-alert__icon{margin-right:16px}.v-alert__dismissible{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;color:inherit;margin-left:16px;margin-right:0;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-alert__dismissible:hover{opacity:.8}.v-alert--no-icon .v-alert__icon{display:none}.v-alert>div{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:1;-ms-flex:1 1;flex:1 1}.v-alert.v-alert{border-color:rgba(0,0,0,.12)!important}.v-alert.v-alert--outline{border:1px solid!important}@media screen and (max-width:600px){.v-alert__icon{display:none}}.theme--light.v-icon{color:rgba(0,0,0,.54)}.theme--light.v-icon.v-icon--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.v-icon{color:#fff}.theme--dark.v-icon.v-icon--disabled{color:hsla(0,0%,100%,.5)!important}.v-icon{-webkit-font-feature-settings:\"liga\";-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-feature-settings:\"liga\";font-size:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:1;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);vertical-align:text-bottom}.v-icon.v-icon.v-icon--link{cursor:pointer}.v-icon.v-icon--large{font-size:2.5rem}.v-icon.v-icon--medium{font-size:2rem}.v-icon.v-icon--x-large{font-size:3rem}.v-icon.v-icon--disabled{pointer-events:none}.v-autocomplete.v-input>.v-input__control>.v-input__slot{cursor:text}.v-autocomplete input{-ms-flex-item-align:center;align-self:center}.v-autocomplete--is-selecting-index input{opacity:0}.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo) .v-select__slot>input{margin-top:24px}.v-autocomplete:not(.v-input--is-disabled).v-select.v-text-field input{pointer-events:auto}.v-autocomplete__content.v-menu__content,.v-autocomplete__content.v-menu__content .v-card{border-radius:0}.theme--light.v-text-field .v-input__slot:before{border-color:rgba(0,0,0,.42)}.theme--light.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:rgba(0,0,0,.87)}.theme--light.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38) 0,rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38) 0,rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat}.theme--light.v-text-field__prefix,.theme--light.v-text-field__suffix{color:rgba(0,0,0,.54)}.theme--light.v-text-field--solo .v-input__slot{background:#fff;border-radius:2px}.theme--light.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:rgba(0,0,0,.16)}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#424242}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:#fff}.theme--light.v-text-field--box .v-input__slot{background:rgba(0,0,0,.06)}.theme--light.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.12)}.theme--light.v-text-field--outline .v-input__slot{border:2px solid rgba(0,0,0,.54)}.theme--light.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid rgba(0,0,0,.87)}.theme--dark.v-text-field .v-input__slot:before{border-color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:#fff}.theme--dark.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat}.theme--dark.v-text-field__prefix,.theme--dark.v-text-field__suffix{color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field--solo .v-input__slot{background:#424242;border-radius:2px}.theme--dark.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:hsla(0,0%,100%,.16)}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#fff}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:rgba(0,0,0,.87)}.theme--dark.v-text-field--box .v-input__slot{background:rgba(0,0,0,.1)}.theme--dark.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.2)}.theme--dark.v-text-field--outline .v-input__slot{border:2px solid hsla(0,0%,100%,.7)}.theme--dark.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid #fff}.application--is-rtl .v-text-field .v-label{-webkit-transform-origin:top right;transform-origin:top right}.application--is-rtl .v-text-field .v-counter{margin-left:0;margin-right:8px}.application--is-rtl .v-text-field--enclosed .v-input__append-outer{margin-left:0;margin-right:16px}.application--is-rtl .v-text-field--enclosed .v-input__prepend-outer{margin-left:16px;margin-right:0}.application--is-rtl .v-text-field--reverse input{text-align:left}.application--is-rtl .v-text-field--reverse .v-label{-webkit-transform-origin:top left;transform-origin:top left}.application--is-rtl .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.application--is-rtl .v-text-field__suffix{padding-left:0;padding-right:4px}.application--is-rtl .v-text-field--reverse .v-text-field__prefix{padding-left:0;padding-right:4px;text-align:right}.application--is-rtl .v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field{margin-top:4px;padding-top:12px}.v-text-field input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:20px;max-width:100%;min-width:0;padding:8px 0;width:100%}.v-text-field .v-input__append-inner,.v-text-field .v-input__prepend-inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-top:4px;user-select:none}.v-text-field .v-input__prepend-inner{margin-right:auto;padding-right:4px}.v-text-field .v-input__append-inner{margin-left:auto;padding-left:4px}.v-text-field .v-counter{margin-left:8px;white-space:nowrap}.v-text-field .v-label{-webkit-transform-origin:top left;max-width:90%;overflow:hidden;pointer-events:none;text-overflow:ellipsis;top:6px;transform-origin:top left;white-space:nowrap}.v-text-field .v-label--active{-webkit-transform:translateY(-18px) scale(.75);max-width:100%;transform:translateY(-18px) scale(.75)}.v-text-field>.v-input__control>.v-input__slot{cursor:text;-webkit-transition:background .3s cubic-bezier(.25,.8,.5,1);transition:background .3s cubic-bezier(.25,.8,.5,1)}.v-text-field>.v-input__control>.v-input__slot:after,.v-text-field>.v-input__control>.v-input__slot:before{bottom:-1px;content:\"\";left:0;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-text-field>.v-input__control>.v-input__slot:before{border-style:solid;border-width:thin 0 0}.v-text-field>.v-input__control>.v-input__slot:after{-webkit-transform:scaleX(0);border-color:currentColor;border-style:solid;border-width:thin 0;transform:scaleX(0)}.v-text-field__details{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;overflow:hidden}.v-text-field__prefix,.v-text-field__suffix{-ms-flex-item-align:center;align-self:center;cursor:default}.v-text-field__prefix{padding-right:4px;text-align:right;width:16px}.v-text-field__suffix{padding-left:4px;white-space:nowrap}.v-text-field--reverse .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field__slot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.v-text-field--box,.v-text-field--outline{position:relative}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.v-text-field--box input,.v-text-field--outline input{margin-top:22px}.v-text-field--box.v-text-field--single-line input,.v-text-field--outline.v-text-field--single-line input{margin-top:12px}.v-text-field--box .v-label,.v-text-field--outline .v-label{top:18px}.v-text-field--box .v-label--active,.v-text-field--outline .v-label--active{-webkit-transform:translateY(-6px) scale(.75);transform:translateY(-6px) scale(.75)}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{min-height:56px}.v-text-field--box .v-input__slot{border-top-left-radius:4px;border-top-right-radius:4px}.v-text-field--box .v-input__slot:before{border-style:solid;border-width:thin 0}.v-text-field.v-text-field--enclosed{margin:0;padding:0}.v-text-field.v-text-field--enclosed:not(.v-text-field--box) .v-progress-linear__background{display:none}.v-text-field.v-text-field--enclosed .v-input__append-inner,.v-text-field.v-text-field--enclosed .v-input__append-outer,.v-text-field.v-text-field--enclosed .v-input__prepend-inner,.v-text-field.v-text-field--enclosed .v-input__prepend-outer{margin-top:16px}.v-text-field.v-text-field--enclosed .v-input__slot,.v-text-field.v-text-field--enclosed .v-text-field__details{padding:0 12px}.v-text-field.v-text-field--enclosed .v-text-field__details{margin-bottom:8px}.v-text-field.v-text-field--full-width.v-input{margin-bottom:0;margin-top:0}.v-text-field.v-text-field--full-width .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--full-width .v-input__control{padding:12px 0}.v-text-field.v-text-field--full-width .v-input__append-outer,.v-text-field.v-text-field--full-width .v-input__prepend-outer{margin-top:4px}.v-text-field.v-text-field--full-width .v-input__append-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field--reverse input{text-align:right}.v-text-field--reverse .v-label{-webkit-transform-origin:top right;transform-origin:top right}.v-text-field--reverse .v-input__slot,.v-text-field--reverse .v-text-field__slot{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-text-field--full-width .v-input__slot:after,.v-text-field--full-width .v-input__slot:before,.v-text-field--outline .v-input__slot:after,.v-text-field--outline .v-input__slot:before,.v-text-field--solo .v-input__slot:after,.v-text-field--solo .v-input__slot:before{display:none}.v-text-field--outline{margin-bottom:16px;-webkit-transition:border .3s cubic-bezier(.25,.8,.5,1);transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field--outline .v-input__slot{background:transparent!important;border-radius:4px}.v-text-field--outline .v-input__append-outer,.v-text-field--outline .v-input__prepend-outer{margin-top:18px}.v-text-field--outline.v-input--is-focused .v-input__slot{border:2px solid;-webkit-transition:border .3s cubic-bezier(.25,.8,.5,1);transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field.v-text-field--solo .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--solo .v-input__control{min-height:48px;padding:0}.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat) .v-input__slot{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-text-field.v-text-field--solo .v-text-field__slot{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.v-text-field.v-text-field--solo .v-input__append-inner,.v-text-field.v-text-field--solo .v-input__prepend-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field.v-text-field--solo .v-input__append-outer,.v-text-field.v-text-field--solo .v-input__prepend-outer{margin-top:12px}.v-text-field.v-input--is-focused .v-input__slot:after{-webkit-transform:scaleX(1);transform:scaleX(1)}.v-text-field.v-input--has-state .v-input__slot:before{border-color:currentColor}.theme--light.v-select .v-select__selections{color:rgba(0,0,0,.87)}.theme--light.v-select .v-chip--disabled,.theme--light.v-select.v-input--is-disabled .v-select__selections,.theme--light.v-select .v-select__selection--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-select .v-select__selections,.theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:#fff}.theme--dark.v-select .v-chip--disabled,.theme--dark.v-select.v-input--is-disabled .v-select__selections,.theme--dark.v-select .v-select__selection--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:rgba(0,0,0,.87)}.v-select{position:relative}.v-select>.v-input__control>.v-input__slot{cursor:pointer}.v-select .v-chip{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.v-select .fade-transition-leave-active{left:0;position:absolute}.v-select.v-input--is-dirty ::-webkit-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty :-ms-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty ::-ms-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty ::placeholder{color:transparent!important}.v-select.v-text-field--enclosed:not(.v-text-field--single-line) .v-select__selections{padding-top:24px}.v-select.v-text-field input{-webkit-box-flex:1;-ms-flex:1 1;flex:1 1;margin-top:0;min-width:0;pointer-events:none;position:relative}.v-select.v-select--is-menu-active .v-input__icon--append .v-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.v-select.v-select--chips input{margin:0}.v-select.v-select--chips .v-select__selections{min-height:42px}.v-select.v-select--chips.v-select--chips--small .v-select__selections{min-height:32px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections{min-height:68px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections{min-height:56px}.v-select.v-text-field--reverse .v-select__selections,.v-select.v-text-field--reverse .v-select__slot{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-select__selections{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:18px}.v-select__selection{max-width:90%}.v-select__selection--comma{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin:7px 4px 7px 0}.v-select__slot{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;width:100%}.v-select:not(.v-text-field--single-line) .v-select__slot>input{-ms-flex-item-align:end;align-self:flex-end}.theme--light.v-chip{background:#e0e0e0;color:rgba(0,0,0,.87)}.theme--light.v-chip--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-chip{background:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-chip--disabled{color:hsla(0,0%,100%,.5)}.v-chip{border:1px solid transparent;border-radius:28px;font-size:13px;margin:4px;outline:none;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-chip,.v-chip .v-chip__content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.v-chip .v-chip__content{border-radius:28px;cursor:default;height:32px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 12px;white-space:nowrap;z-index:1}.v-chip--removable .v-chip__content{padding:0 4px 0 12px}.v-chip .v-avatar{height:32px!important;margin-left:-12px;margin-right:8px;min-width:32px;width:32px!important}.v-chip .v-avatar img{height:100%;width:100%}.v-chip--active,.v-chip--selected,.v-chip:focus:not(.v-chip--disabled){border-color:rgba(0,0,0,.13);-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-chip--active:after,.v-chip--selected:after,.v-chip:focus:not(.v-chip--disabled):after{background:currentColor;border-radius:inherit;content:\"\";height:100%;left:0;opacity:.13;pointer-events:none;position:absolute;top:0;-webkit-transition:inherit;transition:inherit;width:100%}.v-chip--label,.v-chip--label .v-chip__content{border-radius:2px}.v-chip.v-chip.v-chip--outline{background:transparent!important;border-color:currentColor;color:#9e9e9e}.v-chip--small{height:24px}.v-chip--small .v-avatar{height:24px;min-width:24px;width:24px}.v-chip--small .v-icon{font-size:20px}.v-chip__close{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:20px;margin:0 2px 0 8px;text-decoration:none;user-select:none}.v-chip__close>.v-icon{color:inherit!important;cursor:pointer;font-size:20px;opacity:.5}.v-chip__close>.v-icon:hover{opacity:1}.v-chip--disabled .v-chip__close{pointer-events:none}.v-chip--select-multi{margin:4px 4px 4px 0}.v-chip .v-icon{color:inherit}.v-chip .v-icon--right{margin-left:12px;margin-right:-8px}.v-chip .v-icon--left{margin-left:-8px;margin-right:12px}.v-menu{display:block;position:relative;vertical-align:middle}.v-menu--inline{display:inline-block}.v-menu__activator{-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.v-menu__activator *{cursor:pointer}.v-menu__activator--disabled{pointer-events:none}.v-menu__content{border-radius:2px;-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);contain:content;display:inline-block;max-width:80%;overflow-x:hidden;overflow-y:auto;position:absolute;will-change:transform}.v-menu__content--active{pointer-events:none}.v-menu__content>.card{-webkit-backface-visibility:hidden;backface-visibility:hidden;contain:content}.v-menu>.v-menu__content{max-width:none}.v-menu-transition-enter .v-list__tile{min-width:0;pointer-events:none}.v-menu-transition-enter-to .v-list__tile{pointer-events:auto;-webkit-transition-delay:.1s;transition-delay:.1s}.v-menu-transition-leave-active,.v-menu-transition-leave-to{pointer-events:none}.v-menu-transition-enter,.v-menu-transition-leave-to{opacity:0}.v-menu-transition-enter-active,.v-menu-transition-leave-active{-webkit-transition:all .3s cubic-bezier(.25,.8,.25,1);transition:all .3s cubic-bezier(.25,.8,.25,1)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile--active{-webkit-transform:none!important;opacity:1;pointer-events:auto;transform:none!important}.theme--light.v-card{background-color:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-card{background-color:#424242;color:#fff}.v-card{border-radius:2px;-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:block;min-width:0;position:relative;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-card>:first-child:not(.v-btn):not(.v-chip){border-top-left-radius:inherit;border-top-right-radius:inherit}.v-card>:last-child:not(.v-btn):not(.v-chip){border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.v-card--raised{-webkit-box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.v-card--tile{border-radius:0}.v-card--flat{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-card--hover{cursor:pointer;-webkit-transition:all .4s cubic-bezier(.25,.8,.25,1);transition:all .4s cubic-bezier(.25,.8,.25,1);-webkit-transition-property:-webkit-box-shadow;transition-property:-webkit-box-shadow;transition-property:box-shadow;transition-property:box-shadow, -webkit-box-shadow}.v-card--hover:hover{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-card__title{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:16px}.v-card__title--primary{padding-top:24px}.v-card__text{padding:16px;width:100%}.v-card__actions{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding:8px}.v-card__actions .v-btn,.v-card__actions>*{margin:0}.v-card__actions .v-btn+.v-btn{margin-left:8px}.theme--light.v-input--selection-controls.v-input--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-input--selection-controls.v-input--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.application--is-rtl .v-input--selection-controls .v-input--selection-controls__input{margin-left:8px;margin-right:0}.v-input--selection-controls{margin-top:16px;padding-top:4px}.v-input--selection-controls .v-input__append-outer,.v-input--selection-controls .v-input__prepend-outer{margin-bottom:0;margin-top:0}.v-input--selection-controls .v-input__slot{margin-bottom:12px}.v-input--selection-controls__input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;color:inherit;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:24px;margin-right:8px;position:relative;transition:color .2s cubic-bezier(.25,.8,.25,1),-webkit-transform .3s cubic-bezier(.25,.8,.25,1);-webkit-transition:color .2s cubic-bezier(.25,.8,.25,1),-webkit-transform .3s cubic-bezier(.25,.8,.25,1);transition:color .2s cubic-bezier(.25,.8,.25,1),transform .3s cubic-bezier(.25,.8,.25,1);transition:color .2s cubic-bezier(.25,.8,.25,1),transform .3s cubic-bezier(.25,.8,.25,1),-webkit-transform .3s cubic-bezier(.25,.8,.25,1);user-select:none;width:24px}.v-input--selection-controls__input input{height:100%;opacity:0;position:absolute;width:100%}.v-input--selection-controls__input+.v-label,.v-input--selection-controls__input input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-input--selection-controls__ripple{cursor:pointer;height:48px;left:-12px;position:absolute;top:calc(50% - 24px);-webkit-transition:inherit;transition:inherit;width:48px}.v-input--selection-controls__ripple:before{-webkit-transform:scale(.2);-webkit-transform-origin:center center;border-radius:50%;bottom:0;content:\"\";left:0;opacity:.2;position:absolute;right:0;top:0;transform:scale(.2);transform-origin:center center;-webkit-transition:inherit;transition:inherit}.v-input--selection-controls.v-input .v-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:auto;top:0}.v-input--selection-controls.v-input--is-focused .v-input--selection-controls__ripple:before,.v-input--selection-controls .v-radio--is-focused .v-input--selection-controls__ripple:before{-webkit-transform:scale(.8);background:currentColor;transform:scale(.8)}.theme--light.v-input:not(.v-input--is-disabled) input,.theme--light.v-input:not(.v-input--is-disabled) textarea{color:rgba(0,0,0,.87)}.theme--light.v-input input::-webkit-input-placeholder,.theme--light.v-input textarea::-webkit-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input:-ms-input-placeholder,.theme--light.v-input textarea:-ms-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input::-ms-input-placeholder,.theme--light.v-input textarea::-ms-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input::placeholder,.theme--light.v-input textarea::placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input--is-disabled .v-label,.theme--light.v-input--is-disabled input,.theme--light.v-input--is-disabled textarea{color:rgba(0,0,0,.38)}.theme--dark.v-input:not(.v-input--is-disabled) input,.theme--dark.v-input:not(.v-input--is-disabled) textarea{color:#fff}.theme--dark.v-input input::-webkit-input-placeholder,.theme--dark.v-input textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input:-ms-input-placeholder,.theme--dark.v-input textarea:-ms-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input::-ms-input-placeholder,.theme--dark.v-input textarea::-ms-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input::placeholder,.theme--dark.v-input textarea::placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input--is-disabled .v-label,.theme--dark.v-input--is-disabled input,.theme--dark.v-input--is-disabled textarea{color:hsla(0,0%,100%,.5)}.v-input{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;text-align:left}.v-input .v-progress-linear{left:0;margin:0;position:absolute;top:calc(100% - 1px)}.v-input input{max-height:32px}.v-input input:invalid,.v-input textarea:invalid{-webkit-box-shadow:none;box-shadow:none}.v-input input:active,.v-input input:focus,.v-input textarea:active,.v-input textarea:focus{outline:none}.v-input .v-label{height:20px;line-height:20px}.v-input__append-outer,.v-input__prepend-outer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-bottom:4px;margin-top:4px}.v-input__append-outer .v-icon,.v-input__prepend-outer .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.v-input__append-outer{margin-left:9px}.v-input__prepend-outer{margin-right:9px}.v-input__control{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto;position:relative;width:100%}.v-input__icon{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:24px;width:24px}.v-input__icon--clear{border-radius:50%}.v-input__slot{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:8px;min-height:inherit;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-input--is-disabled:not(.v-input--is-readonly){pointer-events:none}.v-input--is-loading .v-input__slot:after,.v-input--is-loading .v-input__slot:before{display:none}.v-input--hide-details .v-input__slot{margin-bottom:0}.v-input--has-state.error--text .v-label{-webkit-animation:shake .6s cubic-bezier(.25,.8,.5,1);animation:shake .6s cubic-bezier(.25,.8,.5,1)}.theme--light.v-label{color:rgba(0,0,0,.54)}.theme--light.v-label--is-disabled{color:rgba(0,0,0,.38)}.theme--dark.v-label{color:hsla(0,0%,100%,.7)}.theme--dark.v-label--is-disabled{color:hsla(0,0%,100%,.5)}.v-label{font-size:16px;line-height:1;min-height:8px;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.theme--light.v-messages{color:rgba(0,0,0,.54)}.theme--dark.v-messages{color:hsla(0,0%,100%,.7)}.application--is-rtl .v-messages{text-align:right}.v-messages{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:12px;min-height:12px;min-width:1px;position:relative}.v-messages__message{-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;line-height:1;overflow-wrap:break-word;word-break:break-word;word-wrap:break-word}.v-progress-linear{background:transparent;margin:1rem 0;overflow:hidden;position:relative;width:100%}.v-progress-linear__bar{position:relative;width:100%;z-index:1}.v-progress-linear__bar,.v-progress-linear__bar__determinate{height:inherit;-webkit-transition:.2s;transition:.2s}.v-progress-linear__bar__indeterminate .long,.v-progress-linear__bar__indeterminate .short{background-color:inherit;bottom:0;height:inherit;left:0;position:absolute;top:0;width:auto;will-change:left,right}.v-progress-linear__bar__indeterminate--active .long{-webkit-animation:indeterminate;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__bar__indeterminate--active .short{-webkit-animation:indeterminate-short;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate-short;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__background{bottom:0;left:0;position:absolute;top:0;-webkit-transition:.3s ease-in;transition:.3s ease-in}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .long{-webkit-animation:query;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query;animation-duration:2s;animation-iteration-count:infinite}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .short{-webkit-animation:query-short;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query-short;animation-duration:2s;animation-iteration-count:infinite}@-webkit-keyframes indeterminate{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@-webkit-keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@-webkit-keyframes query{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes query{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@-webkit-keyframes query-short{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes query-short{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}.theme--light.v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-divider{border-color:hsla(0,0%,100%,.12)}.v-divider{border:solid;border-width:thin 0 0;display:block;-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;height:0;max-height:0;max-width:100%;-webkit-transition:inherit;transition:inherit}.v-divider--inset:not(.v-divider--vertical){margin-left:72px;max-width:calc(100% - 72px)}.v-divider--vertical{-ms-flex-item-align:stretch;align-self:stretch;border:solid;border-width:0 thin 0 0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:inherit;max-height:100%;max-width:0;min-height:100%;vertical-align:text-bottom;width:0}.v-divider--vertical.v-divider--inset{margin-top:8px;max-height:calc(100% - 16px);min-height:0}.theme--light.v-subheader{color:rgba(0,0,0,.54)}.theme--dark.v-subheader{color:hsla(0,0%,100%,.7)}.v-subheader{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;height:48px;padding:0 16px}.v-subheader--inset{margin-left:56px}.theme--light.v-list{background:#fff;color:rgba(0,0,0,.87)}.theme--light.v-list .v-list--disabled{color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__tile__sub-title{color:rgba(0,0,0,.54)}.theme--light.v-list .v-list__tile__mask{background:#eee;color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__group__header:hover,.theme--light.v-list .v-list__tile--highlighted,.theme--light.v-list .v-list__tile--link:hover{background:rgba(0,0,0,.04)}.theme--light.v-list .v-list__group--active:after,.theme--light.v-list .v-list__group--active:before{background:rgba(0,0,0,.12)}.theme--light.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--light.v-list .v-list__group--disabled .v-list__tile{color:rgba(0,0,0,.38)!important}.theme--dark.v-list{background:#424242;color:#fff}.theme--dark.v-list .v-list--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__tile__sub-title{color:hsla(0,0%,100%,.7)}.theme--dark.v-list .v-list__tile__mask{background:#494949;color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__group__header:hover,.theme--dark.v-list .v-list__tile--highlighted,.theme--dark.v-list .v-list__tile--link:hover{background:hsla(0,0%,100%,.08)}.theme--dark.v-list .v-list__group--active:after,.theme--dark.v-list .v-list__group--active:before{background:hsla(0,0%,100%,.12)}.theme--dark.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--dark.v-list .v-list__group--disabled .v-list__tile{color:hsla(0,0%,100%,.5)!important}.v-list{list-style-type:none;padding:8px 0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list .v-input .v-messages{display:none}.v-list .v-input,.v-list .v-input__slot{margin:0}.v-list>div{-webkit-transition:inherit;transition:inherit}.v-list__tile{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-weight:400;height:48px;margin:0;padding:0 16px;position:relative;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list__tile--link{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-list__tile__action,.v-list__tile__content{height:100%}.v-list__tile__sub-title,.v-list__tile__title{overflow:hidden;text-overflow:ellipsis;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:100%}.v-list__tile__title{height:24px;line-height:24px;position:relative;text-align:left}.v-list__tile__sub-title{font-size:14px}.v-list__tile__action,.v-list__tile__avatar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__tile__action{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.v-list__tile__action .v-btn{margin:0;padding:0}.v-list__tile__action .v-btn--icon{margin:-6px}.v-list__tile__action .v-radio.v-radio{margin:0}.v-list__tile__action .v-input--selection-controls{padding:0}.v-list__tile__action-text{color:#9e9e9e;font-size:12px}.v-list__tile__action--stack{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:8px;padding-top:8px;white-space:nowrap}.v-list__tile__content{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;text-align:left}.v-list__tile__content~.v-list__tile__action:not(.v-list__tile__action--stack),.v-list__tile__content~.v-list__tile__avatar{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.v-list__tile--active .v-list__tile__action:first-of-type .v-icon{color:inherit}.v-list__tile--avatar{height:56px}.v-list--dense{padding-bottom:4px;padding-top:4px}.v-list--dense .v-subheader{font-size:13px;height:40px}.v-list--dense .v-list__group .v-subheader{height:40px}.v-list--dense .v-list__tile{font-size:13px}.v-list--dense .v-list__tile--avatar{height:48px}.v-list--dense .v-list__tile:not(.v-list__tile--avatar){height:40px}.v-list--dense .v-list__tile .v-icon{font-size:22px}.v-list--dense .v-list__tile__sub-title{font-size:13px}.v-list--disabled{pointer-events:none}.v-list--two-line .v-list__tile{height:72px}.v-list--two-line.v-list--dense .v-list__tile{height:60px}.v-list--three-line .v-list__tile{height:88px}.v-list--three-line .v-list__tile__avatar{margin-top:-18px}.v-list--three-line .v-list__tile__sub-title{-webkit-line-clamp:2;display:-webkit-box;white-space:normal}.v-list--three-line.v-list--dense .v-list__tile{height:76px}.v-list>.v-list__group:before{top:0}.v-list>.v-list__group:before .v-list__tile__avatar{margin-top:-14px}.v-list__group{padding:0;position:relative;-webkit-transition:inherit;transition:inherit}.v-list__group:after,.v-list__group:before{content:\"\";height:1px;left:0;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-list__group--active~.v-list__group:before{display:none}.v-list__group__header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;list-style-type:none}.v-list__group__header>div:not(.v-list__group__header__prepend-icon):not(.v-list__group__header__append-icon){-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.v-list__group__header .v-list__group__header__append-icon,.v-list__group__header .v-list__group__header__prepend-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;padding:0 16px;user-select:none}.v-list__group__header--sub-group{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.v-list__group__header--sub-group div .v-list__tile{padding-left:0}.v-list__group__header--sub-group .v-list__group__header__prepend-icon{margin-right:8px;padding:0 0 0 40px}.v-list__group__header .v-list__group__header__prepend-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__group__header--active .v-list__group__header__append-icon .v-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-list__group__header--active .v-list__group__header__prepend-icon .v-icon{color:inherit}.v-list__group__header--active.v-list__group__header--sub-group .v-list__group__header__prepend-icon .v-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-list__group__items{padding:0;position:relative;-webkit-transition:inherit;transition:inherit}.v-list__group__items>div{display:block}.v-list__group__items--no-action .v-list__tile{padding-left:72px}.v-list__group--disabled{pointer-events:none}.v-list--subheader{padding-top:0}.v-avatar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;text-align:center;vertical-align:middle}.v-avatar .v-icon,.v-avatar .v-image,.v-avatar img{border-radius:50%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:inherit;width:inherit}.v-avatar--tile,.v-avatar--tile .v-icon,.v-avatar--tile .v-image,.v-avatar--tile img{border-radius:0}.theme--light.v-counter{color:rgba(0,0,0,.54)}.theme--dark.v-counter{color:hsla(0,0%,100%,.7)}.v-counter{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;font-size:12px;line-height:1;min-height:12px}.v-badge{display:inline-block;position:relative}.v-badge__badge{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:14px;height:22px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;right:-22px;top:-11px;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:22px}.v-badge__badge .v-icon{font-size:14px}.v-badge--overlap .v-badge__badge{right:-8px;top:-8px}.v-badge--overlap.v-badge--left .v-badge__badge{left:-8px;right:auto}.v-badge--overlap.v-badge--bottom .v-badge__badge{bottom:-8px;top:auto}.v-badge--left .v-badge__badge{left:-22px}.v-badge--bottom .v-badge__badge{bottom:-11px;top:auto}.theme--light.v-bottom-nav{background-color:#fff}.theme--dark.v-bottom-nav{background-color:#424242}.v-bottom-nav{-webkit-transform:translateY(60px);bottom:0;-webkit-box-shadow:0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 3px 14px 2px rgba(0,0,0,.12);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;transform:translateY(60px);-webkit-transition:all .4s cubic-bezier(.25,.8,.5,1);transition:all .4s cubic-bezier(.25,.8,.5,1);width:100%}.v-bottom-nav--absolute{position:absolute}.v-bottom-nav--active{-webkit-transform:translate(0);transform:translate(0)}.v-bottom-nav--fixed{position:fixed;z-index:4}.v-bottom-nav .v-btn{background:transparent!important;border-radius:0;-webkit-box-shadow:none!important;box-shadow:none!important;-ms-flex-negative:1;flex-shrink:1;font-weight:400;height:100%;margin:0;max-width:168px;min-width:80px;opacity:.5;padding:8px 12px 10px;text-transform:none;width:100%}.v-bottom-nav .v-btn .v-btn__content{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;font-size:12px;white-space:nowrap;will-change:font-size}.v-bottom-nav .v-btn .v-btn__content i.v-icon{color:inherit;margin-bottom:4px;-webkit-transition:all .4s cubic-bezier(.25,.8,.5,1);transition:all .4s cubic-bezier(.25,.8,.5,1)}.v-bottom-nav .v-btn .v-btn__content span{line-height:1}.v-bottom-nav .v-btn--active{opacity:1;padding-top:6px}.v-bottom-nav .v-btn--active:before{background-color:transparent}.v-bottom-nav .v-btn--active .v-btn__content{font-size:14px}.v-bottom-nav .v-btn--active .v-btn__content .v-icon{-webkit-transform:none;transform:none}.v-bottom-nav .v-btn:not(.v-btn--active){-webkit-filter:grayscale(100%);filter:grayscale(100%)}.v-bottom-nav--shift .v-btn__content{font-size:14px}.v-bottom-nav--shift .v-btn{max-width:96px;min-width:56px;-webkit-transition:all .3s;transition:all .3s}.v-bottom-nav--shift .v-btn--active{max-width:168px;min-width:96px}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content .v-icon{-webkit-transform:scale(1) translateY(8px);transform:scale(1) translateY(8px)}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content span{color:transparent}.v-bottom-sheet.v-dialog{-ms-flex-item-align:end;align-self:flex-end;border-radius:0;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;margin:0;min-width:100%;overflow:visible;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1)}.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:70%;min-width:0}@media only screen and (max-width:599px){.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:none}}.v-dialog{border-radius:2px;-webkit-box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);margin:24px;overflow-y:auto;pointer-events:auto;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);width:100%;z-index:inherit}.v-dialog__content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;outline:none;pointer-events:none;position:fixed;top:0;-webkit-transition:.2s cubic-bezier(.25,.8,.25,1);transition:.2s cubic-bezier(.25,.8,.25,1);width:100%;z-index:6}.v-dialog:not(.v-dialog--fullscreen){max-height:90%}.v-dialog__activator,.v-dialog__activator *{cursor:pointer}.v-dialog__activator--disabled{pointer-events:none}.v-dialog__container{display:inline-block;vertical-align:middle}.v-dialog--animated{-webkit-animation-duration:.15s;-webkit-animation-name:animate-dialog;-webkit-animation-timing-function:cubic-bezier(.25,.8,.25,1);animation-duration:.15s;animation-name:animate-dialog;animation-timing-function:cubic-bezier(.25,.8,.25,1)}.v-dialog--fullscreen{border-radius:0;height:100%;left:0;margin:0;overflow-y:auto;position:fixed;top:0}.v-dialog--fullscreen>.v-card{margin:0!important;min-height:100%;min-width:100%;padding:0!important}.v-dialog--scrollable{display:-webkit-box;display:-ms-flexbox;display:flex}.v-dialog--scrollable>.v-card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.v-dialog--scrollable>.v-card>.v-card__actions,.v-dialog--scrollable>.v-card>.v-card__title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.v-dialog--scrollable>.v-card>.v-card__text{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow-y:auto}@-webkit-keyframes animate-dialog{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.03);transform:scale(1.03)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes animate-dialog{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.03);transform:scale(1.03)}to{-webkit-transform:scale(1);transform:scale(1)}}.v-overlay{bottom:0;left:0;pointer-events:none;position:fixed;right:0;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);z-index:5}.v-overlay--absolute{position:absolute}.v-overlay:before{background-color:#212121;bottom:0;content:\"\";height:100%;left:0;opacity:0;position:absolute;right:0;top:0;-webkit-transition:inherit;transition:inherit;-webkit-transition-delay:.15s;transition-delay:.15s;width:100%}.v-overlay--active{pointer-events:auto;-ms-touch-action:none;touch-action:none}.v-overlay--active:before{opacity:.46}.theme--light.v-breadcrumbs li.v-breadcrumbs__divider,.theme--light.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--light.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:rgba(0,0,0,.38)}.theme--dark.v-breadcrumbs li.v-breadcrumbs__divider,.theme--dark.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--dark.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:hsla(0,0%,100%,.5)}.v-breadcrumbs{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style-type:none;margin:0;padding:18px 12px}.v-breadcrumbs li{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:14px}.v-breadcrumbs li .v-icon{font-size:16px}.v-breadcrumbs li:last-child a{cursor:default;pointer-events:none}.v-breadcrumbs li:nth-child(2n){padding:0 12px}.v-breadcrumbs--large li,.v-breadcrumbs--large li .v-icon{font-size:16px}.v-breadcrumbs__item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-breadcrumbs__item--disabled{pointer-events:none}.v-ripple__container{border-radius:inherit;contain:strict;height:100%;width:100%;z-index:0}.v-ripple__animation,.v-ripple__container{color:inherit;left:0;overflow:hidden;pointer-events:none;position:absolute;top:0}.v-ripple__animation{background:currentColor;border-radius:50%;opacity:0;-webkit-transition:.4s cubic-bezier(0,0,.2,1);transition:.4s cubic-bezier(0,0,.2,1);will-change:transform,opacity}.v-ripple__animation--enter{-webkit-transition:none;transition:none}.v-ripple__animation--visible{opacity:.15}.theme--light.v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn.v-btn--disabled,.theme--light.v-btn.v-btn--disabled .v-btn__loading,.theme--light.v-btn.v-btn--disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--light.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:rgba(0,0,0,.12)!important}.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#f5f5f5}.theme--dark.v-btn{color:#fff}.theme--dark.v-btn.v-btn--disabled,.theme--dark.v-btn.v-btn--disabled .v-btn__loading,.theme--dark.v-btn.v-btn--disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.theme--dark.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#212121}.v-btn{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:2px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:14px;font-weight:500;height:36px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:6px 8px;min-width:88px;outline:0;position:relative;text-decoration:none;text-transform:uppercase;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1),color 1ms;transition:.3s cubic-bezier(.25,.8,.5,1),color 1ms;user-select:none;vertical-align:middle}.v-btn:before{border-radius:inherit;color:inherit;content:\"\";height:100%;left:0;opacity:.12;position:absolute;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-btn{padding:0 16px}.v-btn--active,.v-btn:focus,.v-btn:hover{position:relative}.v-btn--active:before,.v-btn:focus:before,.v-btn:hover:before{background-color:currentColor}.v-btn__content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:inherit;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 auto;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:inherit}.v-btn--small{font-size:13px;height:28px;padding:0 8px}.v-btn--large{font-size:15px;height:44px;padding:0 32px}.v-btn .v-btn__content .v-icon{color:inherit}.v-btn:not(.v-btn--depressed):not(.v-btn--flat){-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);will-change:box-shadow}.v-btn:not(.v-btn--depressed):not(.v-btn--flat):active{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-btn--icon{background:transparent;border-radius:50%;-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:0;width:36px}.v-btn--icon.v-btn--small{width:28px}.v-btn--icon.v-btn--large{width:44px}.v-btn--floating,.v-btn--icon:before{border-radius:50%}.v-btn--floating{height:56px;min-width:0;padding:0;width:56px}.v-btn--floating.v-btn--absolute,.v-btn--floating.v-btn--fixed{z-index:4}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat){-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat):active{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12);box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.v-btn--floating .v-btn__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;margin:0}.v-btn--floating:after{border-radius:50%}.v-btn--floating .v-btn__content :not(:only-child){-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-btn--floating .v-btn__content :not(:only-child):first-child{opacity:1}.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(-45deg);opacity:0;transform:rotate(-45deg)}.v-btn--floating .v-btn__content :not(:only-child):first-child,.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-backface-visibility:hidden;left:0;position:absolute;top:0}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):first-child{-webkit-transform:rotate(45deg);opacity:0;transform:rotate(45deg)}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(0);opacity:1;transform:rotate(0)}.v-btn--floating .v-icon{height:inherit;width:inherit}.v-btn--floating.v-btn--small{height:40px;width:40px}.v-btn--floating.v-btn--small .v-icon{font-size:18px}.v-btn--floating.v-btn--large{height:72px;width:72px}.v-btn--floating.v-btn--large .v-icon{font-size:30px}.v-btn--reverse .v-btn__content{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-btn--reverse.v-btn--column .v-btn__content{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-btn--absolute,.v-btn--fixed{margin:0}.v-btn.v-btn--absolute{position:absolute}.v-btn.v-btn--fixed{position:fixed}.v-btn--top:not(.v-btn--absolute){top:16px}.v-btn--top.v-btn--absolute{top:-28px}.v-btn--top.v-btn--absolute.v-btn--small{top:-20px}.v-btn--top.v-btn--absolute.v-btn--large{top:-36px}.v-btn--bottom:not(.v-btn--absolute){bottom:16px}.v-btn--bottom.v-btn--absolute{bottom:-28px}.v-btn--bottom.v-btn--absolute.v-btn--small{bottom:-20px}.v-btn--bottom.v-btn--absolute.v-btn--large{bottom:-36px}.v-btn--left{left:16px}.v-btn--right{right:16px}.v-btn.v-btn--disabled{-webkit-box-shadow:none!important;box-shadow:none!important;pointer-events:none}.v-btn:not(.v-btn--disabled):not(.v-btn--floating):not(.v-btn--icon) .v-btn__content .v-icon{-webkit-transition:none;transition:none}.v-btn--icon{padding:0}.v-btn--loader{pointer-events:none}.v-btn--loader .v-btn__content{opacity:0}.v-btn__loading{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loading .v-icon--left{line-height:inherit;margin-right:1rem}.v-btn__loading .v-icon--right{line-height:inherit;margin-left:1rem}.v-btn.v-btn--outline{background:transparent!important;border:1px solid;-webkit-box-shadow:none;box-shadow:none}.v-btn.v-btn--outline:hover{-webkit-box-shadow:none;box-shadow:none}.v-btn--block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;margin:6px 0;width:100%}.v-btn--round,.v-btn--round:after{border-radius:28px}.v-btn .v-icon--right{margin-left:16px}.v-btn .v-icon--left{margin-right:16px}.v-btn:not(.v-btn--outline).accent,.v-btn:not(.v-btn--outline).error,.v-btn:not(.v-btn--outline).info,.v-btn:not(.v-btn--outline).primary,.v-btn:not(.v-btn--outline).secondary,.v-btn:not(.v-btn--outline).success,.v-btn:not(.v-btn--outline).warning{color:#fff}.v-progress-circular{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;position:relative;vertical-align:middle}.v-progress-circular svg{bottom:0;height:100%;left:0;margin:auto;position:absolute;right:0;top:0;width:100%;z-index:0}.v-progress-circular--indeterminate svg{-webkit-animation:progress-circular-rotate 1.4s linear infinite;-webkit-transform-origin:center center;animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{-webkit-animation:progress-circular-dash 1.4s ease-in-out infinite;animation:progress-circular-dash 1.4s ease-in-out infinite;stroke-dasharray:80,200;stroke-dashoffset:0px;stroke-linecap:round}.v-progress-circular__underlay{stroke:rgba(0,0,0,.1);z-index:1}.v-progress-circular__overlay{stroke:currentColor;-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out;z-index:2}.v-progress-circular__info{-webkit-transform:translate(-50%,-50%);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}@-webkit-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-webkit-keyframes progress-circular-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes progress-circular-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.theme--light.v-btn-toggle{background:#fff}.theme--light.v-btn-toggle .v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:rgba(0,0,0,.26)}.theme--dark.v-btn-toggle{background:#424242}.theme--dark.v-btn-toggle .v-btn{color:#fff}.theme--dark.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:hsla(0,0%,100%,.3)}.v-btn-toggle{border-radius:2px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);will-change:background,box-shadow}.v-btn-toggle .v-btn{border-radius:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;min-width:auto;opacity:.4;padding:0 8px;width:auto}.v-btn-toggle .v-btn:not(:last-child){border-right:1px solid transparent}.v-btn-toggle .v-btn:after{display:none}.v-btn-toggle .v-btn.v-btn--active{opacity:1}.v-btn-toggle .v-btn span+.v-icon{font-size:medium;margin-left:10px}.v-btn-toggle .v-btn:first-child{border-radius:2px 0 0 2px}.v-btn-toggle .v-btn:last-child{border-radius:0 2px 2px 0}.v-btn-toggle--selected{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-image{z-index:0}.v-image__image,.v-image__placeholder{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.v-image__image{background-repeat:no-repeat}.v-image__image--preload{-webkit-filter:blur(2px);filter:blur(2px)}.v-image__image--contain{background-size:contain}.v-image__image--cover{background-size:cover}.v-responsive{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;overflow:hidden;position:relative}.v-responsive__content{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.v-responsive__sizer{-webkit-box-flex:0;-ms-flex:0 0 0px;flex:0 0 0px;-webkit-transition:padding-bottom .2s cubic-bezier(.25,.8,.5,1);transition:padding-bottom .2s cubic-bezier(.25,.8,.5,1)}.application--is-rtl .v-carousel__prev{left:auto;right:5px}.application--is-rtl .v-carousel__next{left:5px;right:auto}.v-carousel{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);height:500px;overflow:hidden;position:relative;width:100%}.v-carousel__item{position:absolute;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-carousel__next,.v-carousel__prev{-webkit-transform:translateY(-50%);position:absolute;top:50%;transform:translateY(-50%);z-index:1}.v-carousel__next .v-btn,.v-carousel__prev .v-btn{height:auto;margin:0;width:auto}.v-carousel__next .v-btn i,.v-carousel__prev .v-btn i{font-size:48px}.v-carousel__next .v-btn:hover,.v-carousel__prev .v-btn:hover{background:none}.v-carousel__prev{left:5px}.v-carousel__next{right:5px}.v-carousel__controls{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:rgba(0,0,0,.5);bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;list-style-type:none;position:absolute;width:100%;z-index:1}.v-carousel__controls__item{margin:0 8px!important}.v-carousel__controls__item .v-icon{opacity:.5;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-carousel__controls__item--active .v-icon{opacity:1;vertical-align:middle}.v-carousel__controls__item:hover{background:none}.v-carousel__controls__item:hover .v-icon{opacity:.8}.theme--light.v-data-iterator .v-data-iterator__actions{color:rgba(0,0,0,.54)}.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:rgba(0,0,0,.54)!important}.theme--dark.v-data-iterator .v-data-iterator__actions{color:hsla(0,0%,100%,.7)}.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:hsla(0,0%,100%,.7)!important}.v-data-iterator__actions{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.v-data-iterator__actions .v-btn{color:inherit}.v-data-iterator__actions .v-btn:last-of-type{margin-left:14px}.v-data-iterator__actions__range-controls{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px}.v-data-iterator__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-data-iterator__actions__select{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:14px}.v-data-iterator__actions__select .v-select{margin:13px 0 13px 34px;padding:0;position:static}.v-data-iterator__actions__select .v-select .v-select__selection--comma{font-size:12px}.theme--light.v-overflow-btn .v-input__control:before,.theme--light.v-overflow-btn .v-input__slot:before{background-color:rgba(0,0,0,.12)!important}.theme--light.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--light.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--light.v-overflow-btn--editable:hover .v-input__append-inner,.theme--light.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid rgba(0,0,0,.12)}.theme--light.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--light.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--light.v-overflow-btn:hover .v-input__slot{background:#fff}.theme--dark.v-overflow-btn .v-input__control:before,.theme--dark.v-overflow-btn .v-input__slot:before{background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--dark.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--dark.v-overflow-btn--editable:hover .v-input__append-inner,.theme--dark.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--dark.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--dark.v-overflow-btn:hover .v-input__slot{background:#424242}.v-overflow-btn{margin-top:12px}.v-overflow-btn:not(.v-overflow-btn--editable)>.v-input__control>.v-input__slot{cursor:pointer}.v-overflow-btn .v-select__slot{height:48px}.v-overflow-btn .v-select__selection--comma:first-child,.v-overflow-btn .v-select__slot input{margin-left:16px}.v-overflow-btn .v-input__slot{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-overflow-btn .v-input__slot:after{content:none}.v-overflow-btn .v-label{margin-left:16px;top:calc(50% - 10px)}.v-overflow-btn .v-input__append-inner{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:auto;align-self:auto;-ms-flex-negative:0;flex-shrink:0;height:48px;margin-top:0;padding:0;width:48px}.v-overflow-btn .v-input__append-outer,.v-overflow-btn .v-input__prepend-outer{margin-bottom:12px;margin-top:12px}.v-overflow-btn .v-input__control:before{content:\"\";height:1px;left:0;position:absolute;top:-1px;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-overflow-btn.v-input--is-focused .v-input__slot,.v-overflow-btn.v-select--is-menu-active .v-input__slot{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-overflow-btn .v-select__selections{width:0}.v-overflow-btn--segmented .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-overflow-btn--segmented .v-select__selections .v-btn{border-radius:0;height:48px;margin:0 -16px 0 0;width:100%}.v-overflow-btn--segmented .v-select__selections .v-btn__content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.v-overflow-btn--segmented .v-select__selections .v-btn__content:before{background-color:transparent}.v-overflow-btn--editable .v-input__append-inner,.v-overflow-btn--editable .v-input__append-inner *{cursor:pointer}.theme--light.v-table{background-color:#fff;color:rgba(0,0,0,.87)}.theme--light.v-table thead tr:first-child{border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table thead th{color:rgba(0,0,0,.54)}.theme--light.v-table tbody tr:not(:last-child){border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table tbody tr[active]{background:#f5f5f5}.theme--light.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#eee}.theme--light.v-table tfoot tr{border-top:1px solid rgba(0,0,0,.12)}.theme--dark.v-table{background-color:#424242;color:#fff}.theme--dark.v-table thead tr:first-child{border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table thead th{color:hsla(0,0%,100%,.7)}.theme--dark.v-table tbody tr:not(:last-child){border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table tbody tr[active]{background:#505050}.theme--dark.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#616161}.theme--dark.v-table tfoot tr{border-top:1px solid hsla(0,0%,100%,.12)}.v-table__overflow{overflow-x:auto;overflow-y:hidden;width:100%}table.v-table{border-collapse:collapse;border-radius:2px;border-spacing:0;max-width:100%;width:100%}table.v-table tbody td:first-child,table.v-table tbody td:not(:first-child),table.v-table tbody th:first-child,table.v-table tbody th:not(:first-child),table.v-table thead td:first-child,table.v-table thead td:not(:first-child),table.v-table thead th:first-child,table.v-table thead th:not(:first-child){padding:0 24px}table.v-table thead tr{height:56px}table.v-table thead th{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;font-size:12px;font-weight:500;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:nowrap}table.v-table thead th.sortable{pointer-events:auto}table.v-table thead th>div{width:100%}table.v-table tbody tr{-webkit-transition:background .3s cubic-bezier(.25,.8,.5,1);transition:background .3s cubic-bezier(.25,.8,.5,1);will-change:background}table.v-table tbody td,table.v-table tbody th{height:48px}table.v-table tbody td{font-size:13px;font-weight:400}table.v-table .input-group--selection-controls{padding:0}table.v-table .input-group--selection-controls .input-group__details{display:none}table.v-table .input-group--selection-controls.checkbox .v-icon{-webkit-transform:translateX(-50%);left:50%;transform:translateX(-50%)}table.v-table .input-group--selection-controls.checkbox .input-group--selection-controls__ripple{-webkit-transform:translate(-50%,-50%);left:50%;transform:translate(-50%,-50%)}table.v-table tfoot tr{height:48px}table.v-table tfoot tr td{padding:0 24px}.theme--light.v-datatable thead th.column.sortable i{color:rgba(0,0,0,.38)}.theme--light.v-datatable thead th.column.sortable.active,.theme--light.v-datatable thead th.column.sortable.active i,.theme--light.v-datatable thead th.column.sortable:hover{color:rgba(0,0,0,.87)}.theme--light.v-datatable .v-datatable__actions{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.54)}.theme--dark.v-datatable thead th.column.sortable i{color:hsla(0,0%,100%,.5)}.theme--dark.v-datatable thead th.column.sortable.active,.theme--dark.v-datatable thead th.column.sortable.active i,.theme--dark.v-datatable thead th.column.sortable:hover{color:#fff}.theme--dark.v-datatable .v-datatable__actions{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:hsla(0,0%,100%,.7)}.v-datatable .v-input--selection-controls{margin:0}.v-datatable thead th.column.sortable{cursor:pointer;outline:0}.v-datatable thead th.column.sortable i{display:inline-block;font-size:16px;opacity:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-datatable thead th.column.sortable:focus i,.v-datatable thead th.column.sortable:hover i{opacity:.6}.v-datatable thead th.column.sortable.active{-webkit-transform:none;transform:none}.v-datatable thead th.column.sortable.active i{opacity:1}.v-datatable thead th.column.sortable.active.desc i{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-datatable__actions{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.v-datatable__actions .v-btn{color:inherit}.v-datatable__actions .v-btn:last-of-type{margin-left:14px}.v-datatable__actions__range-controls{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px}.v-datatable__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-datatable__actions__select{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-right:14px;white-space:nowrap}.v-datatable__actions__select .v-select{-webkit-box-flex:0;-ms-flex:0 1 0px;flex:0 1 0;margin:13px 0 13px 34px;padding:0;position:static}.v-datatable__actions__select .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-datatable__actions__select .v-select__selections .v-select__selection--comma{font-size:12px}.v-datatable__progress,.v-datatable__progress td,.v-datatable__progress th,.v-datatable__progress tr{height:auto!important}.v-datatable__progress th{padding:0!important}.v-datatable__progress th .v-progress-linear{margin:0}.v-datatable__expand-row{border:none!important}.v-datatable__expand-col{height:0!important;padding:0!important}.v-datatable__expand-col--expanded{border-bottom:1px solid rgba(0,0,0,.12)}.v-datatable__expand-content{-webkit-transition:height .3s cubic-bezier(.25,.8,.5,1);transition:height .3s cubic-bezier(.25,.8,.5,1)}.v-datatable__expand-content>.card{border-radius:0;-webkit-box-shadow:none;box-shadow:none}.theme--light.v-small-dialog a{color:rgba(0,0,0,.87)}.theme--dark.v-small-dialog a{color:#fff}.theme--light.v-small-dialog__content{background:#fff}.theme--dark.v-small-dialog__content{background:#424242}.theme--light.v-small-dialog__actions{background:#fff}.theme--dark.v-small-dialog__actions{background:#424242}.v-small-dialog{display:block;height:100%;width:100%}.v-small-dialog__content{padding:0 24px}.v-small-dialog__actions{text-align:right;white-space:pre}.v-small-dialog a{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;text-decoration:none}.v-small-dialog a>*{width:100%}.v-small-dialog .v-menu__activator{height:100%}.application--is-rtl .v-date-picker-title .v-picker__title__btn{text-align:right}.v-date-picker-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:1}.v-date-picker-title__year{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:14px;font-weight:500;margin-bottom:8px}.v-date-picker-title__date{font-size:34px;font-weight:500;overflow:hidden;position:relative;text-align:left}.v-date-picker-title__date>div{position:relative}.theme--light.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:rgba(0,0,0,.87)!important}.theme--light.v-date-picker-header .v-date-picker-header__value--disabled strong{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:#fff!important}.theme--dark.v-date-picker-header .v-date-picker-header__value--disabled strong{color:hsla(0,0%,100%,.5)}.v-date-picker-header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:4px 16px;position:relative}.v-date-picker-header .v-btn{margin:0;z-index:auto}.v-date-picker-header .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-date-picker-header__value{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:hidden;position:relative;text-align:center}.v-date-picker-header__value strong{cursor:pointer;display:block;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.theme--light.v-date-picker-table th{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-table th{color:hsla(0,0%,100%,.5)}.v-date-picker-table{height:242px;padding:0 12px;position:relative}.v-date-picker-table table{table-layout:fixed;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-date-picker-table td,.v-date-picker-table th{position:relative;text-align:center}.v-date-picker-table th{font-size:12px}.v-date-picker-table--date .v-btn{height:32px;width:32px}.v-date-picker-table .v-btn{font-size:12px;margin:0;z-index:auto}.v-date-picker-table .v-btn.v-btn--active{color:#fff}.v-date-picker-table--month td{height:56px;text-align:center;vertical-align:middle;width:33.333333%}.v-date-picker-table--month td .v-btn{margin:0 auto;max-width:160px;min-width:40px;width:100%}.v-date-picker-table--date th{font-weight:600;padding:8px 0}.v-date-picker-table--date td{width:45px}.v-date-picker-table__event{-webkit-transform:translateX(-4px);border-radius:50%;bottom:2px;content:\"\";display:block;height:8px;left:50%;position:absolute;transform:translateX(-4px);width:8px}.v-date-picker-years{font-size:16px;font-weight:400;height:286px;list-style-type:none;overflow:auto;padding:0;text-align:center}.v-date-picker-years li{cursor:pointer;padding:8px 0;-webkit-transition:none;transition:none}.v-date-picker-years li.active{font-size:26px;font-weight:500;padding:10px 0}.v-date-picker-years li:hover{background:rgba(0,0,0,.12)}.v-picker--landscape .v-date-picker-years{height:286px}.theme--light.v-picker__title{background:#e0e0e0}.theme--dark.v-picker__title{background:#616161}.theme--light.v-picker__body{background:#fff}.theme--dark.v-picker__body{background:#424242}.v-picker{border-radius:2px;contain:layout style;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;vertical-align:top}.v-picker--full-width{display:-webkit-box;display:-ms-flexbox;display:flex}.v-picker__title{border-top-left-radius:2px;border-top-right-radius:2px;color:#fff;padding:16px}.v-picker__title__btn{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-picker__title__btn:not(.active){cursor:pointer;opacity:.6}.v-picker__title__btn:not(.active):hover{opacity:1}.v-picker__title__btn--readonly{pointer-events:none}.v-picker__title__btn--active{opacity:1}.v-picker__body{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden;position:relative;z-index:0}.v-picker__body>div{width:100%}.v-picker__body>div.fade-transition-leave-active{position:absolute}.v-picker--landscape .v-picker__title{border-bottom-right-radius:0;border-top-right-radius:0;height:100%;left:0;position:absolute;top:0;width:170px;z-index:1}.v-picker--landscape .v-picker__actions,.v-picker--landscape .v-picker__body{margin-left:170px}.theme--light.v-expansion-panel .v-expansion-panel__container{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.87)}.theme--light.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-expansion-panel .v-expansion-panel__container--disabled{color:rgba(0,0,0,.38)}.theme--light.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#eee}.theme--dark.v-expansion-panel .v-expansion-panel__container{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#494949}.v-expansion-panel{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;list-style-type:none;padding:0;text-align:left;width:100%}.v-expansion-panel__container{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;max-width:100%;outline:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__container:first-child{border-top:none!important}.v-expansion-panel__container .v-expansion-panel__header__iconnel__header__icon{margin-left:auto}.v-expansion-panel__container--disabled .v-expansion-panel__header{pointer-events:none}.v-expansion-panel__container--active>.v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-expansion-panel__header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px;padding:12px 24px;position:relative}.v-expansion-panel__header>:not(.v-expansion-panel__header__icon){-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.v-expansion-panel__body{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__body .v-card{border-radius:0}.v-expansion-panel--inset,.v-expansion-panel--popout,.v-expansion-panel__body .v-card{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-expansion-panel--inset .v-expansion-panel__container--active,.v-expansion-panel--popout .v-expansion-panel__container--active{-webkit-box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);margin:16px}.v-expansion-panel--inset .v-expansion-panel__container,.v-expansion-panel--popout .v-expansion-panel__container{max-width:95%}.v-expansion-panel--popout .v-expansion-panel__container--active{max-width:100%}.v-expansion-panel--inset .v-expansion-panel__container--active{max-width:85%}.theme--light.v-footer{background:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-footer{background:#212121;color:#fff}.v-footer{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0!important;-ms-flex:0 1 auto!important;flex:0 1 auto!important;min-height:36px;-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1)}.v-footer--absolute,.v-footer--fixed{bottom:0;left:0;width:100%;z-index:3}.v-footer--inset{z-index:2}.v-footer--absolute{position:absolute}.v-footer--fixed{position:fixed}.v-form>.container{padding:16px}.v-form>.container>.layout>.flex{padding:8px}.v-form>.container>.layout:only-child{margin:-8px}.v-form>.container>.layout:not(:only-child){margin:auto -8px}.container{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;margin:auto;padding:24px;width:100%}.container.fluid{max-width:100%}.container.fill-height{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.container.fill-height>.layout{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%}.container.grid-list-xs .layout .flex{padding:1px}.container.grid-list-xs .layout:only-child{margin:-1px}.container.grid-list-xs .layout:not(:only-child){margin:auto -1px}.container.grid-list-xs :not(:only-child) .layout:first-child{margin-top:-1px}.container.grid-list-xs :not(:only-child) .layout:last-child{margin-bottom:-1px}.container.grid-list-sm .layout .flex{padding:2px}.container.grid-list-sm .layout:only-child{margin:-2px}.container.grid-list-sm .layout:not(:only-child){margin:auto -2px}.container.grid-list-sm :not(:only-child) .layout:first-child{margin-top:-2px}.container.grid-list-sm :not(:only-child) .layout:last-child{margin-bottom:-2px}.container.grid-list-md .layout .flex{padding:4px}.container.grid-list-md .layout:only-child{margin:-4px}.container.grid-list-md .layout:not(:only-child){margin:auto -4px}.container.grid-list-md :not(:only-child) .layout:first-child{margin-top:-4px}.container.grid-list-md :not(:only-child) .layout:last-child{margin-bottom:-4px}.container.grid-list-lg .layout .flex{padding:8px}.container.grid-list-lg .layout:only-child{margin:-8px}.container.grid-list-lg .layout:not(:only-child){margin:auto -8px}.container.grid-list-lg :not(:only-child) .layout:first-child{margin-top:-8px}.container.grid-list-lg :not(:only-child) .layout:last-child{margin-bottom:-8px}.container.grid-list-xl .layout .flex{padding:12px}.container.grid-list-xl .layout:only-child{margin:-12px}.container.grid-list-xl .layout:not(:only-child){margin:auto -12px}.container.grid-list-xl :not(:only-child) .layout:first-child{margin-top:-12px}.container.grid-list-xl :not(:only-child) .layout:last-child{margin-bottom:-12px}.layout{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:nowrap;flex-wrap:nowrap;min-width:0}.layout.row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.layout.row.reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.layout.column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.layout.column.reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.layout.column>.flex{max-width:100%}.layout.wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.child-flex>*,.flex{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.align-baseline{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.align-self-start{-ms-flex-item-align:start;align-self:flex-start}.align-self-end{-ms-flex-item-align:end;align-self:flex-end}.align-self-center{-ms-flex-item-align:center;align-self:center}.align-self-baseline{-ms-flex-item-align:baseline;align-self:baseline}.align-content-start{-ms-flex-line-pack:start;align-content:flex-start}.align-content-end{-ms-flex-line-pack:end;align-content:flex-end}.align-content-center{-ms-flex-line-pack:center;align-content:center}.align-content-space-between{-ms-flex-line-pack:justify;align-content:space-between}.align-content-space-around{-ms-flex-line-pack:distribute;align-content:space-around}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-space-around{-ms-flex-pack:distribute;justify-content:space-around}.justify-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.justify-self-start{justify-self:flex-start}.justify-self-end{justify-self:flex-end}.justify-self-center{justify-self:center}.justify-self-baseline{justify-self:baseline}.grow,.spacer{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.grow{-ms-flex-negative:0!important;flex-shrink:0!important}.shrink{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important;-ms-flex-negative:1!important;flex-shrink:1!important}.scroll-y{overflow-y:auto}.fill-height{height:100%}.hide-overflow{overflow:hidden!important}.show-overflow{overflow:visible!important}.ellipsis,.no-wrap{white-space:nowrap}.ellipsis{overflow:hidden;text-overflow:ellipsis}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-flex>*,.d-inline-flex>*{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.d-block{display:block!important}.d-inline-block{display:inline-block!important}.d-inline{display:inline!important}@media only screen and (min-width:960px){.container{max-width:900px}}@media only screen and (min-width:1264px){.container{max-width:1185px}}@media only screen and (min-width:1904px){.container{max-width:1785px}}@media only screen and (max-width:959px){.container{padding:16px}}@media (min-width:0){.flex.xs1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xs1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.xs2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xs2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.xs3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xs3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.xs4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xs4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.xs5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xs5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.xs6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xs6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.xs7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xs7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.xs8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xs8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.xs9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xs9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.xs10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xs10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.xs11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xs11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.xs12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xs12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-xs0{margin-left:0}.flex.offset-xs1{margin-left:8.333333333333332%}.flex.offset-xs2{margin-left:16.666666666666664%}.flex.offset-xs3{margin-left:25%}.flex.offset-xs4{margin-left:33.33333333333333%}.flex.offset-xs5{margin-left:41.66666666666667%}.flex.offset-xs6{margin-left:50%}.flex.offset-xs7{margin-left:58.333333333333336%}.flex.offset-xs8{margin-left:66.66666666666666%}.flex.offset-xs9{margin-left:75%}.flex.offset-xs10{margin-left:83.33333333333334%}.flex.offset-xs11{margin-left:91.66666666666666%}.flex.offset-xs12{margin-left:100%}}@media (min-width:600px){.flex.sm1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-sm1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.sm2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-sm2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.sm3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-sm3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.sm4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-sm4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.sm5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-sm5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.sm6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-sm6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.sm7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-sm7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.sm8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-sm8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.sm9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-sm9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.sm10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-sm10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.sm11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-sm11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.sm12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-sm12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-sm0{margin-left:0}.flex.offset-sm1{margin-left:8.333333333333332%}.flex.offset-sm2{margin-left:16.666666666666664%}.flex.offset-sm3{margin-left:25%}.flex.offset-sm4{margin-left:33.33333333333333%}.flex.offset-sm5{margin-left:41.66666666666667%}.flex.offset-sm6{margin-left:50%}.flex.offset-sm7{margin-left:58.333333333333336%}.flex.offset-sm8{margin-left:66.66666666666666%}.flex.offset-sm9{margin-left:75%}.flex.offset-sm10{margin-left:83.33333333333334%}.flex.offset-sm11{margin-left:91.66666666666666%}.flex.offset-sm12{margin-left:100%}}@media (min-width:960px){.flex.md1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-md1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.md2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-md2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.md3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-md3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.md4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-md4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.md5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-md5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.md6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-md6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.md7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-md7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.md8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-md8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.md9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-md9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.md10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-md10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.md11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-md11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.md12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-md12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-md0{margin-left:0}.flex.offset-md1{margin-left:8.333333333333332%}.flex.offset-md2{margin-left:16.666666666666664%}.flex.offset-md3{margin-left:25%}.flex.offset-md4{margin-left:33.33333333333333%}.flex.offset-md5{margin-left:41.66666666666667%}.flex.offset-md6{margin-left:50%}.flex.offset-md7{margin-left:58.333333333333336%}.flex.offset-md8{margin-left:66.66666666666666%}.flex.offset-md9{margin-left:75%}.flex.offset-md10{margin-left:83.33333333333334%}.flex.offset-md11{margin-left:91.66666666666666%}.flex.offset-md12{margin-left:100%}}@media (min-width:1264px){.flex.lg1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-lg1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.lg2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-lg2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.lg3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-lg3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.lg4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-lg4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.lg5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-lg5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.lg6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-lg6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.lg7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-lg7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.lg8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-lg8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.lg9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-lg9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.lg10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-lg10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.lg11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-lg11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.lg12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-lg12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-lg0{margin-left:0}.flex.offset-lg1{margin-left:8.333333333333332%}.flex.offset-lg2{margin-left:16.666666666666664%}.flex.offset-lg3{margin-left:25%}.flex.offset-lg4{margin-left:33.33333333333333%}.flex.offset-lg5{margin-left:41.66666666666667%}.flex.offset-lg6{margin-left:50%}.flex.offset-lg7{margin-left:58.333333333333336%}.flex.offset-lg8{margin-left:66.66666666666666%}.flex.offset-lg9{margin-left:75%}.flex.offset-lg10{margin-left:83.33333333333334%}.flex.offset-lg11{margin-left:91.66666666666666%}.flex.offset-lg12{margin-left:100%}}@media (min-width:1904px){.flex.xl1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xl1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.xl2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xl2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.xl3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xl3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.xl4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xl4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.xl5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xl5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.xl6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xl6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.xl7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xl7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.xl8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xl8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.xl9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xl9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.xl10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xl10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.xl11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xl11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.xl12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xl12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-xl0{margin-left:0}.flex.offset-xl1{margin-left:8.333333333333332%}.flex.offset-xl2{margin-left:16.666666666666664%}.flex.offset-xl3{margin-left:25%}.flex.offset-xl4{margin-left:33.33333333333333%}.flex.offset-xl5{margin-left:41.66666666666667%}.flex.offset-xl6{margin-left:50%}.flex.offset-xl7{margin-left:58.333333333333336%}.flex.offset-xl8{margin-left:66.66666666666666%}.flex.offset-xl9{margin-left:75%}.flex.offset-xl10{margin-left:83.33333333333334%}.flex.offset-xl11{margin-left:91.66666666666666%}.flex.offset-xl12{margin-left:100%}}.v-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;-webkit-transition:none;transition:none}.v-content[data-booted=true]{-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1)}.v-content__wrap{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%;position:relative}@media print{@-moz-document url-prefix(){.v-content{display:block}}}.theme--light.v-jumbotron .v-jumbotron__content{color:rgba(0,0,0,.87)}.theme--dark.v-jumbotron .v-jumbotron__content{color:#fff}.v-jumbotron{display:block;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-jumbotron__wrapper{height:100%;overflow:hidden;position:relative;-webkit-transition:inherit;transition:inherit;width:100%}.v-jumbotron__background{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;-webkit-transition:inherit;transition:inherit}.v-jumbotron__image{-webkit-transform:translate(-50%,-50%);left:50%;min-width:100%;position:absolute;top:50%;transform:translate(-50%,-50%);-webkit-transition:inherit;transition:inherit;will-change:transform}.v-jumbotron__content{height:100%;position:relative;-webkit-transition:inherit;transition:inherit}.theme--light.v-navigation-drawer{background-color:#fff}.theme--light.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:rgba(0,0,0,.12)}.theme--light.v-navigation-drawer .v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-navigation-drawer{background-color:#424242}.theme--dark.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:hsla(0,0%,100%,.12)}.theme--dark.v-navigation-drawer .v-divider{border-color:hsla(0,0%,100%,.12)}.v-navigation-drawer{-webkit-overflow-scrolling:touch;display:block;left:0;max-width:100%;overflow-x:hidden;overflow-y:auto;pointer-events:auto;top:0;-webkit-transition:none;transition:none;will-change:transform;z-index:3}.v-navigation-drawer[data-booted=true]{-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1);transition-property:width,-webkit-transform;-webkit-transition-property:width,-webkit-transform;transition-property:transform,width;transition-property:transform,width,-webkit-transform}.v-navigation-drawer__border{height:100%;position:absolute;right:0;top:0;width:1px}.v-navigation-drawer.v-navigation-drawer--right:after{left:0;right:auto}.v-navigation-drawer--right{left:auto;right:0}.v-navigation-drawer--right>.v-navigation-drawer__border{left:0;right:auto}.v-navigation-drawer--absolute{position:absolute}.v-navigation-drawer--fixed{position:fixed}.v-navigation-drawer--floating:after{display:none}.v-navigation-drawer--mini-variant{overflow:hidden}.v-navigation-drawer--mini-variant .v-list__group__header__prepend-icon{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%}.v-navigation-drawer--mini-variant .v-list__tile__action,.v-navigation-drawer--mini-variant .v-list__tile__avatar{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:48px}.v-navigation-drawer--mini-variant .v-list__tile:after,.v-navigation-drawer--mini-variant .v-list__tile__content{opacity:0}.v-navigation-drawer--mini-variant .v-divider,.v-navigation-drawer--mini-variant .v-list--group,.v-navigation-drawer--mini-variant .v-subheader{display:none!important}.v-navigation-drawer--is-mobile,.v-navigation-drawer--temporary{z-index:6}.v-navigation-drawer--is-mobile:not(.v-navigation-drawer--close),.v-navigation-drawer--temporary:not(.v-navigation-drawer--close){-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.v-navigation-drawer .v-list{background:inherit}.v-navigation-drawer>.v-list .v-list__tile{font-weight:500;-webkit-transition:none;transition:none}.v-navigation-drawer>.v-list .v-list__tile--active .v-list__tile__title{color:inherit}.v-navigation-drawer>.v-list .v-list--group .v-list__tile{font-weight:400}.v-navigation-drawer>.v-list .v-list--group__header--active:after{background:transparent}.v-navigation-drawer>.v-list:not(.v-list--dense) .v-list__tile{font-size:14px}.theme--light.v-pagination .v-pagination__item{background:#fff;color:#000}.theme--light.v-pagination .v-pagination__item--active{color:#fff}.theme--light.v-pagination .v-pagination__navigation{background:#fff}.theme--light.v-pagination .v-pagination__navigation .v-icon{color:rgba(0,0,0,.54)}.theme--dark.v-pagination .v-pagination__item{background:#424242;color:#fff}.theme--dark.v-pagination .v-pagination__item--active{color:#fff}.theme--dark.v-pagination .v-pagination__navigation{background:#424242}.theme--dark.v-pagination .v-pagination__navigation .v-icon{color:#fff}.v-pagination{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;list-style-type:none;margin:0;max-width:100%;padding:0}.v-pagination>li{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.v-pagination--circle .v-pagination__item,.v-pagination--circle .v-pagination__more,.v-pagination--circle .v-pagination__navigation{border-radius:50%}.v-pagination--disabled{opacity:.6;pointer-events:none}.v-pagination__item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border-radius:4px;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:14px;height:34px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:.3rem;text-decoration:none;-webkit-transition:.3s cubic-bezier(0,0,.2,1);transition:.3s cubic-bezier(0,0,.2,1);width:34px}.v-pagination__item--active{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-pagination__navigation{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:2rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:.3rem 10px;text-decoration:none;width:2rem}.v-pagination__navigation .v-icon{font-size:2rem;-webkit-transition:.2s cubic-bezier(.4,0,.6,1);transition:.2s cubic-bezier(.4,0,.6,1);vertical-align:middle}.v-pagination__navigation--disabled{opacity:.6;pointer-events:none}.v-pagination__more{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:2rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:.3rem;width:2rem}.v-parallax{overflow:hidden;position:relative;z-index:0}.v-parallax__image-container{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;z-index:1}.v-parallax__image{-webkit-transform:translate(-50%);bottom:0;display:none;left:50%;min-height:100%;min-width:100%;position:absolute;transform:translate(-50%);-webkit-transition:opacity .3s cubic-bezier(.25,.8,.5,1);transition:opacity .3s cubic-bezier(.25,.8,.5,1);will-change:transform;z-index:1}.v-parallax__content{color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 1rem;position:relative;z-index:2}.v-input--radio-group .v-radio{margin-bottom:8px}.v-input--radio-group__input{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.v-input--radio-group__input>.v-label{padding-bottom:8px}.v-input--radio-group--row .v-input--radio-group__input{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.v-input--radio-group--column .v-input--radio-group__input{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.theme--light.v-radio--is-disabled label{color:rgba(0,0,0,.38)}.theme--light.v-radio--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-radio--is-disabled label{color:hsla(0,0%,100%,.5)}.theme--dark.v-radio--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.v-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:auto;margin-right:16px;outline:none}.v-radio--is-disabled{pointer-events:none}.theme--light.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#bdbdbd}.theme--dark.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#424242}.v-input--range-slider.v-input--is-disabled .v-slider__track-fill{display:none}.v-input--range-slider.v-input--is-disabled.v-input--slider .v-slider.v-slider .v-slider__thumb{border-color:transparent}.theme--light.v-input--slider .v-slider__track,.theme--light.v-input--slider .v-slider__track-fill{background:rgba(0,0,0,.26)}.theme--light.v-input--slider .v-slider__track__container:after{border:1px solid rgba(0,0,0,.87)}.theme--light.v-input--slider .v-slider__ticks{border-color:rgba(0,0,0,.87);color:rgba(0,0,0,.54)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid rgba(0,0,0,.38)}.theme--light.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--slider--is-active .v-slider__track{background:rgba(0,0,0,.38)}.theme--dark.v-input--slider .v-slider__track,.theme--dark.v-input--slider .v-slider__track-fill{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider .v-slider__track__container:after{border:1px solid #fff}.theme--dark.v-input--slider .v-slider__ticks{border-color:#fff;color:hsla(0,0%,100%,.7)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid hsla(0,0%,100%,.3)}.theme--dark.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--slider--is-active .v-slider__track{background:hsla(0,0%,100%,.3)}.application--is-rtl .v-input--slider .v-label{margin-left:16px;margin-right:0}.v-input--slider{margin-top:16px}.v-input--slider.v-input--is-focused .v-slider__thumb-container--is-active:not(.v-slider__thumb-container--show-label):before{-webkit-transform:scale(1);opacity:.2;transform:scale(1)}.v-input--slider.v-input--is-focused .v-slider__track{-webkit-transition:none;transition:none}.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider .v-slider__tick,.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider__track__container:after,.v-input--slider.v-input--slider--ticks .v-slider__ticks.v-slider__ticks--always-show{opacity:1}.v-input--slider.v-input--slider--ticks-labels .v-input__slot{margin-bottom:16px}.v-input--slider.v-input--is-readonly{pointer-events:none}.v-input--slider.v-input--is-disabled .v-slider__thumb{-webkit-transform:translateY(-50%) scale(.45);transform:translateY(-50%) scale(.45)}.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{border:0 solid transparent}.v-input--slider .v-input__slot>:first-child:not(:only-child){margin-right:16px}.v-slider{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;height:32px;outline:none;position:relative;user-select:none}.v-slider input{cursor:default;opacity:0;padding:0;width:100%}.v-slider__track__container{-webkit-transform:translateY(-50%);height:2px;left:0;overflow:hidden;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__track__container:after{content:\"\";height:2px;opacity:0;position:absolute;right:0;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:2px}.v-slider__thumb,.v-slider__ticks,.v-slider__track{position:absolute;top:0}.v-slider__track{-webkit-transform-origin:right;overflow:hidden;transform-origin:right}.v-slider__track,.v-slider__track-fill{height:2px;left:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-slider__track-fill{-webkit-transform-origin:left;position:absolute;transform-origin:left}.v-slider__ticks-container{-webkit-transform:translateY(-50%);height:2px;left:0;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__ticks{border-style:solid;opacity:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__ticks>span{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateX(-50%);-webkit-user-select:none;position:absolute;top:8px;transform:translateX(-50%);user-select:none;white-space:nowrap}.v-slider__ticks:first-child>span{-webkit-transform:translateX(0);transform:translateX(0)}.v-slider__ticks:last-child>span{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.v-slider:not(.v-input--is-dirty) .v-slider__ticks:first-child{border-color:transparent}.v-slider__thumb-container{position:absolute;top:50%;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__thumb-container:before{-webkit-transform:scale(.2);background:currentColor;border-radius:50%;color:inherit;content:\"\";height:32px;left:-16px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;top:-16px;transform:scale(.2);-webkit-transition:.4s cubic-bezier(0,0,.2,1);transition:.4s cubic-bezier(0,0,.2,1);width:32px;will-change:transform,opacity}.v-slider__thumb{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-50%) scale(.6);-webkit-user-select:none;background:transparent;border-radius:50%;height:24px;left:-12px;top:50%;transform:translateY(-50%) scale(.6);-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;width:24px}.v-slider--is-active .v-slider__thumb-container--is-active .v-slider__thumb{-webkit-transform:translateY(-50%) scale(1);transform:translateY(-50%) scale(1)}.v-slider--is-active .v-slider__thumb-container--is-active.v-slider__thumb-container--show-label .v-slider__thumb{-webkit-transform:translateY(-50%) scale(0);transform:translateY(-50%) scale(0)}.v-slider--is-active .v-slider__ticks-container .v-slider__ticks{opacity:1}.v-slider__thumb-label__container{top:0}.v-slider__thumb-label,.v-slider__thumb-label__container{left:0;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1)}.v-slider__thumb-label{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50% 50% 0;bottom:100%;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px;height:32px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);user-select:none;width:32px}.v-slider__thumb-label>*{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.v-slider__track,.v-slider__track-fill{position:absolute}.v-rating .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:50%;padding:.5rem;user-select:none}.v-rating--readonly .v-icon{pointer-events:none}.v-rating--dense .v-icon{padding:.1rem}.v-snack{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;left:0;pointer-events:none;position:fixed;right:0;z-index:1000}.v-snack--absolute{position:absolute}.v-snack--top{top:0}.v-snack--bottom{bottom:0}.v-snack__wrapper{background-color:#323232;-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);pointer-events:auto}.v-snack__content,.v-snack__wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.v-snack__content{height:48px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden;padding:14px 24px}.v-snack__content .v-btn{color:#fff;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;margin:0 0 0 24px;min-width:auto;padding:8px;width:auto}.v-snack__content .v-btn__content{margin:-2px}.v-snack__content .v-btn:before{display:none}.v-snack--multi-line .v-snack__content{height:80px;padding:24px}.v-snack--vertical .v-snack__content{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:112px;padding:24px 24px 14px}.v-snack--vertical .v-snack__content .v-btn.v-btn{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-left:0;margin-top:24px;padding:0}.v-snack--vertical .v-snack__content .v-btn__content{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin:0}.v-snack--auto-height .v-snack__content{height:auto}.v-snack-transition-enter-active,.v-snack-transition-leave-active{transition:-webkit-transform .4s cubic-bezier(.25,.8,.5,1);-webkit-transition:-webkit-transform .4s cubic-bezier(.25,.8,.5,1);transition:transform .4s cubic-bezier(.25,.8,.5,1);transition:transform .4s cubic-bezier(.25,.8,.5,1), -webkit-transform .4s cubic-bezier(.25,.8,.5,1);transition:transform .4s cubic-bezier(.25,.8,.5,1),-webkit-transform .4s cubic-bezier(.25,.8,.5,1)}.v-snack-transition-enter-active .v-snack__content,.v-snack-transition-leave-active .v-snack__content{-webkit-transition:opacity .3s linear .1s;transition:opacity .3s linear .1s}.v-snack-transition-enter .v-snack__content{opacity:0}.v-snack-transition-enter-to .v-snack__content,.v-snack-transition-leave .v-snack__content{opacity:1}.v-snack-transition-enter.v-snack.v-snack--top,.v-snack-transition-leave-to.v-snack.v-snack--top{-webkit-transform:translateY(calc(-100% - 8px));transform:translateY(calc(-100% - 8px))}.v-snack-transition-enter.v-snack.v-snack--bottom,.v-snack-transition-leave-to.v-snack.v-snack--bottom{-webkit-transform:translateY(100%);transform:translateY(100%)}@media only screen and (min-width:600px){.v-snack__wrapper{border-radius:2px;margin:0 auto;max-width:568px;min-width:288px;width:auto}.v-snack--left .v-snack__wrapper{margin-left:0}.v-snack--right .v-snack__wrapper{margin-right:0}.v-snack--left,.v-snack--right{margin:0 24px}.v-snack--left.v-snack--top,.v-snack--right.v-snack--top{-webkit-transform:translateY(24px);transform:translateY(24px)}.v-snack--left.v-snack--bottom,.v-snack--right.v-snack--bottom{-webkit-transform:translateY(-24px);transform:translateY(-24px)}.v-snack__content .v-btn:first-of-type{margin-left:42px}}.v-speed-dial{position:relative}.v-speed-dial--absolute{position:absolute}.v-speed-dial--fixed{position:fixed}.v-speed-dial--absolute,.v-speed-dial--fixed{z-index:4}.v-speed-dial--absolute>.v-btn--floating,.v-speed-dial--fixed>.v-btn--floating{margin:0}.v-speed-dial--top:not(.v-speed-dial--absolute){top:16px}.v-speed-dial--top.v-speed-dial--absolute{-webkit-transform:translateY(-50%);top:50%;transform:translateY(-50%)}.v-speed-dial--bottom:not(.v-speed-dial--absolute){bottom:16px}.v-speed-dial--bottom.v-speed-dial--absolute{-webkit-transform:translateY(50%);bottom:50%;transform:translateY(50%)}.v-speed-dial--left{left:16px}.v-speed-dial--right{right:16px}.v-speed-dial--direction-left .v-speed-dial__list,.v-speed-dial--direction-right .v-speed-dial__list{height:100%;top:0}.v-speed-dial--direction-bottom .v-speed-dial__list,.v-speed-dial--direction-top .v-speed-dial__list{left:0;width:100%}.v-speed-dial--direction-top .v-speed-dial__list{bottom:100%;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-speed-dial--direction-right .v-speed-dial__list{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;left:100%}.v-speed-dial--direction-bottom .v-speed-dial__list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;top:100%}.v-speed-dial--direction-left .v-speed-dial__list{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;right:100%}.v-speed-dial__list{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute}.v-speed-dial__list .v-btn:first-child{-webkit-transition-delay:.05s;transition-delay:.05s}.v-speed-dial__list .v-btn:nth-child(2){-webkit-transition-delay:.1s;transition-delay:.1s}.v-speed-dial__list .v-btn:nth-child(3){-webkit-transition-delay:.15s;transition-delay:.15s}.v-speed-dial__list .v-btn:nth-child(4){-webkit-transition-delay:.2s;transition-delay:.2s}.v-speed-dial__list .v-btn:nth-child(5){-webkit-transition-delay:.25s;transition-delay:.25s}.v-speed-dial__list .v-btn:nth-child(6){-webkit-transition-delay:.3s;transition-delay:.3s}.v-speed-dial__list .v-btn:nth-child(7){-webkit-transition-delay:.35s;transition-delay:.35s}.theme--light.v-stepper{background:#fff}.theme--light.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:rgba(0,0,0,.38)}.theme--light.v-stepper .v-stepper__step__step,.theme--light.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--light.v-stepper .v-stepper__header .v-divider{border-color:rgba(0,0,0,.12)}.theme--light.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--editable:hover{background:rgba(0,0,0,.06)}.theme--light.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--complete .v-stepper__label{color:rgba(0,0,0,.87)}.theme--light.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:rgba(0,0,0,.54)}.theme--light.v-stepper .v-stepper__label{color:rgba(0,0,0,.38)}.theme--light.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--light.v-stepper .v-stepper__label small{color:rgba(0,0,0,.54)}.theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid rgba(0,0,0,.12)}.theme--dark.v-stepper{background:#303030}.theme--dark.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:hsla(0,0%,100%,.5)}.theme--dark.v-stepper .v-stepper__step__step,.theme--dark.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--dark.v-stepper .v-stepper__header .v-divider{border-color:hsla(0,0%,100%,.12)}.theme--dark.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--editable:hover{background:hsla(0,0%,100%,.06)}.theme--dark.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--complete .v-stepper__label{color:hsla(0,0%,100%,.87)}.theme--dark.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:hsla(0,0%,100%,.75)}.theme--dark.v-stepper .v-stepper__label{color:hsla(0,0%,100%,.5)}.theme--dark.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--dark.v-stepper .v-stepper__label small{color:hsla(0,0%,100%,.7)}.theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid hsla(0,0%,100%,.12)}.v-stepper{overflow:hidden;position:relative}.v-stepper,.v-stepper__header{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-stepper__header{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:72px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.v-stepper__header .v-divider{-ms-flex-item-align:center;align-self:center;margin:0 -16px}.v-stepper__items{overflow:hidden;position:relative}.v-stepper__step__step{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:8px;min-width:24px;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);width:24px}.v-stepper__step__step .v-icon{font-size:18px}.v-stepper__step{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:24px;position:relative}.v-stepper__step--active .v-stepper__label{-webkit-transition:.3s cubic-bezier(.4,0,.6,1);transition:.3s cubic-bezier(.4,0,.6,1)}.v-stepper__step--editable{cursor:pointer}.v-stepper__step.v-stepper__step--error .v-stepper__step__step{background:transparent;color:inherit}.v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon{color:inherit;font-size:24px}.v-stepper__step.v-stepper__step--error .v-stepper__label{color:inherit;font-weight:500;text-shadow:none}.v-stepper__step.v-stepper__step--error .v-stepper__label small{color:inherit}.v-stepper__label{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:left}.v-stepper__label small{font-size:12px;font-weight:300;text-shadow:none}.v-stepper__wrapper{overflow:hidden;-webkit-transition:none;transition:none}.v-stepper__content{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:24px 24px 16px;top:0;width:100%}.v-stepper__content>.v-btn{margin:24px 8px 8px 0}.v-stepper--is-booted .v-stepper__content,.v-stepper--is-booted .v-stepper__wrapper{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-stepper--vertical{padding-bottom:36px}.v-stepper--vertical .v-stepper__content{margin:-8px -36px -16px 36px;padding:16px 60px 16px 23px;width:auto}.v-stepper--vertical .v-stepper__step{padding:24px 24px 16px}.v-stepper--vertical .v-stepper__step__step{margin-right:12px}.v-stepper--alt-labels .v-stepper__header{height:auto}.v-stepper--alt-labels .v-stepper__header .v-divider{-ms-flex-item-align:start;align-self:flex-start;margin:35px -67px 0}.v-stepper--alt-labels .v-stepper__step{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-preferred-size:175px;flex-basis:175px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.v-stepper--alt-labels .v-stepper__step small{-ms-flex-item-align:center;align-self:center}.v-stepper--alt-labels .v-stepper__step__step{margin-bottom:11px;margin-right:0}@media only screen and (max-width:959px){.v-stepper:not(.v-stepper--vertical) .v-stepper__label{display:none}.v-stepper:not(.v-stepper--vertical) .v-stepper__step__step{margin-right:0}}.theme--light.v-input--switch__thumb{color:#fafafa}.theme--light.v-input--switch__track{color:rgba(0,0,0,.38)}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#bdbdbd!important}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__track{color:rgba(0,0,0,.12)!important}.theme--dark.v-input--switch__thumb{color:#bdbdbd}.theme--dark.v-input--switch__track{color:hsla(0,0%,100%,.3)}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#424242!important}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__track{color:hsla(0,0%,100%,.1)!important}.application--is-rtl .v-input--switch .v-input--selection-controls__ripple{left:auto;right:-14px}.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--switch__thumb{-webkit-transform:translate(-16px);transform:translate(-16px)}.v-input--switch__thumb,.v-input--switch__track{background-color:currentColor;pointer-events:none;-webkit-transition:inherit;transition:inherit}.v-input--switch__track{border-radius:8px;height:14px;left:2px;opacity:.6;position:absolute;right:2px;top:calc(50% - 7px)}.v-input--switch__thumb{border-radius:50%;-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);height:20px;position:relative;top:calc(50% - 10px);width:20px}.v-input--switch .v-input--selection-controls__input{width:38px}.v-input--switch .v-input--selection-controls__ripple{left:-14px;top:calc(50% - 24px)}.v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.v-input--switch.v-input--is-dirty .v-input--switch__thumb{-webkit-transform:translate(16px);transform:translate(16px)}.theme--light.v-system-bar{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.theme--light.v-system-bar .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-system-bar--lights-out{background-color:hsla(0,0%,100%,.7)!important}.theme--dark.v-system-bar{background-color:#000;color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar .v-icon{color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar--lights-out{background-color:rgba(0,0,0,.2)!important}.v-system-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;padding:0 8px}.v-system-bar .v-icon{font-size:16px}.v-system-bar--absolute,.v-system-bar--fixed{left:0;top:0;width:100%;z-index:3}.v-system-bar--fixed{position:fixed}.v-system-bar--absolute{position:absolute}.v-system-bar--status .v-icon{margin-right:4px}.v-system-bar--window .v-icon{font-size:20px;margin-right:8px}.theme--light.v-tabs__bar{background-color:#fff}.theme--light.v-tabs__bar .v-tabs__div{color:rgba(0,0,0,.87)}.theme--light.v-tabs__bar .v-tabs__item--disabled{color:rgba(0,0,0,.26)}.theme--dark.v-tabs__bar{background-color:#424242}.theme--dark.v-tabs__bar .v-tabs__div{color:#fff}.theme--dark.v-tabs__bar .v-tabs__item--disabled{color:hsla(0,0%,100%,.3)}.v-tabs,.v-tabs__bar{position:relative}.v-tabs__icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:100%;position:absolute;top:0;user-select:none;width:32px}.v-tabs__icon--prev{left:4px}.v-tabs__icon--next{right:4px}.v-tabs__wrapper{contain:content;display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden}.v-tabs__wrapper--show-arrows{margin-left:40px;margin-right:40px}.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:16px}.v-tabs__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;height:48px;list-style-type:none;position:relative;transition:-webkit-transform .6s cubic-bezier(.86,0,.07,1);-webkit-transition:-webkit-transform .6s cubic-bezier(.86,0,.07,1);transition:transform .6s cubic-bezier(.86,0,.07,1);transition:transform .6s cubic-bezier(.86,0,.07,1), -webkit-transform .6s cubic-bezier(.86,0,.07,1);transition:transform .6s cubic-bezier(.86,0,.07,1),-webkit-transform .6s cubic-bezier(.86,0,.07,1);white-space:nowrap}.v-tabs__container--overflow .v-tabs__div{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.v-tabs__container--grow .v-tabs__div{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:none}.v-tabs__container--icons-and-text{height:72px}.v-tabs__container--align-with-title{padding-left:56px}.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:72px}.v-tabs__container--centered .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--centered>.v-tabs__div:first-child,.v-tabs__container--fixed-tabs .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--fixed-tabs>.v-tabs__div:first-child,.v-tabs__container--right .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--right>.v-tabs__div:first-child{margin-left:auto}.v-tabs__container--centered>.v-tabs__div:last-child,.v-tabs__container--fixed-tabs>.v-tabs__div:last-child{margin-right:auto}.v-tabs__container--icons-and-text .v-tabs__item{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-tabs__container--icons-and-text .v-tabs__item .v-icon{margin-bottom:6px}.v-tabs__div{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;font-size:14px;font-weight:500;height:inherit;line-height:normal;max-width:264px;text-align:center;text-transform:uppercase;vertical-align:middle}.v-tabs__item{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;max-width:inherit;padding:6px 12px;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:normal}.v-tabs__item:not(.v-tabs__item--active){opacity:.7}.v-tabs__item--disabled{pointer-events:none}.v-tabs__slider{height:2px;width:100%}.v-tabs__slider-wrapper{bottom:0;margin:0!important;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-tabs__items{overflow:hidden;position:relative}.v-tabs__content{transition:-webkit-transform .4s cubic-bezier(.86,0,.07,1);-webkit-transition:-webkit-transform .4s cubic-bezier(.86,0,.07,1);transition:transform .4s cubic-bezier(.86,0,.07,1);transition:transform .4s cubic-bezier(.86,0,.07,1), -webkit-transform .4s cubic-bezier(.86,0,.07,1);transition:transform .4s cubic-bezier(.86,0,.07,1),-webkit-transform .4s cubic-bezier(.86,0,.07,1);width:100%}@media only screen and (max-width:599px){.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:24px}.v-tabs__container--fixed-tabs .v-tabs__div{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}}@media only screen and (min-width:600px){.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:160px}}.theme--light.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:#fff}.theme--dark.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:rgba(0,0,0,.87)}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot{margin-left:-12px;margin-right:0}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-left:12px;padding-right:0}.v-textarea textarea{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px;max-width:100%;min-height:32px;outline:none;padding:7px 0 8px;width:100%}.v-textarea .v-text-field__prefix{-ms-flex-item-align:start;align-self:start;padding-top:4px}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__slot textarea,.v-textarea.v-text-field--full-width .v-text-field__slot textarea{margin-top:0}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__details,.v-textarea.v-text-field--full-width .v-text-field__details{bottom:4px}.v-textarea.v-text-field--enclosed .v-text-field__slot{margin-right:-12px}.v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-right:12px}.v-textarea.v-text-field--box .v-text-field__prefix,.v-textarea.v-text-field--box textarea,.v-textarea.v-text-field--enclosed .v-text-field__prefix,.v-textarea.v-text-field--enclosed textarea{margin-top:24px}.v-textarea.v-text-field--box.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--single-line textarea,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--single-line textarea{margin-top:12px}.v-textarea.v-text-field--box.v-text-field--single-line .v-label,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-label{top:18px}.v-textarea.v-text-field--box.v-text-field--single-line.v-text-field--outline .v-input__control,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-text-field--outline .v-input__control{padding-top:0}.v-textarea.v-text-field--solo{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.v-textarea.v-text-field--solo .v-input__append-inner,.v-textarea.v-text-field--solo .v-input__append-outer,.v-textarea.v-text-field--solo .v-input__prepend-inner,.v-textarea.v-text-field--solo .v-input__prepend-outer{-ms-flex-item-align:start;align-self:flex-start;margin-top:16px}.v-textarea--auto-grow textarea{overflow:hidden}.v-textarea--no-resize textarea{resize:none}.v-time-picker-title{color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;line-height:1}.v-time-picker-title__time{white-space:nowrap}.v-time-picker-title__time .v-picker__title__btn,.v-time-picker-title__time span{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:70px;height:70px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.v-time-picker-title__ampm{-ms-flex-item-align:end;align-self:flex-end;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:16px;margin:8px 0 6px 8px;text-transform:uppercase}.v-time-picker-title__ampm div:only-child{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.v-picker__title--landscape .v-time-picker-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.v-picker__title--landscape .v-time-picker-title__time{text-align:right}.v-picker__title--landscape .v-time-picker-title__time .v-picker__title__btn,.v-picker__title--landscape .v-time-picker-title__time span{font-size:55px;height:55px}.v-picker__title--landscape .v-time-picker-title__ampm{-ms-flex-item-align:auto;align-self:auto;margin:16px 0 0;text-align:center}.theme--light.v-time-picker-clock{background:#e0e0e0}.theme--light.v-time-picker-clock>span.disabled{color:rgba(0,0,0,.26)}.theme--light.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate>span.active{background-color:#bdbdbd}.theme--dark.v-time-picker-clock{background:#616161}.theme--dark.v-time-picker-clock>span.disabled,.theme--dark.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#757575}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#757575}.theme--dark.v-time-picker-clock--indeterminate>span.active{background-color:#757575}.v-time-picker-clock{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:100%;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-time-picker-clock__container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px}.v-time-picker-clock__hand{-webkit-transform-origin:center bottom;bottom:50%;height:calc(50% - 28px);left:calc(50% - 1px);position:absolute;transform-origin:center bottom;width:2px;will-change:transform;z-index:1}.v-time-picker-clock__hand:before{background:transparent;border:2px solid;border-color:inherit;border-radius:100%;height:10px;top:-3%;width:10px}.v-time-picker-clock__hand:after,.v-time-picker-clock__hand:before{-webkit-transform:translate(-50%,-50%);content:\"\";left:50%;position:absolute;transform:translate(-50%,-50%)}.v-time-picker-clock__hand:after{background-color:inherit;border-color:inherit;border-radius:100%;border-style:solid;height:8px;top:100%;width:8px}.v-time-picker-clock>span{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:100%;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;height:40px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:calc(50% - 20px);position:absolute;text-align:center;top:calc(50% - 20px);user-select:none;width:40px}.v-time-picker-clock>span>span{z-index:1}.v-time-picker-clock>span:after,.v-time-picker-clock>span:before{-webkit-transform:translate(-50%,-50%);border-radius:100%;content:\"\";height:14px;height:40px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:14px;width:40px}.v-time-picker-clock>span.active{color:#fff;cursor:default;z-index:2}.v-time-picker-clock>span.disabled{pointer-events:none}.theme--light.v-toolbar{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-toolbar{background-color:#212121;color:#fff}.v-toolbar{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);position:relative;-webkit-transition:none;transition:none;width:100%;will-change:padding-left,padding-right}.v-toolbar[data-booted=true]{-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1)}.v-toolbar .v-text-field--box,.v-toolbar .v-text-field--enclosed{margin:0}.v-toolbar .v-text-field--box .v-text-field__details,.v-toolbar .v-text-field--enclosed .v-text-field__details{display:none}.v-toolbar .v-tabs{width:100%}.v-toolbar__title{font-size:20px;font-weight:500;letter-spacing:.02em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar__title:not(:first-child){margin-left:20px}.v-toolbar__content,.v-toolbar__extension{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 24px}.v-toolbar__content .v-btn--icon,.v-toolbar__extension .v-btn--icon{margin:6px}.v-toolbar__content>:first-child,.v-toolbar__extension>:first-child{margin-left:0}.v-toolbar__content>:first-child.v-btn--icon,.v-toolbar__extension>:first-child.v-btn--icon{margin-left:-6px}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:first-child.v-tooltip span .v-btn,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:first-child.v-tooltip span .v-btn{margin-left:0}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:first-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:first-child.v-tooltip span .v-btn--icon{margin-left:-6px}.v-toolbar__content>:last-child,.v-toolbar__extension>:last-child{margin-right:0}.v-toolbar__content>:last-child.v-btn--icon,.v-toolbar__extension>:last-child.v-btn--icon{margin-right:-6px}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:last-child.v-tooltip span .v-btn,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:last-child.v-tooltip span .v-btn{margin-right:0}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:last-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:last-child.v-tooltip span .v-btn--icon{margin-right:-6px}.v-toolbar__content>.v-list,.v-toolbar__extension>.v-list{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-height:100%}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-24px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-24px}.v-toolbar__extension>.v-toolbar__title{margin-left:72px}.v-toolbar__items{display:-webkit-box;display:-ms-flexbox;display:flex;height:inherit;max-width:100%;padding:0}.v-toolbar__items .v-btn{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center}.v-toolbar__items .v-tooltip,.v-toolbar__items .v-tooltip>span{height:inherit}.v-toolbar__items .v-btn:not(.v-btn--floating):not(.v-btn--icon),.v-toolbar__items .v-menu,.v-toolbar__items .v-menu__activator{height:inherit;margin:0}.v-toolbar .v-btn-toggle,.v-toolbar .v-overflow-btn{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar .v-input{margin:0}.v-toolbar .v-overflow-btn .v-input__control:before,.v-toolbar .v-overflow-btn .v-input__slot:before{display:none}.v-toolbar--card{border-radius:2px 2px 0 0;-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar--fixed{position:fixed;z-index:2}.v-toolbar--absolute,.v-toolbar--fixed{left:0;top:0}.v-toolbar--absolute{position:absolute;z-index:2}.v-toolbar--floating{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin:16px;width:auto}.v-toolbar--clipped{z-index:3}@media only screen and (max-width:959px){.v-toolbar__content,.v-toolbar__extension{padding:0 16px}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-16px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-16px}}.v-tooltip{position:relative}.v-tooltip__content{background:#616161;border-radius:2px;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);color:#fff;display:inline-block;font-size:12px;padding:5px 8px;position:absolute;text-transform:none;-webkit-transition:.15s cubic-bezier(.25,.8,.5,1);transition:.15s cubic-bezier(.25,.8,.5,1);width:auto}.v-tooltip__content[class*=-active]{pointer-events:none}@media only screen and (max-width:959px){.v-tooltip .v-tooltip__content{padding:10px 16px}}"]} \ No newline at end of file diff --git a/web_test/static/js/manifest.3ad1d5771e9b13dbdad2.js b/web_test/static/js/manifest.3ad1d5771e9b13dbdad2.js deleted file mode 100644 index 1acd401..0000000 --- a/web_test/static/js/manifest.3ad1d5771e9b13dbdad2.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(r){var n=window.webpackJsonp;window.webpackJsonp=function(e,u,c){for(var f,i,p,a=0,l=[];a=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function f(t){var e=parseFloat(t);return isNaN(e)?t:e}function p(t,e){for(var n=Object.create(null),i=t.split(","),s=0;s-1)return t.splice(n,1)}}var g=Object.prototype.hasOwnProperty;function y(t,e){return g.call(t,e)}function b(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var x=/-(\w)/g,_=b(function(t){return t.replace(x,function(t,e){return e?e.toUpperCase():""})}),V=b(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),w=/\B([A-Z])/g,S=b(function(t){return t.replace(w,"-$1").toLowerCase()});var k=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var i=arguments.length;return i?i>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function C(t,e){e=e||0;for(var n=t.length-e,i=new Array(n);n--;)i[n]=t[n+e];return i}function T(t,e){for(var n in e)t[n]=e[n];return t}function j(t){for(var e={},n=0;n0,K=q&&q.indexOf("edge/")>0,Z=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===Y),J=(q&&/chrome\/\d+/.test(q),{}.watch),Q=!1;if(W)try{var tt={};Object.defineProperty(tt,"passive",{get:function(){Q=!0}}),window.addEventListener("test-passive",null,tt)}catch(t){}var et=function(){return void 0===H&&(H=!W&&!U&&void 0!==t&&"server"===t.process.env.VUE_ENV),H},nt=W&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,rt="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);st="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ot=$,at=0,ct=function(){this.id=at++,this.subs=[]};ct.prototype.addSub=function(t){this.subs.push(t)},ct.prototype.removeSub=function(t){v(this.subs,t)},ct.prototype.depend=function(){ct.target&&ct.target.addDep(this)},ct.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;e-1)if(r&&!y(s,"default"))o=!1;else if(""===o||o===S(t)){var c=Ft(String,s.type);(c<0||a0&&(le((l=t(l,(n||"")+"_"+c))[0])&&le(h)&&(a[u]=mt(h.text+l[0].text),l.shift()),a.push.apply(a,l)):o(l)?le(h)?a[u]=mt(h.text+l):""!==l&&a.push(mt(l)):le(l)&&le(h)?a[u]=mt(h.text+l.text):(r(e._isVList)&&s(l.tag)&&i(l.key)&&s(n)&&(l.key="__vlist"+n+"_"+c+"__"),a.push(l)));return a}(t):void 0}function le(t){return s(t)&&s(t.text)&&!1===t.isComment}function ue(t,e){return(t.__esModule||rt&&"Module"===t[Symbol.toStringTag])&&(t=t.default),a(t)?e.extend(t):t}function he(t){return t.isComment&&t.asyncFactory}function de(t){if(Array.isArray(t))for(var e=0;eje&&we[n].id>t.id;)n--;we.splice(n+1,0,t)}else we.push(t);Ce||(Ce=!0,Qt($e))}}(this)},Ie.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||a(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Nt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Ie.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Ie.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Ie.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||v(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Ae={enumerable:!0,configurable:!0,get:$,set:$};function Pe(t,e,n){Ae.get=function(){return this[e][n]},Ae.set=function(t){this[e][n]=t},Object.defineProperty(t,n,Ae)}function De(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},i=t._props={},s=t.$options._propKeys=[];t.$parent&&_t(!1);var r=function(r){s.push(r);var o=Mt(r,e,n,t);Ct(i,r,o),r in t||Pe(t,"_props",r)};for(var o in e)r(o);_t(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]=null==e[n]?$:k(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;l(e=t._data="function"==typeof e?function(t,e){ut();try{return t.call(e,e)}catch(t){return Nt(t,e,"data()"),{}}finally{ht()}}(e,t):e||{})||(e={});var n=Object.keys(e),i=t.$options.props,s=(t.$options.methods,n.length);for(;s--;){var r=n[s];0,i&&y(i,r)||R(r)||Pe(t,"_data",r)}kt(e,!0)}(t):kt(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),i=et();for(var s in e){var r=e[s],o="function"==typeof r?r:r.get;0,i||(n[s]=new Ie(t,o||$,$,Ee)),s in t||Be(t,s,r)}}(t,e.computed),e.watch&&e.watch!==J&&function(t,e){for(var n in e){var i=e[n];if(Array.isArray(i))for(var s=0;s=0||n.indexOf(t[s])<0)&&i.push(t[s]);return i}return t}function hn(t){this._init(t)}function dn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,i=n.cid,s=t._Ctor||(t._Ctor={});if(s[i])return s[i];var r=t.name||n.options.name;var o=function(t){this._init(t)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=e++,o.options=Et(n.options,t),o.super=n,o.options.props&&function(t){var e=t.options.props;for(var n in e)Pe(t.prototype,"_props",n)}(o),o.options.computed&&function(t){var e=t.options.computed;for(var n in e)Be(t.prototype,n,e[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,B.forEach(function(t){o[t]=n[t]}),r&&(o.options.components[r]=o),o.superOptions=n.options,o.extendOptions=t,o.sealedOptions=T({},o.options),s[i]=o,o}}function fn(t){return t&&(t.Ctor.options.name||t.tag)}function pn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!u(t)&&t.test(e)}function mn(t,e){var n=t.cache,i=t.keys,s=t._vnode;for(var r in n){var o=n[r];if(o){var a=fn(o.componentOptions);a&&!e(a)&&vn(n,r,i,s)}}}function vn(t,e,n,i){var s=t[e];!s||i&&s.tag===i.tag||s.componentInstance.$destroy(),t[e]=null,v(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=cn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),i=e._parentVnode;n.parent=e.parent,n._parentVnode=i,n._parentElm=e._parentElm,n._refElm=e._refElm;var s=i.componentOptions;n.propsData=s.propsData,n._parentListeners=s.listeners,n._renderChildren=s.children,n._componentTag=s.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Et(ln(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&me(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,i=t.$vnode=e._parentVnode,s=i&&i.context;t.$slots=ve(e._renderChildren,s),t.$scopedSlots=n,t._c=function(e,n,i,s){return an(t,e,n,i,s,!1)},t.$createElement=function(e,n,i,s){return an(t,e,n,i,s,!0)};var r=i&&i.data;Ct(t,"$attrs",r&&r.attrs||n,null,!0),Ct(t,"$listeners",e._parentListeners||n,null,!0)}(e),Ve(e,"beforeCreate"),function(t){var e=Re(t.$options.inject,t);e&&(_t(!1),Object.keys(e).forEach(function(n){Ct(t,n,e[n])}),_t(!0))}(e),De(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),Ve(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(hn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Tt,t.prototype.$delete=jt,t.prototype.$watch=function(t,e,n){if(l(e))return Le(this,t,e,n);(n=n||{}).user=!0;var i=new Ie(this,t,e,n);return n.immediate&&e.call(this,i.value),function(){i.teardown()}}}(hn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){if(Array.isArray(t))for(var i=0,s=t.length;i1?C(n):n;for(var i=C(arguments,1),s=0,r=n.length;sparseInt(this.max)&&vn(o,a[0],a,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return L}};Object.defineProperty(t,"config",e),t.util={warn:ot,extend:T,mergeOptions:Et,defineReactive:Ct},t.set=Tt,t.delete=jt,t.nextTick=Qt,t.options=Object.create(null),B.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,T(t.options.components,yn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=C(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Et(this.options,t),this}}(t),dn(t),function(t){B.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&l(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}(t)}(hn),Object.defineProperty(hn.prototype,"$isServer",{get:et}),Object.defineProperty(hn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(hn,"FunctionalRenderContext",{value:Je}),hn.version="2.5.17";var bn=p("style,class"),xn=p("input,textarea,option,select,progress"),_n=p("contenteditable,draggable,spellcheck"),Vn=p("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),wn="http://www.w3.org/1999/xlink",Sn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},kn=function(t){return Sn(t)?t.slice(6,t.length):""},Cn=function(t){return null==t||!1===t};function Tn(t){for(var e=t.data,n=t,i=t;s(i.componentInstance);)(i=i.componentInstance._vnode)&&i.data&&(e=jn(i.data,e));for(;s(n=n.parent);)n&&n.data&&(e=jn(e,n.data));return function(t,e){if(s(t)||s(e))return $n(t,On(e));return""}(e.staticClass,e.class)}function jn(t,e){return{staticClass:$n(t.staticClass,e.staticClass),class:s(t.class)?[t.class,e.class]:e.class}}function $n(t,e){return t?e?t+" "+e:t:e||""}function On(t){return Array.isArray(t)?function(t){for(var e,n="",i=0,r=t.length;i-1?Qn(t,e,n):Vn(e)?Cn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):_n(e)?t.setAttribute(e,Cn(n)||"false"===n?"false":"true"):Sn(e)?Cn(n)?t.removeAttributeNS(wn,kn(e)):t.setAttributeNS(wn,e,n):Qn(t,e,n)}function Qn(t,e,n){if(Cn(n))t.removeAttribute(e);else{if(X&&!G&&"TEXTAREA"===t.tagName&&"placeholder"===e&&!t.__ieph){var i=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",i)};t.addEventListener("input",i),t.__ieph=!0}t.setAttribute(e,n)}}var ti={create:Zn,update:Zn};function ei(t,e){var n=e.elm,r=e.data,o=t.data;if(!(i(r.staticClass)&&i(r.class)&&(i(o)||i(o.staticClass)&&i(o.class)))){var a=Tn(e),c=n._transitionClasses;s(c)&&(a=$n(a,On(c))),a!==n._prevClass&&(n.setAttribute("class",a),n._prevClass=a)}}var ni,ii={create:ei,update:ei},si="__r",ri="__c";function oi(t,e,n,i,s){var r;e=(r=e)._withTask||(r._withTask=function(){Gt=!0;var t=r.apply(null,arguments);return Gt=!1,t}),n&&(e=function(t,e,n){var i=ni;return function s(){null!==t.apply(null,arguments)&&ai(e,s,n,i)}}(e,t,i)),ni.addEventListener(t,e,Q?{capture:i,passive:s}:i)}function ai(t,e,n,i){(i||ni).removeEventListener(t,e._withTask||e,n)}function ci(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};ni=e.elm,function(t){if(s(t[si])){var e=X?"change":"input";t[e]=[].concat(t[si],t[e]||[]),delete t[si]}s(t[ri])&&(t.change=[].concat(t[ri],t.change||[]),delete t[ri])}(n),re(n,r,oi,ai,e.context),ni=void 0}}var li={create:ci,update:ci};function ui(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,r,o=e.elm,a=t.data.domProps||{},c=e.data.domProps||{};for(n in s(c.__ob__)&&(c=e.data.domProps=T({},c)),a)i(c[n])&&(o[n]="");for(n in c){if(r=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===a[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n){o._value=r;var l=i(r)?"":String(r);hi(o,l)&&(o.value=l)}else o[n]=r}}}function hi(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,i=t._vModifiers;if(s(i)){if(i.lazy)return!1;if(i.number)return f(n)!==f(e);if(i.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var di={create:ui,update:ui},fi=b(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var i=t.split(n);i.length>1&&(e[i[0].trim()]=i[1].trim())}}),e});function pi(t){var e=mi(t.style);return t.staticStyle?T(t.staticStyle,e):e}function mi(t){return Array.isArray(t)?j(t):"string"==typeof t?fi(t):t}var vi,gi=/^--/,yi=/\s*!important$/,bi=function(t,e,n){if(gi.test(e))t.style.setProperty(e,n);else if(yi.test(n))t.style.setProperty(e,n.replace(yi,""),"important");else{var i=_i(e);if(Array.isArray(n))for(var s=0,r=n.length;s-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function ki(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",i=" "+e+" ";n.indexOf(i)>=0;)n=n.replace(i," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Ci(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&T(e,Ti(t.name||"v")),T(e,t),e}return"string"==typeof t?Ti(t):void 0}}var Ti=b(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),ji=W&&!G,$i="transition",Oi="animation",Ii="transition",Ai="transitionend",Pi="animation",Di="animationend";ji&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Ii="WebkitTransition",Ai="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Pi="WebkitAnimation",Di="webkitAnimationEnd"));var Ei=W?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Bi(t){Ei(function(){Ei(t)})}function Mi(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Si(t,e))}function Li(t,e){t._transitionClasses&&v(t._transitionClasses,e),ki(t,e)}function Ri(t,e,n){var i=Ni(t,e),s=i.type,r=i.timeout,o=i.propCount;if(!s)return n();var a=s===$i?Ai:Di,c=0,l=function(){t.removeEventListener(a,u),n()},u=function(e){e.target===t&&++c>=o&&l()};setTimeout(function(){c0&&(n=$i,u=o,h=r.length):e===Oi?l>0&&(n=Oi,u=l,h=c.length):h=(n=(u=Math.max(o,l))>0?o>l?$i:Oi:null)?n===$i?r.length:c.length:0,{type:n,timeout:u,propCount:h,hasTransform:n===$i&&Fi.test(i[Ii+"Property"])}}function Hi(t,e){for(;t.length1}function Xi(t,e){!0!==e.data.show&&Wi(e)}var Gi=function(t){var e,n,a={},c=t.modules,l=t.nodeOps;for(e=0;ep?b(t,i(n[g+1])?null:n[g+1].elm,n,f,g,r):f>g&&_(0,e,d,p)}(c,f,p,n,o):s(p)?(s(t.text)&&l.setTextContent(c,""),b(c,null,p,0,p.length-1,n)):s(f)?_(0,f,0,f.length-1):s(t.text)&&l.setTextContent(c,""):t.text!==e.text&&l.setTextContent(c,e.text),s(d)&&s(u=d.hook)&&s(u=u.postpatch)&&u(t,e)}}}function k(t,e,n){if(r(n)&&s(t.parent))t.parent.data.pendingInsert=e;else for(var i=0;i-1,o.selected!==r&&(o.selected=r);else if(A(ts(o),i))return void(t.selectedIndex!==a&&(t.selectedIndex=a));s||(t.selectedIndex=-1)}}function Qi(t,e){return e.every(function(e){return!A(e,t)})}function ts(t){return"_value"in t?t._value:t.value}function es(t){t.target.composing=!0}function ns(t){t.target.composing&&(t.target.composing=!1,is(t.target,"input"))}function is(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ss(t){return!t.componentInstance||t.data&&t.data.transition?t:ss(t.componentInstance._vnode)}var rs={model:Ki,show:{bind:function(t,e,n){var i=e.value,s=(n=ss(n)).data&&n.data.transition,r=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;i&&s?(n.data.show=!0,Wi(n,function(){t.style.display=r})):t.style.display=i?r:"none"},update:function(t,e,n){var i=e.value;!i!=!e.oldValue&&((n=ss(n)).data&&n.data.transition?(n.data.show=!0,i?Wi(n,function(){t.style.display=t.__vOriginalDisplay}):Ui(n,function(){t.style.display="none"})):t.style.display=i?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,i,s){s||(t.style.display=t.__vOriginalDisplay)}}},os={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function as(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?as(de(e.children)):t}function cs(t){var e={},n=t.$options;for(var i in n.propsData)e[i]=t[i];var s=n._parentListeners;for(var r in s)e[_(r)]=s[r];return e}function ls(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var us={name:"transition",props:os,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(function(t){return t.tag||he(t)})).length){0;var i=this.mode;0;var s=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return s;var r=as(s);if(!r)return s;if(this._leaving)return ls(t,s);var a="__transition-"+this._uid+"-";r.key=null==r.key?r.isComment?a+"comment":a+r.tag:o(r.key)?0===String(r.key).indexOf(a)?r.key:a+r.key:r.key;var c=(r.data||(r.data={})).transition=cs(this),l=this._vnode,u=as(l);if(r.data.directives&&r.data.directives.some(function(t){return"show"===t.name})&&(r.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(r,u)&&!he(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var h=u.data.transition=T({},c);if("out-in"===i)return this._leaving=!0,oe(h,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),ls(t,s);if("in-out"===i){if(he(r))return l;var d,f=function(){d()};oe(c,"afterEnter",f),oe(c,"enterCancelled",f),oe(h,"delayLeave",function(t){d=t})}}return s}}},hs=T({tag:String,moveClass:String},os);function ds(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function fs(t){t.data.newPos=t.elm.getBoundingClientRect()}function ps(t){var e=t.data.pos,n=t.data.newPos,i=e.left-n.left,s=e.top-n.top;if(i||s){t.data.moved=!0;var r=t.elm.style;r.transform=r.WebkitTransform="translate("+i+"px,"+s+"px)",r.transitionDuration="0s"}}delete hs.mode;var ms={Transition:us,TransitionGroup:{props:hs,render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,s=this.$slots.default||[],r=this.children=[],o=cs(this),a=0;a-1?En[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:En[t]=/HTMLUnknownElement/.test(e.toString())},T(hn.options.directives,rs),T(hn.options.components,ms),hn.prototype.__patch__=W?Gi:$,hn.prototype.$mount=function(t,e){return function(t,e,n){return t.$el=e,t.$options.render||(t.$options.render=pt),Ve(t,"beforeMount"),new Ie(t,function(){t._update(t._render(),n)},$,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Ve(t,"mounted")),t}(this,t=t&&W?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},W&&setTimeout(function(){L.devtools&&nt&&nt.emit("init",hn)},0),e.default=hn}.call(e,n("DuR2"))},"/bQp":function(t,e){t.exports={}},"/n6Q":function(t,e,n){n("zQR9"),n("+tPU"),t.exports=n("Kh4W").f("iterator")},"/ocq":function(t,e,n){"use strict"; -/** - * vue-router v3.0.1 - * (c) 2017 Evan You - * @license MIT - */function i(t,e){0}function s(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}var r={name:"router-view",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,i=e.children,s=e.parent,r=e.data;r.routerView=!0;for(var o=s.$createElement,a=n.name,c=s.$route,l=s._routerViewCache||(s._routerViewCache={}),u=0,h=!1;s&&s._routerRoot!==s;)s.$vnode&&s.$vnode.data.routerView&&u++,s._inactive&&(h=!0),s=s.$parent;if(r.routerViewDepth=u,h)return o(l[a],r,i);var d=c.matched[u];if(!d)return l[a]=null,o();var f=l[a]=d.components[a];r.registerRouteInstance=function(t,e){var n=d.instances[a];(e&&n!==t||!e&&n===t)&&(d.instances[a]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){d.instances[a]=e.componentInstance};var p=r.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(c,d.props&&d.props[a]);if(p){p=r.props=function(t,e){for(var n in e)t[n]=e[n];return t}({},p);var m=r.attrs=r.attrs||{};for(var v in p)f.props&&v in f.props||(m[v]=p[v],delete p[v])}return o(f,r,i)}};var o=/[!'()*]/g,a=function(t){return"%"+t.charCodeAt(0).toString(16)},c=/%2C/g,l=function(t){return encodeURIComponent(t).replace(o,a).replace(c,",")},u=decodeURIComponent;function h(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),i=u(n.shift()),s=n.length>0?u(n.join("=")):null;void 0===e[i]?e[i]=s:Array.isArray(e[i])?e[i].push(s):e[i]=[e[i],s]}),e):e}function d(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return l(e);if(Array.isArray(n)){var i=[];return n.forEach(function(t){void 0!==t&&(null===t?i.push(l(e)):i.push(l(e)+"="+l(t)))}),i.join("&")}return l(e)+"="+l(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var f=/\/?$/;function p(t,e,n,i){var s=i&&i.options.stringifyQuery,r=e.query||{};try{r=m(r)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:g(e,s),matched:t?function(t){var e=[];for(;t;)e.unshift(t),t=t.parent;return e}(t):[]};return n&&(o.redirectedFrom=g(n,s)),Object.freeze(o)}function m(t){if(Array.isArray(t))return t.map(m);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=m(t[n]);return e}return t}var v=p(null,{path:"/"});function g(t,e){var n=t.path,i=t.query;void 0===i&&(i={});var s=t.hash;return void 0===s&&(s=""),(n||"/")+(e||d)(i)+s}function y(t,e){return e===v?t===e:!!e&&(t.path&&e.path?t.path.replace(f,"")===e.path.replace(f,"")&&t.hash===e.hash&&b(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&b(t.query,e.query)&&b(t.params,e.params)))}function b(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),i=Object.keys(e);return n.length===i.length&&n.every(function(n){var i=t[n],s=e[n];return"object"==typeof i&&"object"==typeof s?b(i,s):String(i)===String(s)})}var x,_=[String,Object],V=[String,Array],w={name:"router-link",props:{to:{type:_,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:V,default:"click"}},render:function(t){var e=this,n=this.$router,i=this.$route,s=n.resolve(this.to,i,this.append),r=s.location,o=s.route,a=s.href,c={},l=n.options.linkActiveClass,u=n.options.linkExactActiveClass,h=null==l?"router-link-active":l,d=null==u?"router-link-exact-active":u,m=null==this.activeClass?h:this.activeClass,v=null==this.exactActiveClass?d:this.exactActiveClass,g=r.path?p(null,r,null,n):o;c[v]=y(i,g),c[m]=this.exact?c[v]:function(t,e){return 0===t.path.replace(f,"/").indexOf(e.path.replace(f,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(i,g);var b=function(t){S(t)&&(e.replace?n.replace(r):n.push(r))},_={click:S};Array.isArray(this.event)?this.event.forEach(function(t){_[t]=b}):_[this.event]=b;var V={class:c};if("a"===this.tag)V.on=_,V.attrs={href:a};else{var w=function t(e){if(e)for(var n,i=0;i=0&&(e=t.slice(i),t=t.slice(0,i));var s=t.indexOf("?");return s>=0&&(n=t.slice(s+1),t=t.slice(0,s)),{path:t,query:n,hash:e}}(s.path||""),c=e&&e.path||"/",l=a.path?T(a.path,c,n||s.append):c,u=function(t,e,n){void 0===e&&(e={});var i,s=n||h;try{i=s(t||"")}catch(t){i={}}for(var r in e)i[r]=e[r];return i}(a.query,s.query,i&&i.options.parseQuery),d=s.hash||a.hash;return d&&"#"!==d.charAt(0)&&(d="#"+d),{_normalized:!0,path:l,query:u,hash:d}}function G(t,e){for(var n in e)t[n]=e[n];return t}function K(t,e){var n=q(t),i=n.pathList,s=n.pathMap,r=n.nameMap;function o(t,n,o){var a=X(t,n,!1,e),l=a.name;if(l){var u=r[l];if(!u)return c(null,a);var h=u.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof a.params&&(a.params={}),n&&"object"==typeof n.params)for(var d in n.params)!(d in a.params)&&h.indexOf(d)>-1&&(a.params[d]=n.params[d]);if(u)return a.path=Y(u.path,a.params),c(u,a,o)}else if(a.path){a.params={};for(var f=0;f=t.length?n():t[s]?e(t[s],function(){i(s+1)}):i(s+1)};i(0)}function mt(t){return function(e,n,i){var r=!1,o=0,a=null;vt(t,function(t,e,n,c){if("function"==typeof t&&void 0===t.cid){r=!0,o++;var l,u=bt(function(e){var s;((s=e).__esModule||yt&&"Module"===s[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:x.extend(e),n.components[c]=e,--o<=0&&i()}),h=bt(function(t){var e="Failed to resolve async component "+c+": "+t;a||(a=s(t)?t:new Error(e),i(a))});try{l=t(u,h)}catch(t){h(t)}if(l)if("function"==typeof l.then)l.then(u,h);else{var d=l.component;d&&"function"==typeof d.then&&d.then(u,h)}}}),r||i()}}function vt(t,e){return gt(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function gt(t){return Array.prototype.concat.apply([],t)}var yt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function bt(t){var e=!1;return function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];if(!e)return e=!0,t.apply(this,n)}}var xt=function(t,e){this.router=t,this.base=function(t){if(!t)if(C){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=v,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function _t(t,e,n,i){var s=vt(t,function(t,i,s,r){var o=function(t,e){"function"!=typeof t&&(t=x.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map(function(t){return n(t,i,s,r)}):n(o,i,s,r)});return gt(i?s.reverse():s)}function Vt(t,e){if(e)return function(){return t.apply(e,arguments)}}xt.prototype.listen=function(t){this.cb=t},xt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},xt.prototype.onError=function(t){this.errorCbs.push(t)},xt.prototype.transitionTo=function(t,e,n){var i=this,s=this.router.match(t,this.current);this.confirmTransition(s,function(){i.updateRoute(s),e&&e(s),i.ensureURL(),i.ready||(i.ready=!0,i.readyCbs.forEach(function(t){t(s)}))},function(t){n&&n(t),t&&!i.ready&&(i.ready=!0,i.readyErrorCbs.forEach(function(e){e(t)}))})},xt.prototype.confirmTransition=function(t,e,n){var r=this,o=this.current,a=function(t){s(t)&&(r.errorCbs.length?r.errorCbs.forEach(function(e){e(t)}):(i(),console.error(t))),n&&n(t)};if(y(t,o)&&t.matched.length===o.matched.length)return this.ensureURL(),a();var c=function(t,e){var n,i=Math.max(t.length,e.length);for(n=0;n=0?e.slice(0,n):e)+"#"+t}function $t(t){at?dt(jt(t)):window.location.hash=t}function Ot(t){at?ft(jt(t)):window.location.replace(jt(t))}var It=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index+1).concat(t),i.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,function(){e.index=n,e.updateRoute(i)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(xt),At=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=K(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!at&&!1!==t.fallback,this.fallback&&(e="hash"),C||(e="abstract"),this.mode=e,e){case"history":this.history=new wt(this,t.base);break;case"hash":this.history=new kt(this,t.base,this.fallback);break;case"abstract":this.history=new It(this,t.base);break;default:0}},Pt={currentRoute:{configurable:!0}};function Dt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}At.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Pt.currentRoute.get=function(){return this.history&&this.history.current},At.prototype.init=function(t){var e=this;if(this.apps.push(t),!this.app){this.app=t;var n=this.history;if(n instanceof wt)n.transitionTo(n.getCurrentLocation());else if(n instanceof kt){var i=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},At.prototype.beforeEach=function(t){return Dt(this.beforeHooks,t)},At.prototype.beforeResolve=function(t){return Dt(this.resolveHooks,t)},At.prototype.afterEach=function(t){return Dt(this.afterHooks,t)},At.prototype.onReady=function(t,e){this.history.onReady(t,e)},At.prototype.onError=function(t){this.history.onError(t)},At.prototype.push=function(t,e,n){this.history.push(t,e,n)},At.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},At.prototype.go=function(t){this.history.go(t)},At.prototype.back=function(){this.go(-1)},At.prototype.forward=function(){this.go(1)},At.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},At.prototype.resolve=function(t,e,n){var i=X(t,e||this.history.current,n,this),s=this.match(i,e),r=s.redirectedFrom||s.fullPath;return{location:i,route:s,href:function(t,e,n){var i="hash"===n?"#"+e:e;return t?j(t+"/"+i):i}(this.history.base,r,this.mode),normalizedTo:i,resolved:s}},At.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==v&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(At.prototype,Pt),At.install=k,At.version="3.0.1",C&&window.Vue&&window.Vue.use(At),e.a=At},"06OY":function(t,e,n){var i=n("3Eo+")("meta"),s=n("EqjI"),r=n("D2L2"),o=n("evD5").f,a=0,c=Object.isExtensible||function(){return!0},l=!n("S82l")(function(){return c(Object.preventExtensions({}))}),u=function(t){o(t,i,{value:{i:"O"+ ++a,w:{}}})},h=t.exports={KEY:i,NEED:!1,fastKey:function(t,e){if(!s(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!r(t,i)){if(!c(t))return"F";if(!e)return"E";u(t)}return t[i].i},getWeak:function(t,e){if(!r(t,i)){if(!c(t))return!0;if(!e)return!1;u(t)}return t[i].w},onFreeze:function(t){return l&&h.NEED&&c(t)&&!r(t,i)&&u(t),t}}},"1kS7":function(t,e){e.f=Object.getOwnPropertySymbols},"3EgV":function(t,e,n){var i;"undefined"!=typeof self&&self,i=function(t){return function(t){var e={};function n(i){if(e[i])return e[i].exports;var s=e[i]={i:i,l:!1,exports:{}};return t[i].call(s.exports,s,s.exports,n),s.l=!0,s.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var s in t)n.d(i,s,function(e){return t[e]}.bind(null,s));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/dist/",n(n.s="./src/index.ts")}({"./src/components/VAlert/VAlert.ts": -/*!*****************************************!*\ - !*** ./src/components/VAlert/VAlert.ts ***! - \*****************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_alerts.styl */"./src/stylus/components/_alerts.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/transitionable */"./src/mixins/transitionable.ts"),a=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(a.default)(s.default,r.default,o.default).extend({name:"v-alert",props:{dismissible:Boolean,icon:String,outline:Boolean,type:{type:String,validator:function(t){return["info","error","success","warning"].includes(t)}}},computed:{computedColor:function(){return this.type&&!this.color?this.type:this.color||"error"},computedIcon:function(){if(this.icon||!this.type)return this.icon;switch(this.type){case"info":return"$vuetify.icons.info";case"error":return"$vuetify.icons.error";case"success":return"$vuetify.icons.success";case"warning":return"$vuetify.icons.warning"}}},methods:{genIcon:function(){return this.computedIcon?this.$createElement(i.default,{class:"v-alert__icon"},this.computedIcon):null},genDismissible:function(){var t=this;return this.dismissible?this.$createElement("a",{class:"v-alert__dismissible",on:{click:function(){t.isActive=!1}}},[this.$createElement(i.default,{props:{right:!0}},"$vuetify.icons.cancel")]):null}},render:function(t){var e=[this.genIcon(),t("div",this.$slots.default),this.genDismissible()],n=t("div",(this.outline?this.setTextColor:this.setBackgroundColor)(this.computedColor,{staticClass:"v-alert",class:{"v-alert--outline":this.outline},directives:[{name:"show",value:this.isActive}],on:this.$listeners}),e);return this.transition?t("transition",{props:{name:this.transition,origin:this.origin,mode:this.mode}},[n]):n}})},"./src/components/VAlert/index.ts": -/*!****************************************!*\ - !*** ./src/components/VAlert/index.ts ***! - \****************************************/ -/*! exports provided: VAlert, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VAlert */"./src/components/VAlert/VAlert.ts");n.d(e,"VAlert",function(){return i.default}),e.default=i.default},"./src/components/VApp/VApp.js": -/*!*************************************!*\ - !*** ./src/components/VApp/VApp.js ***! - \*************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_app.styl */"./src/stylus/components/_app.styl");var i=n(/*! ./mixins/app-theme */"./src/components/VApp/mixins/app-theme.js"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=n(/*! ../../directives/resize */"./src/directives/resize.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n"+this.generatedStyles+""}else"undefined"!=typeof document&&(this.genStyle(),this.applyTheme())},methods:{applyTheme:function(){this.style&&(this.style.innerHTML=this.generatedStyles)},genStyle:function(){var t=document.getElementById("vuetify-theme-stylesheet");t||((t=document.createElement("style")).type="text/css",t.id="vuetify-theme-stylesheet",this.$vuetify.options.cspNonce&&t.setAttribute("nonce",this.$vuetify.options.cspNonce),document.head.appendChild(t)),this.style=t}}}},"./src/components/VAutocomplete/VAutocomplete.js": -/*!*******************************************************!*\ - !*** ./src/components/VAutocomplete/VAutocomplete.js ***! - \*******************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_autocompletes.styl */"./src/stylus/components/_autocompletes.styl");var i=n(/*! ../VSelect/VSelect */"./src/components/VSelect/VSelect.js"),s=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),r=n(/*! ../../util/helpers */"./src/util/helpers.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1}},hideNoData:Boolean,noFilter:Boolean,searchInput:{default:void 0},menuProps:{type:i.default.props.menuProps.type,default:function(){return a}}},data:function(t){return{attrsInput:null,lazySearch:t.searchInput}},computed:{classes:function(){return Object.assign({},i.default.computed.classes.call(this),{"v-autocomplete":!0,"v-autocomplete--is-selecting-index":this.selectedIndex>-1})},computedItems:function(){return this.filteredItems},displayedItemsCount:function(){return this.hideSelected?this.filteredItems.length-this.selectedItems.length:this.filteredItems.length},currentRange:function(){return null==this.selectedItem?0:this.getText(this.selectedItem).toString().length},filteredItems:function(){var t=this;return!this.isSearching||this.noFilter?this.allItems:this.allItems.filter(function(e){return t.filter(e,t.internalSearch,t.getText(e))})},internalSearch:{get:function(){return this.lazySearch},set:function(t){this.lazySearch=t,this.$emit("update:searchInput",t)}},isAnyValueAllowed:function(){return!1},isDirty:function(){return this.searchIsDirty||this.selectedItems.length>0},isSearching:function(){return this.multiple?this.searchIsDirty:this.searchIsDirty&&this.internalSearch!==this.getText(this.selectedItem)},menuCanShow:function(){return!!this.isFocused&&(this.displayedItemsCount>0||!this.hideNoData)},$_menuProps:function(){var t=i.default.computed.$_menuProps.call(this);return t.contentClass=("v-autocomplete__content "+(t.contentClass||"")).trim(),o({},a,t)},searchIsDirty:function(){return null!=this.internalSearch&&""!==this.internalSearch},selectedItem:function(){var t=this;return this.multiple?null:this.selectedItems.find(function(e){return t.valueComparator(t.getValue(e),t.getValue(t.internalValue))})},listData:function(){var t=i.default.computed.listData.call(this);return Object.assign(t.props,{items:this.virtualizedItems,noFilter:this.noFilter||!this.isSearching||!this.filteredItems.length,searchInput:this.internalSearch}),t}},watch:{filteredItems:function(t){this.onFilteredItemsChanged(t)},internalValue:function(){this.setSearch()},isFocused:function(t){t?this.$refs.input&&this.$refs.input.select():this.updateSelf()},isMenuActive:function(t){!t&&this.hasSlot&&(this.lazySearch=null)},items:function(t){this.isFocused&&!this.isMenuActive&&t.length&&this.activateMenu()},searchInput:function(t){this.lazySearch=t},internalSearch:function(t){this.onInternalSearchChanged(t)}},created:function(){this.setSearch()},methods:{onFilteredItemsChanged:function(t){var e=this;this.setMenuIndex(-1),this.$nextTick(function(){e.setMenuIndex(1===t.length?0:-1)})},onInternalSearchChanged:function(t){this.updateMenuDimensions()},updateMenuDimensions:function(){this.isMenuActive&&this.$refs.menu&&this.$refs.menu.updateDimensions()},changeSelectedIndex:function(t){if(!this.searchIsDirty&&[r.keyCodes.backspace,r.keyCodes.left,r.keyCodes.right,r.keyCodes.delete].includes(t)){var e=this.selectedItems.length-1;if(t===r.keyCodes.left)this.selectedIndex=-1===this.selectedIndex?e:this.selectedIndex-1;else if(t===r.keyCodes.right)this.selectedIndex=this.selectedIndex>=e?-1:this.selectedIndex+1;else if(-1===this.selectedIndex)return void(this.selectedIndex=e);var n=this.selectedItems[this.selectedIndex];if([r.keyCodes.backspace,r.keyCodes.delete].includes(t)&&!this.getDisabled(n)){var i=this.selectedIndex===e?this.selectedIndex-1:this.selectedItems[this.selectedIndex+1]?this.selectedIndex:-1;-1===i?this.internalValue=this.multiple?[]:void 0:this.selectItem(n),this.selectedIndex=i}}},clearableCallback:function(){this.internalSearch=void 0,i.default.methods.clearableCallback.call(this)},genInput:function(){var t=s.default.methods.genInput.call(this);return t.data.attrs.role="combobox",t.data.domProps.value=this.internalSearch,t},genSelections:function(){return this.hasSlot||this.multiple?i.default.methods.genSelections.call(this):[]},onClick:function(){this.isDisabled||(this.selectedIndex>-1?this.selectedIndex=-1:this.onFocus(),this.activateMenu())},onEnterDown:function(){},onInput:function(t){this.selectedIndex>-1||(t.target.value&&(this.activateMenu(),this.isAnyValueAllowed||this.setMenuIndex(0)),this.mask&&this.resetSelections(t.target),this.internalSearch=t.target.value,this.badInput=t.target.validity&&t.target.validity.badInput)},onKeyDown:function(t){var e=t.keyCode;i.default.methods.onKeyDown.call(this,t),this.changeSelectedIndex(e)},onTabDown:function(t){i.default.methods.onTabDown.call(this,t),this.updateSelf()},selectItem:function(t){i.default.methods.selectItem.call(this,t),this.setSearch()},setSelectedItems:function(){i.default.methods.setSelectedItems.call(this),this.isFocused||this.setSearch()},setSearch:function(){var t=this;this.$nextTick(function(){t.internalSearch=!t.selectedItem||t.multiple||t.hasSlot?null:t.getText(t.selectedItem)})},setValue:function(){this.internalValue=this.internalSearch,this.$emit("change",this.internalSearch)},updateSelf:function(){this.updateAutocomplete()},updateAutocomplete:function(){(this.searchIsDirty||this.internalValue)&&(this.valueComparator(this.internalSearch,this.getValue(this.internalValue))||this.setSearch())}}}},"./src/components/VAutocomplete/index.js": -/*!***********************************************!*\ - !*** ./src/components/VAutocomplete/index.js ***! - \***********************************************/ -/*! exports provided: VAutocomplete, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VAutocomplete */"./src/components/VAutocomplete/VAutocomplete.js");n.d(e,"VAutocomplete",function(){return i.default}),e.default=i.default},"./src/components/VAvatar/VAvatar.ts": -/*!*******************************************!*\ - !*** ./src/components/VAvatar/VAvatar.ts ***! - \*******************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_avatars.styl */"./src/stylus/components/_avatars.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1){if(this.mandatory&&1===n.length)return;n.length>=1&&n.splice(i,1)}else n.push(e);this.$emit("change",n)}else{if(this.mandatory&&this.inputValue===e)return;this.$emit("change",this.inputValue===e?null:e)}},updateAllValues:function(){if(this.multiple){for(var t=[],e=0;e0}},nextIcon:{type:[Boolean,String],default:"$vuetify.icons.next"},prevIcon:{type:[Boolean,String],default:"$vuetify.icons.prev"},value:Number},data:function(){return{inputValue:null,items:[],slideTimeout:null,reverse:!1}},computed:{isDark:function(){return this.dark||!this.light}},watch:{items:function(){this.inputValue>=this.items.length&&(this.inputValue=this.items.length-1)},inputValue:function(){for(var t=(this.items[this.inputValue]||{}).uid,e=this.items.length;--e>=0;)this.items[e].open(t,this.reverse);this.$emit("input",this.inputValue),this.restartTimeout()},value:function(t){this.inputValue=t},interval:function(){this.restartTimeout()},cycle:function(t){t?this.restartTimeout():(clearTimeout(this.slideTimeout),this.slideTimeout=null)}},mounted:function(){this.init()},methods:{genDelimiters:function(){return this.$createElement("div",{staticClass:"v-carousel__controls"},this.genItems())},genIcon:function(t,e,n){return e?this.$createElement("div",{staticClass:"v-carousel__"+t},[this.$createElement(i.default,{props:{icon:!0},on:{click:n}},[this.$createElement(s.default,{props:{size:"46px"}},e)])]):null},genItems:function(){var t=this;return this.items.map(function(e,n){return t.$createElement(i.default,{class:{"v-carousel__controls__item":!0,"v-carousel__controls__item--active":n===t.inputValue},props:{icon:!0,small:!0},key:n,on:{click:t.select.bind(t,n)}},[t.$createElement(s.default,{props:{size:"18px"}},t.delimiterIcon)])})},restartTimeout:function(){this.slideTimeout&&clearTimeout(this.slideTimeout),this.slideTimeout=null,(requestAnimationFrame||setTimeout)(this.startTimeout)},init:function(){this.inputValue=this.value||0},next:function(){this.reverse=!1,this.inputValue=(this.inputValue+1)%this.items.length},prev:function(){this.reverse=!0,this.inputValue=(this.inputValue+this.items.length-1)%this.items.length},select:function(t){this.reverse=t0?this.interval:6e3))},register:function(t,e){this.items.push({uid:t,open:e})},unregister:function(t){this.items=this.items.filter(function(e){return e.uid!==t})}},render:function(t){return t("div",{staticClass:"v-carousel",directives:[{name:"touch",value:{left:this.next,right:this.prev}}]},[this.hideControls?null:this.genIcon("prev",this.$vuetify.rtl?this.nextIcon:this.prevIcon,this.prev),this.hideControls?null:this.genIcon("next",this.$vuetify.rtl?this.prevIcon:this.nextIcon,this.next),this.hideDelimiters?null:this.genDelimiters(),this.$slots.default])}}},"./src/components/VCarousel/VCarouselItem.js": -/*!***************************************************!*\ - !*** ./src/components/VCarousel/VCarouselItem.js ***! - \***************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VImg */"./src/components/VImg/index.ts"),s=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0||!!this.$slots["no-data"]&&!this.hideNoData)}},methods:{onFilteredItemsChanged:function(){},onInternalSearchChanged:function(t){if(t&&this.multiple&&this.delimiters){var e=this.delimiters.find(function(e){return t.endsWith(e)});if(null==e)return;this.internalSearch=t.slice(0,t.length-e.length),this.updateTags()}this.updateMenuDimensions()},genChipSelection:function(t,e){var n=this,s=i.default.methods.genChipSelection.call(this,t,e);return this.multiple&&(s.componentOptions.listeners.dblclick=function(){n.editingIndex=e,n.internalSearch=n.getText(t),n.selectedIndex=-1}),s},onChipInput:function(t){i.default.methods.onChipInput.call(this,t),this.editingIndex=-1},onEnterDown:function(t){t.preventDefault(),i.default.methods.onEnterDown.call(this),this.getMenuIndex()>-1||this.updateSelf()},onKeyDown:function(t){var e=t.keyCode;i.default.methods.onKeyDown.call(this,t),this.multiple&&e===r.keyCodes.left&&0===this.$refs.input.selectionStart&&this.updateSelf(),this.changeSelectedIndex(e)},onTabDown:function(t){if(this.multiple&&this.internalSearch&&-1===this.getMenuIndex())return t.preventDefault(),t.stopPropagation(),this.updateTags();s.default.methods.onTabDown.call(this,t)},selectItem:function(t){this.editingIndex>-1?this.updateEditing():i.default.methods.selectItem.call(this,t),this.setSearch()},setSelectedItems:function(){null==this.internalValue||""===this.internalValue?this.selectedItems=[]:this.selectedItems=this.multiple?this.internalValue:[this.internalValue]},updateEditing:function(){var t=this.internalValue.slice();t[this.editingIndex]=this.internalSearch,this.internalValue=t,this.editingIndex=-1},updateCombobox:function(){var t=Boolean(this.$scopedSlots.selection)||this.hasChips;t&&!this.searchIsDirty||(this.internalSearch!==this.getText(this.internalValue)&&this.setValue(),t&&(this.internalSearch=void 0))},updateSelf:function(){this.multiple?this.updateTags():this.updateCombobox()},updateTags:function(){var t=this.getMenuIndex();if(!(t<0)||this.searchIsDirty){if(this.editingIndex>-1)return this.updateEditing();var e=this.selectedItems.indexOf(this.internalSearch);if(e>-1&&this.internalValue.splice(e,1),t>-1)return this.internalSearch=null;this.selectItem(this.internalSearch),this.internalSearch=null}}}}},"./src/components/VCombobox/index.js": -/*!*******************************************!*\ - !*** ./src/components/VCombobox/index.js ***! - \*******************************************/ -/*! exports provided: VCombobox, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCombobox */"./src/components/VCombobox/VCombobox.js");n.d(e,"VCombobox",function(){return i.default}),e.default=i.default},"./src/components/VCounter/VCounter.js": -/*!*********************************************!*\ - !*** ./src/components/VCounter/VCounter.js ***! - \*********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_counters.styl */"./src/stylus/components/_counters.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;nr},Object(i.functionalThemeClasses)(e))},a)}}},"./src/components/VCounter/index.js": -/*!******************************************!*\ - !*** ./src/components/VCounter/index.js ***! - \******************************************/ -/*! exports provided: VCounter, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCounter */"./src/components/VCounter/VCounter.js");n.d(e,"VCounter",function(){return i.default}),e.default=i.default},"./src/components/VDataIterator/VDataIterator.js": -/*!*******************************************************!*\ - !*** ./src/components/VDataIterator/VDataIterator.js ***! - \*******************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_data-iterator.styl */"./src/stylus/components/_data-iterator.styl");var i=n(/*! ../../mixins/data-iterable */"./src/mixins/data-iterable.js"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},a=function(){for(var t=[],e=0;e0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default={name:"v-date-picker",mixins:[c.default],props:{allowedDates:Function,dayFormat:{type:Function,default:null},events:{type:[Array,Object,Function],default:function(){return null}},eventColor:{type:[String,Function,Object],default:"warning"},firstDayOfWeek:{type:[String,Number],default:0},headerDateFormat:{type:Function,default:null},locale:{type:String,default:"en-us"},max:String,min:String,monthFormat:{type:Function,default:null},multiple:Boolean,nextIcon:{type:String,default:"$vuetify.icons.next"},pickerDate:String,prevIcon:{type:String,default:"$vuetify.icons.prev"},reactive:Boolean,readonly:Boolean,scrollable:Boolean,showCurrent:{type:[Boolean,String],default:!0},titleDateFormat:{type:Function,default:null},type:{type:String,default:"date",validator:function(t){return["date","month"].includes(t)}},value:[Array,String],yearFormat:{type:Function,default:null},yearIcon:String},data:function(){var t=this,e=new Date;return{activePicker:this.type.toUpperCase(),inputDay:null,inputMonth:null,inputYear:null,isReversing:!1,now:e,tableDate:function(){if(t.pickerDate)return t.pickerDate;var n=(t.multiple?t.value[t.value.length-1]:t.value)||e.getFullYear()+"-"+(e.getMonth()+1),i="date"===t.type?"month":"year";return t.sanitizeDateString(n,i)}()}},computed:{lastValue:function(){return this.multiple?this.value[this.value.length-1]:this.value},selectedMonths:function(){return this.value&&this.value.length&&"month"!==this.type?this.multiple?this.value.map(function(t){return t.substr(0,7)}):this.value.substr(0,7):this.value},current:function(){return!0===this.showCurrent?this.sanitizeDateString(this.now.getFullYear()+"-"+(this.now.getMonth()+1)+"-"+this.now.getDate(),this.type):this.showCurrent||null},inputDate:function(){return"date"===this.type?this.inputYear+"-"+Object(l.pad)(this.inputMonth+1)+"-"+Object(l.pad)(this.inputDay):this.inputYear+"-"+Object(l.pad)(this.inputMonth+1)},tableMonth:function(){return(this.pickerDate||this.tableDate).split("-")[1]-1},tableYear:function(){return 1*(this.pickerDate||this.tableDate).split("-")[0]},minMonth:function(){return this.min?this.sanitizeDateString(this.min,"month"):null},maxMonth:function(){return this.max?this.sanitizeDateString(this.max,"month"):null},minYear:function(){return this.min?this.sanitizeDateString(this.min,"year"):null},maxYear:function(){return this.max?this.sanitizeDateString(this.max,"year"):null},formatters:function(){return{year:this.yearFormat||Object(l.createNativeLocaleFormatter)(this.locale,{year:"numeric",timeZone:"UTC"},{length:4}),titleDate:this.titleDateFormat||(this.multiple?this.defaultTitleMultipleDateFormatter:this.defaultTitleDateFormatter)}},defaultTitleMultipleDateFormatter:function(){var t=this;return this.value.length<2?function(e){return e.length?t.defaultTitleDateFormatter(e[0]):"0 selected"}:function(t){return t.length+" selected"}},defaultTitleDateFormatter:function(){var t=Object(l.createNativeLocaleFormatter)(this.locale,{year:{year:"numeric",timeZone:"UTC"},month:{month:"long",timeZone:"UTC"},date:{weekday:"short",month:"short",day:"numeric",timeZone:"UTC"}}[this.type],{start:0,length:{date:10,month:7,year:4}[this.type]});return this.landscape?function(e){return t(e).replace(/([^\d\s])([\d])/g,function(t,e,n){return e+" "+n}).replace(", ",",
")}:t}},watch:{tableDate:function(t,e){var n="month"===this.type?"year":"month";this.isReversing=this.sanitizeDateString(t,n)-1:this.events instanceof Function&&this.events(t)},genTBody:function(){for(var t=[],e=new Date(this.displayedYear,this.displayedMonth+1,0).getDate(),n=[],i=this.weekDaysBeforeFirstDayOfTheMonth();i--;)n.push(this.$createElement("td"));for(i=1;i<=e;i++){var s=this.displayedYear+"-"+Object(o.pad)(this.displayedMonth+1)+"-"+Object(o.pad)(i);n.push(this.$createElement("td",[this.genButton(s,!0),this.isEvent(s)?this.genEvent(s):null])),n.length%7==0&&(t.push(this.genTR(n)),n=[])}return n.length&&t.push(this.genTR(n)),this.$createElement("tbody",t)},genTR:function(t){return[this.$createElement("tr",t)]}},render:function(){return this.genTable("v-date-picker-table v-date-picker-table--date",[this.genTHead(),this.genTBody()])}}},"./src/components/VDatePicker/VDatePickerHeader.js": -/*!*********************************************************!*\ - !*** ./src/components/VDatePicker/VDatePickerHeader.js ***! - \*********************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_date-picker-header.styl */"./src/stylus/components/_date-picker-header.styl");var i=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),s=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ./util */"./src/components/VDatePicker/util/index.js"),c=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default={name:"v-date-picker-header",mixins:[r.default,o.default],props:{disabled:Boolean,format:{type:Function,default:null},locale:{type:String,default:"en-us"},min:String,max:String,nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},value:{type:[Number,String],required:!0}},data:function(){return{isReversing:!1}},computed:{formatter:function(){return this.format?this.format:String(this.value).split("-")[1]?Object(a.createNativeLocaleFormatter)(this.locale,{month:"long",year:"numeric",timeZone:"UTC"},{length:7}):Object(a.createNativeLocaleFormatter)(this.locale,{year:"numeric",timeZone:"UTC"},{length:4})}},watch:{value:function(t,e){this.isReversing=t0&&this.max&&this.calculateChange(t)>this.max;return this.$createElement(i.default,{props:{dark:this.dark,disabled:n,icon:!0,light:this.light},nativeOn:{click:function(n){n.stopPropagation(),e.$emit("input",e.calculateChange(t))}}},[this.$createElement(s.default,t<0==!this.$vuetify.rtl?this.prevIcon:this.nextIcon)])},calculateChange:function(t){var e=c(String(this.value).split("-").map(function(t){return 1*t}),2),n=e[0];return null==e[1]?""+(n+t):Object(a.monthChange)(String(this.value),t)},genHeader:function(){var t=this,e=!this.disabled&&(this.color||"accent"),n=this.$createElement("strong",this.setTextColor(e,{key:String(this.value),on:{click:function(){return t.$emit("toggle")}}}),[this.$slots.default||this.formatter(String(this.value))]),i=this.$createElement("transition",{props:{name:this.isReversing===!this.$vuetify.rtl?"tab-reverse-transition":"tab-transition"}},[n]);return this.$createElement("div",{staticClass:"v-date-picker-header__value",class:{"v-date-picker-header__value--disabled":this.disabled}},[i])}},render:function(){return this.$createElement("div",{staticClass:"v-date-picker-header",class:this.themeClasses},[this.genBtn(-1),this.genHeader(),this.genBtn(1)])}}},"./src/components/VDatePicker/VDatePickerMonthTable.js": -/*!*************************************************************!*\ - !*** ./src/components/VDatePicker/VDatePickerMonthTable.js ***! - \*************************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ./mixins/date-picker-table */"./src/components/VDatePicker/mixins/date-picker-table.js"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ./util */"./src/components/VDatePicker/util/index.js");e.default={name:"v-date-picker-month-table",mixins:[i.default,s.default,r.default],computed:{formatter:function(){return this.format||Object(o.createNativeLocaleFormatter)(this.locale,{month:"short",timeZone:"UTC"},{start:5,length:2})}},methods:{calculateTableDate:function(t){return""+(parseInt(this.tableDate,10)+Math.sign(t||1))},genTBody:function(){for(var t=this,e=[],n=Array(3).fill(null),i=12/n.length,s=function(i){var s=n.map(function(e,s){var r=i*n.length+s;return t.$createElement("td",{key:r},[t.genButton(t.displayedYear+"-"+Object(o.pad)(r+1),!1)])});e.push(r.$createElement("tr",{key:i},s))},r=this,a=0;a=i;s--)t.push(this.genYearItem(s));return t}},render:function(){return this.$createElement("ul",{staticClass:"v-date-picker-years",ref:"years"},this.genYearItems())}}},"./src/components/VDatePicker/index.js": -/*!*********************************************!*\ - !*** ./src/components/VDatePicker/index.js ***! - \*********************************************/ -/*! exports provided: VDatePicker, VDatePickerTitle, VDatePickerHeader, VDatePickerDateTable, VDatePickerMonthTable, VDatePickerYears, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDatePicker */"./src/components/VDatePicker/VDatePicker.js");n.d(e,"VDatePicker",function(){return i.default});var s=n(/*! ./VDatePickerTitle */"./src/components/VDatePicker/VDatePickerTitle.js");n.d(e,"VDatePickerTitle",function(){return s.default});var r=n(/*! ./VDatePickerHeader */"./src/components/VDatePicker/VDatePickerHeader.js");n.d(e,"VDatePickerHeader",function(){return r.default});var o=n(/*! ./VDatePickerDateTable */"./src/components/VDatePicker/VDatePickerDateTable.js");n.d(e,"VDatePickerDateTable",function(){return o.default});var a=n(/*! ./VDatePickerMonthTable */"./src/components/VDatePicker/VDatePickerMonthTable.js");n.d(e,"VDatePickerMonthTable",function(){return a.default});var c=n(/*! ./VDatePickerYears */"./src/components/VDatePicker/VDatePickerYears.js");n.d(e,"VDatePickerYears",function(){return c.default}),e.default={$_vuetify_subcomponents:{VDatePicker:i.default,VDatePickerTitle:s.default,VDatePickerHeader:r.default,VDatePickerDateTable:o.default,VDatePickerMonthTable:a.default,VDatePickerYears:c.default}}},"./src/components/VDatePicker/mixins/date-picker-table.js": -/*!****************************************************************!*\ - !*** ./src/components/VDatePicker/mixins/date-picker-table.js ***! - \****************************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../../stylus/components/_date-picker-table.styl */"./src/stylus/components/_date-picker-table.styl");var i=n(/*! ../../../directives/touch */"./src/directives/touch.ts"),s=n(/*! .././util/isDateAllowed */"./src/components/VDatePicker/util/isDateAllowed.js"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n'+this.formatter(t)+""},on:this.disabled||!i?{}:{click:function(){return n.$emit("input",t)}}}))},wheel:function(t){t.preventDefault(),this.$emit("tableDate",this.calculateTableDate(t.deltaY))},touch:function(t){this.$emit("tableDate",this.calculateTableDate(t))},genTable:function(t,e){var n=this,i=this.$createElement("transition",{props:{name:this.computedTransition}},[this.$createElement("table",{key:this.tableDate},e)]),s={name:"touch",value:{left:function(t){return t.offsetX<-15&&n.touch(1)},right:function(t){return t.offsetX>15&&n.touch(-1)}}};return this.$createElement("div",{staticClass:t,class:this.themeClasses,on:this.scrollable?{wheel:this.wheel}:void 0,directives:[s]},[i])}}}},"./src/components/VDatePicker/util/createNativeLocaleFormatter.js": -/*!************************************************************************!*\ - !*** ./src/components/VDatePicker/util/createNativeLocaleFormatter.js ***! - \************************************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js"),s=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default=function(t,e,n){var r=void 0===n?{start:0,length:0}:n,o=r.start,a=r.length,c=function(t){var e=s(t.trim().split(" ")[0].split("-"),3),n=e[0],r=e[1],o=e[2];return[n,Object(i.default)(r||1),Object(i.default)(o||1)].join("-")};try{var l=new Intl.DateTimeFormat(t||void 0,e);return function(t){return l.format(new Date(c(t)+"T00:00:00+00:00"))}}catch(t){return o||a?function(t){return c(t).substr(o,a)}:null}}},"./src/components/VDatePicker/util/index.js": -/*!**************************************************!*\ - !*** ./src/components/VDatePicker/util/index.js ***! - \**************************************************/ -/*! exports provided: createNativeLocaleFormatter, monthChange, pad */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./createNativeLocaleFormatter */"./src/components/VDatePicker/util/createNativeLocaleFormatter.js");n.d(e,"createNativeLocaleFormatter",function(){return i.default});var s=n(/*! ./monthChange */"./src/components/VDatePicker/util/monthChange.js");n.d(e,"monthChange",function(){return s.default});var r=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js");n.d(e,"pad",function(){return r.default})},"./src/components/VDatePicker/util/isDateAllowed.js": -/*!**********************************************************!*\ - !*** ./src/components/VDatePicker/util/isDateAllowed.js ***! - \**********************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";function i(t,e,n,i){return(!i||i(t))&&(!e||t>=e)&&(!n||t<=n)}n.r(e),n.d(e,"default",function(){return i})},"./src/components/VDatePicker/util/monthChange.js": -/*!********************************************************!*\ - !*** ./src/components/VDatePicker/util/monthChange.js ***! - \********************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js"),s=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default=function(t,e){var n=s(t.split("-").map(function(t){return 1*t}),2),r=n[0],o=n[1];return o+e===0?r-1+"-12":o+e===13?r+1+"-01":r+"-"+Object(i.default)(o+e)}},"./src/components/VDatePicker/util/pad.js": -/*!************************************************!*\ - !*** ./src/components/VDatePicker/util/pad.js ***! - \************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);e.default=function(t,e){return void 0===e&&(e=2),n=t,i=e,s="0",i>>=0,n=String(n),s=String(s),n.length>i?String(n):((i-=n.length)>s.length&&(s+=s.repeat(i/s.length)),s.slice(0,i)+String(n));var n,i,s}},"./src/components/VDialog/VDialog.js": -/*!*******************************************!*\ - !*** ./src/components/VDialog/VDialog.js ***! - \*******************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_dialogs.styl */"./src/stylus/components/_dialogs.styl");var i=n(/*! ../../mixins/dependent */"./src/mixins/dependent.js"),s=n(/*! ../../mixins/detachable */"./src/mixins/detachable.js"),r=n(/*! ../../mixins/overlayable */"./src/mixins/overlayable.js"),o=n(/*! ../../mixins/returnable */"./src/mixins/returnable.js"),a=n(/*! ../../mixins/stackable */"./src/mixins/stackable.js"),c=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),l=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=n(/*! ../../util/ThemeProvider */"./src/util/ThemeProvider.ts"),d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=this.getMaxZIndex())},show:function(){!this.fullscreen&&!this.hideOverlay&&this.genOverlay(),this.fullscreen&&this.hideScroll(),this.$refs.content.focus(),this.$listeners.keydown&&this.bind()},bind:function(){window.addEventListener("keydown",this.onKeydown)},unbind:function(){window.removeEventListener("keydown",this.onKeydown)},onKeydown:function(t){this.$emit("keydown",t)}},render:function(t){var e=this,n=[],i={class:this.classes,ref:"dialog",directives:[{name:"click-outside",value:function(){return e.isActive=!1},args:{closeConditional:this.closeConditional,include:this.getOpenDependentElements}},{name:"show",value:this.isActive}],on:{click:function(t){t.stopPropagation()}}};this.fullscreen||(i.style={maxWidth:"none"===this.maxWidth?void 0:Object(u.convertToUnit)(this.maxWidth),width:"auto"===this.width?void 0:Object(u.convertToUnit)(this.width)}),this.$slots.activator&&n.push(t("div",{staticClass:"v-dialog__activator",class:{"v-dialog__activator--disabled":this.disabled},on:{click:function(t){t.stopPropagation(),e.disabled||(e.isActive=!e.isActive)}}},[this.$slots.activator]));var s=t("div",i,this.showLazyContent(this.$slots.default));return this.transition&&(s=t("transition",{props:{name:this.transition,origin:this.origin}},[s])),n.push(t("div",{class:this.contentClasses,attrs:d({tabIndex:"-1"},this.getScopeIdAttrs()),style:{zIndex:this.activeZIndex},ref:"content"},[this.$createElement(h.default,{props:{dark:this.$vuetify.dark||this.dark}},[s])])),t("div",{staticClass:"v-dialog__container",style:{display:!this.$slots.activator||this.fullWidth?"block":"inline-block"}},n)}}},"./src/components/VDialog/index.js": -/*!*****************************************!*\ - !*** ./src/components/VDialog/index.js ***! - \*****************************************/ -/*! exports provided: VDialog, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDialog */"./src/components/VDialog/VDialog.js");n.d(e,"VDialog",function(){return i.default}),e.default=i.default},"./src/components/VDivider/VDivider.ts": -/*!*********************************************!*\ - !*** ./src/components/VDivider/VDivider.ts ***! - \*********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_dividers.styl */"./src/stylus/components/_dividers.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1&&(i[e]=!0),this.open=i}this.$emit("input",t?this.open:e>-1?e:null)},value:function(t){this.updateFromValue(t)}},mounted:function(){null!==this.value&&this.updateFromValue(this.value)},methods:{updateFromValue:function(t){if(!Array.isArray(t)||this.expand){var e=Array(this.items.length).fill(!1);"number"==typeof t?e[t]=!0:null!==t&&(e=t),this.updatePanels(e)}},updatePanels:function(t){this.open=t;for(var e=0;e0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},d=function(){for(var t=[],e=0;e-1;return f?function(t){return["fas","far","fal","fab"].some(function(e){return t.includes(e)})}(u=l.slice(0,d))&&(u=""):o.push(l),c.class=h(((e={"v-icon--disabled":this.disabled,"v-icon--left":this.left,"v-icon--link":this.$listeners.click||this.$listeners["!click"],"v-icon--right":this.right})[u]=!0,e[l]=f,e),this.themeClasses),t("i",this.setTextColor(this.color,c),o)}});e.default=l.a.extend({name:"v-icon",$_wrapperFor:d,functional:!0,render:function(t,e){var n=e.data,i=e.children,s="";return n.domProps&&(s=n.domProps.textContent||n.domProps.innerHTML||s,delete n.domProps.textContent,delete n.domProps.innerHTML),t(d,n,s?[s]:i)}})},"./src/components/VIcon/index.ts": -/*!***************************************!*\ - !*** ./src/components/VIcon/index.ts ***! - \***************************************/ -/*! exports provided: VIcon, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VIcon */"./src/components/VIcon/VIcon.ts");n.d(e,"VIcon",function(){return i.default}),e.default=i.default},"./src/components/VImg/VImg.ts": -/*!*************************************!*\ - !*** ./src/components/VImg/VImg.ts ***! - \*************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_images.styl */"./src/stylus/components/_images.styl");var i=n(/*! ../VResponsive */"./src/components/VResponsive/index.ts"),s=n(/*! ../../util/console */"./src/util/console.ts");e.default=i.default.extend({name:"v-img",props:{alt:String,contain:Boolean,src:{type:[String,Object],default:""},gradient:String,lazySrc:String,srcset:String,sizes:String,position:{type:String,default:"center center"},transition:{type:[Boolean,String],default:"fade-transition"}},data:function(){return{currentSrc:"",image:null,isLoading:!0,calculatedAspectRatio:void 0}},computed:{computedAspectRatio:function(){return this.normalisedSrc.aspect},normalisedSrc:function(){return"string"==typeof this.src?{src:this.src,srcset:this.srcset,lazySrc:this.lazySrc,aspect:Number(this.aspectRatio||this.calculatedAspectRatio)}:{src:this.src.src,srcset:this.srcset||this.src.srcset,lazySrc:this.lazySrc||this.src.lazySrc,aspect:Number(this.aspectRatio||this.src.aspect||this.calculatedAspectRatio)}},__cachedImage:function(){if(!this.normalisedSrc.src&&!this.normalisedSrc.lazySrc)return[];var t=[],e=this.isLoading?this.normalisedSrc.lazySrc:this.currentSrc;this.gradient&&t.push("linear-gradient("+this.gradient+")"),e&&t.push('url("'+e+'")');var n=this.$createElement("div",{staticClass:"v-image__image",class:{"v-image__image--preload":this.isLoading,"v-image__image--contain":this.contain,"v-image__image--cover":!this.contain},style:{backgroundImage:t.join(", "),backgroundPosition:this.position},key:+this.isLoading});return this.transition?this.$createElement("transition",{attrs:{name:this.transition,mode:"in-out"}},[n]):n}},watch:{src:function(){this.isLoading?this.loadImage():this.init()},"$vuetify.breakpoint.width":"getSrc"},beforeMount:function(){this.init()},methods:{init:function(){if(this.normalisedSrc.lazySrc){var t=new Image;t.src=this.normalisedSrc.lazySrc,this.pollForSize(t,null)}this.normalisedSrc.src&&this.loadImage()},onLoad:function(){this.getSrc(),this.isLoading=!1,this.$emit("load",this.src)},onError:function(t){Object(s.consoleError)("Image load failed\n\nsrc: "+this.normalisedSrc.src+(t.message?"\nOriginal error: "+t.message:""),this),this.$emit("error",this.src)},getSrc:function(){this.image&&(this.currentSrc=this.image.currentSrc||this.image.src)},loadImage:function(){var t=this,e=new Image;this.image=e,e.onload=function(){e.decode?e.decode().catch(function(e){Object(s.consoleWarn)("Failed to decode image, trying to render anyway\n\nsrc: "+t.normalisedSrc.src+(e.message?"\nOriginal error: "+e.message:""),t)}).then(t.onLoad):t.onLoad()},e.onerror=this.onError,e.src=this.normalisedSrc.src,this.sizes&&(e.sizes=this.sizes),this.normalisedSrc.srcset&&(e.srcset=this.normalisedSrc.srcset),this.aspectRatio||this.pollForSize(e),this.getSrc()},pollForSize:function(t,e){var n=this;void 0===e&&(e=100);!function i(){var s=t.naturalHeight,r=t.naturalWidth;s||r?n.calculatedAspectRatio=r/s:null!=e&&setTimeout(i,e)}()},__genPlaceholder:function(){if(this.$slots.placeholder){var t=this.isLoading?[this.$createElement("div",{staticClass:"v-image__placeholder"},this.$slots.placeholder)]:[];return this.transition?this.$createElement("transition",{attrs:{name:this.transition}},t):t[0]}}},render:function(t){var e=i.default.options.render.call(this,t);return e.data.staticClass+=" v-image",e.data.attrs={role:this.alt?"img":void 0,"aria-label":this.alt},e.children=[this.__cachedSizer,this.__cachedImage,this.__genPlaceholder(),this.genContent()],t(e.tag,e.data,e.children)}})},"./src/components/VImg/index.ts": -/*!**************************************!*\ - !*** ./src/components/VImg/index.ts ***! - \**************************************/ -/*! exports provided: VImg, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VImg */"./src/components/VImg/VImg.ts");n.d(e,"VImg",function(){return i.default}),e.default=i.default},"./src/components/VInput/VInput.js": -/*!*****************************************!*\ - !*** ./src/components/VInput/VInput.js ***! - \*****************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_inputs.styl */"./src/stylus/components/_inputs.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../VLabel */"./src/components/VLabel/index.js"),r=n(/*! ../VMessages */"./src/components/VMessages/index.js"),o=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),a=n(/*! ../../mixins/loadable */"./src/mixins/loadable.ts"),c=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=n(/*! ../../mixins/validatable */"./src/mixins/validatable.js"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=n(/*! ../../util/console */"./src/util/console.ts"),d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1&&this.groups.splice(e,1)},listClick:function(t){if(!this.expand)for(var e=this.groups.length;e--;)this.groups[e].cb(t)}},render:function(t){return t("div",{staticClass:"v-list",class:this.classes},[this.$slots.default])}}},"./src/components/VList/VListGroup.js": -/*!********************************************!*\ - !*** ./src/components/VList/VListGroup.js ***! - \********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../components/VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../mixins/bootable */"./src/mixins/bootable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),a=n(/*! ../transitions */"./src/components/transitions/index.js");e.default={name:"v-list-group",mixins:[s.default,Object(o.inject)("list","v-list-group","v-list"),r.default],inject:["listClick"],props:{activeClass:{type:String,default:"primary--text"},appendIcon:{type:String,default:"$vuetify.icons.expand"},disabled:Boolean,group:String,noAction:Boolean,prependIcon:String,subGroup:Boolean},data:function(){return{groups:[]}},computed:{groupClasses:function(){return{"v-list__group--active":this.isActive,"v-list__group--disabled":this.disabled}},headerClasses:function(){return{"v-list__group__header--active":this.isActive,"v-list__group__header--sub-group":this.subGroup}},itemsClasses:function(){return{"v-list__group__items--no-action":this.noAction}}},watch:{isActive:function(t){!this.subGroup&&t&&this.listClick(this._uid)},$route:function(t){var e=this.matchRoute(t.path);this.group&&(e&&this.isActive!==e&&this.listClick(this._uid),this.isActive=e)}},mounted:function(){this.list.register(this._uid,this.toggle),this.group&&this.$route&&null==this.value&&(this.isActive=this.matchRoute(this.$route.path))},beforeDestroy:function(){this.list.unregister(this._uid)},methods:{click:function(){this.disabled||(this.isActive=!this.isActive)},genIcon:function(t){return this.$createElement(i.default,t)},genAppendIcon:function(){var t=!this.subGroup&&this.appendIcon;return t||this.$slots.appendIcon?this.$createElement("div",{staticClass:"v-list__group__header__append-icon"},[this.$slots.appendIcon||this.genIcon(t)]):null},genGroup:function(){return this.$createElement("div",{staticClass:"v-list__group__header",class:this.headerClasses,on:Object.assign({},{click:this.click},this.$listeners),ref:"item"},[this.genPrependIcon(),this.$slots.activator,this.genAppendIcon()])},genItems:function(){return this.$createElement("div",{staticClass:"v-list__group__items",class:this.itemsClasses,directives:[{name:"show",value:this.isActive}],ref:"group"},this.showLazyContent(this.$slots.default))},genPrependIcon:function(){var t,e=this.prependIcon?this.prependIcon:!!this.subGroup&&"$vuetify.icons.subgroup";return e||this.$slots.prependIcon?this.$createElement("div",{staticClass:"v-list__group__header__prepend-icon",class:(t={},t[this.activeClass]=this.isActive,t)},[this.$slots.prependIcon||this.genIcon(e)]):null},toggle:function(t){this.isActive=this._uid===t},matchRoute:function(t){return!!this.group&&null!==t.match(this.group)}},render:function(t){return t("div",{staticClass:"v-list__group",class:this.groupClasses},[this.genGroup(),t(a.VExpandTransition,[this.genItems()])])}}},"./src/components/VList/VListTile.js": -/*!*******************************************!*\ - !*** ./src/components/VList/VListTile.js ***! - \*******************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../directives/ripple */"./src/directives/ripple.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n1&&(n.staticClass+=" v-list__tile__action--stack"),t("div",n,i)}}},"./src/components/VList/VListTileAvatar.js": -/*!*************************************************!*\ - !*** ./src/components/VList/VListTileAvatar.js ***! - \*************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VAvatar */"./src/components/VAvatar/index.ts");e.default={name:"v-list-tile-avatar",functional:!0,props:{color:String,size:{type:[Number,String],default:40},tile:Boolean},render:function(t,e){var n=e.data,s=e.children,r=e.props;return n.staticClass=("v-list__tile__avatar "+(n.staticClass||"")).trim(),t("div",n,[t(i.default,{props:{color:r.color,size:r.size,tile:r.tile}},[s])])}}},"./src/components/VList/index.js": -/*!***************************************!*\ - !*** ./src/components/VList/index.js ***! - \***************************************/ -/*! exports provided: VList, VListGroup, VListTile, VListTileAction, VListTileAvatar, VListTileActionText, VListTileContent, VListTileTitle, VListTileSubTitle, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VListTileActionText",function(){return l}),n.d(e,"VListTileContent",function(){return u}),n.d(e,"VListTileTitle",function(){return h}),n.d(e,"VListTileSubTitle",function(){return d});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),s=n(/*! ./VList */"./src/components/VList/VList.js");n.d(e,"VList",function(){return s.default});var r=n(/*! ./VListGroup */"./src/components/VList/VListGroup.js");n.d(e,"VListGroup",function(){return r.default});var o=n(/*! ./VListTile */"./src/components/VList/VListTile.js");n.d(e,"VListTile",function(){return o.default});var a=n(/*! ./VListTileAction */"./src/components/VList/VListTileAction.js");n.d(e,"VListTileAction",function(){return a.default});var c=n(/*! ./VListTileAvatar */"./src/components/VList/VListTileAvatar.js");n.d(e,"VListTileAvatar",function(){return c.default});var l=Object(i.createSimpleFunctional)("v-list__tile__action-text","span"),u=Object(i.createSimpleFunctional)("v-list__tile__content","div"),h=Object(i.createSimpleFunctional)("v-list__tile__title","div"),d=Object(i.createSimpleFunctional)("v-list__tile__sub-title","div");e.default={$_vuetify_subcomponents:{VList:s.default,VListGroup:r.default,VListTile:o.default,VListTileAction:a.default,VListTileActionText:l,VListTileAvatar:c.default,VListTileContent:u,VListTileSubTitle:d,VListTileTitle:h}}},"./src/components/VMenu/VMenu.js": -/*!***************************************!*\ - !*** ./src/components/VMenu/VMenu.js ***! - \***************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_menus.styl */"./src/stylus/components/_menus.styl");var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../../mixins/delayable */"./src/mixins/delayable.ts"),o=n(/*! ../../mixins/dependent */"./src/mixins/dependent.js"),a=n(/*! ../../mixins/detachable */"./src/mixins/detachable.js"),c=n(/*! ../../mixins/menuable.js */"./src/mixins/menuable.js"),l=n(/*! ../../mixins/returnable */"./src/mixins/returnable.js"),u=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),h=n(/*! ./mixins/menu-activator */"./src/components/VMenu/mixins/menu-activator.js"),d=n(/*! ./mixins/menu-generators */"./src/components/VMenu/mixins/menu-generators.js"),f=n(/*! ./mixins/menu-keyable */"./src/components/VMenu/mixins/menu-keyable.js"),p=n(/*! ./mixins/menu-position */"./src/components/VMenu/mixins/menu-position.js"),m=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),v=n(/*! ../../directives/resize */"./src/directives/resize.ts"),g=n(/*! ../../util/helpers */"./src/util/helpers.ts"),y=n(/*! ../../util/ThemeProvider */"./src/util/ThemeProvider.ts");e.default=s.a.extend({name:"v-menu",directives:{ClickOutside:m.default,Resize:v.default},mixins:[h.default,o.default,r.default,a.default,d.default,f.default,c.default,p.default,l.default,u.default],props:{auto:Boolean,closeOnClick:{type:Boolean,default:!0},closeOnContentClick:{type:Boolean,default:!0},disabled:Boolean,fullWidth:Boolean,maxHeight:{default:"auto"},offsetX:Boolean,offsetY:Boolean,openOnClick:{type:Boolean,default:!0},openOnHover:Boolean,origin:{type:String,default:"top left"},transition:{type:[Boolean,String],default:"v-menu-transition"}},data:function(){return{defaultOffset:8,maxHeightAutoDefault:"200px",startIndex:3,stopIndex:0,hasJustFocused:!1,resizeTimeout:null}},computed:{calculatedLeft:function(){return this.auto?this.calcXOverflow(this.calcLeftAuto())+"px":this.calcLeft()},calculatedMaxHeight:function(){return this.auto?"200px":Object(g.convertToUnit)(this.maxHeight)},calculatedMaxWidth:function(){return isNaN(this.maxWidth)?this.maxWidth:this.maxWidth+"px"},calculatedMinWidth:function(){if(this.minWidth)return isNaN(this.minWidth)?this.minWidth:this.minWidth+"px";var t=this.dimensions.activator.width+this.nudgeWidth+(this.auto?16:0),e=isNaN(parseInt(this.calculatedMaxWidth))?t:parseInt(this.calculatedMaxWidth);return Math.min(e,t)+"px"},calculatedTop:function(){return!this.auto||this.isAttached?this.calcTop():this.calcYOverflow(this.calcTopAuto())+"px"},styles:function(){return{maxHeight:this.calculatedMaxHeight,minWidth:this.calculatedMinWidth,maxWidth:this.calculatedMaxWidth,top:this.calculatedTop,left:this.calculatedLeft,transformOrigin:this.origin,zIndex:this.zIndex||this.activeZIndex}},tileHeight:function(){return this.dense?36:48}},watch:{activator:function(t,e){this.removeActivatorEvents(e),this.addActivatorEvents(t)},isContentActive:function(t){this.hasJustFocused=t}},methods:{activate:function(){this.getTiles(),this.updateDimensions(),requestAnimationFrame(this.startTransition),setTimeout(this.calculateScroll,50)},closeConditional:function(){return this.isActive&&this.closeOnClick},onResize:function(){this.isActive&&(this.$refs.content.offsetWidth,this.updateDimensions(),clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(this.updateDimensions,100))}},render:function(t){return t("div",{staticClass:"v-menu",class:{"v-menu--inline":!this.fullWidth&&this.$slots.activator},directives:[{arg:500,name:"resize",value:this.onResize}],on:{keydown:this.onKeyDown}},[this.genActivator(),this.$createElement(y.default,{props:{dark:this.$vuetify.dark||this.dark}},[this.genTransition()])])}})},"./src/components/VMenu/index.js": -/*!***************************************!*\ - !*** ./src/components/VMenu/index.js ***! - \***************************************/ -/*! exports provided: VMenu, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VMenu */"./src/components/VMenu/VMenu.js");n.d(e,"VMenu",function(){return i.default}),e.default=i.default},"./src/components/VMenu/mixins/menu-activator.js": -/*!*******************************************************!*\ - !*** ./src/components/VMenu/mixins/menu-activator.js ***! - \*******************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{activatorClickHandler:function(t){this.disabled||(this.openOnClick&&!this.isActive?(this.getActivator().focus(),this.isActive=!0,this.absoluteX=t.clientX,this.absoluteY=t.clientY):this.closeOnClick&&this.isActive&&(this.getActivator().blur(),this.isActive=!1))},mouseEnterHandler:function(){var t=this;this.runDelay("open",function(){t.hasJustFocused||(t.hasJustFocused=!0,t.isActive=!0)})},mouseLeaveHandler:function(t){var e=this;this.runDelay("close",function(){e.$refs.content.contains(t.relatedTarget)||requestAnimationFrame(function(){e.isActive=!1,e.callDeactivate()})})},addActivatorEvents:function(t){void 0===t&&(t=null),t&&t.addEventListener("click",this.activatorClickHandler)},removeActivatorEvents:function(t){void 0===t&&(t=null),t&&t.removeEventListener("click",this.activatorClickHandler)}}}},"./src/components/VMenu/mixins/menu-generators.js": -/*!********************************************************!*\ - !*** ./src/components/VMenu/mixins/menu-generators.js ***! - \********************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=function(){return(i=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},r=function(){for(var t=[],e=0;e-1?this.listIndex--:t.keyCode===i.keyCodes.enter&&-1!==this.listIndex&&this.tiles[this.listIndex].click()},getTiles:function(){this.tiles=this.$refs.content.querySelectorAll(".v-list__tile")}}}},"./src/components/VMenu/mixins/menu-position.js": -/*!******************************************************!*\ - !*** ./src/components/VMenu/mixins/menu-position.js ***! - \******************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{calculateScroll:function(){if(null!==this.selectedIndex){var t=0;this.selectedIndex>=this.stopIndex?t=this.$refs.content.scrollHeight:this.selectedIndex>this.startIndex&&(t=this.selectedIndex*this.tileHeight+this.tileHeight/2+this.defaultOffset/2-100),this.$refs.content&&(this.$refs.content.scrollTop=t)}},calcLeftAuto:function(){return this.isAttached?0:parseInt(this.dimensions.activator.left-2*this.defaultOffset)},calcTopAuto:function(){var t=Array.from(this.tiles).findIndex(function(t){return t.classList.contains("v-list__tile--active")});if(-1===t)return this.selectedIndex=null,this.computedTop;this.selectedIndex=t,this.stopIndex=this.tiles.length>4?this.tiles.length-4:this.tiles.length;var e,n=this.defaultOffset;return t>this.startIndex&&t=this.stopIndex?(n*=2,e=(t-this.stopIndex)*this.tileHeight):e=t*this.tileHeight,this.computedTop+n-e-this.tileHeight/2}}}},"./src/components/VMessages/VMessages.js": -/*!***********************************************!*\ - !*** ./src/components/VMessages/VMessages.js ***! - \***********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_messages.styl */"./src/stylus/components/_messages.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts");e.default={name:"v-messages",mixins:[i.default,s.default],props:{value:{type:Array,default:function(){return[]}}},methods:{genChildren:function(){var t=this;return this.$createElement("transition-group",{staticClass:"v-messages__wrapper",attrs:{name:"message-transition",tag:"div"}},this.value.map(function(e){return t.genMessage(e)}))},genMessage:function(t){return this.$createElement("div",{staticClass:"v-messages__message",key:t,domProps:{innerHTML:t}})}},render:function(t){return t("div",this.setTextColor(this.color,{staticClass:"v-messages",class:this.themeClasses}),[this.genChildren()])}}},"./src/components/VMessages/index.js": -/*!*******************************************!*\ - !*** ./src/components/VMessages/index.js ***! - \*******************************************/ -/*! exports provided: VMessages, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VMessages */"./src/components/VMessages/VMessages.js");n.d(e,"VMessages",function(){return i.default}),e.default=i.default},"./src/components/VNavigationDrawer/VNavigationDrawer.js": -/*!***************************************************************!*\ - !*** ./src/components/VNavigationDrawer/VNavigationDrawer.js ***! - \***************************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_navigation-drawer.styl */"./src/stylus/components/_navigation-drawer.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),s=n(/*! ../../mixins/overlayable */"./src/mixins/overlayable.js"),r=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),c=n(/*! ../../directives/resize */"./src/directives/resize.ts"),l=n(/*! ../../directives/touch */"./src/directives/touch.ts"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=function(){return(h=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=this.touchArea.right?this.isActive=!0:!this.right&&this.isActive&&(this.isActive=!1)))},updateApplication:function(){return!this.isActive||this.temporary||this.isMobile?0:this.calculatedWidth}},render:function(t){var e=this;return t("aside",{class:this.classes,style:this.styles,directives:this.genDirectives(),on:{click:function(){e.miniVariant&&e.$emit("update:miniVariant",!1)},transitionend:function(t){if(t.target===t.currentTarget){e.$emit("transitionend",t);var n=document.createEvent("UIEvents");n.initUIEvent("resize",!0,!1,window,0),window.dispatchEvent(n)}}}},[this.$slots.default,t("div",{class:"v-navigation-drawer__border"})])}}},"./src/components/VNavigationDrawer/index.js": -/*!***************************************************!*\ - !*** ./src/components/VNavigationDrawer/index.js ***! - \***************************************************/ -/*! exports provided: VNavigationDrawer, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VNavigationDrawer */"./src/components/VNavigationDrawer/VNavigationDrawer.js");n.d(e,"VNavigationDrawer",function(){return i.default}),e.default=i.default},"./src/components/VOverflowBtn/VOverflowBtn.js": -/*!*****************************************************!*\ - !*** ./src/components/VOverflowBtn/VOverflowBtn.js ***! - \*****************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_overflow-buttons.styl */"./src/stylus/components/_overflow-buttons.styl");var i=n(/*! ../VSelect/VSelect */"./src/components/VSelect/VSelect.js"),s=n(/*! ../VAutocomplete */"./src/components/VAutocomplete/index.js"),r=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),o=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),a=n(/*! ../../util/console */"./src/util/console.ts");e.default={name:"v-overflow-btn",extends:s.default,props:{segmented:Boolean,editable:Boolean,transition:i.default.props.transition},computed:{classes:function(){return Object.assign(s.default.computed.classes.call(this),{"v-overflow-btn":!0,"v-overflow-btn--segmented":this.segmented,"v-overflow-btn--editable":this.editable})},isAnyValueAllowed:function(){return this.editable||s.default.computed.isAnyValueAllowed.call(this)},isSingle:function(){return!0},computedItems:function(){return this.segmented?this.allItems:this.filteredItems},$_menuProps:function(){var t=s.default.computed.$_menuProps.call(this);return t.transition=t.transition||"v-menu-transition",t}},methods:{genSelections:function(){return this.editable?s.default.methods.genSelections.call(this):i.default.methods.genSelections.call(this)},genCommaSelection:function(t,e,n){return this.segmented?this.genSegmentedBtn(t):i.default.methods.genCommaSelection.call(this,t,e,n)},genInput:function(){var t=r.default.methods.genInput.call(this);return t.data.domProps.value=this.editable?this.internalSearch:"",t.data.attrs.readonly=!this.isAnyValueAllowed,t},genLabel:function(){if(this.editable&&this.isFocused)return null;var t=r.default.methods.genLabel.call(this);return t?(t.data.style={},t):t},genSegmentedBtn:function(t){var e=this,n=this.getValue(t),i=this.computedItems.find(function(t){return e.getValue(t)===n})||t;return i.text&&i.callback?this.$createElement(o.default,{props:{flat:!0},on:{click:function(t){t.stopPropagation(),i.callback(t)}}},[i.text]):(Object(a.consoleWarn)("When using 'segmented' prop without a selection slot, items must contain both a text and callback property",this),null)},setSelectedItems:function(){null==this.internalValue?this.selectedItems=[]:this.selectedItems=[this.internalValue]}}}},"./src/components/VOverflowBtn/index.js": -/*!**********************************************!*\ - !*** ./src/components/VOverflowBtn/index.js ***! - \**********************************************/ -/*! exports provided: VOverflowBtn, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VOverflowBtn */"./src/components/VOverflowBtn/VOverflowBtn.js");n.d(e,"VOverflowBtn",function(){return i.default}),e.default=i.default},"./src/components/VPagination/VPagination.ts": -/*!***************************************************!*\ - !*** ./src/components/VPagination/VPagination.ts ***! - \***************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_pagination.styl */"./src/stylus/components/_pagination.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../directives/resize */"./src/directives/resize.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},u=function(){for(var t=[],e=0;en&&this.value0?t:1;i<=e;i++)n.push(i);return n},genIcon:function(t,e,n,s){return t("li",[t("button",{staticClass:"v-pagination__navigation",class:{"v-pagination__navigation--disabled":n},on:n?{}:{click:s}},[t(i.default,[e])])])},genItem:function(t,e){var n=this,i=e===this.value&&(this.color||"primary");return t("button",this.setBackgroundColor(i,{staticClass:"v-pagination__item",class:{"v-pagination__item--active":e===this.value},on:{click:function(){return n.$emit("input",e)}}}),[e.toString()])},genItems:function(t){var e=this;return this.items.map(function(n,i){return t("li",{key:i},[isNaN(Number(n))?t("span",{class:"v-pagination__more"},[n.toString()]):e.genItem(t,n)])})}},render:function(t){var e=[this.genIcon(t,this.$vuetify.rtl?this.nextIcon:this.prevIcon,this.value<=1,this.previous),this.genItems(t),this.genIcon(t,this.$vuetify.rtl?this.prevIcon:this.nextIcon,this.value>=this.length,this.next)];return t("ul",{directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],class:this.classes},e)}})},"./src/components/VPagination/index.ts": -/*!*********************************************!*\ - !*** ./src/components/VPagination/index.ts ***! - \*********************************************/ -/*! exports provided: VPagination, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VPagination */"./src/components/VPagination/VPagination.ts");n.d(e,"VPagination",function(){return i.default}),e.default=i.default},"./src/components/VParallax/VParallax.ts": -/*!***********************************************!*\ - !*** ./src/components/VParallax/VParallax.ts ***! - \***********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_parallax.styl */"./src/stylus/components/_parallax.styl");var i=n(/*! ../../mixins/translatable */"./src/mixins/translatable.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(s.default)(i.default).extend({name:"v-parallax",props:{alt:String,height:{type:[String,Number],default:500},src:String},data:function(){return{isBooted:!1}},computed:{styles:function(){return{display:"block",opacity:this.isBooted?1:0,transform:"translate(-50%, "+this.parallax+"px)"}}},watch:{parallax:function(){this.isBooted=!0}},mounted:function(){this.init()},methods:{init:function(){var t=this,e=this.$refs.img;e&&(e.complete?(this.translate(),this.listeners()):e.addEventListener("load",function(){t.translate(),t.listeners()},!1))},objHeight:function(){return this.$refs.img.naturalHeight}},render:function(t){var e={staticClass:"v-parallax__image",style:this.styles,attrs:{src:this.src},ref:"img"};this.alt&&(e.attrs.alt=this.alt);var n=t("div",{staticClass:"v-parallax__image-container"},[t("img",e)]),i=t("div",{staticClass:"v-parallax__content"},this.$slots.default);return t("div",{staticClass:"v-parallax",style:{height:this.height+"px"},on:this.$listeners},[n,i])}})},"./src/components/VParallax/index.ts": -/*!*******************************************!*\ - !*** ./src/components/VParallax/index.ts ***! - \*******************************************/ -/*! exports provided: VParallax, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VParallax */"./src/components/VParallax/VParallax.ts");n.d(e,"VParallax",function(){return i.default}),e.default=i.default},"./src/components/VPicker/VPicker.js": -/*!*******************************************!*\ - !*** ./src/components/VPicker/VPicker.js ***! - \*******************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_pickers.styl */"./src/stylus/components/_pickers.styl"),n(/*! ../../stylus/components/_cards.styl */"./src/stylus/components/_cards.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0}}},computed:{computedTitleColor:function(){var t=this.isDark?null:this.color||"primary";return this.color||t}},methods:{genTitle:function(){return this.$createElement("div",this.setBackgroundColor(this.computedTitleColor,{staticClass:"v-picker__title",class:{"v-picker__title--landscape":this.landscape}}),this.$slots.title)},genBodyTransition:function(){return this.$createElement("transition",{props:{name:this.transition}},this.$slots.default)},genBody:function(){return this.$createElement("div",{staticClass:"v-picker__body",class:this.themeClasses,style:this.fullWidth?void 0:{width:this.width+"px"}},[this.genBodyTransition()])},genActions:function(){return this.$createElement("div",{staticClass:"v-picker__actions v-card__actions"},this.$slots.actions)}},render:function(t){return t("div",{staticClass:"v-picker v-card",class:r({"v-picker--landscape":this.landscape},this.themeClasses)},[this.$slots.title?this.genTitle():null,this.genBody(),this.$slots.actions?this.genActions():null])}}},"./src/components/VPicker/index.js": -/*!*****************************************!*\ - !*** ./src/components/VPicker/index.js ***! - \*****************************************/ -/*! exports provided: VPicker, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VPicker */"./src/components/VPicker/VPicker.js");n.d(e,"VPicker",function(){return i.default}),e.default=i.default},"./src/components/VProgressCircular/VProgressCircular.ts": -/*!***************************************************************!*\ - !*** ./src/components/VProgressCircular/VProgressCircular.ts ***! - \***************************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_progress-circular.styl */"./src/stylus/components/_progress-circular.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(s.default)(i.default).extend({name:"v-progress-circular",props:{button:Boolean,indeterminate:Boolean,rotate:{type:Number,default:0},size:{type:[Number,String],default:32},width:{type:Number,default:4},value:{type:Number,default:0}},computed:{calculatedSize:function(){return Number(this.size)+(this.button?8:0)},circumference:function(){return 2*Math.PI*this.radius},classes:function(){return{"v-progress-circular--indeterminate":this.indeterminate,"v-progress-circular--button":this.button}},normalizedValue:function(){return this.value<0?0:this.value>100?100:this.value},radius:function(){return 20},strokeDashArray:function(){return Math.round(1e3*this.circumference)/1e3},strokeDashOffset:function(){return(100-this.normalizedValue)/100*this.circumference+"px"},strokeWidth:function(){return this.width/+this.size*this.viewBoxSize*2},styles:function(){return{height:this.calculatedSize+"px",width:this.calculatedSize+"px"}},svgStyles:function(){return{transform:"rotate("+this.rotate+"deg)"}},viewBoxSize:function(){return this.radius/(1-this.width/+this.size)}},methods:{genCircle:function(t,e,n){return t("circle",{class:"v-progress-circular__"+e,attrs:{fill:"transparent",cx:2*this.viewBoxSize,cy:2*this.viewBoxSize,r:this.radius,"stroke-width":this.strokeWidth,"stroke-dasharray":this.strokeDashArray,"stroke-dashoffset":n}})},genSvg:function(t){var e=[this.indeterminate||this.genCircle(t,"underlay",0),this.genCircle(t,"overlay",this.strokeDashOffset)];return t("svg",{style:this.svgStyles,attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:this.viewBoxSize+" "+this.viewBoxSize+" "+2*this.viewBoxSize+" "+2*this.viewBoxSize}},e)}},render:function(t){var e=t("div",{staticClass:"v-progress-circular__info"},[this.$slots.default]),n=this.genSvg(t);return t("div",this.setTextColor(this.color,{staticClass:"v-progress-circular",class:this.classes,style:this.styles,on:this.$listeners}),[n,e])}})},"./src/components/VProgressCircular/index.ts": -/*!***************************************************!*\ - !*** ./src/components/VProgressCircular/index.ts ***! - \***************************************************/ -/*! exports provided: VProgressCircular, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VProgressCircular */"./src/components/VProgressCircular/VProgressCircular.ts");n.d(e,"VProgressCircular",function(){return i.default}),e.default=i.default},"./src/components/VProgressLinear/VProgressLinear.ts": -/*!***********************************************************!*\ - !*** ./src/components/VProgressLinear/VProgressLinear.ts ***! - \***********************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_progress-linear.styl */"./src/stylus/components/_progress-linear.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../transitions */"./src/components/transitions/index.js");e.default=Object(r.default)(i.default).extend({name:"v-progress-linear",props:{active:{type:Boolean,default:!0},backgroundColor:{type:String,default:null},backgroundOpacity:{type:[Number,String],default:null},bufferValue:{type:[Number,String],default:100},color:{type:String,default:"primary"},height:{type:[Number,String],default:7},indeterminate:Boolean,query:Boolean,value:{type:[Number,String],default:0}},computed:{styles:function(){var t={};return this.active||(t.height=0),this.indeterminate||100===parseInt(this.bufferValue,10)||(t.width=this.bufferValue+"%"),t},effectiveWidth:function(){return this.bufferValue?100*+this.value/+this.bufferValue:0},backgroundStyle:function(){var t=null==this.backgroundOpacity?this.backgroundColor?1:.3:parseFloat(this.backgroundOpacity);return{height:this.active?Object(s.convertToUnit)(this.height):0,opacity:t,width:this.bufferValue+"%"}}},methods:{genDeterminate:function(t){return t("div",this.setBackgroundColor(this.color,{ref:"front",staticClass:"v-progress-linear__bar__determinate",style:{width:this.effectiveWidth+"%"}}))},genBar:function(t,e){var n;return t("div",this.setBackgroundColor(this.color,{staticClass:"v-progress-linear__bar__indeterminate",class:(n={},n[e]=!0,n)}))},genIndeterminate:function(t){return t("div",{ref:"front",staticClass:"v-progress-linear__bar__indeterminate",class:{"v-progress-linear__bar__indeterminate--active":this.active}},[this.genBar(t,"long"),this.genBar(t,"short")])}},render:function(t){var e=t(o.VFadeTransition,this.indeterminate?[this.genIndeterminate(t)]:[]),n=t(o.VSlideXTransition,this.indeterminate?[]:[this.genDeterminate(t)]),i=t("div",{staticClass:"v-progress-linear__bar",style:this.styles},[e,n]),r=t("div",{staticClass:"v-progress-linear__background",class:[this.backgroundColor||this.color],style:this.backgroundStyle});return t("div",{staticClass:"v-progress-linear",class:{"v-progress-linear--query":this.query},style:{height:Object(s.convertToUnit)(this.height)},on:this.$listeners},[r,i])}})},"./src/components/VProgressLinear/index.ts": -/*!*************************************************!*\ - !*** ./src/components/VProgressLinear/index.ts ***! - \*************************************************/ -/*! exports provided: VProgressLinear, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VProgressLinear */"./src/components/VProgressLinear/VProgressLinear.ts");n.d(e,"VProgressLinear",function(){return i.default}),e.default=i.default},"./src/components/VRadioGroup/VRadio.js": -/*!**********************************************!*\ - !*** ./src/components/VRadioGroup/VRadio.js ***! - \**********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_radios.styl */"./src/stylus/components/_radios.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../VLabel */"./src/components/VLabel/index.js"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/rippleable */"./src/mixins/rippleable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),c=n(/*! ../../mixins/selectable */"./src/mixins/selectable.js"),l=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),u=function(){return(u=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},d=function(){for(var t=[],e=0;e=0;)this.radios[e].parentError=t},setActiveRadio:function(){for(var t=this.radios.length;--t>=0;){var e=this.radios[t];e.isActive=this.valueComparator(this.internalValue,e.value)}},unregister:function(t){t.$off("change",this.onRadioChange),t.$off("blur",this.onRadioBlur);var e=this.radios.findIndex(function(e){return e===t});e>-1&&this.radios.splice(e,1)}}}},"./src/components/VRadioGroup/index.js": -/*!*********************************************!*\ - !*** ./src/components/VRadioGroup/index.js ***! - \*********************************************/ -/*! exports provided: VRadioGroup, VRadio, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VRadioGroup */"./src/components/VRadioGroup/VRadioGroup.js");n.d(e,"VRadioGroup",function(){return i.default});var s=n(/*! ./VRadio */"./src/components/VRadioGroup/VRadio.js");n.d(e,"VRadio",function(){return s.default}),e.default={$_vuetify_subcomponents:{VRadioGroup:i.default,VRadio:s.default}}},"./src/components/VRangeSlider/VRangeSlider.js": -/*!*****************************************************!*\ - !*** ./src/components/VRangeSlider/VRangeSlider.js ***! - \*****************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_range-sliders.styl */"./src/stylus/components/_range-sliders.styl");var i=n(/*! ../VSlider */"./src/components/VSlider/index.js"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default={name:"v-range-slider",extends:i.default,props:{value:{type:Array,default:function(){return[]}}},data:function(t){return{activeThumb:null,lazyValue:t.value.length?t.value:[0,0]}},computed:{classes:function(){return Object.assign({},{"v-input--range-slider":!0},i.default.computed.classes.call(this))},internalValue:{get:function(){return this.lazyValue},set:function(t){var e=this,n=this.min,i=this.max,r=t.map(function(t){return e.roundValue(Math.min(Math.max(t,n),i))});(r[0]>r[1]||r[1]=0}},watch:{internalValue:function(t){t!==this.value&&this.$emit("input",t)},value:function(t){this.internalValue=t}},methods:{createClickFn:function(t){var e=this;return function(n){if(!e.readonly){var i=e.genHoverIndex(n,t);e.clearable&&e.internalValue===i?e.internalValue=0:e.internalValue=i}}},createProps:function(t){var e={index:t,value:this.internalValue,click:this.createClickFn(t),isFilled:Math.floor(this.internalValue)>t,isHovered:Math.floor(this.hoverIndex)>t};return this.halfIncrements&&(e.isHalfHovered=!e.isHovered&&(this.hoverIndex-t)%1>0,e.isHalfFilled=!e.isFilled&&(this.internalValue-t)%1>0),e},genHoverIndex:function(t,e){return e+(this.isHalfEvent(t)?.5:1)},getIconName:function(t){var e=this.isHovering?t.isHovered:t.isFilled,n=this.isHovering?t.isHalfHovered:t.isHalfFilled;return e?this.fullIcon:n?this.halfIcon:this.emptyIcon},getColor:function(t){if(this.isHovering){if(t.isHovered||t.isHalfHovered)return this.color}else if(t.isFilled||t.isHalfFilled)return this.color;return this.backgroundColor},isHalfEvent:function(t){if(this.halfIncrements){var e=t.target&&t.target.getBoundingClientRect();if(e&&t.offsetX=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}},p={closeOnClick:!1,closeOnContentClick:!1,openOnClick:!1,maxHeight:300};e.default={name:"v-select",directives:{ClickOutside:l.default},extends:o.default,mixins:[a.default,c.default],props:{appendIcon:{type:String,default:"$vuetify.icons.dropdown"},appendIconCb:Function,attach:{type:null,default:!1},browserAutocomplete:{type:String,default:"on"},cacheItems:Boolean,chips:Boolean,clearable:Boolean,deletableChips:Boolean,dense:Boolean,hideSelected:Boolean,items:{type:Array,default:function(){return[]}},itemAvatar:{type:[String,Array,Function],default:"avatar"},itemDisabled:{type:[String,Array,Function],default:"disabled"},itemText:{type:[String,Array,Function],default:"text"},itemValue:{type:[String,Array,Function],default:"value"},menuProps:{type:[String,Array,Object],default:function(){return p}},multiple:Boolean,openOnClear:Boolean,returnObject:Boolean,searchInput:{default:null},smallChips:Boolean},data:function(t){return{attrsInput:{role:"combobox"},cachedItems:t.cacheItems?t.items:[],content:null,isBooted:!1,isMenuActive:!1,lastItem:20,lazyValue:void 0!==t.value?t.value:t.multiple?[]:void 0,selectedIndex:-1,selectedItems:[]}},computed:{allItems:function(){return this.filterDuplicates(this.cachedItems.concat(this.items))},classes:function(){return Object.assign({},o.default.computed.classes.call(this),{"v-select":!0,"v-select--chips":this.hasChips,"v-select--chips--small":this.smallChips,"v-select--is-menu-active":this.isMenuActive})},computedItems:function(){return this.allItems},counterValue:function(){return this.multiple?this.selectedItems.length:(this.getText(this.selectedItems[0])||"").toString().length},directives:function(){return this.isFocused?[{name:"click-outside",value:this.blur,args:{closeConditional:this.closeConditional}}]:void 0},dynamicHeight:function(){return"auto"},hasChips:function(){return this.chips||this.smallChips},hasSlot:function(){return Boolean(this.hasChips||this.$scopedSlots.selection)},isDirty:function(){return this.selectedItems.length>0},listData:function(){return{props:{action:this.multiple&&!this.isHidingSelected,color:this.color,dense:this.dense,hideSelected:this.hideSelected,items:this.virtualizedItems,noDataText:this.$vuetify.t(this.noDataText),selectedItems:this.selectedItems,itemAvatar:this.itemAvatar,itemDisabled:this.itemDisabled,itemValue:this.itemValue,itemText:this.itemText},on:{select:this.selectItem},scopedSlots:{item:this.$scopedSlots.item}}},staticList:function(){return(this.$slots["no-data"]||this.$slots["prepend-item"]||this.$slots["append-item"])&&Object(h.consoleError)("assert: staticList should not be called if slots are used"),this.$createElement(r.default,this.listData)},virtualizedItems:function(){return this.$_menuProps.auto?this.computedItems:this.computedItems.slice(0,this.lastItem)},menuCanShow:function(){return!0},$_menuProps:function(){var t;return t="string"==typeof this.menuProps?this.menuProps.split(","):this.menuProps,Array.isArray(t)&&(t=t.reduce(function(t,e){return t[e.trim()]=!0,t},{})),d({},p,{value:this.menuCanShow&&this.isMenuActive,nudgeBottom:this.nudgeBottom?this.nudgeBottom:t.offsetY?1:0},t)}},watch:{internalValue:function(t){this.initialValue=t,this.$emit("change",this.internalValue),this.setSelectedItems()},isBooted:function(){var t=this;this.$nextTick(function(){t.content&&t.content.addEventListener&&t.content.addEventListener("scroll",t.onScroll,!1)})},isMenuActive:function(t){t&&(this.isBooted=!0)},items:{immediate:!0,handler:function(t){this.cacheItems&&(this.cachedItems=this.filterDuplicates(this.cachedItems.concat(t))),this.setSelectedItems()}}},mounted:function(){this.content=this.$refs.menu&&this.$refs.menu.$refs.content},methods:{blur:function(){this.isMenuActive=!1,this.isFocused=!1,this.$refs.input&&this.$refs.input.blur(),this.selectedIndex=-1},activateMenu:function(){this.isMenuActive=!0},clearableCallback:function(){var t=this;this.internalValue=this.multiple?[]:void 0,this.$nextTick(function(){return t.$refs.input.focus()}),this.openOnClear&&(this.isMenuActive=!0)},closeConditional:function(t){return!(!this.content||this.content.contains(t.target)||!this.$el||this.$el.contains(t.target)||t.target===this.$el)},filterDuplicates:function(t){for(var e=new Map,n=0;n1,p=o.reduce(function(t,e){return t[Object(u.camelize)(e)]=n.$attrs[e],t},{}),m=o.map(function(t){return"'"+t+"'"}).join(", "),v=d?"\n":"'",g=Object.keys(p).every(function(t){var e=s.default.options.props[t],n=p[t];return!0===n||(e.type||e)===Boolean&&""===n});p=g?Object.keys(p).join(", "):JSON.stringify(p,null,d?2:0).replace(/"([^(")"]+)":/g,"$1:").replace(/"/g,"'"),Object(h.consoleWarn)(m+" "+(d?"are":"is")+" deprecated, use "+v+':menu-props="'+p+'"'+v+" instead",this)}return""===this.attach||!0===this.attach||"attach"===this.attach?i.attach=this.$el:i.attach=this.attach,this.$createElement(s.default,{props:i,on:{input:function(t){n.isMenuActive=t,n.isFocused=t}},ref:"menu"},[this.genList()])},genSelections:function(){var t,e=this.selectedItems.length,n=new Array(e);for(t=this.$scopedSlots.selection?this.genSlotSelection:this.hasChips?this.genChipSelection:this.genCommaSelection;e--;)n[e]=t(this.selectedItems[e],e,e===n.length-1);return this.$createElement("div",{staticClass:"v-select__selections"},n)},genSlotSelection:function(t,e){return this.$scopedSlots.selection({parent:this,item:t,index:e,selected:e===this.selectedIndex,disabled:this.disabled||this.readonly})},getMenuIndex:function(){return this.$refs.menu?this.$refs.menu.listIndex:-1},getDisabled:function(t){return Object(u.getPropertyFromItem)(t,this.itemDisabled,!1)},getText:function(t){return Object(u.getPropertyFromItem)(t,this.itemText,t)},getValue:function(t){return Object(u.getPropertyFromItem)(t,this.itemValue,this.getText(t))},onBlur:function(t){this.$emit("blur",t)},onChipInput:function(t){this.multiple?this.selectItem(t):this.internalValue=null,0===this.selectedItems.length&&(this.isMenuActive=!0),this.selectedIndex=-1},onClick:function(){this.isDisabled||(this.isMenuActive=!0,this.isFocused||(this.isFocused=!0,this.$emit("focus")))},onEnterDown:function(){this.onBlur()},onEscDown:function(t){t.preventDefault(),this.isMenuActive=!1},onKeyDown:function(t){var e=t.keyCode;return!this.isMenuActive&&[u.keyCodes.enter,u.keyCodes.space,u.keyCodes.up,u.keyCodes.down].includes(e)&&this.activateMenu(),this.isMenuActive&&this.$refs.menu&&this.$refs.menu.changeListIndex(t),e===u.keyCodes.enter?this.onEnterDown(t):e===u.keyCodes.esc?this.onEscDown(t):e===u.keyCodes.tab?this.onTabDown(t):void 0},onMouseUp:function(t){var e=this,n=this.$refs["append-inner"];this.isMenuActive&&n&&(n===t.target||n.contains(t.target))?this.$nextTick(function(){return e.isMenuActive=!e.isMenuActive}):this.isEnclosed&&!this.isDisabled&&(this.isMenuActive=!0),o.default.methods.onMouseUp.call(this,t)},onScroll:function(){var t=this;if(this.isMenuActive){if(this.lastItem>=this.computedItems.length)return;this.content.scrollHeight-(this.content.scrollTop+this.content.clientHeight)<200&&(this.lastItem+=20)}else requestAnimationFrame(function(){return t.content.scrollTop=0})},onTabDown:function(t){var e=this.getMenuIndex(),n=this.$refs.menu.tiles[e];n&&n.className.indexOf("v-list__tile--highlighted")>-1&&this.isMenuActive&&e>-1?(t.preventDefault(),t.stopPropagation(),n.click()):o.default.methods.onBlur.call(this,t)},selectItem:function(t){var e=this;if(this.multiple){var n=(this.internalValue||[]).slice(),i=this.findExistingIndex(t);-1!==i?n.splice(i,1):n.push(t),this.internalValue=n.map(function(t){return e.returnObject?t:e.getValue(t)}),this.$nextTick(function(){e.$refs.menu&&e.$refs.menu.updateDimensions()})}else this.internalValue=this.returnObject?t:this.getValue(t),this.isMenuActive=!1},setMenuIndex:function(t){this.$refs.menu&&(this.$refs.menu.listIndex=t)},setSelectedItems:function(){var t,e,n=this,i=[],s=this.multiple&&Array.isArray(this.internalValue)?this.internalValue:[this.internalValue],r=function(t){var e=o.allItems.findIndex(function(e){return n.valueComparator(n.getValue(e),n.getValue(t))});e>-1&&i.push(o.allItems[e])},o=this;try{for(var a=f(s),c=a.next();!c.done;c=a.next()){r(c.value)}}catch(e){t={error:e}}finally{try{c&&!c.done&&(e=a.return)&&e.call(a)}finally{if(t)throw t.error}}this.selectedItems=i}}}},"./src/components/VSelect/VSelectList.js": -/*!***********************************************!*\ - !*** ./src/components/VSelect/VSelectList.js ***! - \***********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_cards.styl */"./src/stylus/components/_cards.styl");var i=n(/*! ../VCheckbox */"./src/components/VCheckbox/index.js"),s=n(/*! ../VDivider */"./src/components/VDivider/index.ts"),r=n(/*! ../VSubheader */"./src/components/VSubheader/index.js"),o=n(/*! ../VList */"./src/components/VList/index.js"),a=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),c=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=n(/*! ../../util/helpers */"./src/util/helpers.ts"),u=function(t){var e="function"==typeof Symbol&&t[Symbol.iterator],n=0;return e?e.call(t):{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}};e.default={name:"v-select-list",mixins:[a.default,c.default],props:{action:Boolean,dense:Boolean,hideSelected:Boolean,items:{type:Array,default:function(){return[]}},itemAvatar:{type:[String,Array,Function],default:"avatar"},itemDisabled:{type:[String,Array,Function],default:"disabled"},itemText:{type:[String,Array,Function],default:"text"},itemValue:{type:[String,Array,Function],default:"value"},noDataText:String,noFilter:Boolean,searchInput:{default:null},selectedItems:{type:Array,default:function(){return[]}}},computed:{parsedItems:function(){var t=this;return this.selectedItems.map(function(e){return t.getValue(e)})},tileActiveClass:function(){return Object.keys(this.setTextColor(this.color).class||{}).join(" ")},staticNoDataTile:function(){return this.$createElement(o.VListTile,{on:{mousedown:function(t){return t.preventDefault()}}},[this.genTileContent(this.noDataText)])}},methods:{genAction:function(t,e){var n=this,s={on:{click:function(e){e.stopPropagation(),n.$emit("select",t)}}};return this.$createElement(o.VListTileAction,s,[this.$createElement(i.default,{props:{color:this.color,inputValue:e}})])},genDivider:function(t){return this.$createElement(s.default,{props:t})},genFilteredText:function(t){if(t=(t||"").toString(),!this.searchInput||this.noFilter)return Object(l.escapeHTML)(t);var e=this.getMaskedCharacters(t),n=e.start,i=e.middle,s=e.end;return""+Object(l.escapeHTML)(n)+this.genHighlight(i)+Object(l.escapeHTML)(s)},genHeader:function(t){return this.$createElement(r.default,{props:t},t.header)},genHighlight:function(t){return''+Object(l.escapeHTML)(t)+""},getMaskedCharacters:function(t){var e=(this.searchInput||"").toString().toLowerCase(),n=t.toLowerCase().indexOf(e);return n<0?{start:"",middle:t,end:""}:{start:t.slice(0,n),middle:t.slice(n,n+e.length),end:t.slice(n+e.length)}},genTile:function(t,e,n,i){var s=this;void 0===e&&(e=null),void 0===n&&(n=!1),void 0===i&&(i=this.hasItem(t)),t===Object(t)&&(n=this.getAvatar(t),e=null!==e?e:this.getDisabled(t));var r={on:{mousedown:function(t){t.preventDefault()},click:function(){return e||s.$emit("select",t)}},props:{activeClass:this.tileActiveClass,avatar:n,disabled:e,ripple:!0,value:i}};if(!this.$scopedSlots.item)return this.$createElement(o.VListTile,r,[this.action&&!this.hideSelected&&this.items.length>0?this.genAction(t,i):null,this.genTileContent(t)]);var a=this.$scopedSlots.item({parent:this,item:t,tile:r});return this.needsTile(a)?this.$createElement(o.VListTile,r,[a]):a},genTileContent:function(t){var e=this.genFilteredText(this.getText(t));return this.$createElement(o.VListTileContent,[this.$createElement(o.VListTileTitle,{domProps:{innerHTML:e}})])},hasItem:function(t){return this.parsedItems.indexOf(this.getValue(t))>-1},needsTile:function(t){return null==t.componentOptions||"v-list-tile"!==t.componentOptions.Ctor.options.name},getAvatar:function(t){return Boolean(Object(l.getPropertyFromItem)(t,this.itemAvatar,!1))},getDisabled:function(t){return Boolean(Object(l.getPropertyFromItem)(t,this.itemDisabled,!1))},getText:function(t){return String(Object(l.getPropertyFromItem)(t,this.itemText,t))},getValue:function(t){return Object(l.getPropertyFromItem)(t,this.itemValue,this.getText(t))}},render:function(){var t,e,n=[];try{for(var i=u(this.items),s=i.next();!s.done;s=i.next()){var r=s.value;this.hideSelected&&this.hasItem(r)||(null==r?n.push(this.genTile(r)):r.header?n.push(this.genHeader(r)):r.divider?n.push(this.genDivider(r)):n.push(this.genTile(r)))}}catch(e){t={error:e}}finally{try{s&&!s.done&&(e=i.return)&&e.call(i)}finally{if(t)throw t.error}}return n.length||n.push(this.$slots["no-data"]||this.staticNoDataTile),this.$slots["prepend-item"]&&n.unshift(this.$slots["prepend-item"]),this.$slots["append-item"]&&n.push(this.$slots["append-item"]),this.$createElement("div",{staticClass:"v-select-list v-card",class:this.themeClasses},[this.$createElement(o.VList,{props:{dense:this.dense}},n)])}}},"./src/components/VSelect/index.js": -/*!*****************************************!*\ - !*** ./src/components/VSelect/index.js ***! - \*****************************************/ -/*! exports provided: VSelect, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VSelect",function(){return u});var i=n(/*! ./VSelect */"./src/components/VSelect/VSelect.js"),s=n(/*! ../VOverflowBtn */"./src/components/VOverflowBtn/index.js"),r=n(/*! ../VAutocomplete */"./src/components/VAutocomplete/index.js"),o=n(/*! ../VCombobox */"./src/components/VCombobox/index.js"),a=n(/*! ../../util/rebuildFunctionalSlots */"./src/util/rebuildFunctionalSlots.js"),c=n(/*! ../../util/dedupeModelListeners */"./src/util/dedupeModelListeners.ts"),l=n(/*! ../../util/console */"./src/util/console.ts"),u={functional:!0,$_wrapperFor:i.default,props:{autocomplete:Boolean,combobox:Boolean,multiple:Boolean,tags:Boolean,editable:Boolean,overflow:Boolean,segmented:Boolean},render:function(t,e){var n=e.props,h=e.data,d=e.slots,f=e.parent;Object(c.default)(h);var p=Object(a.default)(d(),t);return n.autocomplete&&Object(l.deprecate)("","",u,f),n.combobox&&Object(l.deprecate)("","",u,f),n.tags&&Object(l.deprecate)("","",u,f),n.overflow&&Object(l.deprecate)("","",u,f),n.segmented&&Object(l.deprecate)("","",u,f),n.editable&&Object(l.deprecate)("","",u,f),n.combobox||n.tags?(h.attrs.multiple=n.tags,t(o.default,h,p)):n.autocomplete?(h.attrs.multiple=n.multiple,t(r.default,h,p)):n.overflow||n.segmented||n.editable?(h.attrs.segmented=n.segmented,h.attrs.editable=n.editable,t(s.default,h,p)):(h.attrs.multiple=n.multiple,t(i.default,h,p))}};e.default=u},"./src/components/VSlider/VSlider.js": -/*!*******************************************!*\ - !*** ./src/components/VSlider/VSlider.js ***! - \*******************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_sliders.styl */"./src/stylus/components/_sliders.styl");var i=n(/*! ../transitions */"./src/components/transitions/index.js"),s=n(/*! ../VInput */"./src/components/VInput/index.js"),r=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),o=n(/*! ../../util/helpers */"./src/util/helpers.ts"),a=n(/*! ../../util/console */"./src/util/console.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0,"v-input--slider--thumb-label":this.thumbLabel||this.$scopedSlots.thumbLabel}},showTicks:function(){return this.tickLabels.length>0||!this.disabled&&this.stepNumeric&&!!this.ticks},showThumbLabel:function(){return!this.disabled&&(!!this.thumbLabel||""===this.thumbLabel||this.$scopedSlots["thumb-label"])},computedColor:function(){return this.disabled?null:this.validationState||this.color||"primary"},computedTrackColor:function(){return this.disabled?null:this.trackColor||null},computedThumbColor:function(){return this.disabled||!this.isDirty?null:this.validationState||this.thumbColor||this.color||"primary"},internalValue:{get:function(){return this.lazyValue},set:function(t){var e=this.min,n=this.max,i=this.roundValue(Math.min(Math.max(t,e),n));i!==this.lazyValue&&(this.lazyValue=i,this.$emit("input",i),this.validate())}},stepNumeric:function(){return this.step>0?parseFloat(this.step):0},trackFillStyles:function(){var t=this.$vuetify.rtl?"auto":0,e=this.$vuetify.rtl?0:"auto",n=this.inputWidth+"%";return this.disabled&&(n="calc("+this.inputWidth+"% - 8px)"),{transition:this.trackTransition,left:t,right:e,width:n}},trackPadding:function(){return this.isActive||this.inputWidth>0||this.disabled?0:7},trackStyles:function(){var t=this.disabled?"calc("+this.inputWidth+"% + 8px)":this.trackPadding+"px",e=this.$vuetify.rtl?"auto":t,n=this.$vuetify.rtl?t:"auto",i=this.disabled?"calc("+(100-this.inputWidth)+"% - 8px)":"100%";return{transition:this.trackTransition,left:e,right:n,width:i}},tickStyles:function(){var t=Number(this.tickSize);return{"border-width":t+"px","border-radius":t>1?"50%":null,transform:t>1?"translateX(-"+t+"px) translateY(-"+(t-1)+"px)":null}},trackTransition:function(){return this.keyPressed>=2?"none":""},numTicks:function(){return Math.ceil((this.max-this.min)/this.stepNumeric)},inputWidth:function(){return(this.roundValue(this.internalValue)-this.min)/(this.max-this.min)*100},isDirty:function(){return this.internalValue>this.min||this.alwaysDirty}},watch:{min:function(t){t>this.internalValue&&this.$emit("input",parseFloat(t))},max:function(t){t0},style:c({},t.tickStyles,{left:e*(100/t.numTicks)+"%"})},n)});return this.$createElement("div",{staticClass:"v-slider__ticks-container"},e)},genThumb:function(){return this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb"}))},genThumbContainer:function(t,e,n,i){var s=[this.genThumb()],r=this.getLabel(t);return this.showThumbLabel&&s.push(this.genThumbLabel(r)),this.$createElement("div",this.setTextColor(this.computedThumbColor,{staticClass:"v-slider__thumb-container",class:{"v-slider__thumb-container--is-active":n,"v-slider__thumb-container--show-label":this.showThumbLabel},style:{transition:this.trackTransition,left:(this.$vuetify.rtl?100-e:e)+"%"},on:{touchstart:i,mousedown:i}}),s)},genThumbLabel:function(t){var e=Object(o.convertToUnit)(this.thumbSize);return this.$createElement(i.VScaleTransition,{props:{origin:"bottom center"}},[this.$createElement("div",{staticClass:"v-slider__thumb-label__container",directives:[{name:"show",value:this.isFocused||this.isActive||"always"===this.thumbLabel}]},[this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb-label",style:{height:e,width:e}}),[t])])])},genTrackContainer:function(){var t=[this.$createElement("div",this.setBackgroundColor(this.computedTrackColor,{staticClass:"v-slider__track",style:this.trackStyles})),this.$createElement("div",this.setBackgroundColor(this.computedColor,{staticClass:"v-slider__track-fill",style:this.trackFillStyles}))];return this.$createElement("div",{staticClass:"v-slider__track__container",ref:"track"},t)},getLabel:function(t){return this.$scopedSlots["thumb-label"]?this.$scopedSlots["thumb-label"]({value:t}):this.$createElement("span",t)},onBlur:function(t){2!==this.keyPressed&&(this.isActive=!1,this.isFocused=!1,this.$emit("blur",t))},onFocus:function(t){this.isFocused=!0,this.$emit("focus",t)},onThumbMouseDown:function(t){this.oldValue=this.internalValue,this.keyPressed=2;var e={passive:!0};this.isActive=!0,this.isFocused=!1,"touches"in t?(this.app.addEventListener("touchmove",this.onMouseMove,e),Object(o.addOnceEventListener)(this.app,"touchend",this.onSliderMouseUp)):(this.app.addEventListener("mousemove",this.onMouseMove,e),Object(o.addOnceEventListener)(this.app,"mouseup",this.onSliderMouseUp)),this.$emit("start",this.internalValue)},onSliderMouseUp:function(){this.keyPressed=0;var t={passive:!0};this.isActive=!1,this.isFocused=!1,this.app.removeEventListener("touchmove",this.onMouseMove,t),this.app.removeEventListener("mousemove",this.onMouseMove,t),this.$emit("end",this.internalValue),Object(o.deepEqual)(this.oldValue,this.internalValue)||this.$emit("change",this.internalValue)},onMouseMove:function(t){var e=this.parseMouseMove(t),n=e.value;e.isInsideTrack&&this.setInternalValue(n)},onKeyDown:function(t){if(!this.disabled&&!this.readonly){var e=this.parseKeyDown(t);null!=e&&(this.setInternalValue(e),this.$emit("change",e))}},onKeyUp:function(){this.keyPressed=0},onSliderClick:function(t){this.isFocused=!0,this.onMouseMove(t),this.$emit("change",this.internalValue)},parseMouseMove:function(t){var e=this.$refs.track.getBoundingClientRect(),n=e.left,i=e.width,s="touches"in t?t.touches[0].clientX:t.clientX,r=Math.min(Math.max((s-n)/i,0),1)||0;this.$vuetify.rtl&&(r=1-r);var o=s>=n-8&&s<=n+i+8;return{value:parseFloat(this.min)+r*(this.max-this.min),isInsideTrack:o}},parseKeyDown:function(t,e){if(void 0===e&&(e=this.internalValue),!this.disabled){var n=o.keyCodes.pageup,i=o.keyCodes.pagedown,s=o.keyCodes.end,r=o.keyCodes.home,a=o.keyCodes.left,c=o.keyCodes.right,l=o.keyCodes.down,u=o.keyCodes.up;if([n,i,s,r,a,c,l,u].includes(t.keyCode)){t.preventDefault();var h=this.stepNumeric||1,d=(this.max-this.min)/h;if([a,c,l,u].includes(t.keyCode))this.keyPressed+=1,e+=((this.$vuetify.rtl?[a,u]:[c,u]).includes(t.keyCode)?1:-1)*h*(t.shiftKey?3:t.ctrlKey?2:1);else if(t.keyCode===r)e=parseFloat(this.min);else if(t.keyCode===s)e=parseFloat(this.max);else{e-=(t.keyCode===i?1:-1)*h*(d>100?d/10:10)}return e}}},roundValue:function(t){if(!this.stepNumeric)return t;var e=this.step.toString().trim(),n=e.indexOf(".")>-1?e.length-e.indexOf(".")-1:0,i=this.min%this.stepNumeric,s=Math.round((t-i)/this.stepNumeric)*this.stepNumeric+i;return parseFloat(Math.min(s,this.max).toFixed(n))},setInternalValue:function(t){this.internalValue=t}}}},"./src/components/VSlider/index.js": -/*!*****************************************!*\ - !*** ./src/components/VSlider/index.js ***! - \*****************************************/ -/*! exports provided: VSlider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSlider */"./src/components/VSlider/VSlider.js");n.d(e,"VSlider",function(){return i.default}),e.default=i.default},"./src/components/VSnackbar/VSnackbar.ts": -/*!***********************************************!*\ - !*** ./src/components/VSnackbar/VSnackbar.ts ***! - \***********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_snackbars.styl */"./src/stylus/components/_snackbars.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),r=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),o=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(o.default)(i.default,s.default,Object(r.factory)(["absolute","top","bottom","left","right"])).extend({name:"v-snackbar",props:{autoHeight:Boolean,multiLine:Boolean,timeout:{type:Number,default:6e3},vertical:Boolean},data:function(){return{activeTimeout:-1}},computed:{classes:function(){return{"v-snack--active":this.isActive,"v-snack--absolute":this.absolute,"v-snack--auto-height":this.autoHeight,"v-snack--bottom":this.bottom||!this.top,"v-snack--left":this.left,"v-snack--multi-line":this.multiLine&&!this.vertical,"v-snack--right":this.right,"v-snack--top":this.top,"v-snack--vertical":this.vertical}}},watch:{isActive:function(){this.setTimeout()}},mounted:function(){this.setTimeout()},methods:{setTimeout:function(){var t=this;window.clearTimeout(this.activeTimeout),this.isActive&&this.timeout&&(this.activeTimeout=window.setTimeout(function(){t.isActive=!1},this.timeout))}},render:function(t){var e=[];return this.isActive&&e.push(t("div",{staticClass:"v-snack",class:this.classes,on:this.$listeners},[t("div",this.setBackgroundColor(this.color,{staticClass:"v-snack__wrapper"}),[t("div",{staticClass:"v-snack__content"},this.$slots.default)])])),t("transition",{attrs:{name:"v-snack-transition"}},e)}})},"./src/components/VSnackbar/index.ts": -/*!*******************************************!*\ - !*** ./src/components/VSnackbar/index.ts ***! - \*******************************************/ -/*! exports provided: VSnackbar, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSnackbar */"./src/components/VSnackbar/VSnackbar.ts");n.d(e,"VSnackbar",function(){return i.default}),e.default=i.default},"./src/components/VSpeedDial/VSpeedDial.js": -/*!*************************************************!*\ - !*** ./src/components/VSpeedDial/VSpeedDial.js ***! - \*************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_speed-dial.styl */"./src/stylus/components/_speed-dial.styl");var i=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),s=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),r=n(/*! ../../mixins/transitionable */"./src/mixins/transitionable.ts"),o=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts");e.default={name:"v-speed-dial",directives:{ClickOutside:o.default},mixins:[s.default,i.default,r.default],props:{direction:{type:String,default:"top",validator:function(t){return["top","right","bottom","left"].includes(t)}},openOnHover:Boolean,transition:{type:String,default:"scale-transition"}},computed:{classes:function(){var t;return(t={"v-speed-dial":!0,"v-speed-dial--top":this.top,"v-speed-dial--right":this.right,"v-speed-dial--bottom":this.bottom,"v-speed-dial--left":this.left,"v-speed-dial--absolute":this.absolute,"v-speed-dial--fixed":this.fixed})["v-speed-dial--direction-"+this.direction]=!0,t}},render:function(t){var e=this,n=[],i={class:this.classes,directives:[{name:"click-outside",value:function(){return e.isActive=!1}}],on:{click:function(){return e.isActive=!e.isActive}}};this.openOnHover&&(i.on.mouseenter=function(){return e.isActive=!0},i.on.mouseleave=function(){return e.isActive=!1}),this.isActive&&(n=(this.$slots.default||[]).map(function(t,e){return t.key=e,t}));var s=t("transition-group",{class:"v-speed-dial__list",props:{name:this.transition,mode:this.mode,origin:this.origin,tag:"div"}},n);return t("div",i,[this.$slots.activator,s])}}},"./src/components/VSpeedDial/index.js": -/*!********************************************!*\ - !*** ./src/components/VSpeedDial/index.js ***! - \********************************************/ -/*! exports provided: VSpeedDial, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSpeedDial */"./src/components/VSpeedDial/VSpeedDial.js");n.d(e,"VSpeedDial",function(){return i.default}),e.default=i.default},"./src/components/VStepper/VStepper.js": -/*!*********************************************!*\ - !*** ./src/components/VStepper/VStepper.js ***! - \*********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_steppers.styl */"./src/stylus/components/_steppers.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=0;)this.steps[n].toggle(this.inputValue);for(n=this.content.length;--n>=0;)this.content[n].toggle(this.inputValue,this.isReverse);this.$emit("input",this.inputValue),e&&(this.isBooted=!0)},value:function(){var t=this;this.getSteps(),this.$nextTick(function(){return t.inputValue=t.value})}},mounted:function(){this.getSteps(),this.inputValue=this.value||this.steps[0].step||1},methods:{getSteps:function(){this.steps=[],this.content=[];for(var t=0;t-1&&t.preventDefault(),this.$emit("click",t),this.to||this.tabClick(this)},onRouteChange:function(){var t=this;if(this.to&&this.$refs.link){var e="_vnode.data.class."+this.activeClass;this.$nextTick(function(){Object(o.getObjectValueByPath)(t.$refs.link,e)&&t.tabClick(t)})}},toggle:function(t){this.isActive=t===this||t===this.action}},render:function(t){var e=this.generateRouteLink(this.classes),n=e.data,i=this.disabled?"div":e.tag;return n.ref="link",t("div",{staticClass:"v-tabs__div"},[t(i,n,this.$slots.default)])}}},"./src/components/VTabs/VTabItem.js": -/*!******************************************!*\ - !*** ./src/components/VTabs/VTabItem.js ***! - \******************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/bootable */"./src/mixins/bootable.ts"),s=n(/*! ../transitions */"./src/components/transitions/index.js"),r=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),o=n(/*! ../../directives/touch */"./src/directives/touch.ts");e.default={name:"v-tab-item",components:{VTabTransition:s.VTabTransition,VTabReverseTransition:s.VTabReverseTransition},directives:{Touch:o.default},mixins:[i.default,Object(r.inject)("tabs","v-tab-item","v-tabs-items")],props:{id:String,transition:{type:[Boolean,String],default:"tab-transition"},reverseTransition:{type:[Boolean,String],default:"tab-reverse-transition"}},data:function(){return{isActive:!1,reverse:!1}},computed:{computedTransition:function(){return this.reverse?this.reverseTransition:this.transition}},mounted:function(){this.tabs.register(this)},beforeDestroy:function(){this.tabs.unregister(this)},methods:{toggle:function(t,e,n){this.$el.style.transition=n?null:"none",this.reverse=e,this.isActive=t}},render:function(t){var e=t("div",{staticClass:"v-tabs__content",directives:[{name:"show",value:this.isActive}],domProps:{id:this.id},on:this.$listeners},this.showLazyContent(this.$slots.default));return this.computedTransition?t("transition",{props:{name:this.computedTransition}},[e]):e}}},"./src/components/VTabs/VTabs.js": -/*!***************************************!*\ - !*** ./src/components/VTabs/VTabs.js ***! - \***************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_tabs.styl */"./src/stylus/components/_tabs.styl");var i=n(/*! ./mixins/tabs-computed */"./src/components/VTabs/mixins/tabs-computed.js"),s=n(/*! ./mixins/tabs-generators */"./src/components/VTabs/mixins/tabs-generators.js"),r=n(/*! ./mixins/tabs-props */"./src/components/VTabs/mixins/tabs-props.js"),o=n(/*! ./mixins/tabs-touch */"./src/components/VTabs/mixins/tabs-touch.js"),a=n(/*! ./mixins/tabs-watchers */"./src/components/VTabs/mixins/tabs-watchers.js"),c=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),l=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),u=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),h=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),d=n(/*! ../../directives/resize */"./src/directives/resize.ts"),f=n(/*! ../../directives/touch */"./src/directives/touch.ts");e.default={name:"v-tabs",directives:{Resize:d.default,Touch:f.default},mixins:[Object(h.provide)("tabs"),c.default,l.default,i.default,r.default,s.default,o.default,a.default,u.default],provide:function(){return{tabs:this,tabClick:this.tabClick,tabProxy:this.tabProxy,registerItems:this.registerItems,unregisterItems:this.unregisterItems}},data:function(){return{bar:[],content:[],isBooted:!1,isOverflowing:!1,lazyValue:this.value,nextIconVisible:!1,prevIconVisible:!1,resizeTimeout:null,reverse:!1,scrollOffset:0,sliderWidth:null,sliderLeft:null,startX:0,tabsContainer:null,tabs:[],tabItems:null,transitionTime:300,widths:{bar:0,container:0,wrapper:0}}},computed:{isDark:function(){return this.theme.isDark},selfIsDark:function(){return u.default.options.computed.isDark.call(this)},themeClasses:function(){return{"theme--dark":this.selfIsDark,"theme--light":!this.selfIsDark}}},watch:{tabs:"onResize"},mounted:function(){this.checkIcons()},methods:{checkIcons:function(){this.prevIconVisible=this.checkPrevIcon(),this.nextIconVisible=this.checkNextIcon()},checkPrevIcon:function(){return this.scrollOffset>0},checkNextIcon:function(){return this.widths.container>this.scrollOffset+this.widths.wrapper},callSlider:function(){var t=this;if(this.hideSlider||!this.activeTab)return!1;var e=(this.activeTab||{}).action,n=e===this.activeTab?this.activeTab:this.tabs.find(function(t){return t.action===e});this.$nextTick(function(){n&&n.$el&&(t.sliderWidth=n.$el.scrollWidth,t.sliderLeft=n.$el.offsetLeft)})},onResize:function(){var t=this;this._isDestroyed||(this.setWidths(),clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(function(){t.callSlider(),t.scrollIntoView(),t.checkIcons()},this.transitionTime))},overflowCheck:function(t,e){this.isOverflowing&&e(t)},scrollTo:function(t){this.scrollOffset=this.newOffset(t)},setOverflow:function(){this.isOverflowing=this.widths.bar-1}),n=e>-1?e:0,i=this.tabs[n];this.inputValue=i.action===i?n:i.action}},parseNodes:function(){for(var t=[],e=[],n=[],i=[],s=(this.$slots.default||[]).length,r=0;r=0;)this.tabs[t].toggle(this.target);this.setOverflow()}},render:function(t){var e=this.parseNodes(),n=e.tab,i=e.slider,s=e.items,r=e.item;return t("div",{staticClass:"v-tabs",directives:[{name:"resize",arg:400,modifiers:{quiet:!0},value:this.onResize}]},[this.genBar([this.hideSlider?null:this.genSlider(i),n]),this.genItems(s,r)])}}},"./src/components/VTabs/VTabsItems.js": -/*!********************************************!*\ - !*** ./src/components/VTabs/VTabsItems.js ***! - \********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),s=n(/*! ../../directives/touch */"./src/directives/touch.ts");e.default={name:"v-tabs-items",directives:{Touch:s.default},mixins:[Object(i.provide)("tabs")],inject:{registerItems:{default:null},tabProxy:{default:null},unregisterItems:{default:null}},props:{cycle:Boolean,touchless:Boolean,value:[Number,String]},data:function(){return{items:[],lazyValue:this.value,reverse:!1}},computed:{activeIndex:function(){var t=this;return this.items.findIndex(function(e,n){return e.id===t.lazyValue||n===t.lazyValue})},activeItem:function(){if(this.items.length)return this.items[this.activeIndex]},inputValue:{get:function(){return this.lazyValue},set:function(t){this.lazyValue=t,this.tabProxy?this.tabProxy(t):this.$emit("input",t)}}},watch:{activeIndex:function(t,e){this.reverse=t=0;)this.items[t].toggle(this.activeIndex===t,this.reverse,this.isBooted);this.isBooted=!0}},render:function(t){var e=this,n={staticClass:"v-tabs__items",directives:[]};return!this.touchless&&n.directives.push({name:"touch",value:{left:function(){return e.onSwipe("next")},right:function(){return e.onSwipe("prev")}}}),t("div",n,this.$slots.default)}}},"./src/components/VTabs/VTabsSlider.js": -/*!*********************************************!*\ - !*** ./src/components/VTabs/VTabsSlider.js ***! - \*********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts");e.default={name:"v-tabs-slider",mixins:[i.default],render:function(t){return t("div",this.setBackgroundColor(this.color||"accent",{staticClass:"v-tabs__slider"}))}}},"./src/components/VTabs/index.js": -/*!***************************************!*\ - !*** ./src/components/VTabs/index.js ***! - \***************************************/ -/*! exports provided: VTabs, VTab, VTabItem, VTabsItems, VTabsSlider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTabs */"./src/components/VTabs/VTabs.js");n.d(e,"VTabs",function(){return i.default});var s=n(/*! ./VTab */"./src/components/VTabs/VTab.js");n.d(e,"VTab",function(){return s.default});var r=n(/*! ./VTabsItems */"./src/components/VTabs/VTabsItems.js");n.d(e,"VTabsItems",function(){return r.default});var o=n(/*! ./VTabItem */"./src/components/VTabs/VTabItem.js");n.d(e,"VTabItem",function(){return o.default});var a=n(/*! ./VTabsSlider */"./src/components/VTabs/VTabsSlider.js");n.d(e,"VTabsSlider",function(){return a.default}),e.default={$_vuetify_subcomponents:{VTabs:i.default,VTab:s.default,VTabsItems:r.default,VTabItem:o.default,VTabsSlider:a.default}}},"./src/components/VTabs/mixins/tabs-computed.js": -/*!******************************************************!*\ - !*** ./src/components/VTabs/mixins/tabs-computed.js ***! - \******************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={computed:{activeIndex:function(){var t=this;return this.tabs.findIndex(function(e,n){return(e.action===e?n:e.action)===t.lazyValue})},activeTab:function(){if(this.tabs.length)return this.tabs[this.activeIndex]},containerStyles:function(){return this.height?{height:parseInt(this.height,10)+"px"}:null},hasArrows:function(){return(this.showArrows||!this.isMobile)&&this.isOverflowing},inputValue:{get:function(){return this.lazyValue},set:function(t){this.inputValue!==t&&(this.lazyValue=t,this.$emit("input",t))}},isMobile:function(){return this.$vuetify.breakpoint.width0?t:e.length?this.$createElement(i.default,e):null},genTransition:function(t){return this.$createElement("transition",{props:{name:"fade-transition"}},[this.genIcon(t)])},genWrapper:function(t){var e=this;return this.$createElement("div",{staticClass:"v-tabs__wrapper",class:{"v-tabs__wrapper--show-arrows":this.hasArrows},ref:"wrapper",directives:[{name:"touch",value:{start:function(t){return e.overflowCheck(t,e.onTouchStart)},move:function(t){return e.overflowCheck(t,e.onTouchMove)},end:function(t){return e.overflowCheck(t,e.onTouchEnd)}}}]},[t])},genSlider:function(t){return t.length||(t=[this.$createElement(s.default,{props:{color:this.sliderColor}})]),this.$createElement("div",{staticClass:"v-tabs__slider-wrapper",style:this.sliderStyles},t)}}}},"./src/components/VTabs/mixins/tabs-props.js": -/*!***************************************************!*\ - !*** ./src/components/VTabs/mixins/tabs-props.js ***! - \***************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={props:{alignWithTitle:Boolean,centered:Boolean,fixedTabs:Boolean,grow:Boolean,height:{type:[Number,String],default:void 0,validator:function(t){return!isNaN(parseInt(t))}},hideSlider:Boolean,iconsAndText:Boolean,mobileBreakPoint:{type:[Number,String],default:1264,validator:function(t){return!isNaN(parseInt(t))}},nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},right:Boolean,showArrows:Boolean,sliderColor:{type:String,default:"accent"},value:[Number,String]}}},"./src/components/VTabs/mixins/tabs-touch.js": -/*!***************************************************!*\ - !*** ./src/components/VTabs/mixins/tabs-touch.js ***! - \***************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{newOffset:function(t){var e=this.$refs.wrapper.clientWidth;return"prev"===t?Math.max(this.scrollOffset-e,0):Math.min(this.scrollOffset+e,this.$refs.container.clientWidth-e)},onTouchStart:function(t){this.startX=this.scrollOffset+t.touchstartX,this.$refs.container.style.transition="none",this.$refs.container.style.willChange="transform"},onTouchMove:function(t){this.scrollOffset=this.startX-t.touchmoveX},onTouchEnd:function(){var t=this.$refs.container,e=this.$refs.wrapper,n=t.clientWidth-e.clientWidth;t.style.transition=null,t.style.willChange=null,this.scrollOffset<0||!this.isOverflowing?this.scrollOffset=0:this.scrollOffset>=n&&(this.scrollOffset=n)}}}},"./src/components/VTabs/mixins/tabs-watchers.js": -/*!******************************************************!*\ - !*** ./src/components/VTabs/mixins/tabs-watchers.js ***! - \******************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={watch:{activeTab:function(t,e){if(!e&&t&&this.updateTabs(),setTimeout(this.callSlider,0),t){var n=t.action;this.tabItems&&this.tabItems(n===t?this.tabs.indexOf(t):n)}},alignWithTitle:"callSlider",centered:"callSlider",fixedTabs:"callSlider",hasArrows:function(t){t||(this.scrollOffset=0)},isBooted:"findActiveLink",lazyValue:"updateTabs",right:"callSlider",value:function(t){this.lazyValue=t},"$vuetify.application.left":"onResize","$vuetify.application.right":"onResize",scrollOffset:function(t){this.$refs.container.style.transform="translateX("+-t+"px)",this.hasArrows&&(this.prevIconVisible=this.checkPrevIcon(),this.nextIconVisible=this.checkNextIcon())}}}},"./src/components/VTextField/VTextField.js": -/*!*************************************************!*\ - !*** ./src/components/VTextField/VTextField.js ***! - \*************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_text-fields.styl */"./src/stylus/components/_text-fields.styl");var i=n(/*! ../VInput */"./src/components/VInput/index.js"),s=n(/*! ../VCounter */"./src/components/VCounter/index.js"),r=n(/*! ../VLabel */"./src/components/VLabel/index.js"),o=n(/*! ../../mixins/maskable */"./src/mixins/maskable.js"),a=n(/*! ../../directives/ripple */"./src/directives/ripple.ts"),c=n(/*! ../../util/helpers */"./src/util/helpers.ts"),l=n(/*! ../../util/console */"./src/util/console.ts"),u=function(){return(u=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0||this.badInput},isEnclosed:function(){return this.box||this.isSolo||this.hasOutline||this.fullWidth},isLabelActive:function(){return this.isDirty||h.includes(this.type)},isSingle:function(){return this.isSolo||this.singleLine},isSolo:function(){return this.solo||this.soloInverted},labelPosition:function(){var t=this.prefix&&!this.labelValue?16:0;return!this.$vuetify.rtl!=!this.reverse?{left:"auto",right:t}:{left:t,right:"auto"}},showLabel:function(){return this.hasLabel&&(!this.isSingle||!this.isLabelActive&&!this.placeholder)},labelValue:function(){return!this.isSingle&&Boolean(this.isFocused||this.isLabelActive||this.placeholder)}},watch:{isFocused:function(t){this.hasColor=t,t?this.initialValue=this.lazyValue:this.initialValue!==this.lazyValue&&this.$emit("change",this.lazyValue)},value:function(t){var e=this;if(this.mask&&!this.internalChange){var n=this.maskText(this.unmaskText(t));this.lazyValue=this.unmaskText(n),String(t)!==this.lazyValue&&this.$nextTick(function(){e.$refs.input.value=n,e.$emit("input",e.lazyValue)})}else this.lazyValue=t}},mounted:function(){this.autofocus&&this.onFocus()},methods:{focus:function(){this.onFocus()},blur:function(){this.$refs.input?this.$refs.input.blur():this.onBlur()},clearableCallback:function(){var t=this;this.internalValue=null,this.$nextTick(function(){return t.$refs.input.focus()})},genAppendSlot:function(){var t=[];return this.$slots["append-outer"]?t.push(this.$slots["append-outer"]):this.appendOuterIcon&&t.push(this.genIcon("appendOuter")),this.genSlot("append","outer",t)},genPrependInnerSlot:function(){var t=[];return this.$slots["prepend-inner"]?t.push(this.$slots["prepend-inner"]):this.prependInnerIcon&&t.push(this.genIcon("prependInner")),this.genSlot("prepend","inner",t)},genIconSlot:function(){var t=[];return this.$slots.append?t.push(this.$slots.append):this.appendIcon&&t.push(this.genIcon("append")),this.genSlot("append","inner",t)},genInputSlot:function(){var t=i.default.methods.genInputSlot.call(this),e=this.genPrependInnerSlot();return e&&t.children.unshift(e),t},genClearIcon:function(){if(!this.clearable)return null;var t=!!this.isDirty&&"clear";return this.clearIconCb&&Object(l.deprecate)(":clear-icon-cb","@click:clear",this),this.genSlot("append","inner",[this.genIcon(t,!this.$listeners["click:clear"]&&this.clearIconCb||this.clearableCallback,!1)])},genCounter:function(){if(!1===this.counter||null==this.counter)return null;var t=!0===this.counter?this.$attrs.maxlength:this.counter;return this.$createElement(s.default,{props:{dark:this.dark,light:this.light,max:t,value:this.counterValue}})},genDefaultSlot:function(){return[this.genTextFieldSlot(),this.genClearIcon(),this.genIconSlot()]},genLabel:function(){if(!this.showLabel)return null;var t={props:{absolute:!0,color:this.validationState,dark:this.dark,disabled:this.disabled,focused:!this.isSingle&&(this.isFocused||!!this.validationState),left:this.labelPosition.left,light:this.light,right:this.labelPosition.right,value:this.labelValue}};return this.$attrs.id&&(t.props.for=this.$attrs.id),this.$createElement(r.default,t,this.$slots.label||this.label)},genInput:function(){var t=Object.assign({},this.$listeners);delete t.change;var e={style:{},domProps:{value:this.maskText(this.lazyValue)},attrs:u({"aria-label":(!this.$attrs||!this.$attrs.id)&&this.label},this.$attrs,{autofocus:this.autofocus,disabled:this.disabled,readonly:this.readonly,type:this.type}),on:Object.assign(t,{blur:this.onBlur,input:this.onInput,focus:this.onFocus,keydown:this.onKeyDown}),ref:"input"};return this.placeholder&&(e.attrs.placeholder=this.placeholder),this.mask&&(e.attrs.maxlength=this.masked.length),this.browserAutocomplete&&(e.attrs.autocomplete=this.browserAutocomplete),this.$createElement("input",e)},genMessages:function(){return this.hideDetails?null:this.$createElement("div",{staticClass:"v-text-field__details"},[i.default.methods.genMessages.call(this),this.genCounter()])},genTextFieldSlot:function(){return this.$createElement("div",{staticClass:"v-text-field__slot"},[this.genLabel(),this.prefix?this.genAffix("prefix"):null,this.genInput(),this.suffix?this.genAffix("suffix"):null])},genAffix:function(t){return this.$createElement("div",{class:"v-text-field__"+t,ref:t},this[t])},onBlur:function(t){this.isFocused=!1,this.internalChange=!1,this.$emit("blur",t)},onClick:function(){this.isFocused||this.disabled||this.$refs.input.focus()},onFocus:function(t){if(this.$refs.input)return document.activeElement!==this.$refs.input?this.$refs.input.focus():void(this.isFocused||(this.isFocused=!0,this.$emit("focus",t)))},onInput:function(t){this.internalChange=!0,this.mask&&this.resetSelections(t.target),this.internalValue=t.target.value,this.badInput=t.target.validity&&t.target.validity.badInput},onKeyDown:function(t){this.internalChange=!0,t.keyCode===c.keyCodes.enter&&this.$emit("change",this.internalValue),this.$emit("keydown",t)},onMouseDown:function(t){t.target!==this.$refs.input&&(t.preventDefault(),t.stopPropagation()),i.default.methods.onMouseDown.call(this,t)},onMouseUp:function(t){this.focus(),i.default.methods.onMouseUp.call(this,t)}}}},"./src/components/VTextField/index.js": -/*!********************************************!*\ - !*** ./src/components/VTextField/index.js ***! - \********************************************/ -/*! exports provided: VTextField, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VTextField",function(){return c});var i=n(/*! ./VTextField */"./src/components/VTextField/VTextField.js"),s=n(/*! ../VTextarea/VTextarea */"./src/components/VTextarea/VTextarea.js"),r=n(/*! ../../util/rebuildFunctionalSlots */"./src/util/rebuildFunctionalSlots.js"),o=n(/*! ../../util/dedupeModelListeners */"./src/util/dedupeModelListeners.ts"),a=n(/*! ../../util/console */"./src/util/console.ts"),c={functional:!0,$_wrapperFor:i.default,props:{textarea:Boolean,multiLine:Boolean},render:function(t,e){var n=e.props,l=e.data,u=e.slots,h=e.parent;Object(o.default)(l);var d=Object(r.default)(u(),t);return n.textarea&&Object(a.deprecate)("","",c,h),n.multiLine&&Object(a.deprecate)("","",c,h),n.textarea||n.multiLine?(l.attrs.outline=n.textarea,t(s.default,l,d)):t(i.default,l,d)}};e.default=c},"./src/components/VTextarea/VTextarea.js": -/*!***********************************************!*\ - !*** ./src/components/VTextarea/VTextarea.js ***! - \***********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_textarea.styl */"./src/stylus/components/_textarea.styl");var i=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),s=n(/*! ../../util/console */"./src/util/console.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},l=Object(o.createRange)(24),u=Object(o.createRange)(12),h=u.map(function(t){return t+12}),d=Object(o.createRange)(60);e.default={name:"v-time-picker",mixins:[r.default],props:{allowedHours:Function,allowedMinutes:Function,format:{type:String,default:"ampm",validator:function(t){return["ampm","24hr"].includes(t)}},min:String,max:String,readonly:Boolean,scrollable:Boolean,value:null},data:function(){return{inputHour:null,inputMinute:null,period:"am",selectingHour:!0}},computed:{isAllowedHourCb:function(){var t=this;if(!this.min&&!this.max)return this.allowedHours;var e=this.min?this.min.split(":")[0]:0,n=this.max?this.max.split(":")[0]:23;return function(i){return i>=1*e&&i<=1*n&&(!t.allowedHours||t.allowedHours(i))}},isAllowedMinuteCb:function(){var t=this,e=!this.allowedHours||this.allowedHours(this.inputHour);if(!this.min&&!this.max)return e?this.allowedMinutes:function(){return!1};var n=c(this.min?this.min.split(":"):[0,0],2),i=n[0],s=n[1],r=c(this.max?this.max.split(":"):[23,59],2),o=60*i+1*s,a=60*r[0]+1*r[1];return function(n){var i=60*t.inputHour+n;return i>=o&&i<=a&&e&&(!t.allowedMinutes||t.allowedMinutes(n))}},isAmPm:function(){return"ampm"===this.format}},watch:{value:"setInputData"},mounted:function(){this.setInputData(this.value)},methods:{emitValue:function(){null!=this.inputHour&&null!=this.inputMinute&&this.$emit("input",Object(a.default)(this.inputHour)+":"+Object(a.default)(this.inputMinute))},setPeriod:function(t){if(this.period=t,null!=this.inputHour){var e=this.inputHour+("am"===t?-12:12);this.inputHour=this.firstAllowed("hour",e),this.emitValue()}},setInputData:function(t){if(null==t)return this.inputHour=null,void(this.inputMinute=null);if(t instanceof Date)this.inputHour=t.getHours(),this.inputMinute=t.getMinutes();else{var e=c(t.trim().toLowerCase().match(/^(\d+):(\d+)(:\d+)?([ap]m)?$/,"")||[],5),n=e[1],i=e[2],s=e[4];this.inputHour=s?this.convert12to24(parseInt(n,10),s):parseInt(n,10),this.inputMinute=parseInt(i,10)}this.period=this.inputHour<12?"am":"pm"},convert24to12:function(t){return t?(t-1)%12+1:12},convert12to24:function(t,e){return t%12+("pm"===e?12:0)},onInput:function(t){this.selectingHour?this.inputHour=this.isAmPm?this.convert12to24(t,this.period):t:this.inputMinute=t,this.emitValue()},onChange:function(){this.selectingHour?this.selectingHour=!1:this.$emit("change",this.value)},firstAllowed:function(t,e){var n="hour"===t?this.isAllowedHourCb:this.isAllowedMinuteCb;if(!n)return e;var i="minute"===t?d:this.isAmPm?e<12?u:h:l;return((i.find(function(t){return n((t+e)%i.length+i[0])})||0)+e)%i.length+i[0]},genClock:function(){return this.$createElement(s.default,{props:{allowedValues:this.selectingHour?this.isAllowedHourCb:this.isAllowedMinuteCb,color:this.color,dark:this.dark,double:this.selectingHour&&!this.isAmPm,format:this.selectingHour?this.isAmPm?this.convert24to12:function(t){return t}:function(t){return Object(a.default)(t,2)},light:this.light,max:this.selectingHour?this.isAmPm&&"am"===this.period?11:23:59,min:this.selectingHour&&this.isAmPm&&"pm"===this.period?12:0,readonly:this.readonly,scrollable:this.scrollable,size:this.width-(!this.fullWidth&&this.landscape?80:20),step:this.selectingHour?1:5,value:this.selectingHour?this.inputHour:this.inputMinute},on:{input:this.onInput,change:this.onChange},ref:"clock"})},genPickerBody:function(){return this.$createElement("div",{staticClass:"v-time-picker-clock__container",style:{width:this.width+"px",height:this.width-(!this.fullWidth&&this.landscape?60:0)+"px"},key:this.selectingHour},[this.genClock()])},genPickerTitle:function(){var t=this;return this.$createElement(i.default,{props:{ampm:this.isAmPm,hour:this.inputHour,minute:this.inputMinute,period:this.period,readonly:this.readonly,selectingHour:this.selectingHour},on:{"update:selectingHour":function(e){return t.selectingHour=e},"update:period":this.setPeriod},ref:"title",slot:"title"})}},render:function(){return this.genPicker("v-picker--time")}}},"./src/components/VTimePicker/VTimePickerClock.js": -/*!********************************************************!*\ - !*** ./src/components/VTimePicker/VTimePickerClock.js ***! - \********************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_time-picker-clock.styl */"./src/stylus/components/_time-picker-clock.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=this.roundCount?this.innerRadius/this.radius:this.outerRadius/this.radius},isAllowed:function(t){return!this.allowedValues||this.allowedValues(t)},genValues:function(){for(var t=[],e=this.min;e<=this.max;e+=this.step){var n=e===this.value&&(this.color||"accent");t.push(this.$createElement("span",this.setBackgroundColor(n,{class:{active:e===this.displayedValue,disabled:!this.isAllowed(e)},style:this.getTransform(e),domProps:{innerHTML:""+this.format(e)+""}})))}return t},genHand:function(){var t="scaleY("+this.handScale(this.displayedValue)+")",e=this.rotate+this.degreesPerUnit*(this.displayedValue-this.min),n=null!=this.value&&(this.color||"accent");return this.$createElement("div",this.setBackgroundColor(n,{staticClass:"v-time-picker-clock__hand",style:{transform:"rotate("+e+"deg) "+t}}))},getTransform:function(t){var e=this.getPosition(t);return{transform:"translate("+e.x+"px, "+e.y+"px)"}},getPosition:function(t){var e=(this.radius-24)*this.handScale(t),n=this.rotate*Math.PI/180;return{x:Math.round(Math.sin((t-this.min)*this.degrees+n)*e),y:Math.round(-Math.cos((t-this.min)*this.degrees+n)*e)}},onMouseDown:function(t){t.preventDefault(),this.valueOnMouseDown=null,this.valueOnMouseUp=null,this.isDragging=!0,this.onDragMove(t)},onMouseUp:function(){this.isDragging=!1,null!==this.valueOnMouseUp&&this.isAllowed(this.valueOnMouseUp)&&this.$emit("change",this.valueOnMouseUp)},onDragMove:function(t){if(t.preventDefault(),this.isDragging||"click"===t.type){var e,n=this.$refs.clock.getBoundingClientRect(),i=n.width,s=n.top,r=n.left,o="touches"in t?t.touches[0]:t,a={x:i/2,y:-i/2},c={x:o.clientX-r,y:s-o.clientY},l=Math.round(this.angle(a,c)-this.rotate+360)%360,u=this.double&&this.euclidean(a,c)<(this.outerRadius+this.innerRadius)/2-16,h=Math.round(l/this.degreesPerUnit)+this.min+(u?this.roundCount:0);e=l>=360-this.degreesPerUnit/2?u?this.max:this.min:h,this.isAllowed(h)&&(null===this.valueOnMouseDown&&(this.valueOnMouseDown=e),this.valueOnMouseUp=e,this.update(e))}},update:function(t){this.inputValue!==t&&(this.inputValue=t,this.$emit("input",t))},euclidean:function(t,e){var n=e.x-t.x,i=e.y-t.y;return Math.sqrt(n*n+i*i)},angle:function(t,e){var n=2*Math.atan2(e.y-t.y-this.euclidean(t,e),e.x-t.x);return Math.abs(180*n/Math.PI)}},render:function(){var t=this,e={staticClass:"v-time-picker-clock",class:r({"v-time-picker-clock--indeterminate":null==this.value},this.themeClasses),on:this.readonly?void 0:{mousedown:this.onMouseDown,mouseup:this.onMouseUp,mouseleave:function(){return t.isDragging&&t.onMouseUp()},touchstart:this.onMouseDown,touchend:this.onMouseUp,mousemove:this.onDragMove,touchmove:this.onDragMove},style:{height:this.size+"px",width:this.size+"px"},ref:"clock"};return!this.readonly&&this.scrollable&&(e.on.wheel=this.wheel),this.$createElement("div",e,[this.genHand(),this.genValues()])}}},"./src/components/VTimePicker/VTimePickerTitle.js": -/*!********************************************************!*\ - !*** ./src/components/VTimePicker/VTimePickerTitle.js ***! - \********************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_time-picker-title.styl */"./src/stylus/components/_time-picker-title.styl");var i=n(/*! ../../mixins/picker-button */"./src/mixins/picker-button.js"),s=n(/*! ../VDatePicker/util */"./src/components/VDatePicker/util/index.js");e.default={name:"v-time-picker-title",mixins:[i.default],props:{ampm:Boolean,hour:Number,minute:Number,period:{type:String,validator:function(t){return"am"===t||"pm"===t}},readonly:Boolean,selectingHour:Boolean},methods:{genTime:function(){var t=this.hour;this.ampm&&(t=t?(t-1)%12+1:12);var e=null==this.hour?"--":this.ampm?t:Object(s.pad)(t),n=null==this.minute?"--":Object(s.pad)(this.minute);return this.$createElement("div",{class:"v-time-picker-title__time"},[this.genPickerButton("selectingHour",!0,e),this.$createElement("span",":"),this.genPickerButton("selectingHour",!1,n)])},genAmPm:function(){return this.$createElement("div",{staticClass:"v-time-picker-title__ampm"},[this.genPickerButton("period","am","am",this.readonly),this.genPickerButton("period","pm","pm",this.readonly)])}},render:function(t){return t("div",{staticClass:"v-time-picker-title"},[this.genTime(),this.ampm?this.genAmPm():null])}}},"./src/components/VTimePicker/index.js": -/*!*********************************************!*\ - !*** ./src/components/VTimePicker/index.js ***! - \*********************************************/ -/*! exports provided: VTimePicker, VTimePickerClock, VTimePickerTitle, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTimePicker */"./src/components/VTimePicker/VTimePicker.js");n.d(e,"VTimePicker",function(){return i.default});var s=n(/*! ./VTimePickerClock */"./src/components/VTimePicker/VTimePickerClock.js");n.d(e,"VTimePickerClock",function(){return s.default});var r=n(/*! ./VTimePickerTitle */"./src/components/VTimePicker/VTimePickerTitle.js");n.d(e,"VTimePickerTitle",function(){return r.default}),e.default={$_vuetify_subcomponents:{VTimePicker:i.default,VTimePickerClock:s.default,VTimePickerTitle:r.default}}},"./src/components/VToolbar/VToolbar.js": -/*!*********************************************!*\ - !*** ./src/components/VToolbar/VToolbar.js ***! - \*********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_toolbar.styl */"./src/stylus/components/_toolbar.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),a=n(/*! ../../directives/scroll */"./src/directives/scroll.ts"),c=n(/*! ../../util/console */"./src/util/console.ts"),l=function(){return(l=Object.assign||function(t){for(var e,n=1,i=arguments.length;nthis.$vuetify.breakpoint.height?this.heights.mobileLandscape:this.heights.mobile},computedExtensionHeight:function(){return this.tabs?48:this.extensionHeight?parseInt(this.extensionHeight):this.computedContentHeight},computedHeight:function(){return this.isExtended?this.computedContentHeight+this.computedExtensionHeight:this.computedContentHeight},computedMarginTop:function(){return this.app?this.$vuetify.application.bar:0},classes:function(){return l({"v-toolbar":!0,"elevation-0":this.flat||!this.isActive&&!this.tabs&&this.canScroll,"v-toolbar--absolute":this.absolute,"v-toolbar--card":this.card,"v-toolbar--clipped":this.clippedLeft||this.clippedRight,"v-toolbar--dense":this.dense,"v-toolbar--extended":this.isExtended,"v-toolbar--fixed":!this.absolute&&(this.app||this.fixed),"v-toolbar--floating":this.floating,"v-toolbar--prominent":this.prominent},this.themeClasses)},computedPaddingLeft:function(){return!this.app||this.clippedLeft?0:this.$vuetify.application.left},computedPaddingRight:function(){return!this.app||this.clippedRight?0:this.$vuetify.application.right},computedTransform:function(){return this.isActive?0:this.canScroll?-this.computedContentHeight:-this.computedHeight},currentThreshold:function(){return Math.abs(this.currentScroll-this.savedScroll)},styles:function(){return{marginTop:this.computedMarginTop+"px",paddingRight:this.computedPaddingRight+"px",paddingLeft:this.computedPaddingLeft+"px",transform:"translateY("+this.computedTransform+"px)"}}},watch:{currentThreshold:function(t){if(this.invertedScroll)return this.isActive=this.currentScroll>this.scrollThreshold;ti[1]||s[1]===i[1]&&s[2]>=i[2])||Object(d.consoleWarn)("Vuetify requires Vue version "+n)}e.default=f},"./src/components/Vuetify/mixins/application.ts": -/*!******************************************************!*\ - !*** ./src/components/Vuetify/mixins/application.ts ***! - \******************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={bar:0,bottom:0,footer:0,insetFooter:0,left:0,right:0,top:0,components:{bar:{},bottom:{},footer:{},insetFooter:{},left:{},right:{},top:{}},bind:function(t,e,n){var i;this.components[e]&&(this.components[e]=((i={})[t]=n,i),this.update(e))},unbind:function(t,e){null!=this.components[e][t]&&(delete this.components[e][t],this.update(e))},update:function(t){this[t]=Object.values(this.components[t]).reduce(function(t,e){return t+e},0)}}},"./src/components/Vuetify/mixins/breakpoint.ts": -/*!*****************************************************!*\ - !*** ./src/components/Vuetify/mixins/breakpoint.ts ***! - \*****************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i);function r(){return"undefined"==typeof document?0:Math.max(document.documentElement.clientWidth,window.innerWidth||0)}function o(){return"undefined"==typeof document?0:Math.max(document.documentElement.clientHeight,window.innerHeight||0)}e.default=s.a.extend({data:function(){return{clientHeight:o(),clientWidth:r(),resizeTimeout:void 0}},computed:{breakpoint:function(){var t,e=this.clientWidth<600,n=this.clientWidth<960&&!e,i=this.clientWidth<1264&&!(n||e),s=this.clientWidth<1904&&!(i||n||e),r=this.clientWidth>=1904,o=e,a=n,c=(e||n)&&!(i||s||r),l=!e&&(n||i||s||r),u=i,h=(e||n||i)&&!(s||r),d=!(e||n)&&(i||s||r),f=s,p=(e||n||i||s)&&!r,m=!(e||n||i)&&(s||r),v=r;switch(!0){case e:t="xs";break;case n:t="sm";break;case i:t="md";break;case s:t="lg";break;default:t="xl"}return{xs:e,sm:n,md:i,lg:s,xl:r,name:t,xsOnly:o,smOnly:a,smAndDown:c,smAndUp:l,mdOnly:u,mdAndDown:h,mdAndUp:d,lgOnly:f,lgAndDown:p,lgAndUp:m,xlOnly:v,width:this.clientWidth,height:this.clientHeight}}},created:function(){"undefined"!=typeof window&&window.addEventListener("resize",this.onResize,{passive:!0})},beforeDestroy:function(){"undefined"!=typeof window&&window.removeEventListener("resize",this.onResize)},methods:{onResize:function(){clearTimeout(this.resizeTimeout),this.resizeTimeout=window.setTimeout(this.setDimensions,200)},setDimensions:function(){this.clientHeight=o(),this.clientWidth=r()}}})},"./src/components/Vuetify/mixins/icons.js": -/*!************************************************!*\ - !*** ./src/components/Vuetify/mixins/icons.js ***! - \************************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return s});var i={md:{complete:"check",cancel:"cancel",close:"close",delete:"cancel",clear:"clear",success:"check_circle",info:"info",warning:"priority_high",error:"warning",prev:"chevron_left",next:"chevron_right",checkboxOn:"check_box",checkboxOff:"check_box_outline_blank",checkboxIndeterminate:"indeterminate_check_box",delimiter:"fiber_manual_record",sort:"arrow_upward",expand:"keyboard_arrow_down",menu:"menu",subgroup:"arrow_drop_down",dropdown:"arrow_drop_down",radioOn:"radio_button_checked",radioOff:"radio_button_unchecked",edit:"edit",ratingEmpty:"star_border",ratingFull:"star",ratingHalf:"star_half"},mdi:{complete:"mdi-check",cancel:"mdi-close-circle",close:"mdi-close",delete:"mdi-close-circle",clear:"mdi-close",success:"mdi-check-circle",info:"mdi-information",warning:"mdi-exclamation",error:"mdi-alert",prev:"mdi-chevron-left",next:"mdi-chevron-right",checkboxOn:"mdi-checkbox-marked",checkboxOff:"mdi-checkbox-blank-outline",checkboxIndeterminate:"mdi-minus-box",delimiter:"mdi-circle",sort:"mdi-arrow-up",expand:"mdi-chevron-down",menu:"mdi-menu",subgroup:"mdi-menu-down",dropdown:"mdi-menu-down",radioOn:"mdi-radiobox-marked",radioOff:"mdi-radiobox-blank",edit:"mdi-pencil",ratingEmpty:"mdi-star-outline",ratingFull:"mdi-star",ratingHalf:"mdi-star-half"},fa:{complete:"fas fa-check",cancel:"fas fa-times-circle",close:"fas fa-times",delete:"fas fa-times-circle",clear:"fas fa-times-circle",success:"fas fa-check-circle",info:"fas fa-info-circle",warning:"fas fa-exclamation",error:"fas fa-exclamation-triangle",prev:"fas fa-chevron-left",next:"fas fa-chevron-right",checkboxOn:"fas fa-check-square",checkboxOff:"far fa-square",checkboxIndeterminate:"fas fa-minus-square",delimiter:"fas fa-circle",sort:"fas fa-sort-up",expand:"fas fa-chevron-down",menu:"fas fa-bars",subgroup:"fas fa-caret-down",dropdown:"fas fa-caret-down",radioOn:"far fa-dot-circle",radioOff:"far fa-circle",edit:"fas fa-edit",ratingEmpty:"far fa-star",ratingFull:"fas fa-star",ratingHalf:"fas fa-star-half"},fa4:{complete:"fa fa-check",cancel:"fa fa-times-circle",close:"fa fa-times",delete:"fa fa-times-circle",clear:"fa fa-times-circle",success:"fa fa-check-circle",info:"fa fa-info-circle",warning:"fa fa-exclamation",error:"fa fa-exclamation-triangle",prev:"fa fa-chevron-left",next:"fa fa-chevron-right",checkboxOn:"fa fa-check-square",checkboxOff:"fa fa-square-o",checkboxIndeterminate:"fa fa-minus-square",delimiter:"fa fa-circle",sort:"fa fa-sort-up",expand:"fa fa-chevron-down",menu:"fa fa-bars",subgroup:"fa fa-caret-down",dropdown:"fa fa-caret-down",radioOn:"fa fa-dot-circle",radioOff:"fa fa-circle-o",edit:"fa fa-pencil",ratingEmpty:"fa fa-star-o",ratingFull:"fa fa-star",ratingHalf:"fa fa-star-half-o"}};function s(t,e){return void 0===t&&(t="md"),void 0===e&&(e={}),Object.assign({},i[t]||i.md,e)}},"./src/components/Vuetify/mixins/lang.ts": -/*!***********************************************!*\ - !*** ./src/components/Vuetify/mixins/lang.ts ***! - \***********************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return u});var i=n(/*! ../../../locale/en */"./src/locale/en.ts"),s=n(/*! ../../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ../../../util/console */"./src/util/console.ts"),o=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},a=function(){for(var t=[],e=0;e=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}};function s(){return!1}function r(t,e,n){n.args=n.args||{};var r=n.args.closeConditional||s;if(t&&!1!==r(t)&&!("isTrusted"in t&&!t.isTrusted||"pointerType"in t&&!t.pointerType)){var a=(n.args.include||function(){return[]})();a.push(e),!function(t,e){var n,s,r=t.clientX,a=t.clientY;try{for(var c=i(e),l=c.next();!l.done;l=c.next()){var u=l.value;if(o(u,r,a))return!0}}catch(t){n={error:t}}finally{try{l&&!l.done&&(s=c.return)&&s.call(c)}finally{if(n)throw n.error}}return!1}(t,a)&&setTimeout(function(){r(t)&&n.value(t)},0)}}function o(t,e,n){var i=t.getBoundingClientRect();return e>=i.left&&e<=i.right&&n>=i.top&&n<=i.bottom}e.default={inserted:function(t,e){var n=function(n){return r(n,t,e)};(document.querySelector("[data-app]")||document.body).addEventListener("click",n,!0),t._clickOutside=n},unbind:function(t){if(t._clickOutside){var e=document.querySelector("[data-app]")||document.body;e&&e.removeEventListener("click",t._clickOutside,!0),delete t._clickOutside}}}},"./src/directives/index.ts": -/*!*********************************!*\ - !*** ./src/directives/index.ts ***! - \*********************************/ -/*! exports provided: ClickOutside, Ripple, Resize, Scroll, Touch */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./click-outside */"./src/directives/click-outside.ts");n.d(e,"ClickOutside",function(){return i.default});var s=n(/*! ./resize */"./src/directives/resize.ts");n.d(e,"Resize",function(){return s.default});var r=n(/*! ./ripple */"./src/directives/ripple.ts");n.d(e,"Ripple",function(){return r.default});var o=n(/*! ./scroll */"./src/directives/scroll.ts");n.d(e,"Scroll",function(){return o.default});var a=n(/*! ./touch */"./src/directives/touch.ts");n.d(e,"Touch",function(){return a.default})},"./src/directives/resize.ts": -/*!**********************************!*\ - !*** ./src/directives/resize.ts ***! - \**********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={inserted:function(t,e){var n=e.value,i=e.options||{passive:!0};window.addEventListener("resize",n,i),t._onResize={callback:n,options:i},e.modifiers&&e.modifiers.quiet||n()},unbind:function(t){if(t._onResize){var e=t._onResize,n=e.callback,i=e.options;window.removeEventListener("resize",n,i),delete t._onResize}}}},"./src/directives/ripple.ts": -/*!**********************************!*\ - !*** ./src/directives/ripple.ts ***! - \**********************************/ -/*! exports provided: default */function(t,e,n){"use strict";function i(t,e){t.style.transform=e,t.style.webkitTransform=e}n.r(e);var s={show:function(t,e,n){if(void 0===n&&(n={}),e._ripple&&e._ripple.enabled){var s=document.createElement("span"),r=document.createElement("span");s.appendChild(r),s.className="v-ripple__container",n.class&&(s.className+=" "+n.class);var o=Math.min(e.clientWidth,e.clientHeight)*(n.center?1:e.clientWidth/e.clientHeight*1.6),a=o/2;r.className="v-ripple__animation",r.style.width=o+"px",r.style.height=o+"px",e.appendChild(s);var c=window.getComputedStyle(e);"absolute"!==c.position&&"fixed"!==c.position&&(e.style.position="relative");var l=e.getBoundingClientRect(),u=n.center?0:t.clientX-l.left-a,h=n.center?0:t.clientY-l.top-a;r.classList.add("v-ripple__animation--enter"),r.classList.add("v-ripple__animation--visible"),i(r,"translate("+u+"px, "+h+"px) scale3d(0.5, 0.5, 0.5)"),r.dataset.activated=String(performance.now()),setTimeout(function(){r.classList.remove("v-ripple__animation--enter"),i(r,"translate("+u+"px, "+h+"px) scale3d(1, 1, 1)")},0)}},hide:function(t){if(t&&t._ripple&&t._ripple.enabled){var e=t.getElementsByClassName("v-ripple__animation");if(0!==e.length){var n=e[e.length-1];if(!n.dataset.isHiding){n.dataset.isHiding="true";var i=performance.now()-Number(n.dataset.activated),s=Math.max(300-i,0);setTimeout(function(){n.classList.remove("v-ripple__animation--visible"),setTimeout(function(){0===t.getElementsByClassName("v-ripple__animation").length&&(t.style.position=null),n.parentNode&&t.removeChild(n.parentNode)},300)},s)}}}}};function r(t){return void 0===t||!!t}function o(t){var e={},n=t.currentTarget;n&&(e.center=n._ripple.centered,n._ripple.class&&(e.class=n._ripple.class),s.show(t,n,e))}function a(t){s.hide(t.currentTarget)}function c(t,e,n){var i=r(e.value);i||s.hide(t),t._ripple=t._ripple||{},t._ripple.enabled=i;var c=e.value||{};c.center&&(t._ripple.centered=!0),c.class&&(t._ripple.class=e.value.class),i&&!n?("ontouchstart"in window&&(t.addEventListener("touchend",a,!1),t.addEventListener("touchcancel",a,!1)),t.addEventListener("mousedown",o,!1),t.addEventListener("mouseup",a,!1),t.addEventListener("mouseleave",a,!1),t.addEventListener("dragstart",a,!1)):!i&&n&&l(t)}function l(t){t.removeEventListener("mousedown",o,!1),t.removeEventListener("touchend",a,!1),t.removeEventListener("touchcancel",a,!1),t.removeEventListener("mouseup",a,!1),t.removeEventListener("mouseleave",a,!1),t.removeEventListener("dragstart",a,!1)}e.default={bind:function(t,e){c(t,e,!1)},unbind:function(t){delete t._ripple,l(t)},update:function(t,e){e.value!==e.oldValue&&c(t,e,r(e.oldValue))}}},"./src/directives/scroll.ts": -/*!**********************************!*\ - !*** ./src/directives/scroll.ts ***! - \**********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={inserted:function(t,e){var n=e.value,i=e.options||{passive:!0},s=e.arg?document.querySelector(e.arg):window;s&&(s.addEventListener("scroll",n,i),t._onScroll={callback:n,options:i,target:s})},unbind:function(t){if(t._onScroll){var e=t._onScroll,n=e.callback,i=e.options;e.target.removeEventListener("scroll",n,i),delete t._onScroll}}}},"./src/directives/touch.ts": -/*!*********************************!*\ - !*** ./src/directives/touch.ts ***! - \*********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../util/helpers */"./src/util/helpers.ts"),s=function(t){var e=t.touchstartX,n=t.touchendX,i=t.touchstartY,s=t.touchendY;t.offsetX=n-e,t.offsetY=s-i,Math.abs(t.offsetY)<.5*Math.abs(t.offsetX)&&(t.left&&ne+16&&t.right(t)),Math.abs(t.offsetX)<.5*Math.abs(t.offsetY)&&(t.up&&si+16&&t.down(t))};function r(t){var e={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:t.left,right:t.right,up:t.up,down:t.down,start:t.start,move:t.move,end:t.end};return{touchstart:function(t){return function(t,e){var n=t.changedTouches[0];e.touchstartX=n.clientX,e.touchstartY=n.clientY,e.start&&e.start(Object.assign(t,e))}(t,e)},touchend:function(t){return function(t,e){var n=t.changedTouches[0];e.touchendX=n.clientX,e.touchendY=n.clientY,e.end&&e.end(Object.assign(t,e)),s(e)}(t,e)},touchmove:function(t){return function(t,e){var n=t.changedTouches[0];e.touchmoveX=n.clientX,e.touchmoveY=n.clientY,e.move&&e.move(Object.assign(t,e))}(t,e)}}}e.default={inserted:function(t,e,n){var s=e.value,o=s.parent?t.parentElement:t,a=s.options||{passive:!0};if(o){var c=r(e.value);o._touchHandlers=Object(o._touchHandlers),o._touchHandlers[n.context._uid]=c,Object(i.keys)(c).forEach(function(t){o.addEventListener(t,c[t],a)})}},unbind:function(t,e,n){var s=e.value.parent?t.parentElement:t;if(s&&s._touchHandlers){var r=s._touchHandlers[n.context._uid];Object(i.keys)(r).forEach(function(t){s.removeEventListener(t,r[t])}),delete s._touchHandlers[n.context._uid]}}}},"./src/index.ts": -/*!**********************!*\ - !*** ./src/index.ts ***! - \**********************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ./stylus/app.styl */"./src/stylus/app.styl");var i=n(/*! ./components/Vuetify */"./src/components/Vuetify/index.ts"),s=n(/*! ./components */"./src/components/index.js"),r=n(/*! ./directives */"./src/directives/index.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)},register:function(t){var e=this.buttons.length;this.buttons.push(t),this.listeners.push(this.updateValue.bind(this,e)),t.$on("click",this.listeners[e])},unregister:function(t){if(this.isDestroying){var e=this.buttons.indexOf(t);-1!==e&&t.$off("click",this.listeners[e])}else this.redoRegistrations(t)},redoRegistrations:function(t){for(var e=0,n=[],i=0;i0),this.updateAllValues&&this.updateAllValues()},ensureMandatoryInvariant:function(t){this.mandatory&&!t&&(this.listeners.length?this.listeners[0]():Object(r.consoleWarn)("There must be at least one v-btn child if the mandatory property is true.",this))}}})},"./src/mixins/colorable.ts": -/*!*********************************!*\ - !*** ./src/mixins/colorable.ts ***! - \*********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};function a(t){return!!t&&!!t.match(/^(#|(rgb|hsl)a?\()/)}e.default=s.a.extend({name:"colorable",props:{color:String},methods:{setBackgroundColor:function(t,e){var n;return void 0===e&&(e={}),a(t)?e.style=r({},e.style,{"background-color":""+t,"border-color":""+t}):t&&(e.class=r({},e.class,((n={})[t]=!0,n))),e},setTextColor:function(t,e){var n;if(void 0===e&&(e={}),a(t))e.style=r({},e.style,{color:""+t,"caret-color":""+t});else if(t){var i=o(t.toString().trim().split(" ",2),2),s=i[0],c=i[1];e.class=r({},e.class,((n={})[s+"--text"]=!0,n)),c&&(e.class["text--"+c]=!0)}return e}}})},"./src/mixins/comparable.ts": -/*!**********************************!*\ - !*** ./src/mixins/comparable.ts ***! - \**********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../util/helpers */"./src/util/helpers.ts");e.default=s.a.extend({name:"comparable",props:{valueComparator:{type:Function,default:r.deepEqual}}})},"./src/mixins/data-iterable.js": -/*!*************************************!*\ - !*** ./src/mixins/data-iterable.js ***! - \*************************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../components/VBtn */"./src/components/VBtn/index.ts"),s=n(/*! ../components/VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../components/VSelect */"./src/components/VSelect/index.js"),o=n(/*! ./filterable */"./src/mixins/filterable.js"),a=n(/*! ./themeable */"./src/mixins/themeable.ts"),c=n(/*! ./loadable */"./src/mixins/loadable.ts"),l=n(/*! ../util/helpers */"./src/util/helpers.ts"),u=n(/*! ../util/console */"./src/util/console.ts"),h=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},d=function(){for(var t=[],e=0;e(a=r[1])?1:o0},hasSelectAll:function(){return void 0!==this.selectAll&&!1!==this.selectAll},itemsLength:function(){return this.hasSearch?this.searchLength:this.totalItems||this.items.length},indeterminate:function(){return this.hasSelectAll&&this.someItems&&!this.everyItem},everyItem:function(){var t=this;return this.filteredItems.length&&this.filteredItems.every(function(e){return t.isSelected(e)})},someItems:function(){var t=this;return this.filteredItems.some(function(e){return t.isSelected(e)})},getPage:function(){var t=this.computedPagination.rowsPerPage;return t===Object(t)?t.value:t},pageStart:function(){return-1===this.getPage?0:(this.computedPagination.page-1)*this.getPage},pageStop:function(){return-1===this.getPage?this.itemsLength:this.computedPagination.page*this.getPage},filteredItems:function(){return this.filteredItemsImpl()},selected:function(){for(var t={},e=0;e=this.itemsLength||this.pageStop<0;return this.$createElement(i.default,{props:{disabled:n,icon:!0,flat:!0},on:{click:function(){var e=t.computedPagination.page;t.updatePagination({page:e+1})}},attrs:{"aria-label":this.$vuetify.t("$vuetify.dataIterator.nextPage")}},[this.$createElement(s.default,this.$vuetify.rtl?this.prevIcon:this.nextIcon)])},genSelect:function(){var t=this;return this.$createElement("div",{class:this.actionsSelectClasses},[this.$vuetify.t(this.rowsPerPageText),this.$createElement(r.default,{attrs:{"aria-label":this.$vuetify.t(this.rowsPerPageText)},props:{items:this.computedRowsPerPageItems,value:this.computedPagination.rowsPerPage,hideDetails:!0,menuProps:{auto:!0,minWidth:"75px"}},on:{input:function(e){t.updatePagination({page:1,rowsPerPage:e})}}})])},genPagination:function(){var t="–";if(this.itemsLength){var e=this.itemsLength1?this.genSelect():null,t,this.$slots["actions-append"]?this.$createElement("div",{},this.$slots["actions-append"]):null])]}}}},"./src/mixins/delayable.ts": -/*!*********************************!*\ - !*** ./src/mixins/delayable.ts ***! - \*********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i);e.default=s.a.extend({name:"delayable",props:{openDelay:{type:[Number,String],default:0},closeDelay:{type:[Number,String],default:200}},data:function(){return{openTimeout:void 0,closeTimeout:void 0}},methods:{clearDelay:function(){clearTimeout(this.openTimeout),clearTimeout(this.closeTimeout)},runDelay:function(t,e){this.clearDelay();var n=parseInt(this[t+"Delay"],10);this[t+"Timeout"]=setTimeout(e,n)}}})},"./src/mixins/dependent.js": -/*!*********************************!*\ - !*** ./src/mixins/dependent.js ***! - \*********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},s=function(){for(var t=[],e=0;e0&&(t=n-i-(n>600?30:12)),t<0&&(t=12),t},calcYOverflow:function(t){var e=this.getInnerHeight(),n=this.pageYOffset+e,i=this.dimensions.activator,s=this.dimensions.content.height,r=ns?t=this.pageYOffset+(i.top-s):r&&!this.allowOverflow?t=n-s-12:t0?this.$refs.activator.children[0]:this.$refs.activator},getInnerHeight:function(){return this.hasWindow?window.innerHeight||document.documentElement.clientHeight:0},getInnerWidth:function(){return this.hasWindow?window.innerWidth:0},getOffsetTop:function(){return this.hasWindow?window.pageYOffset||document.documentElement.scrollTop:0},getRoundedBoundedClientRect:function(t){var e=t.getBoundingClientRect();return{top:Math.round(e.top),left:Math.round(e.left),bottom:Math.round(e.bottom),right:Math.round(e.right),width:Math.round(e.width),height:Math.round(e.height)}},measure:function(t,e){if(!(t=e?t.querySelector(e):t)||!this.hasWindow)return null;var n=this.getRoundedBoundedClientRect(t);if(this.isAttached){var i=window.getComputedStyle(t);n.left=parseInt(i.marginLeft),n.top=parseInt(i.marginTop)}return n},sneakPeek:function(t){var e=this;requestAnimationFrame(function(){var n=e.$refs.content;if(!n||e.isShown(n))return t();n.style.display="inline-block",t(),n.style.display="none"})},startTransition:function(){var t=this;requestAnimationFrame(function(){return t.isContentActive=!0})},isShown:function(t){return"none"!==t.style.display},updateDimensions:function(){var t=this;this.checkForWindow(),this.checkForPageYOffset();var e={};e.activator=!this.hasActivator||this.absolute?this.absolutePosition():this.measure(this.getActivator()),this.sneakPeek(function(){e.content=t.measure(t.$refs.content),t.dimensions=e})}}})},"./src/mixins/overlayable.js": -/*!***********************************!*\ - !*** ./src/mixins/overlayable.js ***! - \***********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../stylus/components/_overlay.styl */"./src/stylus/components/_overlay.styl");var i=n(/*! ../util/helpers */"./src/util/helpers.ts");e.default={name:"overlayable",props:{hideOverlay:Boolean},data:function(){return{overlay:null,overlayOffset:0,overlayTimeout:null,overlayTransitionDuration:650}},beforeDestroy:function(){this.removeOverlay()},methods:{genOverlay:function(){var t=this;if(!this.isActive||this.hideOverlay||this.isActive&&this.overlayTimeout||this.overlay)return clearTimeout(this.overlayTimeout),this.overlay&&this.overlay.classList.add("v-overlay--active");this.overlay=document.createElement("div"),this.overlay.className="v-overlay",this.absolute&&(this.overlay.className+=" v-overlay--absolute"),this.hideScroll();var e=this.absolute?this.$el.parentNode:document.querySelector("[data-app]");return e&&e.insertBefore(this.overlay,e.firstChild),this.overlay.clientHeight,requestAnimationFrame(function(){t.overlay&&(t.overlay.className+=" v-overlay--active",void 0!==t.activeZIndex&&(t.overlay.style.zIndex=t.activeZIndex-1))}),!0},removeOverlay:function(){var t=this;if(!this.overlay)return this.showScroll();this.overlay.classList.remove("v-overlay--active"),this.overlayTimeout=setTimeout(function(){try{t.overlay&&t.overlay.parentNode&&t.overlay.parentNode.removeChild(t.overlay),t.overlay=null,t.showScroll()}catch(t){console.log(t)}clearTimeout(t.overlayTimeout),t.overlayTimeout=null},this.overlayTransitionDuration)},scrollListener:function(t){if("keydown"===t.type){if(["INPUT","TEXTAREA","SELECT"].includes(t.target.tagName)||t.target.isContentEditable)return;var e=[i.keyCodes.up,i.keyCodes.pageup],n=[i.keyCodes.down,i.keyCodes.pagedown];if(e.includes(t.keyCode))t.deltaY=-1;else{if(!n.includes(t.keyCode))return;t.deltaY=1}}(t.target===this.overlay||"keydown"!==t.type&&t.target===document.body||this.checkPath(t))&&t.preventDefault()},hasScrollbar:function(t){if(!t||t.nodeType!==Node.ELEMENT_NODE)return!1;var e=window.getComputedStyle(t);return["auto","scroll"].includes(e["overflow-y"])&&t.scrollHeight>t.clientHeight},shouldScroll:function(t,e){return 0===t.scrollTop&&e<0||t.scrollTop+t.clientHeight===t.scrollHeight&&e>0},isInside:function(t,e){return t===e||null!==t&&t!==document.body&&this.isInside(t.parentNode,e)},checkPath:function(t){var e=t.path||this.composedPath(t),n=t.deltaY||-t.wheelDelta;if("keydown"===t.type&&e[0]===document.body){var i=this.$refs.dialog,s=window.getSelection().anchorNode;return!this.hasScrollbar(i)||!this.isInside(s,i)||this.shouldScroll(i,n)}for(var r=0;r0}}},methods:{genPickerTitle:function(){},genPickerBody:function(){},genPickerActionsSlot:function(){return this.$scopedSlots.default?this.$scopedSlots.default({save:this.save,cancel:this.cancel}):this.$slots.default},genPicker:function(t){return this.$createElement(i.default,{staticClass:t,class:this.fullWidth?["v-picker--full-width"]:[],props:{color:this.headerColor||this.color,dark:this.dark,fullWidth:this.fullWidth,landscape:this.landscape,light:this.light,width:this.width}},[this.noTitle?null:this.genPickerTitle(),this.genPickerBody(),this.$createElement("template",{slot:"actions"},[this.genPickerActionsSlot()])])}}}},"./src/mixins/positionable.ts": -/*!************************************!*\ - !*** ./src/mixins/positionable.ts ***! - \************************************/ -/*! exports provided: factory, default */function(t,e,n){"use strict";n.r(e),n.d(e,"factory",function(){return a});var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../util/helpers */"./src/util/helpers.ts"),o={absolute:Boolean,bottom:Boolean,fixed:Boolean,left:Boolean,right:Boolean,top:Boolean};function a(t){return void 0===t&&(t=[]),s.a.extend({name:"positionable",props:t.length?Object(r.filterObjectOnKeys)(o,t):o})}e.default=a()},"./src/mixins/registrable.ts": -/*!***********************************!*\ - !*** ./src/mixins/registrable.ts ***! - \***********************************/ -/*! exports provided: inject, provide */function(t,e,n){"use strict";n.r(e),n.d(e,"inject",function(){return a}),n.d(e,"provide",function(){return c});var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../util/console */"./src/util/console.ts");function o(t,e){return function(){return Object(r.consoleWarn)("The "+t+" component must be used inside a "+e)}}function a(t,e,n){var i,r=e&&n?{register:o(e,n),unregister:o(e,n)}:null;return s.a.extend({name:"registrable-inject",inject:(i={},i[t]={default:r},i)})}function c(t){return s.a.extend({name:"registrable-provide",methods:{register:null,unregister:null},provide:function(){var e;return(e={})[t]={register:this.register,unregister:this.unregister},e}})}},"./src/mixins/returnable.js": -/*!**********************************!*\ - !*** ./src/mixins/returnable.js ***! - \**********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={name:"returnable",props:{returnValue:null},data:function(){return{originalValue:null}},watch:{isActive:function(t){t?this.originalValue=this.returnValue:this.$emit("update:returnValue",this.originalValue)}},methods:{save:function(t){this.originalValue=t,this.isActive=!1}}}},"./src/mixins/rippleable.ts": -/*!**********************************!*\ - !*** ./src/mixins/rippleable.ts ***! - \**********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../directives/ripple */"./src/directives/ripple.ts"),s=n(/*! vue */"vue"),r=n.n(s);e.default=r.a.extend({name:"rippleable",directives:{Ripple:i.default},props:{ripple:{type:[Boolean,Object],default:!0}},methods:{genRipple:function(t){return void 0===t&&(t={}),this.ripple?(t.staticClass="v-input--selection-controls__ripple",t.directives=t.directives||[],t.directives.push({name:"ripple",value:{center:!0}}),t.on=Object.assign({click:this.onChange},this.$listeners),this.$createElement("div",t)):null},onChange:function(){}}})},"./src/mixins/routable.ts": -/*!********************************!*\ - !*** ./src/mixins/routable.ts ***! - \********************************/ -/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../directives/ripple */"./src/directives/ripple.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},r=function(){for(var t=[],e=0;e0||this.errorBucket.length>0||this.error},externalError:function(){return this.internalErrorMessages.length>0||this.error},hasSuccess:function(){return this.successMessages.length>0||this.success},hasMessages:function(){return this.validations.length>0},hasState:function(){return this.hasSuccess||this.shouldValidate&&this.hasError},internalErrorMessages:function(){return this.errorMessages||""},shouldValidate:function(){return this.externalError||!this.isResetting&&(this.validateOnBlur?this.hasFocused&&!this.isFocused:this.hasInput||this.hasFocused)},validations:function(){return this.validationTarget.slice(0,this.errorCount)},validationState:function(){return this.hasError&&this.shouldValidate?"error":this.hasSuccess?"success":this.hasColor?this.color:null},validationTarget:function(){var t=this.internalErrorMessages.length>0?this.errorMessages:this.successMessages.length>0?this.successMessages:this.messages;return Array.isArray(t)?t.length>0?t:this.shouldValidate?this.errorBucket:[]:[t]}},watch:{rules:{handler:function(t,e){Object(i.deepEqual)(t,e)||this.validate()},deep:!0},internalValue:function(){this.hasInput=!0,this.validateOnBlur||this.$nextTick(this.validate)},isFocused:function(t){t||(this.hasFocused=!0,this.validateOnBlur&&this.validate())},isResetting:function(){var t=this;setTimeout(function(){t.hasInput=!1,t.hasFocused=!1,t.isResetting=!1},0)},hasError:function(t){this.shouldValidate&&this.$emit("update:error",t)}},beforeMount:function(){this.validate()},created:function(){this.form&&this.form.register(this)},beforeDestroy:function(){this.form&&this.form.unregister(this)},methods:{reset:function(){this.isResetting=!0,this.internalValue=Array.isArray(this.internalValue)?[]:void 0},resetValidation:function(){this.isResetting=!0},validate:function(t,e){void 0===t&&(t=!1),void 0===e&&(e=this.internalValue);var n=[];t&&(this.hasInput=this.hasFocused=!0);for(var i=0;iMath.pow(i,3)?Math.cbrt(t):t/(3*Math.pow(i,2))+4/29},r=function(t){return t>i?Math.pow(t,3):3*Math.pow(i,2)*(t-4/29)};function o(t){var e=s,n=e(t[1]);return[116*n-16,500*(e(t[0]/.95047)-n),200*(n-e(t[2]/1.08883))]}function a(t){var e=r,n=(t[0]+16)/116;return[.95047*e(n+t[1]/500),e(n),1.08883*e(n-t[2]/200)]}},"./src/util/color/transformSRGB.ts": -/*!*****************************************!*\ - !*** ./src/util/color/transformSRGB.ts ***! - \*****************************************/ -/*! exports provided: fromXYZ, toXYZ */function(t,e,n){"use strict";n.r(e),n.d(e,"fromXYZ",function(){return a}),n.d(e,"toXYZ",function(){return c});var i=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],s=function(t){return t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055},r=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],o=function(t){return t<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)};function a(t){for(var e,n=Array(3),r=s,o=i,a=0;a<3;++a)n[a]=Math.round(255*(e=r(o[a][0]*t[0]+o[a][1]*t[1]+o[a][2]*t[2]),Math.max(0,Math.min(1,e))));return(n[0]<<16)+(n[1]<<8)+(n[2]<<0)}function c(t){for(var e=[0,0,0],n=o,i=r,s=n((t>>16&255)/255),a=n((t>>8&255)/255),c=n((t>>0&255)/255),l=0;l<3;++l)e[l]=i[l][0]*s+i[l][1]*a+i[l][2]*c;return e}},"./src/util/colorUtils.ts": -/*!********************************!*\ - !*** ./src/util/colorUtils.ts ***! - \********************************/ -/*! exports provided: colorToInt, intToHex, colorToHex */function(t,e,n){"use strict";n.r(e),n.d(e,"colorToInt",function(){return s}),n.d(e,"intToHex",function(){return r}),n.d(e,"colorToHex",function(){return o});var i=n(/*! ./console */"./src/util/console.ts");function s(t){var e;if("number"==typeof t)e=t;else{if("string"!=typeof t)throw new TypeError("Colors can only be numbers or strings, recieved "+(null==t?t:t.constructor.name)+" instead");var n="#"===t[0]?t.substring(1):t;3===n.length&&(n=n.split("").map(function(t){return t+t}).join("")),6!==n.length&&Object(i.consoleWarn)("'"+t+"' is not a valid rgb color"),e=parseInt(n,16)}return e<0?(Object(i.consoleWarn)("Colors cannot be negative: '"+t+"'"),e=0):(e>16777215||isNaN(e))&&(Object(i.consoleWarn)("'"+t+"' is not a valid rgb color"),e=16777215),e}function r(t){var e=t.toString(16);return e.length<6&&(e="0".repeat(6-e.length)+e),"#"+e}function o(t){return r(s(t))}},"./src/util/console.ts": -/*!*****************************!*\ - !*** ./src/util/console.ts ***! - \*****************************/ -/*! exports provided: consoleInfo, consoleWarn, consoleError, deprecate */function(t,e,n){"use strict";function i(t,e,n){if(n&&(e={_isVue:!0,$parent:n,$options:e}),e){if(e.$_alreadyWarned=e.$_alreadyWarned||[],e.$_alreadyWarned.includes(t))return;e.$_alreadyWarned.push(t)}return"[Vuetify] "+t+(e?function(t){if(t._isVue&&t.$parent){for(var e=[],n=0;t;){if(e.length>0){var i=e[e.length-1];if(i.constructor===t.constructor){n++,t=t.$parent;continue}n>0&&(e[e.length-1]=[i,n],n=0)}e.push(t),t=t.$parent}return"\n\nfound in\n\n"+e.map(function(t,e){return""+(0===e?"---\x3e ":" ".repeat(5+2*e))+(Array.isArray(t)?u(t[0])+"... ("+t[1]+" recursive calls)":u(t))}).join("\n")}return"\n\n(found in "+u(t)+")"}(e):"")}function s(t,e,n){var s=i(t,e,n);null!=s&&console.info(s)}function r(t,e,n){var s=i(t,e,n);null!=s&&console.warn(s)}function o(t,e,n){var s=i(t,e,n);null!=s&&console.error(s)}function a(t,e,n,i){r("'"+t+"' is deprecated, use '"+e+"' instead",n,i)}n.r(e),n.d(e,"consoleInfo",function(){return s}),n.d(e,"consoleWarn",function(){return r}),n.d(e,"consoleError",function(){return o}),n.d(e,"deprecate",function(){return a});var c=/(?:^|[-_])(\w)/g,l=function(t){return t.replace(c,function(t){return t.toUpperCase()}).replace(/[-_]/g,"")};function u(t,e){if(t.$root===t)return"";var n="function"==typeof t&&null!=t.cid?t.options:t._isVue?t.$options||t.constructor.options:t||{},i=n.name||n._componentTag,s=n.__file;if(!i&&s){var r=s.match(/([^/\\]+)\.vue$/);i=r&&r[1]}return(i?"<"+l(i)+">":"")+(s&&!1!==e?" at "+s:"")}},"./src/util/dedupeModelListeners.ts": -/*!******************************************!*\ - !*** ./src/util/dedupeModelListeners.ts ***! - \******************************************/ -/*! exports provided: default */function(t,e,n){"use strict";function i(t){if(t.model&&t.on&&t.on.input)if(Array.isArray(t.on.input)){var e=t.on.input.indexOf(t.model.callback);e>-1&&t.on.input.splice(e,1)}else delete t.on.input}n.r(e),n.d(e,"default",function(){return i})},"./src/util/easing-patterns.js": -/*!*************************************!*\ - !*** ./src/util/easing-patterns.js ***! - \*************************************/ -/*! exports provided: linear, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeInQuart, easeOutQuart, easeInOutQuart, easeInQuint, easeOutQuint, easeInOutQuint */function(t,e,n){"use strict";n.r(e),n.d(e,"linear",function(){return i}),n.d(e,"easeInQuad",function(){return s}),n.d(e,"easeOutQuad",function(){return r}),n.d(e,"easeInOutQuad",function(){return o}),n.d(e,"easeInCubic",function(){return a}),n.d(e,"easeOutCubic",function(){return c}),n.d(e,"easeInOutCubic",function(){return l}),n.d(e,"easeInQuart",function(){return u}),n.d(e,"easeOutQuart",function(){return h}),n.d(e,"easeInOutQuart",function(){return d}),n.d(e,"easeInQuint",function(){return f}),n.d(e,"easeOutQuint",function(){return p}),n.d(e,"easeInOutQuint",function(){return m});var i=function(t){return t},s=function(t){return t*t},r=function(t){return t*(2-t)},o=function(t){return t<.5?2*t*t:(4-2*t)*t-1},a=function(t){return t*t*t},c=function(t){return--t*t*t+1},l=function(t){return t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},u=function(t){return t*t*t*t},h=function(t){return 1- --t*t*t*t},d=function(t){return t<.5?8*t*t*t*t:1-8*--t*t*t*t},f=function(t){return t*t*t*t*t},p=function(t){return 1+--t*t*t*t*t},m=function(t){return t<.5?16*t*t*t*t*t:1+16*--t*t*t*t*t}},"./src/util/helpers.ts": -/*!*****************************!*\ - !*** ./src/util/helpers.ts ***! - \*****************************/ -/*! exports provided: createSimpleFunctional, createSimpleTransition, createJavaScriptTransition, directiveConfig, addOnceEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, filterChildren, convertToUnit, kebabCase, isObject, keyCodes, remapInternalIcon, keys, camelize */function(t,e,n){"use strict";n.r(e),n.d(e,"createSimpleFunctional",function(){return r}),n.d(e,"createSimpleTransition",function(){return a}),n.d(e,"createJavaScriptTransition",function(){return c}),n.d(e,"directiveConfig",function(){return l}),n.d(e,"addOnceEventListener",function(){return u}),n.d(e,"getNestedValue",function(){return h}),n.d(e,"deepEqual",function(){return d}),n.d(e,"getObjectValueByPath",function(){return f}),n.d(e,"getPropertyFromItem",function(){return p}),n.d(e,"createRange",function(){return m}),n.d(e,"getZIndex",function(){return v}),n.d(e,"escapeHTML",function(){return y}),n.d(e,"filterObjectOnKeys",function(){return b}),n.d(e,"filterChildren",function(){return x}),n.d(e,"convertToUnit",function(){return _}),n.d(e,"kebabCase",function(){return V}),n.d(e,"isObject",function(){return w}),n.d(e,"keyCodes",function(){return S}),n.d(e,"remapInternalIcon",function(){return C}),n.d(e,"keys",function(){return T}),n.d(e,"camelize",function(){return $});var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n":">"};function y(t){return t.replace(/[&<>]/g,function(t){return g[t]||t})}function b(t,e){for(var n={},i=0;i?,./\\ ]/,s=function(t){return t&&i.test(t)},r={"#":{test:function(t){return t.match(/[0-9]/)}},A:{test:function(t){return t.match(/[A-Z]/i)},convert:function(t){return t.toUpperCase()}},a:{test:function(t){return t.match(/[a-z]/i)},convert:function(t){return t.toLowerCase()}},N:{test:function(t){return t.match(/[0-9A-Z]/i)},convert:function(t){return t.toUpperCase()}},n:{test:function(t){return t.match(/[0-9a-z]/i)},convert:function(t){return t.toLowerCase()}},X:{test:s}},o=function(t){return r.hasOwnProperty(t)},a=function(t,e){return r[t].convert?r[t].convert(e):e},c=function(t,e){return!(null==e||!o(t))&&r[t].test(e)},l=function(t,e,n){if(null==t)return"";if(t=String(t),!e.length||!t.length)return t;Array.isArray(e)||(e=e.split(""));for(var i=0,s=0,r="";s0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};function c(t,e){void 0===e&&(e=!1);for(var n=Object.keys(t),s={},r=0;r0;--s)n["lighten"+s]=Object(i.intToHex)(m(e,s));for(s=1;s<=4;++s)n["darken"+s]=Object(i.intToHex)(v(e,s));return n}function m(t,e){var n=r.fromXYZ(s.toXYZ(t));return n[0]=n[0]+10*e,s.fromXYZ(r.toXYZ(n))}function v(t,e){var n=r.fromXYZ(s.toXYZ(t));return n[0]=n[0]-10*e,s.fromXYZ(r.toXYZ(n))}},vue: -/*!******************************************************************************!*\ - !*** external {"commonjs":"vue","commonjs2":"vue","amd":"vue","root":"Vue"} ***! - \******************************************************************************/ -/*! no static exports found */function(e,n){e.exports=t}}).default},t.exports=i(n("/5sW"))},"3Eo+":function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},"4mcu":function(t,e){t.exports=function(){}},"52gC":function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},"5QVw":function(t,e,n){t.exports={default:n("BwfY"),__esModule:!0}},"77Pl":function(t,e,n){var i=n("EqjI");t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},"7KvD":function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},"7UMu":function(t,e,n){var i=n("R9M2");t.exports=Array.isArray||function(t){return"Array"==i(t)}},"8+8L":function(t,e,n){"use strict"; -/*! - * vue-resource v1.5.1 - * https://github.com/pagekit/vue-resource - * Released under the MIT License. - */var i=2;function s(t){this.state=i,this.value=void 0,this.deferred=[];var e=this;try{t(function(t){e.resolve(t)},function(t){e.reject(t)})}catch(t){e.reject(t)}}s.reject=function(t){return new s(function(e,n){n(t)})},s.resolve=function(t){return new s(function(e,n){e(t)})},s.all=function(t){return new s(function(e,n){var i=0,r=[];function o(n){return function(s){r[n]=s,(i+=1)===t.length&&e(r)}}0===t.length&&e(r);for(var a=0;a=200&&s<300,this.status=s||0,this.statusText=r||"",this.headers=new L(i),this.body=t,v(t)?this.bodyText=t:"undefined"!=typeof Blob&&t instanceof Blob&&(this.bodyBlob=t,function(t){return 0===t.type.indexOf("text")||-1!==t.type.indexOf("json")}(t)&&(this.bodyText=function(t){return new o(function(e){var n=new FileReader;n.readAsText(t),n.onload=function(){e(n.result)}})}(t)))};F.prototype.blob=function(){return x(this.bodyBlob)},F.prototype.text=function(){return x(this.bodyText)},F.prototype.json=function(){return x(this.text(),function(t){return JSON.parse(t)})},Object.defineProperty(F.prototype,"data",{get:function(){return this.body},set:function(t){this.body=t}});var N=function(t){var e;this.body=null,this.params={},w(this,t,{method:(e=t.method||"GET",e?e.toUpperCase():"")}),this.headers instanceof L||(this.headers=new L(this.headers))};N.prototype.getUrl=function(){return I(this)},N.prototype.getBody=function(){return this.body},N.prototype.respondWith=function(t,e){return new F(t,w(e||{},{url:this.getUrl()}))};var H={"Content-Type":"application/json;charset=utf-8"};function z(t){var e=this||{},n=function(t){var e=[M],n=[];function i(i){for(;e.length;){var s=e.pop();if(g(s)){var r=void 0,a=void 0;if(y(r=s.call(t,i,function(t){return a=t})||a))return new o(function(e,i){n.forEach(function(e){r=x(r,function(n){return e.call(t,n)||n},i)}),x(r,e,i)},t);g(r)&&n.unshift(r)}else c="Invalid interceptor of type "+typeof s+", must be a function","undefined"!=typeof console&&h&&console.warn("[VueResource warn]: "+c)}var c}return y(t)||(t=null),i.use=function(t){e.push(t)},i}(e.$vm);return function(t){u.call(arguments,1).forEach(function(e){for(var n in e)void 0===t[n]&&(t[n]=e[n])})}(t||{},e.$options,z.options),z.interceptors.forEach(function(t){v(t)&&(t=z.interceptor[t]),g(t)&&n.use(t)}),n(new N(t)).then(function(t){return t.ok?t:o.reject(t)},function(t){var e;return t instanceof Error&&(e=t,"undefined"!=typeof console&&console.error(e)),o.reject(t)})}function W(t,e,n,i){var s=this||{},r={};return V(n=w({},W.actions,n),function(n,o){n=S({url:t,params:w({},e)},i,n),r[o]=function(){return(s.$http||z)(function(t,e){var n,i=w({},t),s={};switch(e.length){case 2:s=e[0],n=e[1];break;case 1:/^(POST|PUT|PATCH)$/i.test(i.method)?n=e[0]:s=e[0];break;case 0:break;default:throw"Expected up to 2 arguments [params, body], got "+e.length+" arguments"}return i.body=n,i.params=w({},i.params,s),i}(n,arguments))}}),r}function U(t){var e,n,i;U.installed||(n=(e=t).config,i=e.nextTick,c=i,h=n.debug||!n.silent,t.url=I,t.http=z,t.resource=W,t.Promise=o,Object.defineProperties(t.prototype,{$url:{get:function(){return _(t.url,this,this.$options.url)}},$http:{get:function(){return _(t.http,this,this.$options.http)}},$resource:{get:function(){return t.resource.bind(this)}},$promise:{get:function(){var e=this;return function(n){return new t.Promise(n,e)}}}}))}z.options={},z.headers={put:H,post:H,patch:H,delete:H,common:{Accept:"application/json, text/plain, */*"},custom:{}},z.interceptor={before:function(t){g(t.before)&&t.before.call(this,t)},method:function(t){t.emulateHTTP&&/^(PUT|PATCH|DELETE)$/i.test(t.method)&&(t.headers.set("X-HTTP-Method-Override",t.method),t.method="POST")},jsonp:function(t){"JSONP"==t.method&&(t.client=D)},json:function(t){var e=t.headers.get("Content-Type")||"";return y(t.body)&&0===e.indexOf("application/json")&&(t.body=JSON.stringify(t.body)),function(t){return t.bodyText?x(t.text(),function(e){var n,i;if(0===(t.headers.get("Content-Type")||"").indexOf("application/json")||(i=(n=e).match(/^\s*(\[|\{)/))&&{"[":/]\s*$/,"{":/}\s*$/}[i[1]].test(n))try{t.body=JSON.parse(e)}catch(e){t.body=null}else t.body=e;return t}):t}},form:function(t){var e;e=t.body,"undefined"!=typeof FormData&&e instanceof FormData?t.headers.delete("Content-Type"):y(t.body)&&t.emulateJSON&&(t.body=I.params(t.body),t.headers.set("Content-Type","application/x-www-form-urlencoded"))},header:function(t){V(w({},z.headers.common,t.crossOrigin?{}:z.headers.custom,z.headers[p(t.method)]),function(e,n){t.headers.has(n)||t.headers.set(n,e)})},cors:function(t){if(d){var e=I.parse(location.href),n=I.parse(t.getUrl());n.protocol===e.protocol&&n.host===e.host||(t.crossOrigin=!0,t.emulateHTTP=!1,P||(t.client=A))}}},z.interceptors=["before","method","jsonp","json","form","header","cors"],["get","delete","head","jsonp"].forEach(function(t){z[t]=function(e,n){return this(w(n||{},{url:e,method:t}))}}),["post","put","patch"].forEach(function(t){z[t]=function(e,n,i){return this(w(i||{},{url:e,method:t,body:n}))}}),W.actions={get:{method:"GET"},save:{method:"POST"},query:{method:"GET"},update:{method:"PUT"},remove:{method:"DELETE"},delete:{method:"DELETE"}},"undefined"!=typeof window&&window.Vue&&window.Vue.use(U),e.a=U},"880/":function(t,e,n){t.exports=n("hJx8")},"94VQ":function(t,e,n){"use strict";var i=n("Yobk"),s=n("X8DO"),r=n("e6n0"),o={};n("hJx8")(o,n("dSzd")("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(o,{next:s(1,n)}),r(t,e+" Iterator")}},BwfY:function(t,e,n){n("fWfb"),n("M6a0"),n("OYls"),n("QWe/"),t.exports=n("FeBl").Symbol},Cdx3:function(t,e,n){var i=n("sB3e"),s=n("lktj");n("uqUo")("keys",function(){return function(t){return s(i(t))}})},D2L2:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},DuR2:function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},EGZi:function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},EqjI:function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},FeBl:function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},Ibhu:function(t,e,n){var i=n("D2L2"),s=n("TcQ7"),r=n("vFc/")(!1),o=n("ax3d")("IE_PROTO");t.exports=function(t,e){var n,a=s(t),c=0,l=[];for(n in a)n!=o&&i(a,n)&&l.push(n);for(;e.length>c;)i(a,n=e[c++])&&(~r(l,n)||l.push(n));return l}},Kh4W:function(t,e,n){e.f=n("dSzd")},LKZe:function(t,e,n){var i=n("NpIQ"),s=n("X8DO"),r=n("TcQ7"),o=n("MmMw"),a=n("D2L2"),c=n("SfB7"),l=Object.getOwnPropertyDescriptor;e.f=n("+E39")?l:function(t,e){if(t=r(t),e=o(e,!0),c)try{return l(t,e)}catch(t){}if(a(t,e))return s(!i.f.call(t,e),t[e])}},M6a0:function(t,e){},MU5D:function(t,e,n){var i=n("R9M2");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},MmMw:function(t,e,n){var i=n("EqjI");t.exports=function(t,e){if(!i(t))return t;var n,s;if(e&&"function"==typeof(n=t.toString)&&!i(s=n.call(t)))return s;if("function"==typeof(n=t.valueOf)&&!i(s=n.call(t)))return s;if(!e&&"function"==typeof(n=t.toString)&&!i(s=n.call(t)))return s;throw TypeError("Can't convert object to primitive value")}},NpIQ:function(t,e){e.f={}.propertyIsEnumerable},O4g8:function(t,e){t.exports=!0},ON07:function(t,e,n){var i=n("EqjI"),s=n("7KvD").document,r=i(s)&&i(s.createElement);t.exports=function(t){return r?s.createElement(t):{}}},OYls:function(t,e,n){n("crlp")("asyncIterator")},PzxK:function(t,e,n){var i=n("D2L2"),s=n("sB3e"),r=n("ax3d")("IE_PROTO"),o=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=s(t),i(t,r)?t[r]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?o:null}},QRG4:function(t,e,n){var i=n("UuGF"),s=Math.min;t.exports=function(t){return t>0?s(i(t),9007199254740991):0}},"QWe/":function(t,e,n){n("crlp")("observable")},R9M2:function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},RPLV:function(t,e,n){var i=n("7KvD").document;t.exports=i&&i.documentElement},Rrel:function(t,e,n){var i=n("TcQ7"),s=n("n0T6").f,r={}.toString,o="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return o&&"[object Window]"==r.call(t)?function(t){try{return s(t)}catch(t){return o.slice()}}(t):s(i(t))}},S82l:function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},SfB7:function(t,e,n){t.exports=!n("+E39")&&!n("S82l")(function(){return 7!=Object.defineProperty(n("ON07")("div"),"a",{get:function(){return 7}}).a})},TcQ7:function(t,e,n){var i=n("MU5D"),s=n("52gC");t.exports=function(t){return i(s(t))}},UuGF:function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},"VU/8":function(t,e){t.exports=function(t,e,n,i,s,r){var o,a=t=t||{},c=typeof t.default;"object"!==c&&"function"!==c||(o=t,a=t.default);var l,u="function"==typeof a?a.options:a;if(e&&(u.render=e.render,u.staticRenderFns=e.staticRenderFns,u._compiled=!0),n&&(u.functional=!0),s&&(u._scopeId=s),r?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(r)},u._ssrRegister=l):i&&(l=i),l){var h=u.functional,d=h?u.render:u.beforeCreate;h?(u._injectStyles=l,u.render=function(t,e){return l.call(e),d(t,e)}):u.beforeCreate=d?[].concat(d,l):[l]}return{esModule:o,exports:a,options:u}}},X8DO:function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},Xc4G:function(t,e,n){var i=n("lktj"),s=n("1kS7"),r=n("NpIQ");t.exports=function(t){var e=i(t),n=s.f;if(n)for(var o,a=n(t),c=r.f,l=0;a.length>l;)c.call(t,o=a[l++])&&e.push(o);return e}},Yobk:function(t,e,n){var i=n("77Pl"),s=n("qio6"),r=n("xnc9"),o=n("ax3d")("IE_PROTO"),a=function(){},c=function(){var t,e=n("ON07")("iframe"),i=r.length;for(e.style.display="none",n("RPLV").appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write(" + + + diff --git a/web_test/web_test_dev/src/assets/dataTest/csvjson.json b/web_test/web_test_dev/src/assets/dataTest/csvjson.json new file mode 100644 index 0000000..52dcc80 --- /dev/null +++ b/web_test/web_test_dev/src/assets/dataTest/csvjson.json @@ -0,0 +1,569 @@ +[ + { + "Date": "2018-06-18", + "Open": 275.48999, + "High": 276.700012, + "Low": 274.950012, + "Close": 276.559998, + "Adj Close": 276.559998, + "Volume": 52917600 + }, + { + "Date": "2018-06-19", + "Open": 274, + "High": 275.75, + "Low": 273.529999, + "Close": 275.5, + "Adj Close": 275.5, + "Volume": 97531500 + }, + { + "Date": "2018-06-20", + "Open": 276.269989, + "High": 276.720001, + "Low": 275.589996, + "Close": 275.970001, + "Adj Close": 275.970001, + "Volume": 53785500 + }, + { + "Date": "2018-06-21", + "Open": 275.959991, + "High": 275.980011, + "Low": 273.679993, + "Close": 274.23999, + "Adj Close": 274.23999, + "Volume": 71061400 + }, + { + "Date": "2018-06-22", + "Open": 275.660004, + "High": 275.790009, + "Low": 274.48999, + "Close": 274.73999, + "Adj Close": 274.73999, + "Volume": 54898500 + }, + { + "Date": "2018-06-25", + "Open": 273.440002, + "High": 273.619995, + "Low": 269.100006, + "Close": 271, + "Adj Close": 271, + "Volume": 137854200 + }, + { + "Date": "2018-06-26", + "Open": 271.640015, + "High": 272.559998, + "Low": 270.790009, + "Close": 271.600006, + "Adj Close": 271.600006, + "Volume": 68547400 + }, + { + "Date": "2018-06-27", + "Open": 272.26001, + "High": 273.869995, + "Low": 269.179993, + "Close": 269.350006, + "Adj Close": 269.350006, + "Volume": 105110700 + }, + { + "Date": "2018-06-28", + "Open": 269.290009, + "High": 271.75, + "Low": 268.48999, + "Close": 270.890015, + "Adj Close": 270.890015, + "Volume": 76650500 + }, + { + "Date": "2018-06-29", + "Open": 272.119995, + "High": 273.660004, + "Low": 271.149994, + "Close": 271.279999, + "Adj Close": 271.279999, + "Volume": 97592500 + }, + { + "Date": "2018-07-02", + "Open": 269.51001, + "High": 272.040009, + "Low": 269.23999, + "Close": 271.859985, + "Adj Close": 271.859985, + "Volume": 63554800 + }, + { + "Date": "2018-07-03", + "Open": 272.869995, + "High": 272.980011, + "Low": 270.420013, + "Close": 270.899994, + "Adj Close": 270.899994, + "Volume": 42187100 + }, + { + "Date": "2018-07-05", + "Open": 272.170013, + "High": 273.179993, + "Low": 270.959991, + "Close": 273.109985, + "Adj Close": 273.109985, + "Volume": 56925900 + }, + { + "Date": "2018-07-06", + "Open": 273.140015, + "High": 275.839996, + "Low": 272.709991, + "Close": 275.420013, + "Adj Close": 275.420013, + "Volume": 66493700 + }, + { + "Date": "2018-07-09", + "Open": 276.549988, + "High": 277.959991, + "Low": 276.5, + "Close": 277.899994, + "Adj Close": 277.899994, + "Volume": 50550400 + }, + { + "Date": "2018-07-10", + "Open": 278.410004, + "High": 279.01001, + "Low": 278.079987, + "Close": 278.899994, + "Adj Close": 278.899994, + "Volume": 51966800 + }, + { + "Date": "2018-07-11", + "Open": 277.149994, + "High": 278.040009, + "Low": 276.519989, + "Close": 276.859985, + "Adj Close": 276.859985, + "Volume": 77054700 + }, + { + "Date": "2018-07-12", + "Open": 278.279999, + "High": 279.429993, + "Low": 277.600006, + "Close": 279.369995, + "Adj Close": 279.369995, + "Volume": 60124700 + }, + { + "Date": "2018-07-13", + "Open": 279.170013, + "High": 279.929993, + "Low": 278.660004, + "Close": 279.589996, + "Adj Close": 279.589996, + "Volume": 48216000 + }, + { + "Date": "2018-07-16", + "Open": 279.640015, + "High": 279.799988, + "Low": 278.839996, + "Close": 279.339996, + "Adj Close": 279.339996, + "Volume": 48201000 + }, + { + "Date": "2018-07-17", + "Open": 278.470001, + "High": 280.910004, + "Low": 278.410004, + "Close": 280.470001, + "Adj Close": 280.470001, + "Volume": 52315500 + }, + { + "Date": "2018-07-18", + "Open": 280.559998, + "High": 281.179993, + "Low": 280.059998, + "Close": 281.059998, + "Adj Close": 281.059998, + "Volume": 44593500 + }, + { + "Date": "2018-07-19", + "Open": 280.309998, + "High": 280.73999, + "Low": 279.459991, + "Close": 280, + "Adj Close": 280, + "Volume": 61412100 + }, + { + "Date": "2018-07-20", + "Open": 279.769989, + "High": 280.480011, + "Low": 279.5, + "Close": 279.679993, + "Adj Close": 279.679993, + "Volume": 82337700 + }, + { + "Date": "2018-07-23", + "Open": 279.450012, + "High": 280.429993, + "Low": 279.059998, + "Close": 280.200012, + "Adj Close": 280.200012, + "Volume": 47047600 + }, + { + "Date": "2018-07-24", + "Open": 281.790009, + "High": 282.559998, + "Low": 280.630005, + "Close": 281.609985, + "Adj Close": 281.609985, + "Volume": 68026900 + }, + { + "Date": "2018-07-25", + "Open": 281.329987, + "High": 284.369995, + "Low": 281.279999, + "Close": 284.01001, + "Adj Close": 284.01001, + "Volume": 78882900 + }, + { + "Date": "2018-07-26", + "Open": 283.200012, + "High": 284.109985, + "Low": 283.089996, + "Close": 283.339996, + "Adj Close": 283.339996, + "Volume": 57919500 + }, + { + "Date": "2018-07-27", + "Open": 283.709991, + "High": 283.820007, + "Low": 280.380005, + "Close": 281.420013, + "Adj Close": 281.420013, + "Volume": 76768700 + }, + { + "Date": "2018-07-30", + "Open": 281.51001, + "High": 281.690002, + "Low": 279.359985, + "Close": 279.950012, + "Adj Close": 279.950012, + "Volume": 63742500 + }, + { + "Date": "2018-07-31", + "Open": 280.809998, + "High": 282.019989, + "Low": 280.380005, + "Close": 281.329987, + "Adj Close": 281.329987, + "Volume": 68570500 + }, + { + "Date": "2018-08-01", + "Open": 281.559998, + "High": 282.130005, + "Low": 280.130005, + "Close": 280.859985, + "Adj Close": 280.859985, + "Volume": 53853300 + }, + { + "Date": "2018-08-02", + "Open": 279.390015, + "High": 282.579987, + "Low": 279.160004, + "Close": 282.390015, + "Adj Close": 282.390015, + "Volume": 63426400 + }, + { + "Date": "2018-08-03", + "Open": 282.529999, + "High": 283.660004, + "Low": 282.329987, + "Close": 283.600006, + "Adj Close": 283.600006, + "Volume": 53935400 + }, + { + "Date": "2018-08-06", + "Open": 283.640015, + "High": 284.98999, + "Low": 283.200012, + "Close": 284.640015, + "Adj Close": 284.640015, + "Volume": 39400900 + }, + { + "Date": "2018-08-07", + "Open": 285.390015, + "High": 286.01001, + "Low": 285.23999, + "Close": 285.579987, + "Adj Close": 285.579987, + "Volume": 43196600 + }, + { + "Date": "2018-08-08", + "Open": 285.390015, + "High": 285.910004, + "Low": 284.940002, + "Close": 285.459991, + "Adj Close": 285.459991, + "Volume": 42114600 + }, + { + "Date": "2018-08-09", + "Open": 285.529999, + "High": 285.970001, + "Low": 284.920013, + "Close": 285.070007, + "Adj Close": 285.070007, + "Volume": 35652400 + }, + { + "Date": "2018-08-10", + "Open": 283.450012, + "High": 284.059998, + "Low": 282.359985, + "Close": 283.160004, + "Adj Close": 283.160004, + "Volume": 77076000 + }, + { + "Date": "2018-08-13", + "Open": 283.470001, + "High": 284.160004, + "Low": 281.769989, + "Close": 282.100006, + "Adj Close": 282.100006, + "Volume": 65686900 + }, + { + "Date": "2018-08-14", + "Open": 282.920013, + "High": 284.170013, + "Low": 282.480011, + "Close": 283.899994, + "Adj Close": 283.899994, + "Volume": 43842000 + }, + { + "Date": "2018-08-15", + "Open": 282.380005, + "High": 282.540009, + "Low": 280.160004, + "Close": 281.779999, + "Adj Close": 281.779999, + "Volume": 102925400 + }, + { + "Date": "2018-08-16", + "Open": 283.399994, + "High": 285.040009, + "Low": 283.359985, + "Close": 284.059998, + "Adj Close": 284.059998, + "Volume": 69967900 + }, + { + "Date": "2018-08-17", + "Open": 283.829987, + "High": 285.559998, + "Low": 283.369995, + "Close": 285.059998, + "Adj Close": 285.059998, + "Volume": 65618500 + }, + { + "Date": "2018-08-20", + "Open": 285.570007, + "High": 285.970001, + "Low": 285.059998, + "Close": 285.670013, + "Adj Close": 285.670013, + "Volume": 39807500 + }, + { + "Date": "2018-08-21", + "Open": 286.25, + "High": 287.309998, + "Low": 285.709991, + "Close": 286.339996, + "Adj Close": 286.339996, + "Volume": 67272000 + }, + { + "Date": "2018-08-22", + "Open": 285.880005, + "High": 286.76001, + "Low": 285.579987, + "Close": 286.170013, + "Adj Close": 286.170013, + "Volume": 44993300 + }, + { + "Date": "2018-08-23", + "Open": 285.970001, + "High": 286.940002, + "Low": 285.429993, + "Close": 285.790009, + "Adj Close": 285.790009, + "Volume": 49204900 + }, + { + "Date": "2018-08-24", + "Open": 286.440002, + "High": 287.670013, + "Low": 286.380005, + "Close": 287.51001, + "Adj Close": 287.51001, + "Volume": 57487400 + }, + { + "Date": "2018-08-27", + "Open": 288.859985, + "High": 289.899994, + "Low": 288.679993, + "Close": 289.779999, + "Adj Close": 289.779999, + "Volume": 57072400 + }, + { + "Date": "2018-08-28", + "Open": 290.299988, + "High": 290.420013, + "Low": 289.399994, + "Close": 289.920013, + "Adj Close": 289.920013, + "Volume": 46943500 + }, + { + "Date": "2018-08-29", + "Open": 290.160004, + "High": 291.73999, + "Low": 289.890015, + "Close": 291.480011, + "Adj Close": 291.480011, + "Volume": 61485500 + }, + { + "Date": "2018-08-30", + "Open": 290.940002, + "High": 291.359985, + "Low": 289.630005, + "Close": 290.299988, + "Adj Close": 290.299988, + "Volume": 61229500 + }, + { + "Date": "2018-08-31", + "Open": 289.839996, + "High": 290.809998, + "Low": 289.290009, + "Close": 290.309998, + "Adj Close": 290.309998, + "Volume": 66140800 + }, + { + "Date": "2018-09-04", + "Open": 289.839996, + "High": 290.209991, + "Low": 288.679993, + "Close": 289.809998, + "Adj Close": 289.809998, + "Volume": 57594400 + }, + { + "Date": "2018-09-05", + "Open": 289.410004, + "High": 289.640015, + "Low": 287.890015, + "Close": 289.029999, + "Adj Close": 289.029999, + "Volume": 72452400 + }, + { + "Date": "2018-09-06", + "Open": 289.149994, + "High": 289.48999, + "Low": 287, + "Close": 288.160004, + "Adj Close": 288.160004, + "Volume": 65909900 + }, + { + "Date": "2018-09-07", + "Open": 286.980011, + "High": 288.700012, + "Low": 286.709991, + "Close": 287.600006, + "Adj Close": 287.600006, + "Volume": 73524800 + }, + { + "Date": "2018-09-10", + "Open": 288.73999, + "High": 289.040009, + "Low": 287.880005, + "Close": 288.100006, + "Adj Close": 288.100006, + "Volume": 50210900 + }, + { + "Date": "2018-09-11", + "Open": 287.369995, + "High": 289.549988, + "Low": 286.980011, + "Close": 289.049988, + "Adj Close": 289.049988, + "Volume": 50530500 + }, + { + "Date": "2018-09-12", + "Open": 289.059998, + "High": 289.799988, + "Low": 288.230011, + "Close": 289.119995, + "Adj Close": 289.119995, + "Volume": 59810800 + }, + { + "Date": "2018-09-13", + "Open": 290.320007, + "High": 291.040009, + "Low": 290, + "Close": 290.829987, + "Adj Close": 290.829987, + "Volume": 51034200 + }, + { + "Date": "2018-09-14", + "Open": 291.059998, + "High": 291.269989, + "Low": 290, + "Close": 290.880005, + "Adj Close": 290.880005, + "Volume": 54962300 + } +] \ No newline at end of file diff --git a/web_test/web_test_dev/src/assets/dataTest/dataResponseMulti.json b/web_test/web_test_dev/src/assets/dataTest/dataResponseMulti.json new file mode 100644 index 0000000..874e77a --- /dev/null +++ b/web_test/web_test_dev/src/assets/dataTest/dataResponseMulti.json @@ -0,0 +1,117 @@ +{ + "debug": [ + { + "expected value": 32.07443618774414, + "step": 41.0 + }, + { + "expected value": 31.97576332092285, + "step": 42.0 + }, + { + "expected value": 32.007484436035156, + "step": 43.0 + }, + { + "expected value": 31.92361831665039, + "step": 44.0 + }, + { + "expected value": 32.12289047241211, + "step": 45.0 + }, + { + "expected value": 31.95492935180664, + "step": 46.0 + }, + { + "expected value": 32.04954147338867, + "step": 47.0 + }, + { + "expected value": 32.29735565185547, + "step": 48.0 + }, + { + "expected value": 32.407005310058594, + "step": 49.0 + }, + { + "expected value": 32.43721389770508, + "step": 50.0 + }, + { + "expected value": 32.54985046386719, + "step": 51.0 + }, + { + "expected value": 32.496910095214844, + "step": 52.0 + }, + { + "expected value": 32.48390579223633, + "step": 53.0 + }, + { + "expected value": 32.36211395263672, + "step": 54.0 + }, + { + "expected value": 32.41166687011719, + "step": 55.0 + }, + { + "expected value": 32.29999542236328, + "step": 56.0 + }, + { + "expected value": 32.356842041015625, + "step": 57.0 + }, + { + "expected value": 32.251983642578125, + "step": 58.0 + }, + { + "expected value": 32.291595458984375, + "step": 59.0 + }, + { + "expected value": 32.45553970336914, + "step": 60.0 + }, + { + "expected value": 32.464141845703125, + "step": 61.0 + } + ], + "engine": "LSTM", + "future": [ + { + "step": 62, + "valores": "22.475634" + }, + { + "step": 63, + "valores": "22.43554" + }, + { + "step": 64, + "valores": "22.437986" + }, + { + "step": 65, + "valores": "22.469006" + }, + { + "step": 66, + "valores": "22.467916" + } + ], + "mae": 20.910049756290956, + "mse": 445.9071246984847, + "past": [], + "present_alerts": [], + "present_status": "FALSE", + "rmse": 21.116513080963077 +} \ No newline at end of file diff --git a/web_test/web_test_dev/src/assets/dataTest/dataResponseUni.json b/web_test/web_test_dev/src/assets/dataTest/dataResponseUni.json new file mode 100644 index 0000000..4fa3d88 --- /dev/null +++ b/web_test/web_test_dev/src/assets/dataTest/dataResponseUni.json @@ -0,0 +1,276 @@ +{ + "debug": { + "Holtwinters": [ + { + "expected value": 285.86322945205876, + "step": 44.0 + }, + { + "expected value": 285.475915363008, + "step": 45.0 + }, + { + "expected value": 286.4403637428464, + "step": 46.0 + }, + { + "expected value": 286.05304965379565, + "step": 47.0 + }, + { + "expected value": 287.017498033634, + "step": 48.0 + }, + { + "expected value": 286.63018394458334, + "step": 49.0 + }, + { + "expected value": 287.5946323244217, + "step": 50.0 + }, + { + "expected value": 287.20731823537096, + "step": 51.0 + }, + { + "expected value": 288.1717666152093, + "step": 52.0 + }, + { + "expected value": 287.7844525261586, + "step": 53.0 + }, + { + "expected value": 288.74890090599695, + "step": 54.0 + }, + { + "expected value": 288.3615868169462, + "step": 55.0 + }, + { + "expected value": 289.3260351967846, + "step": 56.0 + }, + { + "expected value": 288.93872110773384, + "step": 57.0 + }, + { + "expected value": 289.9031694875722, + "step": 58.0 + }, + { + "expected value": 289.51585539852147, + "step": 59.0 + }, + { + "expected value": 290.4803037783599, + "step": 60.0 + }, + { + "expected value": 290.09298968930915, + "step": 61.0 + }, + { + "expected value": 291.0574380691475, + "step": 62.0 + } + ], + "LSTM": [ + { + "expected value": 284.10491943359375, + "step": 44.0 + }, + { + "expected value": 285.1344299316406, + "step": 45.0 + }, + { + "expected value": 285.7671813964844, + "step": 46.0 + }, + { + "expected value": 286.4662170410156, + "step": 47.0 + }, + { + "expected value": 286.2884826660156, + "step": 48.0 + }, + { + "expected value": 285.8920593261719, + "step": 49.0 + }, + { + "expected value": 287.697021484375, + "step": 50.0 + }, + { + "expected value": 290.11981201171875, + "step": 51.0 + }, + { + "expected value": 290.27069091796875, + "step": 52.0 + }, + { + "expected value": 291.962890625, + "step": 53.0 + }, + { + "expected value": 290.6810302734375, + "step": 54.0 + }, + { + "expected value": 290.69183349609375, + "step": 55.0 + }, + { + "expected value": 290.1521301269531, + "step": 56.0 + }, + { + "expected value": 289.3143310546875, + "step": 57.0 + }, + { + "expected value": 288.3861083984375, + "step": 58.0 + }, + { + "expected value": 287.7922058105469, + "step": 59.0 + }, + { + "expected value": 288.3223571777344, + "step": 60.0 + }, + { + "expected value": 289.33575439453125, + "step": 61.0 + }, + { + "expected value": 289.4107666015625, + "step": 62.0 + } + ], + "VAR": [ + { + "expected value": 285.76892062533403, + "step": 44.0 + }, + { + "expected value": 285.62317333823376, + "step": 45.0 + }, + { + "expected value": 285.5953372713822, + "step": 46.0 + }, + { + "expected value": 285.45538031710106, + "step": 47.0 + }, + { + "expected value": 285.45645011089226, + "step": 48.0 + }, + { + "expected value": 285.42282128848905, + "step": 49.0 + }, + { + "expected value": 285.4307234734371, + "step": 50.0 + }, + { + "expected value": 285.4134924618338, + "step": 51.0 + }, + { + "expected value": 285.4088934935136, + "step": 52.0 + }, + { + "expected value": 285.3945169157804, + "step": 53.0 + }, + { + "expected value": 285.3863167893631, + "step": 54.0 + }, + { + "expected value": 285.3750759625683, + "step": 55.0 + }, + { + "expected value": 285.3667164339083, + "step": 56.0 + }, + { + "expected value": 285.357369755395, + "step": 57.0 + }, + { + "expected value": 285.3493445439618, + "step": 58.0 + }, + { + "expected value": 285.3411146745383, + "step": 59.0 + }, + { + "expected value": 285.33360915092095, + "step": 60.0 + }, + { + "expected value": 285.3262210085171, + "step": 61.0 + }, + { + "expected value": 285.31931140042434, + "step": 62.0 + } + ] + }, + "engine": "LSTM", + "future": [ + { + "step": 63.0, + "value": 289.4107666015625 + }, + { + "step": 64.0, + "value": 289.72265625 + }, + { + "step": 65.0, + "value": 290.05804443359375 + }, + { + "step": 66.0, + "value": 290.41961669921875 + }, + { + "step": 67.0, + "value": 290.81048583984375 + } + ], + "mae": 0, + "mse": 1, + "past": [ + { + "anomaly_score": 0.0, + "expected value": 287.697021484375, + "mae": 0.8745759725570679, + "mse": 1.0472296476364136, + "real_value": 289.7799908523807, + "step": 6.0 + } + ], + "present_alerts": [], + "present_status": "FALSE", + "rmse": "1.0233423902274417" +} diff --git a/web_test/web_test_dev/src/assets/logo.png b/web_test/web_test_dev/src/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ce2353f273cbda4cc6de145f86062ff039a1d2 GIT binary patch literal 5674 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 P6963zeMGIAUBv$Y4kLO$ literal 0 HcmV?d00001 diff --git a/web_test/web_test_dev/src/components/form.vue b/web_test/web_test_dev/src/components/form.vue new file mode 100644 index 0000000..64bfa7c --- /dev/null +++ b/web_test/web_test_dev/src/components/form.vue @@ -0,0 +1,233 @@ + + + diff --git a/web_test/web_test_dev/src/components/graph.vue b/web_test/web_test_dev/src/components/graph.vue new file mode 100644 index 0000000..bb448e8 --- /dev/null +++ b/web_test/web_test_dev/src/components/graph.vue @@ -0,0 +1,400 @@ + + + + + diff --git a/web_test/web_test_dev/src/components/jsonViewer.vue b/web_test/web_test_dev/src/components/jsonViewer.vue new file mode 100644 index 0000000..13a1106 --- /dev/null +++ b/web_test/web_test_dev/src/components/jsonViewer.vue @@ -0,0 +1,69 @@ + + + \ No newline at end of file diff --git a/web_test/web_test_dev/src/main.js b/web_test/web_test_dev/src/main.js new file mode 100644 index 0000000..dc70bb3 --- /dev/null +++ b/web_test/web_test_dev/src/main.js @@ -0,0 +1,21 @@ +import Vue from 'vue' +import App from './App' +import router from './router' +import Vuetify from 'vuetify' +import VueResource from 'vue-resource' +// import chartConstructor from './constructor/2d_graph' +import chart2dConstructor from 'vue-chart2d-constructor' +import 'vuetify/dist/vuetify.min.css' + +Vue.use(Vuetify) + +Vue.config.productionTip = false +Vue.use(VueResource) +Vue.http.headers.common['content-type'] = 'application/json' +Vue.use(chart2dConstructor) +/* eslint-disable no-new */ +new Vue({ + el: '#app', + router, + render: h => h(App) +}) diff --git a/web_test/web_test_dev/src/router/index.js b/web_test/web_test_dev/src/router/index.js new file mode 100644 index 0000000..e86fab5 --- /dev/null +++ b/web_test/web_test_dev/src/router/index.js @@ -0,0 +1,15 @@ +import Vue from 'vue' +import Router from 'vue-router' +import home from '@/view/homeView' + +Vue.use(Router) + +export default new Router({ + routes: [ + { + path: '/', + name: 'home', + component: home + } + ] +}) diff --git a/web_test/web_test_dev/src/view/homeView.vue b/web_test/web_test_dev/src/view/homeView.vue new file mode 100644 index 0000000..8f3cdf2 --- /dev/null +++ b/web_test/web_test_dev/src/view/homeView.vue @@ -0,0 +1,74 @@ + + + + + diff --git a/web_test/web_test_dev/static/.gitkeep b/web_test/web_test_dev/static/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/web_test/static/img/logo.svg b/web_test/web_test_dev/static/img/logo.svg similarity index 100% rename from web_test/static/img/logo.svg rename to web_test/web_test_dev/static/img/logo.svg diff --git a/web_test/static/img/logo_dark.svg b/web_test/web_test_dev/static/img/logo_dark.svg similarity index 100% rename from web_test/static/img/logo_dark.svg rename to web_test/web_test_dev/static/img/logo_dark.svg From 4ca6e0a2a5b0284d2c53d5decb82082052a75e24 Mon Sep 17 00:00:00 2001 From: Luis Manuel <36008244+LuisManuelNR@users.noreply.github.com> Date: Fri, 19 Oct 2018 12:14:08 +0200 Subject: [PATCH 2/5] changed path production in webpack config --- web_test/{ => production}/index.html | 2 +- .../app.14daf9aed06f69ef52ff8971689f65e3.css | 7 + ...p.14daf9aed06f69ef52ff8971689f65e3.css.map | 1 + web_test/production/static/img/logo.svg | 1 + web_test/production/static/img/logo_dark.svg | 1 + .../static/js/app.9bddbc1f5c768a018f59.js | 2 + .../static/js/app.9bddbc1f5c768a018f59.js.map | 1 + .../js/manifest.3ad1d5771e9b13dbdad2.js | 2 + .../js/manifest.3ad1d5771e9b13dbdad2.js.map | 2 +- .../static/js/vendor.c2a07eda06ceb06f9226.js | 1210 +++++++++++++++++ .../js/vendor.c2a07eda06ceb06f9226.js.map | 1 + .../static/js/app.08435381b6fffdaa0f9e.js | 2 - .../static/js/app.08435381b6fffdaa0f9e.js.map | 1 - web_test/web_test_dev/package-lock.json | 13 +- web_test/web_test_dev/src/components/form.vue | 2 +- 15 files changed, 1238 insertions(+), 10 deletions(-) rename web_test/{ => production}/index.html (82%) create mode 100644 web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css create mode 100644 web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map create mode 100644 web_test/production/static/img/logo.svg create mode 100644 web_test/production/static/img/logo_dark.svg create mode 100644 web_test/production/static/js/app.9bddbc1f5c768a018f59.js create mode 100644 web_test/production/static/js/app.9bddbc1f5c768a018f59.js.map create mode 100644 web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js rename web_test/{ => production}/static/js/manifest.3ad1d5771e9b13dbdad2.js.map (96%) create mode 100644 web_test/production/static/js/vendor.c2a07eda06ceb06f9226.js create mode 100644 web_test/production/static/js/vendor.c2a07eda06ceb06f9226.js.map delete mode 100644 web_test/static/js/app.08435381b6fffdaa0f9e.js delete mode 100644 web_test/static/js/app.08435381b6fffdaa0f9e.js.map diff --git a/web_test/index.html b/web_test/production/index.html similarity index 82% rename from web_test/index.html rename to web_test/production/index.html index 80a93f5..4ac0514 100644 --- a/web_test/index.html +++ b/web_test/production/index.html @@ -1 +1 @@ -timecop
\ No newline at end of file +timecop
\ No newline at end of file diff --git a/web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css b/web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css new file mode 100644 index 0000000..d9348d8 --- /dev/null +++ b/web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css @@ -0,0 +1,7 @@ +svg{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.column-code{height:85vh;overflow-y:scroll}.winner{position:absolute;right:0;margin-right:-14px;margin-top:-10px;font-size:25px;transform:rotate(28deg)}.graph-inactive-btn{text-decoration:line-through!important;-webkit-text-decoration-style:double!important;text-decoration-style:double!important}.extended-area{width:100%;height:250px} +/*! +* Vuetify v1.2.3 +* Forged by John Leider +* Released under the MIT License. +*/@keyframes shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}.black{background-color:#000!important;border-color:#000!important}.black--text{caret-color:#000!important;color:#000!important}.white{background-color:#fff!important;border-color:#fff!important}.white--text{caret-color:#fff!important;color:#fff!important}.transparent{background-color:transparent!important;border-color:transparent!important}.transparent--text{caret-color:transparent!important;color:transparent!important}.red{background-color:#f44336!important;border-color:#f44336!important}.red--text{caret-color:#f44336!important;color:#f44336!important}.red.lighten-5{background-color:#ffebee!important;border-color:#ffebee!important}.red--text.text--lighten-5{caret-color:#ffebee!important;color:#ffebee!important}.red.lighten-4{background-color:#ffcdd2!important;border-color:#ffcdd2!important}.red--text.text--lighten-4{caret-color:#ffcdd2!important;color:#ffcdd2!important}.red.lighten-3{background-color:#ef9a9a!important;border-color:#ef9a9a!important}.red--text.text--lighten-3{caret-color:#ef9a9a!important;color:#ef9a9a!important}.red.lighten-2{background-color:#e57373!important;border-color:#e57373!important}.red--text.text--lighten-2{caret-color:#e57373!important;color:#e57373!important}.red.lighten-1{background-color:#ef5350!important;border-color:#ef5350!important}.red--text.text--lighten-1{caret-color:#ef5350!important;color:#ef5350!important}.red.darken-1{background-color:#e53935!important;border-color:#e53935!important}.red--text.text--darken-1{caret-color:#e53935!important;color:#e53935!important}.red.darken-2{background-color:#d32f2f!important;border-color:#d32f2f!important}.red--text.text--darken-2{caret-color:#d32f2f!important;color:#d32f2f!important}.red.darken-3{background-color:#c62828!important;border-color:#c62828!important}.red--text.text--darken-3{caret-color:#c62828!important;color:#c62828!important}.red.darken-4{background-color:#b71c1c!important;border-color:#b71c1c!important}.red--text.text--darken-4{caret-color:#b71c1c!important;color:#b71c1c!important}.red.accent-1{background-color:#ff8a80!important;border-color:#ff8a80!important}.red--text.text--accent-1{caret-color:#ff8a80!important;color:#ff8a80!important}.red.accent-2{background-color:#ff5252!important;border-color:#ff5252!important}.red--text.text--accent-2{caret-color:#ff5252!important;color:#ff5252!important}.red.accent-3{background-color:#ff1744!important;border-color:#ff1744!important}.red--text.text--accent-3{caret-color:#ff1744!important;color:#ff1744!important}.red.accent-4{background-color:#d50000!important;border-color:#d50000!important}.red--text.text--accent-4{caret-color:#d50000!important;color:#d50000!important}.pink{background-color:#e91e63!important;border-color:#e91e63!important}.pink--text{caret-color:#e91e63!important;color:#e91e63!important}.pink.lighten-5{background-color:#fce4ec!important;border-color:#fce4ec!important}.pink--text.text--lighten-5{caret-color:#fce4ec!important;color:#fce4ec!important}.pink.lighten-4{background-color:#f8bbd0!important;border-color:#f8bbd0!important}.pink--text.text--lighten-4{caret-color:#f8bbd0!important;color:#f8bbd0!important}.pink.lighten-3{background-color:#f48fb1!important;border-color:#f48fb1!important}.pink--text.text--lighten-3{caret-color:#f48fb1!important;color:#f48fb1!important}.pink.lighten-2{background-color:#f06292!important;border-color:#f06292!important}.pink--text.text--lighten-2{caret-color:#f06292!important;color:#f06292!important}.pink.lighten-1{background-color:#ec407a!important;border-color:#ec407a!important}.pink--text.text--lighten-1{caret-color:#ec407a!important;color:#ec407a!important}.pink.darken-1{background-color:#d81b60!important;border-color:#d81b60!important}.pink--text.text--darken-1{caret-color:#d81b60!important;color:#d81b60!important}.pink.darken-2{background-color:#c2185b!important;border-color:#c2185b!important}.pink--text.text--darken-2{caret-color:#c2185b!important;color:#c2185b!important}.pink.darken-3{background-color:#ad1457!important;border-color:#ad1457!important}.pink--text.text--darken-3{caret-color:#ad1457!important;color:#ad1457!important}.pink.darken-4{background-color:#880e4f!important;border-color:#880e4f!important}.pink--text.text--darken-4{caret-color:#880e4f!important;color:#880e4f!important}.pink.accent-1{background-color:#ff80ab!important;border-color:#ff80ab!important}.pink--text.text--accent-1{caret-color:#ff80ab!important;color:#ff80ab!important}.pink.accent-2{background-color:#ff4081!important;border-color:#ff4081!important}.pink--text.text--accent-2{caret-color:#ff4081!important;color:#ff4081!important}.pink.accent-3{background-color:#f50057!important;border-color:#f50057!important}.pink--text.text--accent-3{caret-color:#f50057!important;color:#f50057!important}.pink.accent-4{background-color:#c51162!important;border-color:#c51162!important}.pink--text.text--accent-4{caret-color:#c51162!important;color:#c51162!important}.purple{background-color:#9c27b0!important;border-color:#9c27b0!important}.purple--text{caret-color:#9c27b0!important;color:#9c27b0!important}.purple.lighten-5{background-color:#f3e5f5!important;border-color:#f3e5f5!important}.purple--text.text--lighten-5{caret-color:#f3e5f5!important;color:#f3e5f5!important}.purple.lighten-4{background-color:#e1bee7!important;border-color:#e1bee7!important}.purple--text.text--lighten-4{caret-color:#e1bee7!important;color:#e1bee7!important}.purple.lighten-3{background-color:#ce93d8!important;border-color:#ce93d8!important}.purple--text.text--lighten-3{caret-color:#ce93d8!important;color:#ce93d8!important}.purple.lighten-2{background-color:#ba68c8!important;border-color:#ba68c8!important}.purple--text.text--lighten-2{caret-color:#ba68c8!important;color:#ba68c8!important}.purple.lighten-1{background-color:#ab47bc!important;border-color:#ab47bc!important}.purple--text.text--lighten-1{caret-color:#ab47bc!important;color:#ab47bc!important}.purple.darken-1{background-color:#8e24aa!important;border-color:#8e24aa!important}.purple--text.text--darken-1{caret-color:#8e24aa!important;color:#8e24aa!important}.purple.darken-2{background-color:#7b1fa2!important;border-color:#7b1fa2!important}.purple--text.text--darken-2{caret-color:#7b1fa2!important;color:#7b1fa2!important}.purple.darken-3{background-color:#6a1b9a!important;border-color:#6a1b9a!important}.purple--text.text--darken-3{caret-color:#6a1b9a!important;color:#6a1b9a!important}.purple.darken-4{background-color:#4a148c!important;border-color:#4a148c!important}.purple--text.text--darken-4{caret-color:#4a148c!important;color:#4a148c!important}.purple.accent-1{background-color:#ea80fc!important;border-color:#ea80fc!important}.purple--text.text--accent-1{caret-color:#ea80fc!important;color:#ea80fc!important}.purple.accent-2{background-color:#e040fb!important;border-color:#e040fb!important}.purple--text.text--accent-2{caret-color:#e040fb!important;color:#e040fb!important}.purple.accent-3{background-color:#d500f9!important;border-color:#d500f9!important}.purple--text.text--accent-3{caret-color:#d500f9!important;color:#d500f9!important}.purple.accent-4{background-color:#a0f!important;border-color:#a0f!important}.purple--text.text--accent-4{caret-color:#a0f!important;color:#a0f!important}.deep-purple{background-color:#673ab7!important;border-color:#673ab7!important}.deep-purple--text{caret-color:#673ab7!important;color:#673ab7!important}.deep-purple.lighten-5{background-color:#ede7f6!important;border-color:#ede7f6!important}.deep-purple--text.text--lighten-5{caret-color:#ede7f6!important;color:#ede7f6!important}.deep-purple.lighten-4{background-color:#d1c4e9!important;border-color:#d1c4e9!important}.deep-purple--text.text--lighten-4{caret-color:#d1c4e9!important;color:#d1c4e9!important}.deep-purple.lighten-3{background-color:#b39ddb!important;border-color:#b39ddb!important}.deep-purple--text.text--lighten-3{caret-color:#b39ddb!important;color:#b39ddb!important}.deep-purple.lighten-2{background-color:#9575cd!important;border-color:#9575cd!important}.deep-purple--text.text--lighten-2{caret-color:#9575cd!important;color:#9575cd!important}.deep-purple.lighten-1{background-color:#7e57c2!important;border-color:#7e57c2!important}.deep-purple--text.text--lighten-1{caret-color:#7e57c2!important;color:#7e57c2!important}.deep-purple.darken-1{background-color:#5e35b1!important;border-color:#5e35b1!important}.deep-purple--text.text--darken-1{caret-color:#5e35b1!important;color:#5e35b1!important}.deep-purple.darken-2{background-color:#512da8!important;border-color:#512da8!important}.deep-purple--text.text--darken-2{caret-color:#512da8!important;color:#512da8!important}.deep-purple.darken-3{background-color:#4527a0!important;border-color:#4527a0!important}.deep-purple--text.text--darken-3{caret-color:#4527a0!important;color:#4527a0!important}.deep-purple.darken-4{background-color:#311b92!important;border-color:#311b92!important}.deep-purple--text.text--darken-4{caret-color:#311b92!important;color:#311b92!important}.deep-purple.accent-1{background-color:#b388ff!important;border-color:#b388ff!important}.deep-purple--text.text--accent-1{caret-color:#b388ff!important;color:#b388ff!important}.deep-purple.accent-2{background-color:#7c4dff!important;border-color:#7c4dff!important}.deep-purple--text.text--accent-2{caret-color:#7c4dff!important;color:#7c4dff!important}.deep-purple.accent-3{background-color:#651fff!important;border-color:#651fff!important}.deep-purple--text.text--accent-3{caret-color:#651fff!important;color:#651fff!important}.deep-purple.accent-4{background-color:#6200ea!important;border-color:#6200ea!important}.deep-purple--text.text--accent-4{caret-color:#6200ea!important;color:#6200ea!important}.indigo{background-color:#3f51b5!important;border-color:#3f51b5!important}.indigo--text{caret-color:#3f51b5!important;color:#3f51b5!important}.indigo.lighten-5{background-color:#e8eaf6!important;border-color:#e8eaf6!important}.indigo--text.text--lighten-5{caret-color:#e8eaf6!important;color:#e8eaf6!important}.indigo.lighten-4{background-color:#c5cae9!important;border-color:#c5cae9!important}.indigo--text.text--lighten-4{caret-color:#c5cae9!important;color:#c5cae9!important}.indigo.lighten-3{background-color:#9fa8da!important;border-color:#9fa8da!important}.indigo--text.text--lighten-3{caret-color:#9fa8da!important;color:#9fa8da!important}.indigo.lighten-2{background-color:#7986cb!important;border-color:#7986cb!important}.indigo--text.text--lighten-2{caret-color:#7986cb!important;color:#7986cb!important}.indigo.lighten-1{background-color:#5c6bc0!important;border-color:#5c6bc0!important}.indigo--text.text--lighten-1{caret-color:#5c6bc0!important;color:#5c6bc0!important}.indigo.darken-1{background-color:#3949ab!important;border-color:#3949ab!important}.indigo--text.text--darken-1{caret-color:#3949ab!important;color:#3949ab!important}.indigo.darken-2{background-color:#303f9f!important;border-color:#303f9f!important}.indigo--text.text--darken-2{caret-color:#303f9f!important;color:#303f9f!important}.indigo.darken-3{background-color:#283593!important;border-color:#283593!important}.indigo--text.text--darken-3{caret-color:#283593!important;color:#283593!important}.indigo.darken-4{background-color:#1a237e!important;border-color:#1a237e!important}.indigo--text.text--darken-4{caret-color:#1a237e!important;color:#1a237e!important}.indigo.accent-1{background-color:#8c9eff!important;border-color:#8c9eff!important}.indigo--text.text--accent-1{caret-color:#8c9eff!important;color:#8c9eff!important}.indigo.accent-2{background-color:#536dfe!important;border-color:#536dfe!important}.indigo--text.text--accent-2{caret-color:#536dfe!important;color:#536dfe!important}.indigo.accent-3{background-color:#3d5afe!important;border-color:#3d5afe!important}.indigo--text.text--accent-3{caret-color:#3d5afe!important;color:#3d5afe!important}.indigo.accent-4{background-color:#304ffe!important;border-color:#304ffe!important}.indigo--text.text--accent-4{caret-color:#304ffe!important;color:#304ffe!important}.blue{background-color:#2196f3!important;border-color:#2196f3!important}.blue--text{caret-color:#2196f3!important;color:#2196f3!important}.blue.lighten-5{background-color:#e3f2fd!important;border-color:#e3f2fd!important}.blue--text.text--lighten-5{caret-color:#e3f2fd!important;color:#e3f2fd!important}.blue.lighten-4{background-color:#bbdefb!important;border-color:#bbdefb!important}.blue--text.text--lighten-4{caret-color:#bbdefb!important;color:#bbdefb!important}.blue.lighten-3{background-color:#90caf9!important;border-color:#90caf9!important}.blue--text.text--lighten-3{caret-color:#90caf9!important;color:#90caf9!important}.blue.lighten-2{background-color:#64b5f6!important;border-color:#64b5f6!important}.blue--text.text--lighten-2{caret-color:#64b5f6!important;color:#64b5f6!important}.blue.lighten-1{background-color:#42a5f5!important;border-color:#42a5f5!important}.blue--text.text--lighten-1{caret-color:#42a5f5!important;color:#42a5f5!important}.blue.darken-1{background-color:#1e88e5!important;border-color:#1e88e5!important}.blue--text.text--darken-1{caret-color:#1e88e5!important;color:#1e88e5!important}.blue.darken-2{background-color:#1976d2!important;border-color:#1976d2!important}.blue--text.text--darken-2{caret-color:#1976d2!important;color:#1976d2!important}.blue.darken-3{background-color:#1565c0!important;border-color:#1565c0!important}.blue--text.text--darken-3{caret-color:#1565c0!important;color:#1565c0!important}.blue.darken-4{background-color:#0d47a1!important;border-color:#0d47a1!important}.blue--text.text--darken-4{caret-color:#0d47a1!important;color:#0d47a1!important}.blue.accent-1{background-color:#82b1ff!important;border-color:#82b1ff!important}.blue--text.text--accent-1{caret-color:#82b1ff!important;color:#82b1ff!important}.blue.accent-2{background-color:#448aff!important;border-color:#448aff!important}.blue--text.text--accent-2{caret-color:#448aff!important;color:#448aff!important}.blue.accent-3{background-color:#2979ff!important;border-color:#2979ff!important}.blue--text.text--accent-3{caret-color:#2979ff!important;color:#2979ff!important}.blue.accent-4{background-color:#2962ff!important;border-color:#2962ff!important}.blue--text.text--accent-4{caret-color:#2962ff!important;color:#2962ff!important}.light-blue{background-color:#03a9f4!important;border-color:#03a9f4!important}.light-blue--text{caret-color:#03a9f4!important;color:#03a9f4!important}.light-blue.lighten-5{background-color:#e1f5fe!important;border-color:#e1f5fe!important}.light-blue--text.text--lighten-5{caret-color:#e1f5fe!important;color:#e1f5fe!important}.light-blue.lighten-4{background-color:#b3e5fc!important;border-color:#b3e5fc!important}.light-blue--text.text--lighten-4{caret-color:#b3e5fc!important;color:#b3e5fc!important}.light-blue.lighten-3{background-color:#81d4fa!important;border-color:#81d4fa!important}.light-blue--text.text--lighten-3{caret-color:#81d4fa!important;color:#81d4fa!important}.light-blue.lighten-2{background-color:#4fc3f7!important;border-color:#4fc3f7!important}.light-blue--text.text--lighten-2{caret-color:#4fc3f7!important;color:#4fc3f7!important}.light-blue.lighten-1{background-color:#29b6f6!important;border-color:#29b6f6!important}.light-blue--text.text--lighten-1{caret-color:#29b6f6!important;color:#29b6f6!important}.light-blue.darken-1{background-color:#039be5!important;border-color:#039be5!important}.light-blue--text.text--darken-1{caret-color:#039be5!important;color:#039be5!important}.light-blue.darken-2{background-color:#0288d1!important;border-color:#0288d1!important}.light-blue--text.text--darken-2{caret-color:#0288d1!important;color:#0288d1!important}.light-blue.darken-3{background-color:#0277bd!important;border-color:#0277bd!important}.light-blue--text.text--darken-3{caret-color:#0277bd!important;color:#0277bd!important}.light-blue.darken-4{background-color:#01579b!important;border-color:#01579b!important}.light-blue--text.text--darken-4{caret-color:#01579b!important;color:#01579b!important}.light-blue.accent-1{background-color:#80d8ff!important;border-color:#80d8ff!important}.light-blue--text.text--accent-1{caret-color:#80d8ff!important;color:#80d8ff!important}.light-blue.accent-2{background-color:#40c4ff!important;border-color:#40c4ff!important}.light-blue--text.text--accent-2{caret-color:#40c4ff!important;color:#40c4ff!important}.light-blue.accent-3{background-color:#00b0ff!important;border-color:#00b0ff!important}.light-blue--text.text--accent-3{caret-color:#00b0ff!important;color:#00b0ff!important}.light-blue.accent-4{background-color:#0091ea!important;border-color:#0091ea!important}.light-blue--text.text--accent-4{caret-color:#0091ea!important;color:#0091ea!important}.cyan{background-color:#00bcd4!important;border-color:#00bcd4!important}.cyan--text{caret-color:#00bcd4!important;color:#00bcd4!important}.cyan.lighten-5{background-color:#e0f7fa!important;border-color:#e0f7fa!important}.cyan--text.text--lighten-5{caret-color:#e0f7fa!important;color:#e0f7fa!important}.cyan.lighten-4{background-color:#b2ebf2!important;border-color:#b2ebf2!important}.cyan--text.text--lighten-4{caret-color:#b2ebf2!important;color:#b2ebf2!important}.cyan.lighten-3{background-color:#80deea!important;border-color:#80deea!important}.cyan--text.text--lighten-3{caret-color:#80deea!important;color:#80deea!important}.cyan.lighten-2{background-color:#4dd0e1!important;border-color:#4dd0e1!important}.cyan--text.text--lighten-2{caret-color:#4dd0e1!important;color:#4dd0e1!important}.cyan.lighten-1{background-color:#26c6da!important;border-color:#26c6da!important}.cyan--text.text--lighten-1{caret-color:#26c6da!important;color:#26c6da!important}.cyan.darken-1{background-color:#00acc1!important;border-color:#00acc1!important}.cyan--text.text--darken-1{caret-color:#00acc1!important;color:#00acc1!important}.cyan.darken-2{background-color:#0097a7!important;border-color:#0097a7!important}.cyan--text.text--darken-2{caret-color:#0097a7!important;color:#0097a7!important}.cyan.darken-3{background-color:#00838f!important;border-color:#00838f!important}.cyan--text.text--darken-3{caret-color:#00838f!important;color:#00838f!important}.cyan.darken-4{background-color:#006064!important;border-color:#006064!important}.cyan--text.text--darken-4{caret-color:#006064!important;color:#006064!important}.cyan.accent-1{background-color:#84ffff!important;border-color:#84ffff!important}.cyan--text.text--accent-1{caret-color:#84ffff!important;color:#84ffff!important}.cyan.accent-2{background-color:#18ffff!important;border-color:#18ffff!important}.cyan--text.text--accent-2{caret-color:#18ffff!important;color:#18ffff!important}.cyan.accent-3{background-color:#00e5ff!important;border-color:#00e5ff!important}.cyan--text.text--accent-3{caret-color:#00e5ff!important;color:#00e5ff!important}.cyan.accent-4{background-color:#00b8d4!important;border-color:#00b8d4!important}.cyan--text.text--accent-4{caret-color:#00b8d4!important;color:#00b8d4!important}.teal{background-color:#009688!important;border-color:#009688!important}.teal--text{caret-color:#009688!important;color:#009688!important}.teal.lighten-5{background-color:#e0f2f1!important;border-color:#e0f2f1!important}.teal--text.text--lighten-5{caret-color:#e0f2f1!important;color:#e0f2f1!important}.teal.lighten-4{background-color:#b2dfdb!important;border-color:#b2dfdb!important}.teal--text.text--lighten-4{caret-color:#b2dfdb!important;color:#b2dfdb!important}.teal.lighten-3{background-color:#80cbc4!important;border-color:#80cbc4!important}.teal--text.text--lighten-3{caret-color:#80cbc4!important;color:#80cbc4!important}.teal.lighten-2{background-color:#4db6ac!important;border-color:#4db6ac!important}.teal--text.text--lighten-2{caret-color:#4db6ac!important;color:#4db6ac!important}.teal.lighten-1{background-color:#26a69a!important;border-color:#26a69a!important}.teal--text.text--lighten-1{caret-color:#26a69a!important;color:#26a69a!important}.teal.darken-1{background-color:#00897b!important;border-color:#00897b!important}.teal--text.text--darken-1{caret-color:#00897b!important;color:#00897b!important}.teal.darken-2{background-color:#00796b!important;border-color:#00796b!important}.teal--text.text--darken-2{caret-color:#00796b!important;color:#00796b!important}.teal.darken-3{background-color:#00695c!important;border-color:#00695c!important}.teal--text.text--darken-3{caret-color:#00695c!important;color:#00695c!important}.teal.darken-4{background-color:#004d40!important;border-color:#004d40!important}.teal--text.text--darken-4{caret-color:#004d40!important;color:#004d40!important}.teal.accent-1{background-color:#a7ffeb!important;border-color:#a7ffeb!important}.teal--text.text--accent-1{caret-color:#a7ffeb!important;color:#a7ffeb!important}.teal.accent-2{background-color:#64ffda!important;border-color:#64ffda!important}.teal--text.text--accent-2{caret-color:#64ffda!important;color:#64ffda!important}.teal.accent-3{background-color:#1de9b6!important;border-color:#1de9b6!important}.teal--text.text--accent-3{caret-color:#1de9b6!important;color:#1de9b6!important}.teal.accent-4{background-color:#00bfa5!important;border-color:#00bfa5!important}.teal--text.text--accent-4{caret-color:#00bfa5!important;color:#00bfa5!important}.green{background-color:#4caf50!important;border-color:#4caf50!important}.green--text{caret-color:#4caf50!important;color:#4caf50!important}.green.lighten-5{background-color:#e8f5e9!important;border-color:#e8f5e9!important}.green--text.text--lighten-5{caret-color:#e8f5e9!important;color:#e8f5e9!important}.green.lighten-4{background-color:#c8e6c9!important;border-color:#c8e6c9!important}.green--text.text--lighten-4{caret-color:#c8e6c9!important;color:#c8e6c9!important}.green.lighten-3{background-color:#a5d6a7!important;border-color:#a5d6a7!important}.green--text.text--lighten-3{caret-color:#a5d6a7!important;color:#a5d6a7!important}.green.lighten-2{background-color:#81c784!important;border-color:#81c784!important}.green--text.text--lighten-2{caret-color:#81c784!important;color:#81c784!important}.green.lighten-1{background-color:#66bb6a!important;border-color:#66bb6a!important}.green--text.text--lighten-1{caret-color:#66bb6a!important;color:#66bb6a!important}.green.darken-1{background-color:#43a047!important;border-color:#43a047!important}.green--text.text--darken-1{caret-color:#43a047!important;color:#43a047!important}.green.darken-2{background-color:#388e3c!important;border-color:#388e3c!important}.green--text.text--darken-2{caret-color:#388e3c!important;color:#388e3c!important}.green.darken-3{background-color:#2e7d32!important;border-color:#2e7d32!important}.green--text.text--darken-3{caret-color:#2e7d32!important;color:#2e7d32!important}.green.darken-4{background-color:#1b5e20!important;border-color:#1b5e20!important}.green--text.text--darken-4{caret-color:#1b5e20!important;color:#1b5e20!important}.green.accent-1{background-color:#b9f6ca!important;border-color:#b9f6ca!important}.green--text.text--accent-1{caret-color:#b9f6ca!important;color:#b9f6ca!important}.green.accent-2{background-color:#69f0ae!important;border-color:#69f0ae!important}.green--text.text--accent-2{caret-color:#69f0ae!important;color:#69f0ae!important}.green.accent-3{background-color:#00e676!important;border-color:#00e676!important}.green--text.text--accent-3{caret-color:#00e676!important;color:#00e676!important}.green.accent-4{background-color:#00c853!important;border-color:#00c853!important}.green--text.text--accent-4{caret-color:#00c853!important;color:#00c853!important}.light-green{background-color:#8bc34a!important;border-color:#8bc34a!important}.light-green--text{caret-color:#8bc34a!important;color:#8bc34a!important}.light-green.lighten-5{background-color:#f1f8e9!important;border-color:#f1f8e9!important}.light-green--text.text--lighten-5{caret-color:#f1f8e9!important;color:#f1f8e9!important}.light-green.lighten-4{background-color:#dcedc8!important;border-color:#dcedc8!important}.light-green--text.text--lighten-4{caret-color:#dcedc8!important;color:#dcedc8!important}.light-green.lighten-3{background-color:#c5e1a5!important;border-color:#c5e1a5!important}.light-green--text.text--lighten-3{caret-color:#c5e1a5!important;color:#c5e1a5!important}.light-green.lighten-2{background-color:#aed581!important;border-color:#aed581!important}.light-green--text.text--lighten-2{caret-color:#aed581!important;color:#aed581!important}.light-green.lighten-1{background-color:#9ccc65!important;border-color:#9ccc65!important}.light-green--text.text--lighten-1{caret-color:#9ccc65!important;color:#9ccc65!important}.light-green.darken-1{background-color:#7cb342!important;border-color:#7cb342!important}.light-green--text.text--darken-1{caret-color:#7cb342!important;color:#7cb342!important}.light-green.darken-2{background-color:#689f38!important;border-color:#689f38!important}.light-green--text.text--darken-2{caret-color:#689f38!important;color:#689f38!important}.light-green.darken-3{background-color:#558b2f!important;border-color:#558b2f!important}.light-green--text.text--darken-3{caret-color:#558b2f!important;color:#558b2f!important}.light-green.darken-4{background-color:#33691e!important;border-color:#33691e!important}.light-green--text.text--darken-4{caret-color:#33691e!important;color:#33691e!important}.light-green.accent-1{background-color:#ccff90!important;border-color:#ccff90!important}.light-green--text.text--accent-1{caret-color:#ccff90!important;color:#ccff90!important}.light-green.accent-2{background-color:#b2ff59!important;border-color:#b2ff59!important}.light-green--text.text--accent-2{caret-color:#b2ff59!important;color:#b2ff59!important}.light-green.accent-3{background-color:#76ff03!important;border-color:#76ff03!important}.light-green--text.text--accent-3{caret-color:#76ff03!important;color:#76ff03!important}.light-green.accent-4{background-color:#64dd17!important;border-color:#64dd17!important}.light-green--text.text--accent-4{caret-color:#64dd17!important;color:#64dd17!important}.lime{background-color:#cddc39!important;border-color:#cddc39!important}.lime--text{caret-color:#cddc39!important;color:#cddc39!important}.lime.lighten-5{background-color:#f9fbe7!important;border-color:#f9fbe7!important}.lime--text.text--lighten-5{caret-color:#f9fbe7!important;color:#f9fbe7!important}.lime.lighten-4{background-color:#f0f4c3!important;border-color:#f0f4c3!important}.lime--text.text--lighten-4{caret-color:#f0f4c3!important;color:#f0f4c3!important}.lime.lighten-3{background-color:#e6ee9c!important;border-color:#e6ee9c!important}.lime--text.text--lighten-3{caret-color:#e6ee9c!important;color:#e6ee9c!important}.lime.lighten-2{background-color:#dce775!important;border-color:#dce775!important}.lime--text.text--lighten-2{caret-color:#dce775!important;color:#dce775!important}.lime.lighten-1{background-color:#d4e157!important;border-color:#d4e157!important}.lime--text.text--lighten-1{caret-color:#d4e157!important;color:#d4e157!important}.lime.darken-1{background-color:#c0ca33!important;border-color:#c0ca33!important}.lime--text.text--darken-1{caret-color:#c0ca33!important;color:#c0ca33!important}.lime.darken-2{background-color:#afb42b!important;border-color:#afb42b!important}.lime--text.text--darken-2{caret-color:#afb42b!important;color:#afb42b!important}.lime.darken-3{background-color:#9e9d24!important;border-color:#9e9d24!important}.lime--text.text--darken-3{caret-color:#9e9d24!important;color:#9e9d24!important}.lime.darken-4{background-color:#827717!important;border-color:#827717!important}.lime--text.text--darken-4{caret-color:#827717!important;color:#827717!important}.lime.accent-1{background-color:#f4ff81!important;border-color:#f4ff81!important}.lime--text.text--accent-1{caret-color:#f4ff81!important;color:#f4ff81!important}.lime.accent-2{background-color:#eeff41!important;border-color:#eeff41!important}.lime--text.text--accent-2{caret-color:#eeff41!important;color:#eeff41!important}.lime.accent-3{background-color:#c6ff00!important;border-color:#c6ff00!important}.lime--text.text--accent-3{caret-color:#c6ff00!important;color:#c6ff00!important}.lime.accent-4{background-color:#aeea00!important;border-color:#aeea00!important}.lime--text.text--accent-4{caret-color:#aeea00!important;color:#aeea00!important}.yellow{background-color:#ffeb3b!important;border-color:#ffeb3b!important}.yellow--text{caret-color:#ffeb3b!important;color:#ffeb3b!important}.yellow.lighten-5{background-color:#fffde7!important;border-color:#fffde7!important}.yellow--text.text--lighten-5{caret-color:#fffde7!important;color:#fffde7!important}.yellow.lighten-4{background-color:#fff9c4!important;border-color:#fff9c4!important}.yellow--text.text--lighten-4{caret-color:#fff9c4!important;color:#fff9c4!important}.yellow.lighten-3{background-color:#fff59d!important;border-color:#fff59d!important}.yellow--text.text--lighten-3{caret-color:#fff59d!important;color:#fff59d!important}.yellow.lighten-2{background-color:#fff176!important;border-color:#fff176!important}.yellow--text.text--lighten-2{caret-color:#fff176!important;color:#fff176!important}.yellow.lighten-1{background-color:#ffee58!important;border-color:#ffee58!important}.yellow--text.text--lighten-1{caret-color:#ffee58!important;color:#ffee58!important}.yellow.darken-1{background-color:#fdd835!important;border-color:#fdd835!important}.yellow--text.text--darken-1{caret-color:#fdd835!important;color:#fdd835!important}.yellow.darken-2{background-color:#fbc02d!important;border-color:#fbc02d!important}.yellow--text.text--darken-2{caret-color:#fbc02d!important;color:#fbc02d!important}.yellow.darken-3{background-color:#f9a825!important;border-color:#f9a825!important}.yellow--text.text--darken-3{caret-color:#f9a825!important;color:#f9a825!important}.yellow.darken-4{background-color:#f57f17!important;border-color:#f57f17!important}.yellow--text.text--darken-4{caret-color:#f57f17!important;color:#f57f17!important}.yellow.accent-1{background-color:#ffff8d!important;border-color:#ffff8d!important}.yellow--text.text--accent-1{caret-color:#ffff8d!important;color:#ffff8d!important}.yellow.accent-2{background-color:#ff0!important;border-color:#ff0!important}.yellow--text.text--accent-2{caret-color:#ff0!important;color:#ff0!important}.yellow.accent-3{background-color:#ffea00!important;border-color:#ffea00!important}.yellow--text.text--accent-3{caret-color:#ffea00!important;color:#ffea00!important}.yellow.accent-4{background-color:#ffd600!important;border-color:#ffd600!important}.yellow--text.text--accent-4{caret-color:#ffd600!important;color:#ffd600!important}.amber{background-color:#ffc107!important;border-color:#ffc107!important}.amber--text{caret-color:#ffc107!important;color:#ffc107!important}.amber.lighten-5{background-color:#fff8e1!important;border-color:#fff8e1!important}.amber--text.text--lighten-5{caret-color:#fff8e1!important;color:#fff8e1!important}.amber.lighten-4{background-color:#ffecb3!important;border-color:#ffecb3!important}.amber--text.text--lighten-4{caret-color:#ffecb3!important;color:#ffecb3!important}.amber.lighten-3{background-color:#ffe082!important;border-color:#ffe082!important}.amber--text.text--lighten-3{caret-color:#ffe082!important;color:#ffe082!important}.amber.lighten-2{background-color:#ffd54f!important;border-color:#ffd54f!important}.amber--text.text--lighten-2{caret-color:#ffd54f!important;color:#ffd54f!important}.amber.lighten-1{background-color:#ffca28!important;border-color:#ffca28!important}.amber--text.text--lighten-1{caret-color:#ffca28!important;color:#ffca28!important}.amber.darken-1{background-color:#ffb300!important;border-color:#ffb300!important}.amber--text.text--darken-1{caret-color:#ffb300!important;color:#ffb300!important}.amber.darken-2{background-color:#ffa000!important;border-color:#ffa000!important}.amber--text.text--darken-2{caret-color:#ffa000!important;color:#ffa000!important}.amber.darken-3{background-color:#ff8f00!important;border-color:#ff8f00!important}.amber--text.text--darken-3{caret-color:#ff8f00!important;color:#ff8f00!important}.amber.darken-4{background-color:#ff6f00!important;border-color:#ff6f00!important}.amber--text.text--darken-4{caret-color:#ff6f00!important;color:#ff6f00!important}.amber.accent-1{background-color:#ffe57f!important;border-color:#ffe57f!important}.amber--text.text--accent-1{caret-color:#ffe57f!important;color:#ffe57f!important}.amber.accent-2{background-color:#ffd740!important;border-color:#ffd740!important}.amber--text.text--accent-2{caret-color:#ffd740!important;color:#ffd740!important}.amber.accent-3{background-color:#ffc400!important;border-color:#ffc400!important}.amber--text.text--accent-3{caret-color:#ffc400!important;color:#ffc400!important}.amber.accent-4{background-color:#ffab00!important;border-color:#ffab00!important}.amber--text.text--accent-4{caret-color:#ffab00!important;color:#ffab00!important}.orange{background-color:#ff9800!important;border-color:#ff9800!important}.orange--text{caret-color:#ff9800!important;color:#ff9800!important}.orange.lighten-5{background-color:#fff3e0!important;border-color:#fff3e0!important}.orange--text.text--lighten-5{caret-color:#fff3e0!important;color:#fff3e0!important}.orange.lighten-4{background-color:#ffe0b2!important;border-color:#ffe0b2!important}.orange--text.text--lighten-4{caret-color:#ffe0b2!important;color:#ffe0b2!important}.orange.lighten-3{background-color:#ffcc80!important;border-color:#ffcc80!important}.orange--text.text--lighten-3{caret-color:#ffcc80!important;color:#ffcc80!important}.orange.lighten-2{background-color:#ffb74d!important;border-color:#ffb74d!important}.orange--text.text--lighten-2{caret-color:#ffb74d!important;color:#ffb74d!important}.orange.lighten-1{background-color:#ffa726!important;border-color:#ffa726!important}.orange--text.text--lighten-1{caret-color:#ffa726!important;color:#ffa726!important}.orange.darken-1{background-color:#fb8c00!important;border-color:#fb8c00!important}.orange--text.text--darken-1{caret-color:#fb8c00!important;color:#fb8c00!important}.orange.darken-2{background-color:#f57c00!important;border-color:#f57c00!important}.orange--text.text--darken-2{caret-color:#f57c00!important;color:#f57c00!important}.orange.darken-3{background-color:#ef6c00!important;border-color:#ef6c00!important}.orange--text.text--darken-3{caret-color:#ef6c00!important;color:#ef6c00!important}.orange.darken-4{background-color:#e65100!important;border-color:#e65100!important}.orange--text.text--darken-4{caret-color:#e65100!important;color:#e65100!important}.orange.accent-1{background-color:#ffd180!important;border-color:#ffd180!important}.orange--text.text--accent-1{caret-color:#ffd180!important;color:#ffd180!important}.orange.accent-2{background-color:#ffab40!important;border-color:#ffab40!important}.orange--text.text--accent-2{caret-color:#ffab40!important;color:#ffab40!important}.orange.accent-3{background-color:#ff9100!important;border-color:#ff9100!important}.orange--text.text--accent-3{caret-color:#ff9100!important;color:#ff9100!important}.orange.accent-4{background-color:#ff6d00!important;border-color:#ff6d00!important}.orange--text.text--accent-4{caret-color:#ff6d00!important;color:#ff6d00!important}.deep-orange{background-color:#ff5722!important;border-color:#ff5722!important}.deep-orange--text{caret-color:#ff5722!important;color:#ff5722!important}.deep-orange.lighten-5{background-color:#fbe9e7!important;border-color:#fbe9e7!important}.deep-orange--text.text--lighten-5{caret-color:#fbe9e7!important;color:#fbe9e7!important}.deep-orange.lighten-4{background-color:#ffccbc!important;border-color:#ffccbc!important}.deep-orange--text.text--lighten-4{caret-color:#ffccbc!important;color:#ffccbc!important}.deep-orange.lighten-3{background-color:#ffab91!important;border-color:#ffab91!important}.deep-orange--text.text--lighten-3{caret-color:#ffab91!important;color:#ffab91!important}.deep-orange.lighten-2{background-color:#ff8a65!important;border-color:#ff8a65!important}.deep-orange--text.text--lighten-2{caret-color:#ff8a65!important;color:#ff8a65!important}.deep-orange.lighten-1{background-color:#ff7043!important;border-color:#ff7043!important}.deep-orange--text.text--lighten-1{caret-color:#ff7043!important;color:#ff7043!important}.deep-orange.darken-1{background-color:#f4511e!important;border-color:#f4511e!important}.deep-orange--text.text--darken-1{caret-color:#f4511e!important;color:#f4511e!important}.deep-orange.darken-2{background-color:#e64a19!important;border-color:#e64a19!important}.deep-orange--text.text--darken-2{caret-color:#e64a19!important;color:#e64a19!important}.deep-orange.darken-3{background-color:#d84315!important;border-color:#d84315!important}.deep-orange--text.text--darken-3{caret-color:#d84315!important;color:#d84315!important}.deep-orange.darken-4{background-color:#bf360c!important;border-color:#bf360c!important}.deep-orange--text.text--darken-4{caret-color:#bf360c!important;color:#bf360c!important}.deep-orange.accent-1{background-color:#ff9e80!important;border-color:#ff9e80!important}.deep-orange--text.text--accent-1{caret-color:#ff9e80!important;color:#ff9e80!important}.deep-orange.accent-2{background-color:#ff6e40!important;border-color:#ff6e40!important}.deep-orange--text.text--accent-2{caret-color:#ff6e40!important;color:#ff6e40!important}.deep-orange.accent-3{background-color:#ff3d00!important;border-color:#ff3d00!important}.deep-orange--text.text--accent-3{caret-color:#ff3d00!important;color:#ff3d00!important}.deep-orange.accent-4{background-color:#dd2c00!important;border-color:#dd2c00!important}.deep-orange--text.text--accent-4{caret-color:#dd2c00!important;color:#dd2c00!important}.brown{background-color:#795548!important;border-color:#795548!important}.brown--text{caret-color:#795548!important;color:#795548!important}.brown.lighten-5{background-color:#efebe9!important;border-color:#efebe9!important}.brown--text.text--lighten-5{caret-color:#efebe9!important;color:#efebe9!important}.brown.lighten-4{background-color:#d7ccc8!important;border-color:#d7ccc8!important}.brown--text.text--lighten-4{caret-color:#d7ccc8!important;color:#d7ccc8!important}.brown.lighten-3{background-color:#bcaaa4!important;border-color:#bcaaa4!important}.brown--text.text--lighten-3{caret-color:#bcaaa4!important;color:#bcaaa4!important}.brown.lighten-2{background-color:#a1887f!important;border-color:#a1887f!important}.brown--text.text--lighten-2{caret-color:#a1887f!important;color:#a1887f!important}.brown.lighten-1{background-color:#8d6e63!important;border-color:#8d6e63!important}.brown--text.text--lighten-1{caret-color:#8d6e63!important;color:#8d6e63!important}.brown.darken-1{background-color:#6d4c41!important;border-color:#6d4c41!important}.brown--text.text--darken-1{caret-color:#6d4c41!important;color:#6d4c41!important}.brown.darken-2{background-color:#5d4037!important;border-color:#5d4037!important}.brown--text.text--darken-2{caret-color:#5d4037!important;color:#5d4037!important}.brown.darken-3{background-color:#4e342e!important;border-color:#4e342e!important}.brown--text.text--darken-3{caret-color:#4e342e!important;color:#4e342e!important}.brown.darken-4{background-color:#3e2723!important;border-color:#3e2723!important}.brown--text.text--darken-4{caret-color:#3e2723!important;color:#3e2723!important}.blue-grey{background-color:#607d8b!important;border-color:#607d8b!important}.blue-grey--text{caret-color:#607d8b!important;color:#607d8b!important}.blue-grey.lighten-5{background-color:#eceff1!important;border-color:#eceff1!important}.blue-grey--text.text--lighten-5{caret-color:#eceff1!important;color:#eceff1!important}.blue-grey.lighten-4{background-color:#cfd8dc!important;border-color:#cfd8dc!important}.blue-grey--text.text--lighten-4{caret-color:#cfd8dc!important;color:#cfd8dc!important}.blue-grey.lighten-3{background-color:#b0bec5!important;border-color:#b0bec5!important}.blue-grey--text.text--lighten-3{caret-color:#b0bec5!important;color:#b0bec5!important}.blue-grey.lighten-2{background-color:#90a4ae!important;border-color:#90a4ae!important}.blue-grey--text.text--lighten-2{caret-color:#90a4ae!important;color:#90a4ae!important}.blue-grey.lighten-1{background-color:#78909c!important;border-color:#78909c!important}.blue-grey--text.text--lighten-1{caret-color:#78909c!important;color:#78909c!important}.blue-grey.darken-1{background-color:#546e7a!important;border-color:#546e7a!important}.blue-grey--text.text--darken-1{caret-color:#546e7a!important;color:#546e7a!important}.blue-grey.darken-2{background-color:#455a64!important;border-color:#455a64!important}.blue-grey--text.text--darken-2{caret-color:#455a64!important;color:#455a64!important}.blue-grey.darken-3{background-color:#37474f!important;border-color:#37474f!important}.blue-grey--text.text--darken-3{caret-color:#37474f!important;color:#37474f!important}.blue-grey.darken-4{background-color:#263238!important;border-color:#263238!important}.blue-grey--text.text--darken-4{caret-color:#263238!important;color:#263238!important}.grey{background-color:#9e9e9e!important;border-color:#9e9e9e!important}.grey--text{caret-color:#9e9e9e!important;color:#9e9e9e!important}.grey.lighten-5{background-color:#fafafa!important;border-color:#fafafa!important}.grey--text.text--lighten-5{caret-color:#fafafa!important;color:#fafafa!important}.grey.lighten-4{background-color:#f5f5f5!important;border-color:#f5f5f5!important}.grey--text.text--lighten-4{caret-color:#f5f5f5!important;color:#f5f5f5!important}.grey.lighten-3{background-color:#eee!important;border-color:#eee!important}.grey--text.text--lighten-3{caret-color:#eee!important;color:#eee!important}.grey.lighten-2{background-color:#e0e0e0!important;border-color:#e0e0e0!important}.grey--text.text--lighten-2{caret-color:#e0e0e0!important;color:#e0e0e0!important}.grey.lighten-1{background-color:#bdbdbd!important;border-color:#bdbdbd!important}.grey--text.text--lighten-1{caret-color:#bdbdbd!important;color:#bdbdbd!important}.grey.darken-1{background-color:#757575!important;border-color:#757575!important}.grey--text.text--darken-1{caret-color:#757575!important;color:#757575!important}.grey.darken-2{background-color:#616161!important;border-color:#616161!important}.grey--text.text--darken-2{caret-color:#616161!important;color:#616161!important}.grey.darken-3{background-color:#424242!important;border-color:#424242!important}.grey--text.text--darken-3{caret-color:#424242!important;color:#424242!important}.grey.darken-4{background-color:#212121!important;border-color:#212121!important}.grey--text.text--darken-4{caret-color:#212121!important;color:#212121!important}.shades.black{background-color:#000!important;border-color:#000!important}.shades--text.text--black{caret-color:#000!important;color:#000!important}.shades.white{background-color:#fff!important;border-color:#fff!important}.shades--text.text--white{caret-color:#fff!important;color:#fff!important}.shades.transparent{background-color:transparent!important;border-color:transparent!important}.shades--text.text--transparent{caret-color:transparent!important;color:transparent!important}.elevation-0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.elevation-1{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important}.elevation-2{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important}.elevation-3{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)!important}.elevation-4{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important}.elevation-5{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)!important}.elevation-6{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)!important}.elevation-7{box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important}.elevation-8{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important}.elevation-9{box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)!important}.elevation-10{box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)!important}.elevation-11{box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)!important}.elevation-12{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important}.elevation-13{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)!important}.elevation-14{box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)!important}.elevation-15{box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)!important}.elevation-16{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)!important}.elevation-17{box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)!important}.elevation-18{box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)!important}.elevation-19{box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)!important}.elevation-20{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)!important}.elevation-21{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)!important}.elevation-22{box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)!important}.elevation-23{box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)!important}.elevation-24{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)!important}html{-webkit-text-size-adjust:100%;box-sizing:border-box;overflow-y:scroll}*,:after,:before{box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{background-repeat:no-repeat;margin:0;padding:0}audio:not([controls]){display:none;height:0}hr{overflow:visible}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}summary{display:list-item}small{font-size:80%}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted;text-decoration:none}a{-webkit-text-decoration-skip:objects;background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[disabled]{cursor:default}[type=number]{width:auto}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:0;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{border:0;outline:0}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,select{text-transform:none}button,input,select,textarea{background-color:transparent;border-style:none;color:inherit}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}img{border-style:none}progress{vertical-align:baseline}svg:not(:root){overflow:hidden}audio,canvas,progress,video{display:inline-block}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.bottom-sheet-transition-enter,.bottom-sheet-transition-leave-to{transform:translateY(100%)}.carousel-transition-enter{transform:translate(100%)}.carousel-transition-leave,.carousel-transition-leave-to{position:absolute;top:0}.carousel-reverse-transition-enter,.carousel-transition-leave,.carousel-transition-leave-to{transform:translate(-100%)}.carousel-reverse-transition-leave,.carousel-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.dialog-transition-enter,.dialog-transition-leave-to{-webkit-transform:scale(.5);opacity:0;transform:scale(.5)}.dialog-transition-enter-to,.dialog-transition-leave{opacity:1}.dialog-bottom-transition-enter,.dialog-bottom-transition-leave-to{transform:translateY(100%)}.picker-reverse-transition-enter-active,.picker-reverse-transition-leave-active,.picker-transition-enter-active,.picker-transition-leave-active{transition:.3s cubic-bezier(0,0,.2,1)}.picker-reverse-transition-enter,.picker-reverse-transition-leave-to,.picker-transition-enter,.picker-transition-leave-to{opacity:0}.picker-reverse-transition-leave,.picker-reverse-transition-leave-active,.picker-reverse-transition-leave-to,.picker-transition-leave,.picker-transition-leave-active,.picker-transition-leave-to{position:absolute!important}.picker-transition-enter{transform:translateY(100%)}.picker-reverse-transition-enter,.picker-transition-leave-to{transform:translateY(-100%)}.picker-reverse-transition-leave-to{transform:translateY(100%)}.picker-title-transition-enter-to,.picker-title-transition-leave{transform:translate(0)}.picker-title-transition-enter{transform:translate(-100%)}.picker-title-transition-leave-to{-webkit-transform:translate(100%);opacity:0;transform:translate(100%)}.picker-title-transition-leave,.picker-title-transition-leave-active,.picker-title-transition-leave-to{position:absolute!important}.tab-transition-enter{transform:translate(100%)}.tab-transition-leave,.tab-transition-leave-active{position:absolute;top:0}.tab-transition-leave-to{position:absolute}.tab-reverse-transition-enter,.tab-transition-leave-to{transform:translate(-100%)}.tab-reverse-transition-leave,.tab-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.expand-transition-enter-active,.expand-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.expand-transition-move{transition:transform .6s}.scale-transition-enter-active,.scale-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scale-transition-move{transition:transform .6s}.scale-transition-enter,.scale-transition-leave,.scale-transition-leave-to{-webkit-transform:scale(0);opacity:0;transform:scale(0)}.message-transition-enter-active,.message-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.message-transition-move{transition:transform .6s}.message-transition-enter,.message-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.message-transition-leave,.message-transition-leave-active{position:absolute}.slide-y-transition-enter-active,.slide-y-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-transition-move{transition:transform .6s}.slide-y-transition-enter,.slide-y-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.slide-y-reverse-transition-enter-active,.slide-y-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-reverse-transition-move{transition:transform .6s}.slide-y-reverse-transition-enter,.slide-y-reverse-transition-leave-to{-webkit-transform:translateY(15px);opacity:0;transform:translateY(15px)}.scroll-y-transition-enter-active,.scroll-y-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-transition-move{transition:transform .6s}.scroll-y-transition-enter,.scroll-y-transition-leave-to{opacity:0}.scroll-y-transition-enter{transform:translateY(-15px)}.scroll-y-transition-leave-to{transform:translateY(15px)}.scroll-y-reverse-transition-enter-active,.scroll-y-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-reverse-transition-move{transition:transform .6s}.scroll-y-reverse-transition-enter,.scroll-y-reverse-transition-leave-to{opacity:0}.scroll-y-reverse-transition-enter{transform:translateY(15px)}.scroll-y-reverse-transition-leave-to{transform:translateY(-15px)}.scroll-x-transition-enter-active,.scroll-x-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-transition-move{transition:transform .6s}.scroll-x-transition-enter,.scroll-x-transition-leave-to{opacity:0}.scroll-x-transition-enter{transform:translateX(-15px)}.scroll-x-transition-leave-to{transform:translateX(15px)}.scroll-x-reverse-transition-enter-active,.scroll-x-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-reverse-transition-move{transition:transform .6s}.scroll-x-reverse-transition-enter,.scroll-x-reverse-transition-leave-to{opacity:0}.scroll-x-reverse-transition-enter{transform:translateX(15px)}.scroll-x-reverse-transition-leave-to{transform:translateX(-15px)}.slide-x-transition-enter-active,.slide-x-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-transition-move{transition:transform .6s}.slide-x-transition-enter,.slide-x-transition-leave-to{-webkit-transform:translateX(-15px);opacity:0;transform:translateX(-15px)}.slide-x-reverse-transition-enter-active,.slide-x-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-reverse-transition-move{transition:transform .6s}.slide-x-reverse-transition-enter,.slide-x-reverse-transition-leave-to{-webkit-transform:translateX(15px);opacity:0;transform:translateX(15px)}.fade-transition-enter-active,.fade-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.fade-transition-move{transition:transform .6s}.fade-transition-enter,.fade-transition-leave-to{opacity:0}.fab-transition-enter-active,.fab-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.fab-transition-move{transition:transform .6s}.fab-transition-enter,.fab-transition-leave-to{transform:scale(0) rotate(-45deg)}.blockquote{font-size:18px;font-weight:300;padding:16px 0 16px 24px}code,kbd{border-radius:3px;display:inline-block;font-size:85%;font-weight:900;white-space:pre-wrap}code:after,code:before,kbd:after,kbd:before{content:"\A0";letter-spacing:-1px}code{background-color:#f5f5f5;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);color:#bd4147}kbd{background:#424242;color:#fff}html{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);font-size:14px;overflow-x:hidden;text-rendering:optimizeLegibility}.application{font-family:Roboto,sans-serif;line-height:1.5}::-ms-clear,::-ms-reveal{display:none}ol,ul{padding-left:24px}.display-4{font-family:Roboto,sans-serif!important;font-size:112px!important;font-weight:300;letter-spacing:-.04em!important;line-height:1!important}.display-3{font-size:56px!important;letter-spacing:-.02em!important;line-height:1.35!important}.display-2,.display-3{font-family:Roboto,sans-serif!important;font-weight:400}.display-2{font-size:45px!important;letter-spacing:normal!important;line-height:48px!important}.display-1{font-size:34px!important;line-height:40px!important}.display-1,.headline{font-family:Roboto,sans-serif!important;font-weight:400;letter-spacing:normal!important}.headline{font-size:24px!important;line-height:32px!important}.title{font-family:Roboto,sans-serif!important;font-size:20px!important;font-weight:500;letter-spacing:.02em!important;line-height:1!important}.subheading{font-size:16px!important;font-weight:400}.body-2{font-weight:500}.body-1,.body-2{font-size:14px!important}.body-1,.caption{font-weight:400}.caption{font-size:12px!important}p{margin-bottom:16px}.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.right{float:right!important}.left{float:left!important}.ma-auto{margin:auto!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mt-auto{margin-top:auto}.mr-auto{margin-right:auto}.mb-auto{margin-bottom:auto}.ml-auto{margin-left:auto}.ma-0{margin:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.pa-0{padding:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.ma-1{margin:4px!important}.my-1{margin-bottom:4px!important;margin-top:4px!important}.mx-1{margin-left:4px!important;margin-right:4px!important}.mt-1{margin-top:4px!important}.mr-1{margin-right:4px!important}.mb-1{margin-bottom:4px!important}.ml-1{margin-left:4px!important}.pa-1{padding:4px!important}.py-1{padding-bottom:4px!important;padding-top:4px!important}.px-1{padding-left:4px!important;padding-right:4px!important}.pt-1{padding-top:4px!important}.pr-1{padding-right:4px!important}.pb-1{padding-bottom:4px!important}.pl-1{padding-left:4px!important}.ma-2{margin:8px!important}.my-2{margin-bottom:8px!important;margin-top:8px!important}.mx-2{margin-left:8px!important;margin-right:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.pa-2{padding:8px!important}.py-2{padding-bottom:8px!important;padding-top:8px!important}.px-2{padding-left:8px!important;padding-right:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2{padding-left:8px!important}.ma-3{margin:16px!important}.my-3{margin-bottom:16px!important;margin-top:16px!important}.mx-3{margin-left:16px!important;margin-right:16px!important}.mt-3{margin-top:16px!important}.mr-3{margin-right:16px!important}.mb-3{margin-bottom:16px!important}.ml-3{margin-left:16px!important}.pa-3{padding:16px!important}.py-3{padding-bottom:16px!important;padding-top:16px!important}.px-3{padding-left:16px!important;padding-right:16px!important}.pt-3{padding-top:16px!important}.pr-3{padding-right:16px!important}.pb-3{padding-bottom:16px!important}.pl-3{padding-left:16px!important}.ma-4{margin:24px!important}.my-4{margin-bottom:24px!important;margin-top:24px!important}.mx-4{margin-left:24px!important;margin-right:24px!important}.mt-4{margin-top:24px!important}.mr-4{margin-right:24px!important}.mb-4{margin-bottom:24px!important}.ml-4{margin-left:24px!important}.pa-4{padding:24px!important}.py-4{padding-bottom:24px!important;padding-top:24px!important}.px-4{padding-left:24px!important;padding-right:24px!important}.pt-4{padding-top:24px!important}.pr-4{padding-right:24px!important}.pb-4{padding-bottom:24px!important}.pl-4{padding-left:24px!important}.ma-5{margin:48px!important}.my-5{margin-bottom:48px!important;margin-top:48px!important}.mx-5{margin-left:48px!important;margin-right:48px!important}.mt-5{margin-top:48px!important}.mr-5{margin-right:48px!important}.mb-5{margin-bottom:48px!important}.ml-5{margin-left:48px!important}.pa-5{padding:48px!important}.py-5{padding-bottom:48px!important;padding-top:48px!important}.px-5{padding-left:48px!important;padding-right:48px!important}.pt-5{padding-top:48px!important}.pr-5{padding-right:48px!important}.pb-5{padding-bottom:48px!important}.pl-5{padding-left:48px!important}.font-weight-thin{font-weight:100!important}.font-weight-light{font-weight:300!important}.font-weight-regular{font-weight:400!important}.font-weight-medium{font-weight:500!important}.font-weight-bold{font-weight:700!important}.font-weight-black{font-weight:900!important}.font-italic{font-style:italic!important}.text-capitalize{text-transform:capitalize!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-no-wrap,.text-truncate{white-space:nowrap!important}.text-truncate{overflow:hidden!important;text-overflow:ellipsis!important}.transition-fast-out-slow-in{transition:.3s cubic-bezier(.4,0,.2,1)!important}.transition-linear-out-slow-in{transition:.3s cubic-bezier(0,0,.2,1)!important}.transition-fast-out-linear-in{transition:.3s cubic-bezier(.4,0,1,1)!important}.transition-ease-in-out{transition:.3s cubic-bezier(.4,0,.6,1)!important}.transition-fast-in-fast-out{transition:.3s cubic-bezier(.25,.8,.25,1)!important}.transition-swing{transition:.3s cubic-bezier(.25,.8,.5,1)!important}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){clip:rect(0 0 0 0)!important;position:absolute!important}}@media only screen and (max-width:599px){.hidden-xs-only{display:none!important}}@media only screen and (min-width:600px) and (max-width:959px){.hidden-sm-only{display:none!important}}@media only screen and (max-width:959px){.hidden-sm-and-down{display:none!important}}@media only screen and (min-width:600px){.hidden-sm-and-up{display:none!important}}@media only screen and (min-width:960px) and (max-width:1263px){.hidden-md-only{display:none!important}}@media only screen and (max-width:1263px){.hidden-md-and-down{display:none!important}}@media only screen and (min-width:960px){.hidden-md-and-up{display:none!important}}@media only screen and (min-width:1264px) and (max-width:1903px){.hidden-lg-only{display:none!important}}@media only screen and (max-width:1903px){.hidden-lg-and-down{display:none!important}}@media only screen and (min-width:1264px){.hidden-lg-and-up{display:none!important}}@media only screen and (min-width:1904px){.hidden-xl-only{display:none!important}}@media (min-width:0){.text-xs-left{text-align:left!important}.text-xs-center{text-align:center!important}.text-xs-right{text-align:right!important}.text-xs-justify{text-align:justify!important}}@media (min-width:600px){.text-sm-left{text-align:left!important}.text-sm-center{text-align:center!important}.text-sm-right{text-align:right!important}.text-sm-justify{text-align:justify!important}}@media (min-width:960px){.text-md-left{text-align:left!important}.text-md-center{text-align:center!important}.text-md-right{text-align:right!important}.text-md-justify{text-align:justify!important}}@media (min-width:1264px){.text-lg-left{text-align:left!important}.text-lg-center{text-align:center!important}.text-lg-right{text-align:right!important}.text-lg-justify{text-align:justify!important}}@media (min-width:1904px){.text-xl-left{text-align:left!important}.text-xl-center{text-align:center!important}.text-xl-right{text-align:right!important}.text-xl-justify{text-align:justify!important}}.application{display:-ms-flexbox;display:flex}.application a{cursor:pointer}.application--is-rtl{direction:rtl}.application--wrap{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column;flex-direction:column;max-width:100%;min-height:100vh;position:relative}.theme--light.application{background:#fafafa;color:rgba(0,0,0,.87)}.theme--light.application .text--primary{color:rgba(0,0,0,.87)!important}.theme--light.application .text--secondary{color:rgba(0,0,0,.54)!important}.theme--light.application .text--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.application{background:#303030;color:#fff}.theme--dark.application .text--primary{color:#fff!important}.theme--dark.application .text--secondary{color:hsla(0,0%,100%,.7)!important}.theme--dark.application .text--disabled{color:hsla(0,0%,100%,.5)!important}@media print{@-moz-document url-prefix(){.application,.application--wrap{display:block}}}.v-alert{border-radius:0;border-style:solid;border-width:4px 0 0;color:#fff;display:-ms-flexbox;display:flex;font-size:14px;margin:4px auto;padding:16px;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-alert .v-alert__icon.v-icon,.v-alert__dismissible .v-icon{-ms-flex-item-align:center;align-self:center;color:rgba(0,0,0,.3);font-size:24px}.v-alert--outline .v-icon{color:inherit!important}.v-alert__icon{margin-right:16px}.v-alert__dismissible{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;color:inherit;margin-left:16px;margin-right:0;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-alert__dismissible:hover{opacity:.8}.v-alert--no-icon .v-alert__icon{display:none}.v-alert>div{-ms-flex-item-align:center;align-self:center;-ms-flex:1 1;flex:1 1}.v-alert.v-alert{border-color:rgba(0,0,0,.12)!important}.v-alert.v-alert--outline{border:1px solid!important}@media screen and (max-width:600px){.v-alert__icon{display:none}}.theme--light.v-icon{color:rgba(0,0,0,.54)}.theme--light.v-icon.v-icon--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.v-icon{color:#fff}.theme--dark.v-icon.v-icon--disabled{color:hsla(0,0%,100%,.5)!important}.v-icon{-webkit-font-feature-settings:"liga";-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-feature-settings:"liga";font-size:24px;-ms-flex-pack:center;justify-content:center;line-height:1;transition:.3s cubic-bezier(.25,.8,.5,1);vertical-align:text-bottom}.v-icon.v-icon.v-icon--link{cursor:pointer}.v-icon.v-icon--large{font-size:2.5rem}.v-icon.v-icon--medium{font-size:2rem}.v-icon.v-icon--x-large{font-size:3rem}.v-icon.v-icon--disabled{pointer-events:none}.v-autocomplete.v-input>.v-input__control>.v-input__slot{cursor:text}.v-autocomplete input{-ms-flex-item-align:center;align-self:center}.v-autocomplete--is-selecting-index input{opacity:0}.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo) .v-select__slot>input{margin-top:24px}.v-autocomplete:not(.v-input--is-disabled).v-select.v-text-field input{pointer-events:auto}.v-autocomplete__content.v-menu__content,.v-autocomplete__content.v-menu__content .v-card{border-radius:0}.theme--light.v-text-field .v-input__slot:before{border-color:rgba(0,0,0,.42)}.theme--light.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:rgba(0,0,0,.87)}.theme--light.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38),rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38),rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat}.theme--light.v-text-field__prefix,.theme--light.v-text-field__suffix{color:rgba(0,0,0,.54)}.theme--light.v-text-field--solo .v-input__slot{background:#fff;border-radius:2px}.theme--light.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:rgba(0,0,0,.16)}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#424242}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:#fff}.theme--light.v-text-field--box .v-input__slot{background:rgba(0,0,0,.06)}.theme--light.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.12)}.theme--light.v-text-field--outline .v-input__slot{border:2px solid rgba(0,0,0,.54)}.theme--light.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid rgba(0,0,0,.87)}.theme--dark.v-text-field .v-input__slot:before{border-color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:#fff}.theme--dark.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5),hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5),hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat}.theme--dark.v-text-field__prefix,.theme--dark.v-text-field__suffix{color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field--solo .v-input__slot{background:#424242;border-radius:2px}.theme--dark.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:hsla(0,0%,100%,.16)}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#fff}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:rgba(0,0,0,.87)}.theme--dark.v-text-field--box .v-input__slot{background:rgba(0,0,0,.1)}.theme--dark.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.2)}.theme--dark.v-text-field--outline .v-input__slot{border:2px solid hsla(0,0%,100%,.7)}.theme--dark.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid #fff}.application--is-rtl .v-text-field .v-label{transform-origin:top right}.application--is-rtl .v-text-field .v-counter{margin-left:0;margin-right:8px}.application--is-rtl .v-text-field--enclosed .v-input__append-outer{margin-left:0;margin-right:16px}.application--is-rtl .v-text-field--enclosed .v-input__prepend-outer{margin-left:16px;margin-right:0}.application--is-rtl .v-text-field--reverse input{text-align:left}.application--is-rtl .v-text-field--reverse .v-label{transform-origin:top left}.application--is-rtl .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.application--is-rtl .v-text-field__suffix{padding-left:0;padding-right:4px}.application--is-rtl .v-text-field--reverse .v-text-field__prefix{padding-left:0;padding-right:4px;text-align:right}.application--is-rtl .v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field{margin-top:4px;padding-top:12px}.v-text-field input{-ms-flex:1 1 auto;flex:1 1 auto;line-height:20px;max-width:100%;min-width:0;padding:8px 0;width:100%}.v-text-field .v-input__append-inner,.v-text-field .v-input__prepend-inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-top:4px;user-select:none}.v-text-field .v-input__prepend-inner{margin-right:auto;padding-right:4px}.v-text-field .v-input__append-inner{margin-left:auto;padding-left:4px}.v-text-field .v-counter{margin-left:8px;white-space:nowrap}.v-text-field .v-label{-webkit-transform-origin:top left;max-width:90%;overflow:hidden;pointer-events:none;text-overflow:ellipsis;top:6px;transform-origin:top left;white-space:nowrap}.v-text-field .v-label--active{-webkit-transform:translateY(-18px) scale(.75);max-width:100%;transform:translateY(-18px) scale(.75)}.v-text-field>.v-input__control>.v-input__slot{cursor:text;transition:background .3s cubic-bezier(.25,.8,.5,1)}.v-text-field>.v-input__control>.v-input__slot:after,.v-text-field>.v-input__control>.v-input__slot:before{bottom:-1px;content:"";left:0;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-text-field>.v-input__control>.v-input__slot:before{border-style:solid;border-width:thin 0 0}.v-text-field>.v-input__control>.v-input__slot:after{-webkit-transform:scaleX(0);border-color:currentColor;border-style:solid;border-width:thin 0;transform:scaleX(0)}.v-text-field__details{display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;overflow:hidden}.v-text-field__prefix,.v-text-field__suffix{-ms-flex-item-align:center;align-self:center;cursor:default}.v-text-field__prefix{padding-right:4px;text-align:right;width:16px}.v-text-field__suffix{padding-left:4px;white-space:nowrap}.v-text-field--reverse .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field__slot{display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.v-text-field--box,.v-text-field--outline{position:relative}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{-ms-flex-align:stretch;align-items:stretch}.v-text-field--box input,.v-text-field--outline input{margin-top:22px}.v-text-field--box.v-text-field--single-line input,.v-text-field--outline.v-text-field--single-line input{margin-top:12px}.v-text-field--box .v-label,.v-text-field--outline .v-label{top:18px}.v-text-field--box .v-label--active,.v-text-field--outline .v-label--active{transform:translateY(-6px) scale(.75)}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{min-height:56px}.v-text-field--box .v-input__slot{border-top-left-radius:4px;border-top-right-radius:4px}.v-text-field--box .v-input__slot:before{border-style:solid;border-width:thin 0}.v-text-field.v-text-field--enclosed{margin:0;padding:0}.v-text-field.v-text-field--enclosed:not(.v-text-field--box) .v-progress-linear__background{display:none}.v-text-field.v-text-field--enclosed .v-input__append-inner,.v-text-field.v-text-field--enclosed .v-input__append-outer,.v-text-field.v-text-field--enclosed .v-input__prepend-inner,.v-text-field.v-text-field--enclosed .v-input__prepend-outer{margin-top:16px}.v-text-field.v-text-field--enclosed .v-input__slot,.v-text-field.v-text-field--enclosed .v-text-field__details{padding:0 12px}.v-text-field.v-text-field--enclosed .v-text-field__details{margin-bottom:8px}.v-text-field.v-text-field--full-width.v-input{margin-bottom:0;margin-top:0}.v-text-field.v-text-field--full-width .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--full-width .v-input__control{padding:12px 0}.v-text-field.v-text-field--full-width .v-input__append-outer,.v-text-field.v-text-field--full-width .v-input__prepend-outer{margin-top:4px}.v-text-field.v-text-field--full-width .v-input__append-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field--reverse input{text-align:right}.v-text-field--reverse .v-label{transform-origin:top right}.v-text-field--reverse .v-input__slot,.v-text-field--reverse .v-text-field__slot{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-text-field--full-width .v-input__slot:after,.v-text-field--full-width .v-input__slot:before,.v-text-field--outline .v-input__slot:after,.v-text-field--outline .v-input__slot:before,.v-text-field--solo .v-input__slot:after,.v-text-field--solo .v-input__slot:before{display:none}.v-text-field--outline{margin-bottom:16px;transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field--outline .v-input__slot{background:transparent!important;border-radius:4px}.v-text-field--outline .v-input__append-outer,.v-text-field--outline .v-input__prepend-outer{margin-top:18px}.v-text-field--outline.v-input--is-focused .v-input__slot{border:2px solid;transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field.v-text-field--solo .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--solo .v-input__control{min-height:48px;padding:0}.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat) .v-input__slot{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-text-field.v-text-field--solo .v-text-field__slot{-ms-flex-align:center;align-items:center}.v-text-field.v-text-field--solo .v-input__append-inner,.v-text-field.v-text-field--solo .v-input__prepend-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field.v-text-field--solo .v-input__append-outer,.v-text-field.v-text-field--solo .v-input__prepend-outer{margin-top:12px}.v-text-field.v-input--is-focused .v-input__slot:after{transform:scaleX(1)}.v-text-field.v-input--has-state .v-input__slot:before{border-color:currentColor}.theme--light.v-select .v-select__selections{color:rgba(0,0,0,.87)}.theme--light.v-select .v-chip--disabled,.theme--light.v-select.v-input--is-disabled .v-select__selections,.theme--light.v-select .v-select__selection--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-select .v-select__selections,.theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:#fff}.theme--dark.v-select .v-chip--disabled,.theme--dark.v-select.v-input--is-disabled .v-select__selections,.theme--dark.v-select .v-select__selection--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:rgba(0,0,0,.87)}.v-select{position:relative}.v-select>.v-input__control>.v-input__slot{cursor:pointer}.v-select .v-chip{-ms-flex:0 1 auto;flex:0 1 auto}.v-select .fade-transition-leave-active{left:0;position:absolute}.v-select.v-input--is-dirty ::-webkit-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty :-ms-input-placeholder,.v-select.v-input--is-dirty ::-ms-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty ::placeholder{color:transparent!important}.v-select.v-text-field--enclosed:not(.v-text-field--single-line) .v-select__selections{padding-top:24px}.v-select.v-text-field input{-ms-flex:1 1;flex:1 1;margin-top:0;min-width:0;pointer-events:none;position:relative}.v-select.v-select--is-menu-active .v-input__icon--append .v-icon{transform:rotate(180deg)}.v-select.v-select--chips input{margin:0}.v-select.v-select--chips .v-select__selections{min-height:42px}.v-select.v-select--chips.v-select--chips--small .v-select__selections{min-height:32px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections{min-height:68px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections{min-height:56px}.v-select.v-text-field--reverse .v-select__selections,.v-select.v-text-field--reverse .v-select__slot{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-select__selections{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:18px}.v-select__selection{max-width:90%}.v-select__selection--comma{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;margin:7px 4px 7px 0}.v-select__slot{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;position:relative;width:100%}.v-select:not(.v-text-field--single-line) .v-select__slot>input{-ms-flex-item-align:end;align-self:flex-end}.theme--light.v-chip{background:#e0e0e0;color:rgba(0,0,0,.87)}.theme--light.v-chip--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-chip{background:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-chip--disabled{color:hsla(0,0%,100%,.5)}.v-chip{border:1px solid transparent;border-radius:28px;font-size:13px;margin:4px;outline:none;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-chip,.v-chip .v-chip__content{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.v-chip .v-chip__content{border-radius:28px;cursor:default;height:32px;-ms-flex-pack:justify;justify-content:space-between;padding:0 12px;white-space:nowrap;z-index:1}.v-chip--removable .v-chip__content{padding:0 4px 0 12px}.v-chip .v-avatar{height:32px!important;margin-left:-12px;margin-right:8px;min-width:32px;width:32px!important}.v-chip .v-avatar img{height:100%;width:100%}.v-chip--active,.v-chip--selected,.v-chip:focus:not(.v-chip--disabled){border-color:rgba(0,0,0,.13);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-chip--active:after,.v-chip--selected:after,.v-chip:focus:not(.v-chip--disabled):after{background:currentColor;border-radius:inherit;content:"";height:100%;left:0;opacity:.13;pointer-events:none;position:absolute;top:0;transition:inherit;width:100%}.v-chip--label,.v-chip--label .v-chip__content{border-radius:2px}.v-chip.v-chip.v-chip--outline{background:transparent!important;border-color:currentColor;color:#9e9e9e}.v-chip--small{height:24px}.v-chip--small .v-avatar{height:24px;min-width:24px;width:24px}.v-chip--small .v-icon{font-size:20px}.v-chip__close{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;font-size:20px;margin:0 2px 0 8px;text-decoration:none;user-select:none}.v-chip__close>.v-icon{color:inherit!important;cursor:pointer;font-size:20px;opacity:.5}.v-chip__close>.v-icon:hover{opacity:1}.v-chip--disabled .v-chip__close{pointer-events:none}.v-chip--select-multi{margin:4px 4px 4px 0}.v-chip .v-icon{color:inherit}.v-chip .v-icon--right{margin-left:12px;margin-right:-8px}.v-chip .v-icon--left{margin-left:-8px;margin-right:12px}.v-menu{display:block;position:relative;vertical-align:middle}.v-menu--inline{display:inline-block}.v-menu__activator{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex;position:relative}.v-menu__activator *{cursor:pointer}.v-menu__activator--disabled{pointer-events:none}.v-menu__content{border-radius:2px;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);contain:content;display:inline-block;max-width:80%;overflow-x:hidden;overflow-y:auto;position:absolute;will-change:transform}.v-menu__content--active{pointer-events:none}.v-menu__content>.card{-webkit-backface-visibility:hidden;backface-visibility:hidden;contain:content}.v-menu>.v-menu__content{max-width:none}.v-menu-transition-enter .v-list__tile{min-width:0;pointer-events:none}.v-menu-transition-enter-to .v-list__tile{pointer-events:auto;transition-delay:.1s}.v-menu-transition-leave-active,.v-menu-transition-leave-to{pointer-events:none}.v-menu-transition-enter,.v-menu-transition-leave-to{opacity:0}.v-menu-transition-enter-active,.v-menu-transition-leave-active{transition:all .3s cubic-bezier(.25,.8,.25,1)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile--active{-webkit-transform:none!important;opacity:1;pointer-events:auto;transform:none!important}.theme--light.v-card{background-color:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-card{background-color:#424242;color:#fff}.v-card{border-radius:2px;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:block;min-width:0;position:relative;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-card>:first-child:not(.v-btn):not(.v-chip){border-top-left-radius:inherit;border-top-right-radius:inherit}.v-card>:last-child:not(.v-btn):not(.v-chip){border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.v-card--raised{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.v-card--tile{border-radius:0}.v-card--flat{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-card--hover{cursor:pointer;transition:all .4s cubic-bezier(.25,.8,.25,1);transition-property:box-shadow}.v-card--hover:hover{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-card__title{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:16px}.v-card__title--primary{padding-top:24px}.v-card__text{padding:16px;width:100%}.v-card__actions{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;padding:8px}.v-card__actions .v-btn,.v-card__actions>*{margin:0}.v-card__actions .v-btn+.v-btn{margin-left:8px}.theme--light.v-input--selection-controls.v-input--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-input--selection-controls.v-input--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.application--is-rtl .v-input--selection-controls .v-input--selection-controls__input{margin-left:8px;margin-right:0}.v-input--selection-controls{margin-top:16px;padding-top:4px}.v-input--selection-controls .v-input__append-outer,.v-input--selection-controls .v-input__prepend-outer{margin-bottom:0;margin-top:0}.v-input--selection-controls .v-input__slot{margin-bottom:12px}.v-input--selection-controls__input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;color:inherit;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 0 auto;flex:0 0 auto;height:24px;margin-right:8px;position:relative;transition:color .2s cubic-bezier(.25,.8,.25,1),transform .3s cubic-bezier(.25,.8,.25,1);user-select:none;width:24px}.v-input--selection-controls__input input{height:100%;opacity:0;position:absolute;width:100%}.v-input--selection-controls__input+.v-label,.v-input--selection-controls__input input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-input--selection-controls__ripple{cursor:pointer;height:48px;left:-12px;position:absolute;top:calc(50% - 24px);transition:inherit;width:48px}.v-input--selection-controls__ripple:before{-webkit-transform:scale(.2);-webkit-transform-origin:center center;border-radius:50%;bottom:0;content:"";left:0;opacity:.2;position:absolute;right:0;top:0;transform:scale(.2);transform-origin:center center;transition:inherit}.v-input--selection-controls.v-input .v-label{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;height:auto;top:0}.v-input--selection-controls.v-input--is-focused .v-input--selection-controls__ripple:before,.v-input--selection-controls .v-radio--is-focused .v-input--selection-controls__ripple:before{-webkit-transform:scale(.8);background:currentColor;transform:scale(.8)}.theme--light.v-input:not(.v-input--is-disabled) input,.theme--light.v-input:not(.v-input--is-disabled) textarea{color:rgba(0,0,0,.87)}.theme--light.v-input input::-webkit-input-placeholder,.theme--light.v-input textarea::-webkit-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input:-ms-input-placeholder,.theme--light.v-input input::-ms-input-placeholder,.theme--light.v-input textarea:-ms-input-placeholder,.theme--light.v-input textarea::-ms-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input::placeholder,.theme--light.v-input textarea::placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input--is-disabled .v-label,.theme--light.v-input--is-disabled input,.theme--light.v-input--is-disabled textarea{color:rgba(0,0,0,.38)}.theme--dark.v-input:not(.v-input--is-disabled) input,.theme--dark.v-input:not(.v-input--is-disabled) textarea{color:#fff}.theme--dark.v-input input::-webkit-input-placeholder,.theme--dark.v-input textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input:-ms-input-placeholder,.theme--dark.v-input input::-ms-input-placeholder,.theme--dark.v-input textarea:-ms-input-placeholder,.theme--dark.v-input textarea::-ms-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input::placeholder,.theme--dark.v-input textarea::placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input--is-disabled .v-label,.theme--dark.v-input--is-disabled input,.theme--dark.v-input--is-disabled textarea{color:hsla(0,0%,100%,.5)}.v-input{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;text-align:left}.v-input .v-progress-linear{left:0;margin:0;position:absolute;top:calc(100% - 1px)}.v-input input{max-height:32px}.v-input input:invalid,.v-input textarea:invalid{box-shadow:none}.v-input input:active,.v-input input:focus,.v-input textarea:active,.v-input textarea:focus{outline:none}.v-input .v-label{height:20px;line-height:20px}.v-input__append-outer,.v-input__prepend-outer{display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-bottom:4px;margin-top:4px}.v-input__append-outer .v-icon,.v-input__prepend-outer .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.v-input__append-outer{margin-left:9px}.v-input__prepend-outer{margin-right:9px}.v-input__control{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto;position:relative;width:100%}.v-input__icon{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:1 0 auto;flex:1 0 auto;height:24px;-ms-flex-pack:center;justify-content:center;min-width:24px;width:24px}.v-input__icon--clear{border-radius:50%}.v-input__slot{-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;margin-bottom:8px;min-height:inherit;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-input--is-disabled:not(.v-input--is-readonly){pointer-events:none}.v-input--is-loading .v-input__slot:after,.v-input--is-loading .v-input__slot:before{display:none}.v-input--hide-details .v-input__slot{margin-bottom:0}.v-input--has-state.error--text .v-label{animation:shake .6s cubic-bezier(.25,.8,.5,1)}.theme--light.v-label{color:rgba(0,0,0,.54)}.theme--light.v-label--is-disabled{color:rgba(0,0,0,.38)}.theme--dark.v-label{color:hsla(0,0%,100%,.7)}.theme--dark.v-label--is-disabled{color:hsla(0,0%,100%,.5)}.v-label{font-size:16px;line-height:1;min-height:8px;transition:.3s cubic-bezier(.25,.8,.5,1)}.theme--light.v-messages{color:rgba(0,0,0,.54)}.theme--dark.v-messages{color:hsla(0,0%,100%,.7)}.application--is-rtl .v-messages{text-align:right}.v-messages{-ms-flex:1 1 auto;flex:1 1 auto;font-size:12px;min-height:12px;min-width:1px;position:relative}.v-messages__message{-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;line-height:1;overflow-wrap:break-word;word-break:break-word;word-wrap:break-word}.v-progress-linear{background:transparent;margin:1rem 0;overflow:hidden;position:relative;width:100%}.v-progress-linear__bar{position:relative;width:100%;z-index:1}.v-progress-linear__bar,.v-progress-linear__bar__determinate{height:inherit;transition:.2s}.v-progress-linear__bar__indeterminate .long,.v-progress-linear__bar__indeterminate .short{background-color:inherit;bottom:0;height:inherit;left:0;position:absolute;top:0;width:auto;will-change:left,right}.v-progress-linear__bar__indeterminate--active .long{-webkit-animation:indeterminate;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__bar__indeterminate--active .short{-webkit-animation:indeterminate-short;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate-short;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__background{bottom:0;left:0;position:absolute;top:0;transition:.3s ease-in}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .long{-webkit-animation:query;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query;animation-duration:2s;animation-iteration-count:infinite}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .short{-webkit-animation:query-short;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query-short;animation-duration:2s;animation-iteration-count:infinite}@keyframes indeterminate{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes query{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes query-short{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}.theme--light.v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-divider{border-color:hsla(0,0%,100%,.12)}.v-divider{border:solid;border-width:thin 0 0;display:block;-ms-flex:1 1 0px;flex:1 1 0px;height:0;max-height:0;max-width:100%;transition:inherit}.v-divider--inset:not(.v-divider--vertical){margin-left:72px;max-width:calc(100% - 72px)}.v-divider--vertical{-ms-flex-item-align:stretch;align-self:stretch;border:solid;border-width:0 thin 0 0;display:-ms-inline-flexbox;display:inline-flex;height:inherit;max-height:100%;max-width:0;min-height:100%;vertical-align:text-bottom;width:0}.v-divider--vertical.v-divider--inset{margin-top:8px;max-height:calc(100% - 16px);min-height:0}.theme--light.v-subheader{color:rgba(0,0,0,.54)}.theme--dark.v-subheader{color:hsla(0,0%,100%,.7)}.v-subheader{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;height:48px;padding:0 16px}.v-subheader--inset{margin-left:56px}.theme--light.v-list{background:#fff;color:rgba(0,0,0,.87)}.theme--light.v-list .v-list--disabled{color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__tile__sub-title{color:rgba(0,0,0,.54)}.theme--light.v-list .v-list__tile__mask{background:#eee;color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__group__header:hover,.theme--light.v-list .v-list__tile--highlighted,.theme--light.v-list .v-list__tile--link:hover{background:rgba(0,0,0,.04)}.theme--light.v-list .v-list__group--active:after,.theme--light.v-list .v-list__group--active:before{background:rgba(0,0,0,.12)}.theme--light.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--light.v-list .v-list__group--disabled .v-list__tile{color:rgba(0,0,0,.38)!important}.theme--dark.v-list{background:#424242;color:#fff}.theme--dark.v-list .v-list--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__tile__sub-title{color:hsla(0,0%,100%,.7)}.theme--dark.v-list .v-list__tile__mask{background:#494949;color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__group__header:hover,.theme--dark.v-list .v-list__tile--highlighted,.theme--dark.v-list .v-list__tile--link:hover{background:hsla(0,0%,100%,.08)}.theme--dark.v-list .v-list__group--active:after,.theme--dark.v-list .v-list__group--active:before{background:hsla(0,0%,100%,.12)}.theme--dark.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--dark.v-list .v-list__group--disabled .v-list__tile{color:hsla(0,0%,100%,.5)!important}.v-list{list-style-type:none;padding:8px 0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list .v-input .v-messages{display:none}.v-list .v-input,.v-list .v-input__slot{margin:0}.v-list>div{transition:inherit}.v-list__tile{-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;font-size:16px;font-weight:400;height:48px;margin:0;padding:0 16px;position:relative;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list__tile--link{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-list__tile__action,.v-list__tile__content{height:100%}.v-list__tile__sub-title,.v-list__tile__title{overflow:hidden;text-overflow:ellipsis;transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:100%}.v-list__tile__title{height:24px;line-height:24px;position:relative;text-align:left}.v-list__tile__sub-title{font-size:14px}.v-list__tile__action,.v-list__tile__avatar{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__tile__action{-ms-flex-align:center;align-items:center}.v-list__tile__action .v-btn{margin:0;padding:0}.v-list__tile__action .v-btn--icon{margin:-6px}.v-list__tile__action .v-radio.v-radio{margin:0}.v-list__tile__action .v-input--selection-controls{padding:0}.v-list__tile__action-text{color:#9e9e9e;font-size:12px}.v-list__tile__action--stack{-ms-flex-align:end;align-items:flex-end;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:8px;padding-top:8px;white-space:nowrap}.v-list__tile__content{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;text-align:left}.v-list__tile__content~.v-list__tile__action:not(.v-list__tile__action--stack),.v-list__tile__content~.v-list__tile__avatar{-ms-flex-pack:end;justify-content:flex-end}.v-list__tile--active .v-list__tile__action:first-of-type .v-icon{color:inherit}.v-list__tile--avatar{height:56px}.v-list--dense{padding-bottom:4px;padding-top:4px}.v-list--dense .v-subheader{font-size:13px;height:40px}.v-list--dense .v-list__group .v-subheader{height:40px}.v-list--dense .v-list__tile{font-size:13px}.v-list--dense .v-list__tile--avatar{height:48px}.v-list--dense .v-list__tile:not(.v-list__tile--avatar){height:40px}.v-list--dense .v-list__tile .v-icon{font-size:22px}.v-list--dense .v-list__tile__sub-title{font-size:13px}.v-list--disabled{pointer-events:none}.v-list--two-line .v-list__tile{height:72px}.v-list--two-line.v-list--dense .v-list__tile{height:60px}.v-list--three-line .v-list__tile{height:88px}.v-list--three-line .v-list__tile__avatar{margin-top:-18px}.v-list--three-line .v-list__tile__sub-title{-webkit-line-clamp:2;display:-webkit-box;white-space:normal}.v-list--three-line.v-list--dense .v-list__tile{height:76px}.v-list>.v-list__group:before{top:0}.v-list>.v-list__group:before .v-list__tile__avatar{margin-top:-14px}.v-list__group{padding:0;position:relative;transition:inherit}.v-list__group:after,.v-list__group:before{content:"";height:1px;left:0;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-list__group--active~.v-list__group:before{display:none}.v-list__group__header{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex;list-style-type:none}.v-list__group__header>div:not(.v-list__group__header__prepend-icon):not(.v-list__group__header__append-icon){-ms-flex:1 0 auto;flex:1 0 auto}.v-list__group__header .v-list__group__header__append-icon,.v-list__group__header .v-list__group__header__prepend-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;padding:0 16px;user-select:none}.v-list__group__header--sub-group{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}.v-list__group__header--sub-group div .v-list__tile{padding-left:0}.v-list__group__header--sub-group .v-list__group__header__prepend-icon{margin-right:8px;padding:0 0 0 40px}.v-list__group__header .v-list__group__header__prepend-icon{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__group__header--active .v-list__group__header__append-icon .v-icon{transform:rotate(-180deg)}.v-list__group__header--active .v-list__group__header__prepend-icon .v-icon{color:inherit}.v-list__group__header--active.v-list__group__header--sub-group .v-list__group__header__prepend-icon .v-icon{transform:rotate(-180deg)}.v-list__group__items{padding:0;position:relative;transition:inherit}.v-list__group__items>div{display:block}.v-list__group__items--no-action .v-list__tile{padding-left:72px}.v-list__group--disabled{pointer-events:none}.v-list--subheader{padding-top:0}.v-avatar{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;position:relative;text-align:center;vertical-align:middle}.v-avatar,.v-avatar .v-icon,.v-avatar .v-image,.v-avatar img{border-radius:50%;display:-ms-inline-flexbox;display:inline-flex}.v-avatar .v-icon,.v-avatar .v-image,.v-avatar img{height:inherit;width:inherit}.v-avatar--tile,.v-avatar--tile .v-icon,.v-avatar--tile .v-image,.v-avatar--tile img{border-radius:0}.theme--light.v-counter{color:rgba(0,0,0,.54)}.theme--dark.v-counter{color:hsla(0,0%,100%,.7)}.v-counter{-ms-flex:0 1 auto;flex:0 1 auto;font-size:12px;line-height:1;min-height:12px}.v-badge{display:inline-block;position:relative}.v-badge__badge{-ms-flex-align:center;align-items:center;border-radius:50%;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:14px;height:22px;-ms-flex-pack:center;justify-content:center;position:absolute;right:-22px;top:-11px;transition:.3s cubic-bezier(.25,.8,.5,1);width:22px}.v-badge__badge .v-icon{font-size:14px}.v-badge--overlap .v-badge__badge{right:-8px;top:-8px}.v-badge--overlap.v-badge--left .v-badge__badge{left:-8px;right:auto}.v-badge--overlap.v-badge--bottom .v-badge__badge{bottom:-8px;top:auto}.v-badge--left .v-badge__badge{left:-22px}.v-badge--bottom .v-badge__badge{bottom:-11px;top:auto}.theme--light.v-bottom-nav{background-color:#fff}.theme--dark.v-bottom-nav{background-color:#424242}.v-bottom-nav{-webkit-transform:translateY(60px);bottom:0;box-shadow:0 3px 14px 2px rgba(0,0,0,.12);display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;left:0;transform:translateY(60px);transition:all .4s cubic-bezier(.25,.8,.5,1);width:100%}.v-bottom-nav--absolute{position:absolute}.v-bottom-nav--active{transform:translate(0)}.v-bottom-nav--fixed{position:fixed;z-index:4}.v-bottom-nav .v-btn{background:transparent!important;border-radius:0;box-shadow:none!important;-ms-flex-negative:1;flex-shrink:1;font-weight:400;height:100%;margin:0;max-width:168px;min-width:80px;opacity:.5;padding:8px 12px 10px;text-transform:none;width:100%}.v-bottom-nav .v-btn .v-btn__content{-ms-flex-direction:column-reverse;flex-direction:column-reverse;font-size:12px;white-space:nowrap;will-change:font-size}.v-bottom-nav .v-btn .v-btn__content i.v-icon{color:inherit;margin-bottom:4px;transition:all .4s cubic-bezier(.25,.8,.5,1)}.v-bottom-nav .v-btn .v-btn__content span{line-height:1}.v-bottom-nav .v-btn--active{opacity:1;padding-top:6px}.v-bottom-nav .v-btn--active:before{background-color:transparent}.v-bottom-nav .v-btn--active .v-btn__content{font-size:14px}.v-bottom-nav .v-btn--active .v-btn__content .v-icon{transform:none}.v-bottom-nav .v-btn:not(.v-btn--active){filter:grayscale(100%)}.v-bottom-nav--shift .v-btn__content{font-size:14px}.v-bottom-nav--shift .v-btn{max-width:96px;min-width:56px;transition:all .3s}.v-bottom-nav--shift .v-btn--active{max-width:168px;min-width:96px}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content .v-icon{transform:scale(1) translateY(8px)}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content span{color:transparent}.v-bottom-sheet.v-dialog{-ms-flex-item-align:end;align-self:flex-end;border-radius:0;-ms-flex:1 0 100%;flex:1 0 100%;margin:0;min-width:100%;overflow:visible;transition:.3s cubic-bezier(.25,.8,.25,1)}.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:70%;min-width:0}@media only screen and (max-width:599px){.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:none}}.v-dialog{border-radius:2px;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);margin:24px;overflow-y:auto;pointer-events:auto;transition:.3s cubic-bezier(.25,.8,.25,1);width:100%;z-index:inherit}.v-dialog__content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;-ms-flex-pack:center;justify-content:center;left:0;outline:none;pointer-events:none;position:fixed;top:0;transition:.2s cubic-bezier(.25,.8,.25,1);width:100%;z-index:6}.v-dialog:not(.v-dialog--fullscreen){max-height:90%}.v-dialog__activator,.v-dialog__activator *{cursor:pointer}.v-dialog__activator--disabled{pointer-events:none}.v-dialog__container{display:inline-block;vertical-align:middle}.v-dialog--animated{-webkit-animation-duration:.15s;-webkit-animation-name:animate-dialog;-webkit-animation-timing-function:cubic-bezier(.25,.8,.25,1);animation-duration:.15s;animation-name:animate-dialog;animation-timing-function:cubic-bezier(.25,.8,.25,1)}.v-dialog--fullscreen{border-radius:0;height:100%;left:0;margin:0;overflow-y:auto;position:fixed;top:0}.v-dialog--fullscreen>.v-card{margin:0!important;min-height:100%;min-width:100%;padding:0!important}.v-dialog--scrollable,.v-dialog--scrollable>.v-card{display:-ms-flexbox;display:flex}.v-dialog--scrollable>.v-card{-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column;flex-direction:column}.v-dialog--scrollable>.v-card>.v-card__actions,.v-dialog--scrollable>.v-card>.v-card__title{-ms-flex:1 0 auto;flex:1 0 auto}.v-dialog--scrollable>.v-card>.v-card__text{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow-y:auto}@keyframes animate-dialog{0%{transform:scale(1)}50%{transform:scale(1.03)}to{transform:scale(1)}}.v-overlay{bottom:0;left:0;pointer-events:none;position:fixed;right:0;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);z-index:5}.v-overlay--absolute{position:absolute}.v-overlay:before{background-color:#212121;bottom:0;content:"";height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:inherit;transition-delay:.15s;width:100%}.v-overlay--active{pointer-events:auto;-ms-touch-action:none;touch-action:none}.v-overlay--active:before{opacity:.46}.theme--light.v-breadcrumbs li.v-breadcrumbs__divider,.theme--light.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--light.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:rgba(0,0,0,.38)}.theme--dark.v-breadcrumbs li.v-breadcrumbs__divider,.theme--dark.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--dark.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:hsla(0,0%,100%,.5)}.v-breadcrumbs{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 1 auto;flex:0 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style-type:none;margin:0;padding:18px 12px}.v-breadcrumbs li{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-size:14px}.v-breadcrumbs li .v-icon{font-size:16px}.v-breadcrumbs li:last-child a{cursor:default;pointer-events:none}.v-breadcrumbs li:nth-child(2n){padding:0 12px}.v-breadcrumbs--large li,.v-breadcrumbs--large li .v-icon{font-size:16px}.v-breadcrumbs__item{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-breadcrumbs__item--disabled{pointer-events:none}.v-ripple__container{border-radius:inherit;contain:strict;height:100%;width:100%;z-index:0}.v-ripple__animation,.v-ripple__container{color:inherit;left:0;overflow:hidden;pointer-events:none;position:absolute;top:0}.v-ripple__animation{background:currentColor;border-radius:50%;opacity:0;transition:.4s cubic-bezier(0,0,.2,1);will-change:transform,opacity}.v-ripple__animation--enter{transition:none}.v-ripple__animation--visible{opacity:.15}.theme--light.v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn.v-btn--disabled,.theme--light.v-btn.v-btn--disabled .v-btn__loading,.theme--light.v-btn.v-btn--disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--light.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:rgba(0,0,0,.12)!important}.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#f5f5f5}.theme--dark.v-btn{color:#fff}.theme--dark.v-btn.v-btn--disabled,.theme--dark.v-btn.v-btn--disabled .v-btn__loading,.theme--dark.v-btn.v-btn--disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.theme--dark.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#212121}.v-btn{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;border-radius:2px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 0 auto;flex:0 0 auto;font-size:14px;font-weight:500;height:36px;-ms-flex-pack:center;justify-content:center;margin:6px 8px;min-width:88px;outline:0;position:relative;text-decoration:none;text-transform:uppercase;transition:.3s cubic-bezier(.25,.8,.5,1),color 1ms;user-select:none;vertical-align:middle}.v-btn:before{border-radius:inherit;color:inherit;content:"";height:100%;left:0;opacity:.12;position:absolute;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-btn{padding:0 16px}.v-btn--active,.v-btn:focus,.v-btn:hover{position:relative}.v-btn--active:before,.v-btn:focus:before,.v-btn:hover:before{background-color:currentColor}.v-btn__content{-ms-flex-align:center;align-items:center;border-radius:inherit;color:inherit;display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-pack:center;justify-content:center;margin:0 auto;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:inherit}.v-btn--small{font-size:13px;height:28px;padding:0 8px}.v-btn--large{font-size:15px;height:44px;padding:0 32px}.v-btn .v-btn__content .v-icon{color:inherit}.v-btn:not(.v-btn--depressed):not(.v-btn--flat){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);will-change:box-shadow}.v-btn:not(.v-btn--depressed):not(.v-btn--flat):active{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-btn--icon{background:transparent;border-radius:50%;box-shadow:none!important;-ms-flex-pack:center;justify-content:center;min-width:0;width:36px}.v-btn--icon.v-btn--small{width:28px}.v-btn--icon.v-btn--large{width:44px}.v-btn--floating,.v-btn--icon:before{border-radius:50%}.v-btn--floating{height:56px;min-width:0;padding:0;width:56px}.v-btn--floating.v-btn--absolute,.v-btn--floating.v-btn--fixed{z-index:4}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat):active{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.v-btn--floating .v-btn__content{-ms-flex:1 1 auto;flex:1 1 auto;height:100%;margin:0}.v-btn--floating:after{border-radius:50%}.v-btn--floating .v-btn__content :not(:only-child){transition:.3s cubic-bezier(.25,.8,.5,1)}.v-btn--floating .v-btn__content :not(:only-child):first-child{opacity:1}.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(-45deg);opacity:0;transform:rotate(-45deg)}.v-btn--floating .v-btn__content :not(:only-child):first-child,.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-backface-visibility:hidden;left:0;position:absolute;top:0}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):first-child{-webkit-transform:rotate(45deg);opacity:0;transform:rotate(45deg)}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(0);opacity:1;transform:rotate(0)}.v-btn--floating .v-icon{height:inherit;width:inherit}.v-btn--floating.v-btn--small{height:40px;width:40px}.v-btn--floating.v-btn--small .v-icon{font-size:18px}.v-btn--floating.v-btn--large{height:72px;width:72px}.v-btn--floating.v-btn--large .v-icon{font-size:30px}.v-btn--reverse .v-btn__content{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-btn--reverse.v-btn--column .v-btn__content{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-btn--absolute,.v-btn--fixed{margin:0}.v-btn.v-btn--absolute{position:absolute}.v-btn.v-btn--fixed{position:fixed}.v-btn--top:not(.v-btn--absolute){top:16px}.v-btn--top.v-btn--absolute{top:-28px}.v-btn--top.v-btn--absolute.v-btn--small{top:-20px}.v-btn--top.v-btn--absolute.v-btn--large{top:-36px}.v-btn--bottom:not(.v-btn--absolute){bottom:16px}.v-btn--bottom.v-btn--absolute{bottom:-28px}.v-btn--bottom.v-btn--absolute.v-btn--small{bottom:-20px}.v-btn--bottom.v-btn--absolute.v-btn--large{bottom:-36px}.v-btn--left{left:16px}.v-btn--right{right:16px}.v-btn.v-btn--disabled{box-shadow:none!important;pointer-events:none}.v-btn:not(.v-btn--disabled):not(.v-btn--floating):not(.v-btn--icon) .v-btn__content .v-icon{transition:none}.v-btn--icon{padding:0}.v-btn--loader{pointer-events:none}.v-btn--loader .v-btn__content{opacity:0}.v-btn__loading{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loading .v-icon--left{line-height:inherit;margin-right:1rem}.v-btn__loading .v-icon--right{line-height:inherit;margin-left:1rem}.v-btn.v-btn--outline{background:transparent!important;border:1px solid;box-shadow:none}.v-btn.v-btn--outline:hover{box-shadow:none}.v-btn--block{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;margin:6px 0;width:100%}.v-btn--round,.v-btn--round:after{border-radius:28px}.v-btn .v-icon--right{margin-left:16px}.v-btn .v-icon--left{margin-right:16px}.v-btn:not(.v-btn--outline).accent,.v-btn:not(.v-btn--outline).error,.v-btn:not(.v-btn--outline).info,.v-btn:not(.v-btn--outline).primary,.v-btn:not(.v-btn--outline).secondary,.v-btn:not(.v-btn--outline).success,.v-btn:not(.v-btn--outline).warning{color:#fff}.v-progress-circular{display:-ms-inline-flexbox;display:inline-flex;position:relative;vertical-align:middle}.v-progress-circular svg{bottom:0;height:100%;left:0;margin:auto;position:absolute;right:0;top:0;width:100%;z-index:0}.v-progress-circular--indeterminate svg{-webkit-animation:progress-circular-rotate 1.4s linear infinite;-webkit-transform-origin:center center;animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite;stroke-dasharray:80,200;stroke-dashoffset:0px;stroke-linecap:round}.v-progress-circular__underlay{stroke:rgba(0,0,0,.1);z-index:1}.v-progress-circular__overlay{stroke:currentColor;transition:all .6s ease-in-out;z-index:2}.v-progress-circular__info{-webkit-transform:translate(-50%,-50%);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@keyframes progress-circular-rotate{to{transform:rotate(1turn)}}.theme--light.v-btn-toggle{background:#fff}.theme--light.v-btn-toggle .v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:rgba(0,0,0,.26)}.theme--dark.v-btn-toggle{background:#424242}.theme--dark.v-btn-toggle .v-btn{color:#fff}.theme--dark.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:hsla(0,0%,100%,.3)}.v-btn-toggle{border-radius:2px;display:-ms-inline-flexbox;display:inline-flex;transition:.3s cubic-bezier(.25,.8,.5,1);will-change:background,box-shadow}.v-btn-toggle .v-btn{border-radius:0;-ms-flex-pack:center;justify-content:center;margin:0;min-width:auto;opacity:.4;padding:0 8px;width:auto}.v-btn-toggle .v-btn:not(:last-child){border-right:1px solid transparent}.v-btn-toggle .v-btn:after{display:none}.v-btn-toggle .v-btn.v-btn--active{opacity:1}.v-btn-toggle .v-btn span+.v-icon{font-size:medium;margin-left:10px}.v-btn-toggle .v-btn:first-child{border-radius:2px 0 0 2px}.v-btn-toggle .v-btn:last-child{border-radius:0 2px 2px 0}.v-btn-toggle--selected{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-image{z-index:0}.v-image__image,.v-image__placeholder{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.v-image__image{background-repeat:no-repeat}.v-image__image--preload{filter:blur(2px)}.v-image__image--contain{background-size:contain}.v-image__image--cover{background-size:cover}.v-responsive{display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;overflow:hidden;position:relative}.v-responsive__content{-ms-flex:1 0 0px;flex:1 0 0px}.v-responsive__sizer{-ms-flex:0 0 0px;flex:0 0 0px;transition:padding-bottom .2s cubic-bezier(.25,.8,.5,1)}.application--is-rtl .v-carousel__prev{left:auto;right:5px}.application--is-rtl .v-carousel__next{left:5px;right:auto}.v-carousel{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);height:500px;overflow:hidden;position:relative;width:100%}.v-carousel__item{position:absolute;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-carousel__next,.v-carousel__prev{-webkit-transform:translateY(-50%);position:absolute;top:50%;transform:translateY(-50%);z-index:1}.v-carousel__next .v-btn,.v-carousel__prev .v-btn{height:auto;margin:0;width:auto}.v-carousel__next .v-btn i,.v-carousel__prev .v-btn i{font-size:48px}.v-carousel__next .v-btn:hover,.v-carousel__prev .v-btn:hover{background:none}.v-carousel__prev{left:5px}.v-carousel__next{right:5px}.v-carousel__controls{-ms-flex-align:center;align-items:center;background:rgba(0,0,0,.5);bottom:0;display:-ms-flexbox;display:flex;height:50px;-ms-flex-pack:center;justify-content:center;left:0;list-style-type:none;position:absolute;width:100%;z-index:1}.v-carousel__controls__item{margin:0 8px!important}.v-carousel__controls__item .v-icon{opacity:.5;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-carousel__controls__item--active .v-icon{opacity:1;vertical-align:middle}.v-carousel__controls__item:hover{background:none}.v-carousel__controls__item:hover .v-icon{opacity:.8}.theme--light.v-data-iterator .v-data-iterator__actions{color:rgba(0,0,0,.54)}.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:rgba(0,0,0,.54)!important}.theme--dark.v-data-iterator .v-data-iterator__actions{color:hsla(0,0%,100%,.7)}.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:hsla(0,0%,100%,.7)!important}.v-data-iterator__actions{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-ms-flex-pack:end;justify-content:flex-end}.v-data-iterator__actions .v-btn{color:inherit}.v-data-iterator__actions .v-btn:last-of-type{margin-left:14px}.v-data-iterator__actions__range-controls{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;min-height:48px}.v-data-iterator__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-data-iterator__actions__select{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin-right:14px}.v-data-iterator__actions__select .v-select{margin:13px 0 13px 34px;padding:0;position:static}.v-data-iterator__actions__select .v-select .v-select__selection--comma{font-size:12px}.theme--light.v-overflow-btn .v-input__control:before,.theme--light.v-overflow-btn .v-input__slot:before{background-color:rgba(0,0,0,.12)!important}.theme--light.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--light.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--light.v-overflow-btn--editable:hover .v-input__append-inner,.theme--light.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid rgba(0,0,0,.12)}.theme--light.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--light.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--light.v-overflow-btn:hover .v-input__slot{background:#fff}.theme--dark.v-overflow-btn .v-input__control:before,.theme--dark.v-overflow-btn .v-input__slot:before{background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--dark.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--dark.v-overflow-btn--editable:hover .v-input__append-inner,.theme--dark.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--dark.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--dark.v-overflow-btn:hover .v-input__slot{background:#424242}.v-overflow-btn{margin-top:12px}.v-overflow-btn:not(.v-overflow-btn--editable)>.v-input__control>.v-input__slot{cursor:pointer}.v-overflow-btn .v-select__slot{height:48px}.v-overflow-btn .v-select__selection--comma:first-child,.v-overflow-btn .v-select__slot input{margin-left:16px}.v-overflow-btn .v-input__slot{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-overflow-btn .v-input__slot:after{content:none}.v-overflow-btn .v-label{margin-left:16px;top:calc(50% - 10px)}.v-overflow-btn .v-input__append-inner{-ms-flex-align:center;align-items:center;-ms-flex-item-align:auto;align-self:auto;-ms-flex-negative:0;flex-shrink:0;height:48px;margin-top:0;padding:0;width:48px}.v-overflow-btn .v-input__append-outer,.v-overflow-btn .v-input__prepend-outer{margin-bottom:12px;margin-top:12px}.v-overflow-btn .v-input__control:before{content:"";height:1px;left:0;position:absolute;top:-1px;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-overflow-btn.v-input--is-focused .v-input__slot,.v-overflow-btn.v-select--is-menu-active .v-input__slot{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-overflow-btn .v-select__selections{width:0}.v-overflow-btn--segmented .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-overflow-btn--segmented .v-select__selections .v-btn{border-radius:0;height:48px;margin:0 -16px 0 0;width:100%}.v-overflow-btn--segmented .v-select__selections .v-btn__content{-ms-flex-pack:start;justify-content:start}.v-overflow-btn--segmented .v-select__selections .v-btn__content:before{background-color:transparent}.v-overflow-btn--editable .v-input__append-inner,.v-overflow-btn--editable .v-input__append-inner *{cursor:pointer}.theme--light.v-table{background-color:#fff;color:rgba(0,0,0,.87)}.theme--light.v-table thead tr:first-child{border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table thead th{color:rgba(0,0,0,.54)}.theme--light.v-table tbody tr:not(:last-child){border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table tbody tr[active]{background:#f5f5f5}.theme--light.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#eee}.theme--light.v-table tfoot tr{border-top:1px solid rgba(0,0,0,.12)}.theme--dark.v-table{background-color:#424242;color:#fff}.theme--dark.v-table thead tr:first-child{border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table thead th{color:hsla(0,0%,100%,.7)}.theme--dark.v-table tbody tr:not(:last-child){border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table tbody tr[active]{background:#505050}.theme--dark.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#616161}.theme--dark.v-table tfoot tr{border-top:1px solid hsla(0,0%,100%,.12)}.v-table__overflow{overflow-x:auto;overflow-y:hidden;width:100%}table.v-table{border-collapse:collapse;border-radius:2px;border-spacing:0;max-width:100%;width:100%}table.v-table tbody td:first-child,table.v-table tbody td:not(:first-child),table.v-table tbody th:first-child,table.v-table tbody th:not(:first-child),table.v-table thead td:first-child,table.v-table thead td:not(:first-child),table.v-table thead th:first-child,table.v-table thead th:not(:first-child){padding:0 24px}table.v-table thead tr{height:56px}table.v-table thead th{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;font-size:12px;font-weight:500;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:nowrap}table.v-table thead th.sortable{pointer-events:auto}table.v-table thead th>div{width:100%}table.v-table tbody tr{transition:background .3s cubic-bezier(.25,.8,.5,1);will-change:background}table.v-table tbody td,table.v-table tbody th{height:48px}table.v-table tbody td{font-size:13px;font-weight:400}table.v-table .input-group--selection-controls{padding:0}table.v-table .input-group--selection-controls .input-group__details{display:none}table.v-table .input-group--selection-controls.checkbox .v-icon{-webkit-transform:translateX(-50%);left:50%;transform:translateX(-50%)}table.v-table .input-group--selection-controls.checkbox .input-group--selection-controls__ripple{-webkit-transform:translate(-50%,-50%);left:50%;transform:translate(-50%,-50%)}table.v-table tfoot tr{height:48px}table.v-table tfoot tr td{padding:0 24px}.theme--light.v-datatable thead th.column.sortable i{color:rgba(0,0,0,.38)}.theme--light.v-datatable thead th.column.sortable.active,.theme--light.v-datatable thead th.column.sortable.active i,.theme--light.v-datatable thead th.column.sortable:hover{color:rgba(0,0,0,.87)}.theme--light.v-datatable .v-datatable__actions{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.54)}.theme--dark.v-datatable thead th.column.sortable i{color:hsla(0,0%,100%,.5)}.theme--dark.v-datatable thead th.column.sortable.active,.theme--dark.v-datatable thead th.column.sortable.active i,.theme--dark.v-datatable thead th.column.sortable:hover{color:#fff}.theme--dark.v-datatable .v-datatable__actions{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:hsla(0,0%,100%,.7)}.v-datatable .v-input--selection-controls{margin:0}.v-datatable thead th.column.sortable{cursor:pointer;outline:0}.v-datatable thead th.column.sortable i{display:inline-block;font-size:16px;opacity:0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-datatable thead th.column.sortable:focus i,.v-datatable thead th.column.sortable:hover i{opacity:.6}.v-datatable thead th.column.sortable.active{transform:none}.v-datatable thead th.column.sortable.active i{opacity:1}.v-datatable thead th.column.sortable.active.desc i{transform:rotate(-180deg)}.v-datatable__actions{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-ms-flex-pack:end;justify-content:flex-end}.v-datatable__actions .v-btn{color:inherit}.v-datatable__actions .v-btn:last-of-type{margin-left:14px}.v-datatable__actions__range-controls{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;min-height:48px}.v-datatable__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-datatable__actions__select{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;margin-right:14px;white-space:nowrap}.v-datatable__actions__select .v-select{-ms-flex:0 1 0px;flex:0 1 0;margin:13px 0 13px 34px;padding:0;position:static}.v-datatable__actions__select .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-datatable__actions__select .v-select__selections .v-select__selection--comma{font-size:12px}.v-datatable__progress,.v-datatable__progress td,.v-datatable__progress th,.v-datatable__progress tr{height:auto!important}.v-datatable__progress th{padding:0!important}.v-datatable__progress th .v-progress-linear{margin:0}.v-datatable__expand-row{border:none!important}.v-datatable__expand-col{height:0!important;padding:0!important}.v-datatable__expand-col--expanded{border-bottom:1px solid rgba(0,0,0,.12)}.v-datatable__expand-content{transition:height .3s cubic-bezier(.25,.8,.5,1)}.v-datatable__expand-content>.card{border-radius:0;box-shadow:none}.theme--light.v-small-dialog a{color:rgba(0,0,0,.87)}.theme--dark.v-small-dialog a{color:#fff}.theme--light.v-small-dialog__content{background:#fff}.theme--dark.v-small-dialog__content{background:#424242}.theme--light.v-small-dialog__actions{background:#fff}.theme--dark.v-small-dialog__actions{background:#424242}.v-small-dialog{display:block;height:100%;width:100%}.v-small-dialog__content{padding:0 24px}.v-small-dialog__actions{text-align:right;white-space:pre}.v-small-dialog a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;text-decoration:none}.v-small-dialog a>*{width:100%}.v-small-dialog .v-menu__activator{height:100%}.application--is-rtl .v-date-picker-title .v-picker__title__btn{text-align:right}.v-date-picker-title{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;line-height:1}.v-date-picker-title__year{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-size:14px;font-weight:500;margin-bottom:8px}.v-date-picker-title__date{font-size:34px;font-weight:500;overflow:hidden;position:relative;text-align:left}.v-date-picker-title__date>div{position:relative}.theme--light.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:rgba(0,0,0,.87)!important}.theme--light.v-date-picker-header .v-date-picker-header__value--disabled strong{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:#fff!important}.theme--dark.v-date-picker-header .v-date-picker-header__value--disabled strong{color:hsla(0,0%,100%,.5)}.v-date-picker-header{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:4px 16px;position:relative}.v-date-picker-header .v-btn{margin:0;z-index:auto}.v-date-picker-header .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-date-picker-header__value{-ms-flex:1;flex:1;overflow:hidden;position:relative;text-align:center}.v-date-picker-header__value strong{cursor:pointer;display:block;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.theme--light.v-date-picker-table th{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-table th{color:hsla(0,0%,100%,.5)}.v-date-picker-table{height:242px;padding:0 12px;position:relative}.v-date-picker-table table{table-layout:fixed;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-date-picker-table td,.v-date-picker-table th{position:relative;text-align:center}.v-date-picker-table th{font-size:12px}.v-date-picker-table--date .v-btn{height:32px;width:32px}.v-date-picker-table .v-btn{font-size:12px;margin:0;z-index:auto}.v-date-picker-table .v-btn.v-btn--active{color:#fff}.v-date-picker-table--month td{height:56px;text-align:center;vertical-align:middle;width:33.333333%}.v-date-picker-table--month td .v-btn{margin:0 auto;max-width:160px;min-width:40px;width:100%}.v-date-picker-table--date th{font-weight:600;padding:8px 0}.v-date-picker-table--date td{width:45px}.v-date-picker-table__event{-webkit-transform:translateX(-4px);border-radius:50%;bottom:2px;content:"";display:block;height:8px;left:50%;position:absolute;transform:translateX(-4px);width:8px}.v-date-picker-years{font-size:16px;font-weight:400;height:286px;list-style-type:none;overflow:auto;padding:0;text-align:center}.v-date-picker-years li{cursor:pointer;padding:8px 0;transition:none}.v-date-picker-years li.active{font-size:26px;font-weight:500;padding:10px 0}.v-date-picker-years li:hover{background:rgba(0,0,0,.12)}.v-picker--landscape .v-date-picker-years{height:286px}.theme--light.v-picker__title{background:#e0e0e0}.theme--dark.v-picker__title{background:#616161}.theme--light.v-picker__body{background:#fff}.theme--dark.v-picker__body{background:#424242}.v-picker{border-radius:2px;contain:layout style;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;vertical-align:top}.v-picker--full-width{display:-ms-flexbox;display:flex}.v-picker__title{border-top-left-radius:2px;border-top-right-radius:2px;color:#fff;padding:16px}.v-picker__title__btn{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-picker__title__btn:not(.active){cursor:pointer;opacity:.6}.v-picker__title__btn:not(.active):hover{opacity:1}.v-picker__title__btn--readonly{pointer-events:none}.v-picker__title__btn--active{opacity:1}.v-picker__body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden;position:relative;z-index:0}.v-picker__body>div{width:100%}.v-picker__body>div.fade-transition-leave-active{position:absolute}.v-picker--landscape .v-picker__title{border-bottom-right-radius:0;border-top-right-radius:0;height:100%;left:0;position:absolute;top:0;width:170px;z-index:1}.v-picker--landscape .v-picker__actions,.v-picker--landscape .v-picker__body{margin-left:170px}.theme--light.v-expansion-panel .v-expansion-panel__container{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.87)}.theme--light.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-expansion-panel .v-expansion-panel__container--disabled{color:rgba(0,0,0,.38)}.theme--light.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#eee}.theme--dark.v-expansion-panel .v-expansion-panel__container{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#494949}.v-expansion-panel{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;list-style-type:none;padding:0;text-align:left;width:100%}.v-expansion-panel__container{-ms-flex:1 0 100%;flex:1 0 100%;max-width:100%;outline:none;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__container:first-child{border-top:none!important}.v-expansion-panel__container .v-expansion-panel__header__iconnel__header__icon{margin-left:auto}.v-expansion-panel__container--disabled .v-expansion-panel__header{pointer-events:none}.v-expansion-panel__container--active>.v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{transform:rotate(-180deg)}.v-expansion-panel__header{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex;min-height:48px;padding:12px 24px;position:relative}.v-expansion-panel__header>:not(.v-expansion-panel__header__icon){-ms-flex:1 1 auto;flex:1 1 auto}.v-expansion-panel__body{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__body .v-card{border-radius:0}.v-expansion-panel--inset,.v-expansion-panel--popout,.v-expansion-panel__body .v-card{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-expansion-panel--inset .v-expansion-panel__container--active,.v-expansion-panel--popout .v-expansion-panel__container--active{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);margin:16px}.v-expansion-panel--inset .v-expansion-panel__container,.v-expansion-panel--popout .v-expansion-panel__container{max-width:95%}.v-expansion-panel--popout .v-expansion-panel__container--active{max-width:100%}.v-expansion-panel--inset .v-expansion-panel__container--active{max-width:85%}.theme--light.v-footer{background:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-footer{background:#212121;color:#fff}.v-footer{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 1 auto!important;flex:0 1 auto!important;min-height:36px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-footer--absolute,.v-footer--fixed{bottom:0;left:0;width:100%;z-index:3}.v-footer--inset{z-index:2}.v-footer--absolute{position:absolute}.v-footer--fixed{position:fixed}.v-form>.container{padding:16px}.v-form>.container>.layout>.flex{padding:8px}.v-form>.container>.layout:only-child{margin:-8px}.v-form>.container>.layout:not(:only-child){margin:auto -8px}.container{-ms-flex:1 1 100%;flex:1 1 100%;margin:auto;padding:24px;width:100%}.container.fluid{max-width:100%}.container.fill-height{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}.container.fill-height>.layout{-ms-flex:1 1 auto;flex:1 1 auto;height:100%}.container.grid-list-xs .layout .flex{padding:1px}.container.grid-list-xs .layout:only-child{margin:-1px}.container.grid-list-xs .layout:not(:only-child){margin:auto -1px}.container.grid-list-xs :not(:only-child) .layout:first-child{margin-top:-1px}.container.grid-list-xs :not(:only-child) .layout:last-child{margin-bottom:-1px}.container.grid-list-sm .layout .flex{padding:2px}.container.grid-list-sm .layout:only-child{margin:-2px}.container.grid-list-sm .layout:not(:only-child){margin:auto -2px}.container.grid-list-sm :not(:only-child) .layout:first-child{margin-top:-2px}.container.grid-list-sm :not(:only-child) .layout:last-child{margin-bottom:-2px}.container.grid-list-md .layout .flex{padding:4px}.container.grid-list-md .layout:only-child{margin:-4px}.container.grid-list-md .layout:not(:only-child){margin:auto -4px}.container.grid-list-md :not(:only-child) .layout:first-child{margin-top:-4px}.container.grid-list-md :not(:only-child) .layout:last-child{margin-bottom:-4px}.container.grid-list-lg .layout .flex{padding:8px}.container.grid-list-lg .layout:only-child{margin:-8px}.container.grid-list-lg .layout:not(:only-child){margin:auto -8px}.container.grid-list-lg :not(:only-child) .layout:first-child{margin-top:-8px}.container.grid-list-lg :not(:only-child) .layout:last-child{margin-bottom:-8px}.container.grid-list-xl .layout .flex{padding:12px}.container.grid-list-xl .layout:only-child{margin:-12px}.container.grid-list-xl .layout:not(:only-child){margin:auto -12px}.container.grid-list-xl :not(:only-child) .layout:first-child{margin-top:-12px}.container.grid-list-xl :not(:only-child) .layout:last-child{margin-bottom:-12px}.layout{display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:nowrap;flex-wrap:nowrap;min-width:0}.layout.row{-ms-flex-direction:row;flex-direction:row}.layout.row.reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.layout.column{-ms-flex-direction:column;flex-direction:column}.layout.column.reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.layout.column>.flex{max-width:100%}.layout.wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.child-flex>*,.flex{-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.align-start{-ms-flex-align:start;align-items:flex-start}.align-end{-ms-flex-align:end;align-items:flex-end}.align-center{-ms-flex-align:center;align-items:center}.align-baseline{-ms-flex-align:baseline;align-items:baseline}.align-self-start{-ms-flex-item-align:start;align-self:flex-start}.align-self-end{-ms-flex-item-align:end;align-self:flex-end}.align-self-center{-ms-flex-item-align:center;align-self:center}.align-self-baseline{-ms-flex-item-align:baseline;align-self:baseline}.align-content-start{-ms-flex-line-pack:start;align-content:flex-start}.align-content-end{-ms-flex-line-pack:end;align-content:flex-end}.align-content-center{-ms-flex-line-pack:center;align-content:center}.align-content-space-between{-ms-flex-line-pack:justify;align-content:space-between}.align-content-space-around{-ms-flex-line-pack:distribute;align-content:space-around}.justify-start{-ms-flex-pack:start;justify-content:flex-start}.justify-end{-ms-flex-pack:end;justify-content:flex-end}.justify-center{-ms-flex-pack:center;justify-content:center}.justify-space-around{-ms-flex-pack:distribute;justify-content:space-around}.justify-space-between{-ms-flex-pack:justify;justify-content:space-between}.justify-self-start{justify-self:flex-start}.justify-self-end{justify-self:flex-end}.justify-self-center{justify-self:center}.justify-self-baseline{justify-self:baseline}.grow,.spacer{-ms-flex-positive:1!important;flex-grow:1!important}.grow{-ms-flex-negative:0!important;flex-shrink:0!important}.shrink{-ms-flex-positive:0!important;flex-grow:0!important;-ms-flex-negative:1!important;flex-shrink:1!important}.scroll-y{overflow-y:auto}.fill-height{height:100%}.hide-overflow{overflow:hidden!important}.show-overflow{overflow:visible!important}.ellipsis,.no-wrap{white-space:nowrap}.ellipsis{overflow:hidden;text-overflow:ellipsis}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}.d-flex>*,.d-inline-flex>*{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.d-block{display:block!important}.d-inline-block{display:inline-block!important}.d-inline{display:inline!important}@media only screen and (min-width:960px){.container{max-width:900px}}@media only screen and (min-width:1264px){.container{max-width:1185px}}@media only screen and (min-width:1904px){.container{max-width:1785px}}@media only screen and (max-width:959px){.container{padding:16px}}@media (min-width:0){.flex.xs1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xs1{-ms-flex-order:1;order:1}.flex.xs2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xs2{-ms-flex-order:2;order:2}.flex.xs3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xs3{-ms-flex-order:3;order:3}.flex.xs4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xs4{-ms-flex-order:4;order:4}.flex.xs5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xs5{-ms-flex-order:5;order:5}.flex.xs6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xs6{-ms-flex-order:6;order:6}.flex.xs7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xs7{-ms-flex-order:7;order:7}.flex.xs8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xs8{-ms-flex-order:8;order:8}.flex.xs9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xs9{-ms-flex-order:9;order:9}.flex.xs10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xs10{-ms-flex-order:10;order:10}.flex.xs11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xs11{-ms-flex-order:11;order:11}.flex.xs12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xs12{-ms-flex-order:12;order:12}.flex.offset-xs0{margin-left:0}.flex.offset-xs1{margin-left:8.333333333333332%}.flex.offset-xs2{margin-left:16.666666666666664%}.flex.offset-xs3{margin-left:25%}.flex.offset-xs4{margin-left:33.33333333333333%}.flex.offset-xs5{margin-left:41.66666666666667%}.flex.offset-xs6{margin-left:50%}.flex.offset-xs7{margin-left:58.333333333333336%}.flex.offset-xs8{margin-left:66.66666666666666%}.flex.offset-xs9{margin-left:75%}.flex.offset-xs10{margin-left:83.33333333333334%}.flex.offset-xs11{margin-left:91.66666666666666%}.flex.offset-xs12{margin-left:100%}}@media (min-width:600px){.flex.sm1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-sm1{-ms-flex-order:1;order:1}.flex.sm2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-sm2{-ms-flex-order:2;order:2}.flex.sm3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-sm3{-ms-flex-order:3;order:3}.flex.sm4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-sm4{-ms-flex-order:4;order:4}.flex.sm5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-sm5{-ms-flex-order:5;order:5}.flex.sm6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-sm6{-ms-flex-order:6;order:6}.flex.sm7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-sm7{-ms-flex-order:7;order:7}.flex.sm8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-sm8{-ms-flex-order:8;order:8}.flex.sm9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-sm9{-ms-flex-order:9;order:9}.flex.sm10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-sm10{-ms-flex-order:10;order:10}.flex.sm11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-sm11{-ms-flex-order:11;order:11}.flex.sm12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-sm12{-ms-flex-order:12;order:12}.flex.offset-sm0{margin-left:0}.flex.offset-sm1{margin-left:8.333333333333332%}.flex.offset-sm2{margin-left:16.666666666666664%}.flex.offset-sm3{margin-left:25%}.flex.offset-sm4{margin-left:33.33333333333333%}.flex.offset-sm5{margin-left:41.66666666666667%}.flex.offset-sm6{margin-left:50%}.flex.offset-sm7{margin-left:58.333333333333336%}.flex.offset-sm8{margin-left:66.66666666666666%}.flex.offset-sm9{margin-left:75%}.flex.offset-sm10{margin-left:83.33333333333334%}.flex.offset-sm11{margin-left:91.66666666666666%}.flex.offset-sm12{margin-left:100%}}@media (min-width:960px){.flex.md1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-md1{-ms-flex-order:1;order:1}.flex.md2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-md2{-ms-flex-order:2;order:2}.flex.md3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-md3{-ms-flex-order:3;order:3}.flex.md4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-md4{-ms-flex-order:4;order:4}.flex.md5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-md5{-ms-flex-order:5;order:5}.flex.md6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-md6{-ms-flex-order:6;order:6}.flex.md7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-md7{-ms-flex-order:7;order:7}.flex.md8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-md8{-ms-flex-order:8;order:8}.flex.md9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-md9{-ms-flex-order:9;order:9}.flex.md10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-md10{-ms-flex-order:10;order:10}.flex.md11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-md11{-ms-flex-order:11;order:11}.flex.md12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-md12{-ms-flex-order:12;order:12}.flex.offset-md0{margin-left:0}.flex.offset-md1{margin-left:8.333333333333332%}.flex.offset-md2{margin-left:16.666666666666664%}.flex.offset-md3{margin-left:25%}.flex.offset-md4{margin-left:33.33333333333333%}.flex.offset-md5{margin-left:41.66666666666667%}.flex.offset-md6{margin-left:50%}.flex.offset-md7{margin-left:58.333333333333336%}.flex.offset-md8{margin-left:66.66666666666666%}.flex.offset-md9{margin-left:75%}.flex.offset-md10{margin-left:83.33333333333334%}.flex.offset-md11{margin-left:91.66666666666666%}.flex.offset-md12{margin-left:100%}}@media (min-width:1264px){.flex.lg1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-lg1{-ms-flex-order:1;order:1}.flex.lg2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-lg2{-ms-flex-order:2;order:2}.flex.lg3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-lg3{-ms-flex-order:3;order:3}.flex.lg4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-lg4{-ms-flex-order:4;order:4}.flex.lg5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-lg5{-ms-flex-order:5;order:5}.flex.lg6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-lg6{-ms-flex-order:6;order:6}.flex.lg7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-lg7{-ms-flex-order:7;order:7}.flex.lg8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-lg8{-ms-flex-order:8;order:8}.flex.lg9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-lg9{-ms-flex-order:9;order:9}.flex.lg10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-lg10{-ms-flex-order:10;order:10}.flex.lg11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-lg11{-ms-flex-order:11;order:11}.flex.lg12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-lg12{-ms-flex-order:12;order:12}.flex.offset-lg0{margin-left:0}.flex.offset-lg1{margin-left:8.333333333333332%}.flex.offset-lg2{margin-left:16.666666666666664%}.flex.offset-lg3{margin-left:25%}.flex.offset-lg4{margin-left:33.33333333333333%}.flex.offset-lg5{margin-left:41.66666666666667%}.flex.offset-lg6{margin-left:50%}.flex.offset-lg7{margin-left:58.333333333333336%}.flex.offset-lg8{margin-left:66.66666666666666%}.flex.offset-lg9{margin-left:75%}.flex.offset-lg10{margin-left:83.33333333333334%}.flex.offset-lg11{margin-left:91.66666666666666%}.flex.offset-lg12{margin-left:100%}}@media (min-width:1904px){.flex.xl1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xl1{-ms-flex-order:1;order:1}.flex.xl2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xl2{-ms-flex-order:2;order:2}.flex.xl3{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xl3{-ms-flex-order:3;order:3}.flex.xl4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xl4{-ms-flex-order:4;order:4}.flex.xl5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xl5{-ms-flex-order:5;order:5}.flex.xl6{-ms-flex-preferred-size:50%;flex-basis:50%;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xl6{-ms-flex-order:6;order:6}.flex.xl7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xl7{-ms-flex-order:7;order:7}.flex.xl8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xl8{-ms-flex-order:8;order:8}.flex.xl9{-ms-flex-preferred-size:75%;flex-basis:75%;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xl9{-ms-flex-order:9;order:9}.flex.xl10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xl10{-ms-flex-order:10;order:10}.flex.xl11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xl11{-ms-flex-order:11;order:11}.flex.xl12{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xl12{-ms-flex-order:12;order:12}.flex.offset-xl0{margin-left:0}.flex.offset-xl1{margin-left:8.333333333333332%}.flex.offset-xl2{margin-left:16.666666666666664%}.flex.offset-xl3{margin-left:25%}.flex.offset-xl4{margin-left:33.33333333333333%}.flex.offset-xl5{margin-left:41.66666666666667%}.flex.offset-xl6{margin-left:50%}.flex.offset-xl7{margin-left:58.333333333333336%}.flex.offset-xl8{margin-left:66.66666666666666%}.flex.offset-xl9{margin-left:75%}.flex.offset-xl10{margin-left:83.33333333333334%}.flex.offset-xl11{margin-left:91.66666666666666%}.flex.offset-xl12{margin-left:100%}}.v-content{display:-ms-flexbox;display:flex;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;transition:none}.v-content[data-booted=true]{transition:.2s cubic-bezier(.4,0,.2,1)}.v-content__wrap{-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%;position:relative}@media print{@-moz-document url-prefix(){.v-content{display:block}}}.theme--light.v-jumbotron .v-jumbotron__content{color:rgba(0,0,0,.87)}.theme--dark.v-jumbotron .v-jumbotron__content{color:#fff}.v-jumbotron{display:block;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-jumbotron__wrapper{height:100%;overflow:hidden;position:relative;transition:inherit;width:100%}.v-jumbotron__background{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;transition:inherit}.v-jumbotron__image{-webkit-transform:translate(-50%,-50%);left:50%;min-width:100%;position:absolute;top:50%;transform:translate(-50%,-50%);transition:inherit;will-change:transform}.v-jumbotron__content{height:100%;position:relative;transition:inherit}.theme--light.v-navigation-drawer{background-color:#fff}.theme--light.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:rgba(0,0,0,.12)}.theme--light.v-navigation-drawer .v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-navigation-drawer{background-color:#424242}.theme--dark.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:hsla(0,0%,100%,.12)}.theme--dark.v-navigation-drawer .v-divider{border-color:hsla(0,0%,100%,.12)}.v-navigation-drawer{-webkit-overflow-scrolling:touch;display:block;left:0;max-width:100%;overflow-x:hidden;overflow-y:auto;pointer-events:auto;top:0;transition:none;will-change:transform;z-index:3}.v-navigation-drawer[data-booted=true]{transition:.2s cubic-bezier(.4,0,.2,1);transition-property:transform,width}.v-navigation-drawer__border{height:100%;position:absolute;right:0;top:0;width:1px}.v-navigation-drawer.v-navigation-drawer--right:after{left:0;right:auto}.v-navigation-drawer--right{left:auto;right:0}.v-navigation-drawer--right>.v-navigation-drawer__border{left:0;right:auto}.v-navigation-drawer--absolute{position:absolute}.v-navigation-drawer--fixed{position:fixed}.v-navigation-drawer--floating:after{display:none}.v-navigation-drawer--mini-variant{overflow:hidden}.v-navigation-drawer--mini-variant .v-list__group__header__prepend-icon{-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-pack:center;justify-content:center;width:100%}.v-navigation-drawer--mini-variant .v-list__tile__action,.v-navigation-drawer--mini-variant .v-list__tile__avatar{-ms-flex-pack:center;justify-content:center;min-width:48px}.v-navigation-drawer--mini-variant .v-list__tile:after,.v-navigation-drawer--mini-variant .v-list__tile__content{opacity:0}.v-navigation-drawer--mini-variant .v-divider,.v-navigation-drawer--mini-variant .v-list--group,.v-navigation-drawer--mini-variant .v-subheader{display:none!important}.v-navigation-drawer--is-mobile,.v-navigation-drawer--temporary{z-index:6}.v-navigation-drawer--is-mobile:not(.v-navigation-drawer--close),.v-navigation-drawer--temporary:not(.v-navigation-drawer--close){box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.v-navigation-drawer .v-list{background:inherit}.v-navigation-drawer>.v-list .v-list__tile{font-weight:500;transition:none}.v-navigation-drawer>.v-list .v-list__tile--active .v-list__tile__title{color:inherit}.v-navigation-drawer>.v-list .v-list--group .v-list__tile{font-weight:400}.v-navigation-drawer>.v-list .v-list--group__header--active:after{background:transparent}.v-navigation-drawer>.v-list:not(.v-list--dense) .v-list__tile{font-size:14px}.theme--light.v-pagination .v-pagination__item{background:#fff;color:#000}.theme--light.v-pagination .v-pagination__item--active{color:#fff}.theme--light.v-pagination .v-pagination__navigation{background:#fff}.theme--light.v-pagination .v-pagination__navigation .v-icon{color:rgba(0,0,0,.54)}.theme--dark.v-pagination .v-pagination__item{background:#424242;color:#fff}.theme--dark.v-pagination .v-pagination__item--active{color:#fff}.theme--dark.v-pagination .v-pagination__navigation{background:#424242}.theme--dark.v-pagination .v-pagination__navigation .v-icon{color:#fff}.v-pagination{display:-ms-inline-flexbox;display:inline-flex;list-style-type:none;margin:0;max-width:100%;padding:0}.v-pagination,.v-pagination>li{-ms-flex-align:center;align-items:center}.v-pagination>li{display:-ms-flexbox;display:flex}.v-pagination--circle .v-pagination__item,.v-pagination--circle .v-pagination__more,.v-pagination--circle .v-pagination__navigation{border-radius:50%}.v-pagination--disabled{opacity:.6;pointer-events:none}.v-pagination__item{-ms-flex-align:center;align-items:center;background:transparent;border-radius:4px;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-ms-inline-flexbox;display:inline-flex;font-size:14px;height:34px;-ms-flex-pack:center;justify-content:center;margin:.3rem;text-decoration:none;transition:.3s cubic-bezier(0,0,.2,1);width:34px}.v-pagination__item--active{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-pagination__navigation{-ms-flex-align:center;align-items:center;border-radius:4px;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-ms-inline-flexbox;display:inline-flex;height:2rem;-ms-flex-pack:center;justify-content:center;margin:.3rem 10px;text-decoration:none;width:2rem}.v-pagination__navigation .v-icon{font-size:2rem;transition:.2s cubic-bezier(.4,0,.6,1);vertical-align:middle}.v-pagination__navigation--disabled{opacity:.6;pointer-events:none}.v-pagination__more{-ms-flex-align:end;align-items:flex-end;display:-ms-inline-flexbox;display:inline-flex;height:2rem;-ms-flex-pack:center;justify-content:center;margin:.3rem;width:2rem}.v-parallax{overflow:hidden;position:relative;z-index:0}.v-parallax__image-container{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;z-index:1}.v-parallax__image{-webkit-transform:translate(-50%);bottom:0;display:none;left:50%;min-height:100%;min-width:100%;position:absolute;transform:translate(-50%);transition:opacity .3s cubic-bezier(.25,.8,.5,1);will-change:transform;z-index:1}.v-parallax__content{color:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;-ms-flex-pack:center;justify-content:center;padding:0 1rem;position:relative;z-index:2}.v-input--radio-group .v-radio{margin-bottom:8px}.v-input--radio-group__input{display:-ms-flexbox;display:flex;width:100%}.v-input--radio-group__input>.v-label{padding-bottom:8px}.v-input--radio-group--row .v-input--radio-group__input{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.v-input--radio-group--column .v-input--radio-group__input{-ms-flex-direction:column;flex-direction:column}.theme--light.v-radio--is-disabled label{color:rgba(0,0,0,.38)}.theme--light.v-radio--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-radio--is-disabled label{color:hsla(0,0%,100%,.5)}.theme--dark.v-radio--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.v-radio{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:auto;margin-right:16px;outline:none}.v-radio--is-disabled{pointer-events:none}.theme--light.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#bdbdbd}.theme--dark.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#424242}.v-input--range-slider.v-input--is-disabled .v-slider__track-fill{display:none}.v-input--range-slider.v-input--is-disabled.v-input--slider .v-slider.v-slider .v-slider__thumb{border-color:transparent}.theme--light.v-input--slider .v-slider__track,.theme--light.v-input--slider .v-slider__track-fill{background:rgba(0,0,0,.26)}.theme--light.v-input--slider .v-slider__track__container:after{border:1px solid rgba(0,0,0,.87)}.theme--light.v-input--slider .v-slider__ticks{border-color:rgba(0,0,0,.87);color:rgba(0,0,0,.54)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid rgba(0,0,0,.38)}.theme--light.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--slider--is-active .v-slider__track{background:rgba(0,0,0,.38)}.theme--dark.v-input--slider .v-slider__track,.theme--dark.v-input--slider .v-slider__track-fill{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider .v-slider__track__container:after{border:1px solid #fff}.theme--dark.v-input--slider .v-slider__ticks{border-color:#fff;color:hsla(0,0%,100%,.7)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid hsla(0,0%,100%,.3)}.theme--dark.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--slider--is-active .v-slider__track{background:hsla(0,0%,100%,.3)}.application--is-rtl .v-input--slider .v-label{margin-left:16px;margin-right:0}.v-input--slider{margin-top:16px}.v-input--slider.v-input--is-focused .v-slider__thumb-container--is-active:not(.v-slider__thumb-container--show-label):before{-webkit-transform:scale(1);opacity:.2;transform:scale(1)}.v-input--slider.v-input--is-focused .v-slider__track{transition:none}.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider .v-slider__tick,.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider__track__container:after,.v-input--slider.v-input--slider--ticks .v-slider__ticks.v-slider__ticks--always-show{opacity:1}.v-input--slider.v-input--slider--ticks-labels .v-input__slot{margin-bottom:16px}.v-input--slider.v-input--is-readonly{pointer-events:none}.v-input--slider.v-input--is-disabled .v-slider__thumb{transform:translateY(-50%) scale(.45)}.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{border:0 solid transparent}.v-input--slider .v-input__slot>:first-child:not(:only-child){margin-right:16px}.v-slider{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;cursor:default;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;height:32px;outline:none;position:relative;user-select:none}.v-slider input{cursor:default;opacity:0;padding:0;width:100%}.v-slider__track__container{-webkit-transform:translateY(-50%);height:2px;left:0;overflow:hidden;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__track__container:after{content:"";height:2px;opacity:0;position:absolute;right:0;top:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:2px}.v-slider__thumb,.v-slider__ticks,.v-slider__track{position:absolute;top:0}.v-slider__track{-webkit-transform-origin:right;overflow:hidden;transform-origin:right}.v-slider__track,.v-slider__track-fill{height:2px;left:0;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-slider__track-fill{-webkit-transform-origin:left;position:absolute;transform-origin:left}.v-slider__ticks-container{-webkit-transform:translateY(-50%);height:2px;left:0;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__ticks{border-style:solid;opacity:0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__ticks>span{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateX(-50%);-webkit-user-select:none;position:absolute;top:8px;transform:translateX(-50%);user-select:none;white-space:nowrap}.v-slider__ticks:first-child>span{transform:translateX(0)}.v-slider__ticks:last-child>span{transform:translateX(-100%)}.v-slider:not(.v-input--is-dirty) .v-slider__ticks:first-child{border-color:transparent}.v-slider__thumb-container{position:absolute;top:50%;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__thumb-container:before{-webkit-transform:scale(.2);background:currentColor;border-radius:50%;color:inherit;content:"";height:32px;left:-16px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;top:-16px;transform:scale(.2);transition:.4s cubic-bezier(0,0,.2,1);width:32px;will-change:transform,opacity}.v-slider__thumb{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-50%) scale(.6);-webkit-user-select:none;background:transparent;border-radius:50%;height:24px;left:-12px;top:50%;transform:translateY(-50%) scale(.6);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;width:24px}.v-slider--is-active .v-slider__thumb-container--is-active .v-slider__thumb{transform:translateY(-50%) scale(1)}.v-slider--is-active .v-slider__thumb-container--is-active.v-slider__thumb-container--show-label .v-slider__thumb{transform:translateY(-50%) scale(0)}.v-slider--is-active .v-slider__ticks-container .v-slider__ticks{opacity:1}.v-slider__thumb-label__container{top:0}.v-slider__thumb-label,.v-slider__thumb-label__container{left:0;position:absolute;transition:.3s cubic-bezier(.25,.8,.25,1)}.v-slider__thumb-label{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);-webkit-user-select:none;-ms-flex-align:center;align-items:center;border-radius:50% 50% 0;bottom:100%;color:#fff;display:-ms-flexbox;display:flex;font-size:12px;height:32px;-ms-flex-pack:center;justify-content:center;transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);user-select:none;width:32px}.v-slider__thumb-label>*{transform:rotate(-45deg)}.v-slider__track,.v-slider__track-fill{position:absolute}.v-rating .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:50%;padding:.5rem;user-select:none}.v-rating--readonly .v-icon{pointer-events:none}.v-rating--dense .v-icon{padding:.1rem}.v-snack{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-size:14px;left:0;pointer-events:none;position:fixed;right:0;z-index:1000}.v-snack--absolute{position:absolute}.v-snack--top{top:0}.v-snack--bottom{bottom:0}.v-snack__wrapper{background-color:#323232;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);pointer-events:auto}.v-snack__content,.v-snack__wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;width:100%}.v-snack__content{height:48px;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden;padding:14px 24px}.v-snack__content .v-btn{color:#fff;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;margin:0 0 0 24px;min-width:auto;padding:8px;width:auto}.v-snack__content .v-btn__content{margin:-2px}.v-snack__content .v-btn:before{display:none}.v-snack--multi-line .v-snack__content{height:80px;padding:24px}.v-snack--vertical .v-snack__content{-ms-flex-align:stretch;align-items:stretch;-ms-flex-direction:column;flex-direction:column;height:112px;padding:24px 24px 14px}.v-snack--vertical .v-snack__content .v-btn.v-btn{-ms-flex-pack:end;justify-content:flex-end;margin-left:0;margin-top:24px;padding:0}.v-snack--vertical .v-snack__content .v-btn__content{-ms-flex:0 0 auto;flex:0 0 auto;margin:0}.v-snack--auto-height .v-snack__content{height:auto}.v-snack-transition-enter-active,.v-snack-transition-leave-active{transition:transform .4s cubic-bezier(.25,.8,.5,1)}.v-snack-transition-enter-active .v-snack__content,.v-snack-transition-leave-active .v-snack__content{transition:opacity .3s linear .1s}.v-snack-transition-enter .v-snack__content{opacity:0}.v-snack-transition-enter-to .v-snack__content,.v-snack-transition-leave .v-snack__content{opacity:1}.v-snack-transition-enter.v-snack.v-snack--top,.v-snack-transition-leave-to.v-snack.v-snack--top{transform:translateY(calc(-100% - 8px))}.v-snack-transition-enter.v-snack.v-snack--bottom,.v-snack-transition-leave-to.v-snack.v-snack--bottom{transform:translateY(100%)}@media only screen and (min-width:600px){.v-snack__wrapper{border-radius:2px;margin:0 auto;max-width:568px;min-width:288px;width:auto}.v-snack--left .v-snack__wrapper{margin-left:0}.v-snack--right .v-snack__wrapper{margin-right:0}.v-snack--left,.v-snack--right{margin:0 24px}.v-snack--left.v-snack--top,.v-snack--right.v-snack--top{transform:translateY(24px)}.v-snack--left.v-snack--bottom,.v-snack--right.v-snack--bottom{transform:translateY(-24px)}.v-snack__content .v-btn:first-of-type{margin-left:42px}}.v-speed-dial{position:relative}.v-speed-dial--absolute{position:absolute}.v-speed-dial--fixed{position:fixed}.v-speed-dial--absolute,.v-speed-dial--fixed{z-index:4}.v-speed-dial--absolute>.v-btn--floating,.v-speed-dial--fixed>.v-btn--floating{margin:0}.v-speed-dial--top:not(.v-speed-dial--absolute){top:16px}.v-speed-dial--top.v-speed-dial--absolute{-webkit-transform:translateY(-50%);top:50%;transform:translateY(-50%)}.v-speed-dial--bottom:not(.v-speed-dial--absolute){bottom:16px}.v-speed-dial--bottom.v-speed-dial--absolute{-webkit-transform:translateY(50%);bottom:50%;transform:translateY(50%)}.v-speed-dial--left{left:16px}.v-speed-dial--right{right:16px}.v-speed-dial--direction-left .v-speed-dial__list,.v-speed-dial--direction-right .v-speed-dial__list{height:100%;top:0}.v-speed-dial--direction-bottom .v-speed-dial__list,.v-speed-dial--direction-top .v-speed-dial__list{left:0;width:100%}.v-speed-dial--direction-top .v-speed-dial__list{bottom:100%;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-speed-dial--direction-right .v-speed-dial__list{-ms-flex-direction:row;flex-direction:row;left:100%}.v-speed-dial--direction-bottom .v-speed-dial__list{-ms-flex-direction:column;flex-direction:column;top:100%}.v-speed-dial--direction-left .v-speed-dial__list{-ms-flex-direction:row-reverse;flex-direction:row-reverse;right:100%}.v-speed-dial__list{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;position:absolute}.v-speed-dial__list .v-btn:first-child{transition-delay:.05s}.v-speed-dial__list .v-btn:nth-child(2){transition-delay:.1s}.v-speed-dial__list .v-btn:nth-child(3){transition-delay:.15s}.v-speed-dial__list .v-btn:nth-child(4){transition-delay:.2s}.v-speed-dial__list .v-btn:nth-child(5){transition-delay:.25s}.v-speed-dial__list .v-btn:nth-child(6){transition-delay:.3s}.v-speed-dial__list .v-btn:nth-child(7){transition-delay:.35s}.theme--light.v-stepper{background:#fff}.theme--light.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:rgba(0,0,0,.38)}.theme--light.v-stepper .v-stepper__step__step,.theme--light.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--light.v-stepper .v-stepper__header .v-divider{border-color:rgba(0,0,0,.12)}.theme--light.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--editable:hover{background:rgba(0,0,0,.06)}.theme--light.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--complete .v-stepper__label{color:rgba(0,0,0,.87)}.theme--light.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:rgba(0,0,0,.54)}.theme--light.v-stepper .v-stepper__label{color:rgba(0,0,0,.38)}.theme--light.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--light.v-stepper .v-stepper__label small{color:rgba(0,0,0,.54)}.theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid rgba(0,0,0,.12)}.theme--dark.v-stepper{background:#303030}.theme--dark.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:hsla(0,0%,100%,.5)}.theme--dark.v-stepper .v-stepper__step__step,.theme--dark.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--dark.v-stepper .v-stepper__header .v-divider{border-color:hsla(0,0%,100%,.12)}.theme--dark.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--editable:hover{background:hsla(0,0%,100%,.06)}.theme--dark.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--complete .v-stepper__label{color:hsla(0,0%,100%,.87)}.theme--dark.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:hsla(0,0%,100%,.75)}.theme--dark.v-stepper .v-stepper__label{color:hsla(0,0%,100%,.5)}.theme--dark.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--dark.v-stepper .v-stepper__label small{color:hsla(0,0%,100%,.7)}.theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid hsla(0,0%,100%,.12)}.v-stepper{overflow:hidden;position:relative}.v-stepper,.v-stepper__header{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-stepper__header{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:72px;-ms-flex-pack:justify;justify-content:space-between}.v-stepper__header .v-divider{-ms-flex-item-align:center;align-self:center;margin:0 -16px}.v-stepper__items{overflow:hidden;position:relative}.v-stepper__step__step{-ms-flex-align:center;align-items:center;border-radius:50%;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;height:24px;-ms-flex-pack:center;justify-content:center;margin-right:8px;min-width:24px;transition:.3s cubic-bezier(.25,.8,.25,1);width:24px}.v-stepper__step__step .v-icon{font-size:18px}.v-stepper__step{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;padding:24px;position:relative}.v-stepper__step--active .v-stepper__label{transition:.3s cubic-bezier(.4,0,.6,1)}.v-stepper__step--editable{cursor:pointer}.v-stepper__step.v-stepper__step--error .v-stepper__step__step{background:transparent;color:inherit}.v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon{color:inherit;font-size:24px}.v-stepper__step.v-stepper__step--error .v-stepper__label{color:inherit;font-weight:500;text-shadow:none}.v-stepper__step.v-stepper__step--error .v-stepper__label small{color:inherit}.v-stepper__label{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;text-align:left}.v-stepper__label small{font-size:12px;font-weight:300;text-shadow:none}.v-stepper__wrapper{overflow:hidden;transition:none}.v-stepper__content{-ms-flex:1 0 auto;flex:1 0 auto;padding:24px 24px 16px;top:0;width:100%}.v-stepper__content>.v-btn{margin:24px 8px 8px 0}.v-stepper--is-booted .v-stepper__content,.v-stepper--is-booted .v-stepper__wrapper{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-stepper--vertical{padding-bottom:36px}.v-stepper--vertical .v-stepper__content{margin:-8px -36px -16px 36px;padding:16px 60px 16px 23px;width:auto}.v-stepper--vertical .v-stepper__step{padding:24px 24px 16px}.v-stepper--vertical .v-stepper__step__step{margin-right:12px}.v-stepper--alt-labels .v-stepper__header{height:auto}.v-stepper--alt-labels .v-stepper__header .v-divider{-ms-flex-item-align:start;align-self:flex-start;margin:35px -67px 0}.v-stepper--alt-labels .v-stepper__step{-ms-flex-align:center;align-items:center;-ms-flex-preferred-size:175px;flex-basis:175px;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:flex-start}.v-stepper--alt-labels .v-stepper__step small{-ms-flex-item-align:center;align-self:center}.v-stepper--alt-labels .v-stepper__step__step{margin-bottom:11px;margin-right:0}@media only screen and (max-width:959px){.v-stepper:not(.v-stepper--vertical) .v-stepper__label{display:none}.v-stepper:not(.v-stepper--vertical) .v-stepper__step__step{margin-right:0}}.theme--light.v-input--switch__thumb{color:#fafafa}.theme--light.v-input--switch__track{color:rgba(0,0,0,.38)}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#bdbdbd!important}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__track{color:rgba(0,0,0,.12)!important}.theme--dark.v-input--switch__thumb{color:#bdbdbd}.theme--dark.v-input--switch__track{color:hsla(0,0%,100%,.3)}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#424242!important}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__track{color:hsla(0,0%,100%,.1)!important}.application--is-rtl .v-input--switch .v-input--selection-controls__ripple{left:auto;right:-14px}.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--switch__thumb{transform:translate(-16px)}.v-input--switch__thumb,.v-input--switch__track{background-color:currentColor;pointer-events:none;transition:inherit}.v-input--switch__track{border-radius:8px;height:14px;left:2px;opacity:.6;position:absolute;right:2px;top:calc(50% - 7px)}.v-input--switch__thumb{border-radius:50%;box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);height:20px;position:relative;top:calc(50% - 10px);width:20px}.v-input--switch .v-input--selection-controls__input{width:38px}.v-input--switch .v-input--selection-controls__ripple{left:-14px;top:calc(50% - 24px)}.v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.v-input--switch.v-input--is-dirty .v-input--switch__thumb{transform:translate(16px)}.theme--light.v-system-bar{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.theme--light.v-system-bar .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-system-bar--lights-out{background-color:hsla(0,0%,100%,.7)!important}.theme--dark.v-system-bar{background-color:#000;color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar .v-icon{color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar--lights-out{background-color:rgba(0,0,0,.2)!important}.v-system-bar{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;padding:0 8px}.v-system-bar .v-icon{font-size:16px}.v-system-bar--absolute,.v-system-bar--fixed{left:0;top:0;width:100%;z-index:3}.v-system-bar--fixed{position:fixed}.v-system-bar--absolute{position:absolute}.v-system-bar--status .v-icon{margin-right:4px}.v-system-bar--window .v-icon{font-size:20px;margin-right:8px}.theme--light.v-tabs__bar{background-color:#fff}.theme--light.v-tabs__bar .v-tabs__div{color:rgba(0,0,0,.87)}.theme--light.v-tabs__bar .v-tabs__item--disabled{color:rgba(0,0,0,.26)}.theme--dark.v-tabs__bar{background-color:#424242}.theme--dark.v-tabs__bar .v-tabs__div{color:#fff}.theme--dark.v-tabs__bar .v-tabs__item--disabled{color:hsla(0,0%,100%,.3)}.v-tabs,.v-tabs__bar{position:relative}.v-tabs__icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;height:100%;position:absolute;top:0;user-select:none;width:32px}.v-tabs__icon--prev{left:4px}.v-tabs__icon--next{right:4px}.v-tabs__wrapper{contain:content;display:-ms-flexbox;display:flex;overflow:hidden}.v-tabs__wrapper--show-arrows{margin-left:40px;margin-right:40px}.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:16px}.v-tabs__container{display:-ms-flexbox;display:flex;height:48px;list-style-type:none;position:relative;transition:transform .6s cubic-bezier(.86,0,.07,1);white-space:nowrap}.v-tabs__container,.v-tabs__container--overflow .v-tabs__div{-ms-flex:1 0 auto;flex:1 0 auto}.v-tabs__container--grow .v-tabs__div{-ms-flex:1 0 auto;flex:1 0 auto;max-width:none}.v-tabs__container--icons-and-text{height:72px}.v-tabs__container--align-with-title{padding-left:56px}.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:72px}.v-tabs__container--centered .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--centered>.v-tabs__div:first-child,.v-tabs__container--fixed-tabs .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--fixed-tabs>.v-tabs__div:first-child,.v-tabs__container--right .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--right>.v-tabs__div:first-child{margin-left:auto}.v-tabs__container--centered>.v-tabs__div:last-child,.v-tabs__container--fixed-tabs>.v-tabs__div:last-child{margin-right:auto}.v-tabs__container--icons-and-text .v-tabs__item{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-tabs__container--icons-and-text .v-tabs__item .v-icon{margin-bottom:6px}.v-tabs__div{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 1 auto;flex:0 1 auto;font-size:14px;font-weight:500;height:inherit;line-height:normal;max-width:264px;text-align:center;text-transform:uppercase;vertical-align:middle}.v-tabs__item{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;color:inherit;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;-ms-flex-pack:center;justify-content:center;max-width:inherit;padding:6px 12px;text-decoration:none;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:normal}.v-tabs__item:not(.v-tabs__item--active){opacity:.7}.v-tabs__item--disabled{pointer-events:none}.v-tabs__slider{height:2px;width:100%}.v-tabs__slider-wrapper{bottom:0;margin:0!important;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-tabs__items{overflow:hidden;position:relative}.v-tabs__content{transition:transform .4s cubic-bezier(.86,0,.07,1);width:100%}@media only screen and (max-width:599px){.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:24px}.v-tabs__container--fixed-tabs .v-tabs__div{-ms-flex:1 0 auto;flex:1 0 auto}}@media only screen and (min-width:600px){.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:160px}}.theme--light.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:#fff}.theme--dark.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:rgba(0,0,0,.87)}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot{margin-left:-12px;margin-right:0}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-left:12px;padding-right:0}.v-textarea textarea{-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px;max-width:100%;min-height:32px;outline:none;padding:7px 0 8px;width:100%}.v-textarea .v-text-field__prefix{-ms-flex-item-align:start;align-self:start;padding-top:4px}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__slot textarea,.v-textarea.v-text-field--full-width .v-text-field__slot textarea{margin-top:0}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__details,.v-textarea.v-text-field--full-width .v-text-field__details{bottom:4px}.v-textarea.v-text-field--enclosed .v-text-field__slot{margin-right:-12px}.v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-right:12px}.v-textarea.v-text-field--box .v-text-field__prefix,.v-textarea.v-text-field--box textarea,.v-textarea.v-text-field--enclosed .v-text-field__prefix,.v-textarea.v-text-field--enclosed textarea{margin-top:24px}.v-textarea.v-text-field--box.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--single-line textarea,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--single-line textarea{margin-top:12px}.v-textarea.v-text-field--box.v-text-field--single-line .v-label,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-label{top:18px}.v-textarea.v-text-field--box.v-text-field--single-line.v-text-field--outline .v-input__control,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-text-field--outline .v-input__control{padding-top:0}.v-textarea.v-text-field--solo{-ms-flex-align:start;align-items:flex-start}.v-textarea.v-text-field--solo .v-input__append-inner,.v-textarea.v-text-field--solo .v-input__append-outer,.v-textarea.v-text-field--solo .v-input__prepend-inner,.v-textarea.v-text-field--solo .v-input__prepend-outer{-ms-flex-item-align:start;align-self:flex-start;margin-top:16px}.v-textarea--auto-grow textarea{overflow:hidden}.v-textarea--no-resize textarea{resize:none}.v-time-picker-title{color:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;line-height:1}.v-time-picker-title__time{white-space:nowrap}.v-time-picker-title__time .v-picker__title__btn,.v-time-picker-title__time span{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;font-size:70px;height:70px;-ms-flex-pack:center;justify-content:center}.v-time-picker-title__ampm{-ms-flex-item-align:end;align-self:flex-end;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font-size:16px;margin:8px 0 6px 8px;text-transform:uppercase}.v-time-picker-title__ampm div:only-child{-ms-flex-direction:row;flex-direction:row}.v-picker__title--landscape .v-time-picker-title{-ms-flex-direction:column;flex-direction:column;height:100%;-ms-flex-pack:center;justify-content:center}.v-picker__title--landscape .v-time-picker-title__time{text-align:right}.v-picker__title--landscape .v-time-picker-title__time .v-picker__title__btn,.v-picker__title--landscape .v-time-picker-title__time span{font-size:55px;height:55px}.v-picker__title--landscape .v-time-picker-title__ampm{-ms-flex-item-align:auto;align-self:auto;margin:16px 0 0;text-align:center}.theme--light.v-time-picker-clock{background:#e0e0e0}.theme--light.v-time-picker-clock>span.disabled{color:rgba(0,0,0,.26)}.theme--light.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate>span.active{background-color:#bdbdbd}.theme--dark.v-time-picker-clock{background:#616161}.theme--dark.v-time-picker-clock>span.disabled,.theme--dark.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#757575}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#757575}.theme--dark.v-time-picker-clock--indeterminate>span.active{background-color:#757575}.v-time-picker-clock{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:100%;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-time-picker-clock__container{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding:10px}.v-time-picker-clock__hand{-webkit-transform-origin:center bottom;bottom:50%;height:calc(50% - 28px);left:calc(50% - 1px);position:absolute;transform-origin:center bottom;width:2px;will-change:transform;z-index:1}.v-time-picker-clock__hand:before{background:transparent;border:2px solid;border-color:inherit;border-radius:100%;height:10px;top:-3%;width:10px}.v-time-picker-clock__hand:after,.v-time-picker-clock__hand:before{-webkit-transform:translate(-50%,-50%);content:"";left:50%;position:absolute;transform:translate(-50%,-50%)}.v-time-picker-clock__hand:after{background-color:inherit;border-color:inherit;border-radius:100%;border-style:solid;height:8px;top:100%;width:8px}.v-time-picker-clock>span{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-align:center;align-items:center;border-radius:100%;cursor:default;display:-ms-flexbox;display:flex;font-size:16px;height:40px;-ms-flex-pack:center;justify-content:center;left:calc(50% - 20px);position:absolute;text-align:center;top:calc(50% - 20px);user-select:none;width:40px}.v-time-picker-clock>span>span{z-index:1}.v-time-picker-clock>span:after,.v-time-picker-clock>span:before{-webkit-transform:translate(-50%,-50%);border-radius:100%;content:"";height:14px;height:40px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:14px;width:40px}.v-time-picker-clock>span.active{color:#fff;cursor:default;z-index:2}.v-time-picker-clock>span.disabled{pointer-events:none}.theme--light.v-toolbar{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-toolbar{background-color:#212121;color:#fff}.v-toolbar{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);position:relative;transition:none;width:100%;will-change:padding-left,padding-right}.v-toolbar[data-booted=true]{transition:.2s cubic-bezier(.4,0,.2,1)}.v-toolbar .v-text-field--box,.v-toolbar .v-text-field--enclosed{margin:0}.v-toolbar .v-text-field--box .v-text-field__details,.v-toolbar .v-text-field--enclosed .v-text-field__details{display:none}.v-toolbar .v-tabs{width:100%}.v-toolbar__title{font-size:20px;font-weight:500;letter-spacing:.02em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar__title:not(:first-child){margin-left:20px}.v-toolbar__content,.v-toolbar__extension{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;padding:0 24px}.v-toolbar__content .v-btn--icon,.v-toolbar__extension .v-btn--icon{margin:6px}.v-toolbar__content>:first-child,.v-toolbar__extension>:first-child{margin-left:0}.v-toolbar__content>:first-child.v-btn--icon,.v-toolbar__extension>:first-child.v-btn--icon{margin-left:-6px}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:first-child.v-tooltip span .v-btn,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:first-child.v-tooltip span .v-btn{margin-left:0}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:first-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:first-child.v-tooltip span .v-btn--icon{margin-left:-6px}.v-toolbar__content>:last-child,.v-toolbar__extension>:last-child{margin-right:0}.v-toolbar__content>:last-child.v-btn--icon,.v-toolbar__extension>:last-child.v-btn--icon{margin-right:-6px}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:last-child.v-tooltip span .v-btn,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:last-child.v-tooltip span .v-btn{margin-right:0}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:last-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:last-child.v-tooltip span .v-btn--icon{margin-right:-6px}.v-toolbar__content>.v-list,.v-toolbar__extension>.v-list{-ms-flex:1 1 auto;flex:1 1 auto;max-height:100%}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-24px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-24px}.v-toolbar__extension>.v-toolbar__title{margin-left:72px}.v-toolbar__items{display:-ms-flexbox;display:flex;height:inherit;max-width:100%;padding:0}.v-toolbar__items .v-btn{-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center}.v-toolbar__items .v-tooltip,.v-toolbar__items .v-tooltip>span{height:inherit}.v-toolbar__items .v-btn:not(.v-btn--floating):not(.v-btn--icon),.v-toolbar__items .v-menu,.v-toolbar__items .v-menu__activator{height:inherit;margin:0}.v-toolbar .v-btn-toggle,.v-toolbar .v-overflow-btn{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar .v-input{margin:0}.v-toolbar .v-overflow-btn .v-input__control:before,.v-toolbar .v-overflow-btn .v-input__slot:before{display:none}.v-toolbar--card{border-radius:2px 2px 0 0;box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar--fixed{position:fixed;z-index:2}.v-toolbar--absolute,.v-toolbar--fixed{left:0;top:0}.v-toolbar--absolute{position:absolute;z-index:2}.v-toolbar--floating{display:-ms-inline-flexbox;display:inline-flex;margin:16px;width:auto}.v-toolbar--clipped{z-index:3}@media only screen and (max-width:959px){.v-toolbar__content,.v-toolbar__extension{padding:0 16px}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-16px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-16px}}.v-tooltip{position:relative}.v-tooltip__content{background:#616161;border-radius:2px;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);color:#fff;display:inline-block;font-size:12px;padding:5px 8px;position:absolute;text-transform:none;transition:.15s cubic-bezier(.25,.8,.5,1);width:auto}.v-tooltip__content[class*=-active]{pointer-events:none}@media only screen and (max-width:959px){.v-tooltip .v-tooltip__content{padding:10px 16px}} +/*# sourceMappingURL=app.14daf9aed06f69ef52ff8971689f65e3.css.map */ \ No newline at end of file diff --git a/web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map b/web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map new file mode 100644 index 0000000..db7da77 --- /dev/null +++ b/web_test/production/static/css/app.14daf9aed06f69ef52ff8971689f65e3.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["app.14daf9aed06f69ef52ff8971689f65e3.css"],"names":[],"mappings":"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","file":"app.14daf9aed06f69ef52ff8971689f65e3.css","sourcesContent":["\nsvg {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n\n.column-code {\r\n height: 85vh;\r\n overflow-y: scroll;\n}\r\n\n.winner {\r\n position: absolute;\r\n right: 0;\r\n margin-right: -14px;\r\n margin-top: -10px;\r\n font-size: 25px;\r\n -webkit-transform: rotateZ(28deg);\r\n transform: rotateZ(28deg);\n}\n.graph-inactive-btn {\r\n text-decoration: line-through !important;\r\n -webkit-text-decoration-style: double !important;\r\n text-decoration-style: double !important;\n}\n.extended-area {\r\n width: 100%;\r\n height: 250px;\n}\r\n/*!\n* Vuetify v1.2.3\n* Forged by John Leider\n* Released under the MIT License.\n*/@-webkit-keyframes shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}@keyframes shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}.black{background-color:#000!important;border-color:#000!important}.black--text{caret-color:#000!important;color:#000!important}.white{background-color:#fff!important;border-color:#fff!important}.white--text{caret-color:#fff!important;color:#fff!important}.transparent{background-color:transparent!important;border-color:transparent!important}.transparent--text{caret-color:transparent!important;color:transparent!important}.red{background-color:#f44336!important;border-color:#f44336!important}.red--text{caret-color:#f44336!important;color:#f44336!important}.red.lighten-5{background-color:#ffebee!important;border-color:#ffebee!important}.red--text.text--lighten-5{caret-color:#ffebee!important;color:#ffebee!important}.red.lighten-4{background-color:#ffcdd2!important;border-color:#ffcdd2!important}.red--text.text--lighten-4{caret-color:#ffcdd2!important;color:#ffcdd2!important}.red.lighten-3{background-color:#ef9a9a!important;border-color:#ef9a9a!important}.red--text.text--lighten-3{caret-color:#ef9a9a!important;color:#ef9a9a!important}.red.lighten-2{background-color:#e57373!important;border-color:#e57373!important}.red--text.text--lighten-2{caret-color:#e57373!important;color:#e57373!important}.red.lighten-1{background-color:#ef5350!important;border-color:#ef5350!important}.red--text.text--lighten-1{caret-color:#ef5350!important;color:#ef5350!important}.red.darken-1{background-color:#e53935!important;border-color:#e53935!important}.red--text.text--darken-1{caret-color:#e53935!important;color:#e53935!important}.red.darken-2{background-color:#d32f2f!important;border-color:#d32f2f!important}.red--text.text--darken-2{caret-color:#d32f2f!important;color:#d32f2f!important}.red.darken-3{background-color:#c62828!important;border-color:#c62828!important}.red--text.text--darken-3{caret-color:#c62828!important;color:#c62828!important}.red.darken-4{background-color:#b71c1c!important;border-color:#b71c1c!important}.red--text.text--darken-4{caret-color:#b71c1c!important;color:#b71c1c!important}.red.accent-1{background-color:#ff8a80!important;border-color:#ff8a80!important}.red--text.text--accent-1{caret-color:#ff8a80!important;color:#ff8a80!important}.red.accent-2{background-color:#ff5252!important;border-color:#ff5252!important}.red--text.text--accent-2{caret-color:#ff5252!important;color:#ff5252!important}.red.accent-3{background-color:#ff1744!important;border-color:#ff1744!important}.red--text.text--accent-3{caret-color:#ff1744!important;color:#ff1744!important}.red.accent-4{background-color:#d50000!important;border-color:#d50000!important}.red--text.text--accent-4{caret-color:#d50000!important;color:#d50000!important}.pink{background-color:#e91e63!important;border-color:#e91e63!important}.pink--text{caret-color:#e91e63!important;color:#e91e63!important}.pink.lighten-5{background-color:#fce4ec!important;border-color:#fce4ec!important}.pink--text.text--lighten-5{caret-color:#fce4ec!important;color:#fce4ec!important}.pink.lighten-4{background-color:#f8bbd0!important;border-color:#f8bbd0!important}.pink--text.text--lighten-4{caret-color:#f8bbd0!important;color:#f8bbd0!important}.pink.lighten-3{background-color:#f48fb1!important;border-color:#f48fb1!important}.pink--text.text--lighten-3{caret-color:#f48fb1!important;color:#f48fb1!important}.pink.lighten-2{background-color:#f06292!important;border-color:#f06292!important}.pink--text.text--lighten-2{caret-color:#f06292!important;color:#f06292!important}.pink.lighten-1{background-color:#ec407a!important;border-color:#ec407a!important}.pink--text.text--lighten-1{caret-color:#ec407a!important;color:#ec407a!important}.pink.darken-1{background-color:#d81b60!important;border-color:#d81b60!important}.pink--text.text--darken-1{caret-color:#d81b60!important;color:#d81b60!important}.pink.darken-2{background-color:#c2185b!important;border-color:#c2185b!important}.pink--text.text--darken-2{caret-color:#c2185b!important;color:#c2185b!important}.pink.darken-3{background-color:#ad1457!important;border-color:#ad1457!important}.pink--text.text--darken-3{caret-color:#ad1457!important;color:#ad1457!important}.pink.darken-4{background-color:#880e4f!important;border-color:#880e4f!important}.pink--text.text--darken-4{caret-color:#880e4f!important;color:#880e4f!important}.pink.accent-1{background-color:#ff80ab!important;border-color:#ff80ab!important}.pink--text.text--accent-1{caret-color:#ff80ab!important;color:#ff80ab!important}.pink.accent-2{background-color:#ff4081!important;border-color:#ff4081!important}.pink--text.text--accent-2{caret-color:#ff4081!important;color:#ff4081!important}.pink.accent-3{background-color:#f50057!important;border-color:#f50057!important}.pink--text.text--accent-3{caret-color:#f50057!important;color:#f50057!important}.pink.accent-4{background-color:#c51162!important;border-color:#c51162!important}.pink--text.text--accent-4{caret-color:#c51162!important;color:#c51162!important}.purple{background-color:#9c27b0!important;border-color:#9c27b0!important}.purple--text{caret-color:#9c27b0!important;color:#9c27b0!important}.purple.lighten-5{background-color:#f3e5f5!important;border-color:#f3e5f5!important}.purple--text.text--lighten-5{caret-color:#f3e5f5!important;color:#f3e5f5!important}.purple.lighten-4{background-color:#e1bee7!important;border-color:#e1bee7!important}.purple--text.text--lighten-4{caret-color:#e1bee7!important;color:#e1bee7!important}.purple.lighten-3{background-color:#ce93d8!important;border-color:#ce93d8!important}.purple--text.text--lighten-3{caret-color:#ce93d8!important;color:#ce93d8!important}.purple.lighten-2{background-color:#ba68c8!important;border-color:#ba68c8!important}.purple--text.text--lighten-2{caret-color:#ba68c8!important;color:#ba68c8!important}.purple.lighten-1{background-color:#ab47bc!important;border-color:#ab47bc!important}.purple--text.text--lighten-1{caret-color:#ab47bc!important;color:#ab47bc!important}.purple.darken-1{background-color:#8e24aa!important;border-color:#8e24aa!important}.purple--text.text--darken-1{caret-color:#8e24aa!important;color:#8e24aa!important}.purple.darken-2{background-color:#7b1fa2!important;border-color:#7b1fa2!important}.purple--text.text--darken-2{caret-color:#7b1fa2!important;color:#7b1fa2!important}.purple.darken-3{background-color:#6a1b9a!important;border-color:#6a1b9a!important}.purple--text.text--darken-3{caret-color:#6a1b9a!important;color:#6a1b9a!important}.purple.darken-4{background-color:#4a148c!important;border-color:#4a148c!important}.purple--text.text--darken-4{caret-color:#4a148c!important;color:#4a148c!important}.purple.accent-1{background-color:#ea80fc!important;border-color:#ea80fc!important}.purple--text.text--accent-1{caret-color:#ea80fc!important;color:#ea80fc!important}.purple.accent-2{background-color:#e040fb!important;border-color:#e040fb!important}.purple--text.text--accent-2{caret-color:#e040fb!important;color:#e040fb!important}.purple.accent-3{background-color:#d500f9!important;border-color:#d500f9!important}.purple--text.text--accent-3{caret-color:#d500f9!important;color:#d500f9!important}.purple.accent-4{background-color:#a0f!important;border-color:#a0f!important}.purple--text.text--accent-4{caret-color:#a0f!important;color:#a0f!important}.deep-purple{background-color:#673ab7!important;border-color:#673ab7!important}.deep-purple--text{caret-color:#673ab7!important;color:#673ab7!important}.deep-purple.lighten-5{background-color:#ede7f6!important;border-color:#ede7f6!important}.deep-purple--text.text--lighten-5{caret-color:#ede7f6!important;color:#ede7f6!important}.deep-purple.lighten-4{background-color:#d1c4e9!important;border-color:#d1c4e9!important}.deep-purple--text.text--lighten-4{caret-color:#d1c4e9!important;color:#d1c4e9!important}.deep-purple.lighten-3{background-color:#b39ddb!important;border-color:#b39ddb!important}.deep-purple--text.text--lighten-3{caret-color:#b39ddb!important;color:#b39ddb!important}.deep-purple.lighten-2{background-color:#9575cd!important;border-color:#9575cd!important}.deep-purple--text.text--lighten-2{caret-color:#9575cd!important;color:#9575cd!important}.deep-purple.lighten-1{background-color:#7e57c2!important;border-color:#7e57c2!important}.deep-purple--text.text--lighten-1{caret-color:#7e57c2!important;color:#7e57c2!important}.deep-purple.darken-1{background-color:#5e35b1!important;border-color:#5e35b1!important}.deep-purple--text.text--darken-1{caret-color:#5e35b1!important;color:#5e35b1!important}.deep-purple.darken-2{background-color:#512da8!important;border-color:#512da8!important}.deep-purple--text.text--darken-2{caret-color:#512da8!important;color:#512da8!important}.deep-purple.darken-3{background-color:#4527a0!important;border-color:#4527a0!important}.deep-purple--text.text--darken-3{caret-color:#4527a0!important;color:#4527a0!important}.deep-purple.darken-4{background-color:#311b92!important;border-color:#311b92!important}.deep-purple--text.text--darken-4{caret-color:#311b92!important;color:#311b92!important}.deep-purple.accent-1{background-color:#b388ff!important;border-color:#b388ff!important}.deep-purple--text.text--accent-1{caret-color:#b388ff!important;color:#b388ff!important}.deep-purple.accent-2{background-color:#7c4dff!important;border-color:#7c4dff!important}.deep-purple--text.text--accent-2{caret-color:#7c4dff!important;color:#7c4dff!important}.deep-purple.accent-3{background-color:#651fff!important;border-color:#651fff!important}.deep-purple--text.text--accent-3{caret-color:#651fff!important;color:#651fff!important}.deep-purple.accent-4{background-color:#6200ea!important;border-color:#6200ea!important}.deep-purple--text.text--accent-4{caret-color:#6200ea!important;color:#6200ea!important}.indigo{background-color:#3f51b5!important;border-color:#3f51b5!important}.indigo--text{caret-color:#3f51b5!important;color:#3f51b5!important}.indigo.lighten-5{background-color:#e8eaf6!important;border-color:#e8eaf6!important}.indigo--text.text--lighten-5{caret-color:#e8eaf6!important;color:#e8eaf6!important}.indigo.lighten-4{background-color:#c5cae9!important;border-color:#c5cae9!important}.indigo--text.text--lighten-4{caret-color:#c5cae9!important;color:#c5cae9!important}.indigo.lighten-3{background-color:#9fa8da!important;border-color:#9fa8da!important}.indigo--text.text--lighten-3{caret-color:#9fa8da!important;color:#9fa8da!important}.indigo.lighten-2{background-color:#7986cb!important;border-color:#7986cb!important}.indigo--text.text--lighten-2{caret-color:#7986cb!important;color:#7986cb!important}.indigo.lighten-1{background-color:#5c6bc0!important;border-color:#5c6bc0!important}.indigo--text.text--lighten-1{caret-color:#5c6bc0!important;color:#5c6bc0!important}.indigo.darken-1{background-color:#3949ab!important;border-color:#3949ab!important}.indigo--text.text--darken-1{caret-color:#3949ab!important;color:#3949ab!important}.indigo.darken-2{background-color:#303f9f!important;border-color:#303f9f!important}.indigo--text.text--darken-2{caret-color:#303f9f!important;color:#303f9f!important}.indigo.darken-3{background-color:#283593!important;border-color:#283593!important}.indigo--text.text--darken-3{caret-color:#283593!important;color:#283593!important}.indigo.darken-4{background-color:#1a237e!important;border-color:#1a237e!important}.indigo--text.text--darken-4{caret-color:#1a237e!important;color:#1a237e!important}.indigo.accent-1{background-color:#8c9eff!important;border-color:#8c9eff!important}.indigo--text.text--accent-1{caret-color:#8c9eff!important;color:#8c9eff!important}.indigo.accent-2{background-color:#536dfe!important;border-color:#536dfe!important}.indigo--text.text--accent-2{caret-color:#536dfe!important;color:#536dfe!important}.indigo.accent-3{background-color:#3d5afe!important;border-color:#3d5afe!important}.indigo--text.text--accent-3{caret-color:#3d5afe!important;color:#3d5afe!important}.indigo.accent-4{background-color:#304ffe!important;border-color:#304ffe!important}.indigo--text.text--accent-4{caret-color:#304ffe!important;color:#304ffe!important}.blue{background-color:#2196f3!important;border-color:#2196f3!important}.blue--text{caret-color:#2196f3!important;color:#2196f3!important}.blue.lighten-5{background-color:#e3f2fd!important;border-color:#e3f2fd!important}.blue--text.text--lighten-5{caret-color:#e3f2fd!important;color:#e3f2fd!important}.blue.lighten-4{background-color:#bbdefb!important;border-color:#bbdefb!important}.blue--text.text--lighten-4{caret-color:#bbdefb!important;color:#bbdefb!important}.blue.lighten-3{background-color:#90caf9!important;border-color:#90caf9!important}.blue--text.text--lighten-3{caret-color:#90caf9!important;color:#90caf9!important}.blue.lighten-2{background-color:#64b5f6!important;border-color:#64b5f6!important}.blue--text.text--lighten-2{caret-color:#64b5f6!important;color:#64b5f6!important}.blue.lighten-1{background-color:#42a5f5!important;border-color:#42a5f5!important}.blue--text.text--lighten-1{caret-color:#42a5f5!important;color:#42a5f5!important}.blue.darken-1{background-color:#1e88e5!important;border-color:#1e88e5!important}.blue--text.text--darken-1{caret-color:#1e88e5!important;color:#1e88e5!important}.blue.darken-2{background-color:#1976d2!important;border-color:#1976d2!important}.blue--text.text--darken-2{caret-color:#1976d2!important;color:#1976d2!important}.blue.darken-3{background-color:#1565c0!important;border-color:#1565c0!important}.blue--text.text--darken-3{caret-color:#1565c0!important;color:#1565c0!important}.blue.darken-4{background-color:#0d47a1!important;border-color:#0d47a1!important}.blue--text.text--darken-4{caret-color:#0d47a1!important;color:#0d47a1!important}.blue.accent-1{background-color:#82b1ff!important;border-color:#82b1ff!important}.blue--text.text--accent-1{caret-color:#82b1ff!important;color:#82b1ff!important}.blue.accent-2{background-color:#448aff!important;border-color:#448aff!important}.blue--text.text--accent-2{caret-color:#448aff!important;color:#448aff!important}.blue.accent-3{background-color:#2979ff!important;border-color:#2979ff!important}.blue--text.text--accent-3{caret-color:#2979ff!important;color:#2979ff!important}.blue.accent-4{background-color:#2962ff!important;border-color:#2962ff!important}.blue--text.text--accent-4{caret-color:#2962ff!important;color:#2962ff!important}.light-blue{background-color:#03a9f4!important;border-color:#03a9f4!important}.light-blue--text{caret-color:#03a9f4!important;color:#03a9f4!important}.light-blue.lighten-5{background-color:#e1f5fe!important;border-color:#e1f5fe!important}.light-blue--text.text--lighten-5{caret-color:#e1f5fe!important;color:#e1f5fe!important}.light-blue.lighten-4{background-color:#b3e5fc!important;border-color:#b3e5fc!important}.light-blue--text.text--lighten-4{caret-color:#b3e5fc!important;color:#b3e5fc!important}.light-blue.lighten-3{background-color:#81d4fa!important;border-color:#81d4fa!important}.light-blue--text.text--lighten-3{caret-color:#81d4fa!important;color:#81d4fa!important}.light-blue.lighten-2{background-color:#4fc3f7!important;border-color:#4fc3f7!important}.light-blue--text.text--lighten-2{caret-color:#4fc3f7!important;color:#4fc3f7!important}.light-blue.lighten-1{background-color:#29b6f6!important;border-color:#29b6f6!important}.light-blue--text.text--lighten-1{caret-color:#29b6f6!important;color:#29b6f6!important}.light-blue.darken-1{background-color:#039be5!important;border-color:#039be5!important}.light-blue--text.text--darken-1{caret-color:#039be5!important;color:#039be5!important}.light-blue.darken-2{background-color:#0288d1!important;border-color:#0288d1!important}.light-blue--text.text--darken-2{caret-color:#0288d1!important;color:#0288d1!important}.light-blue.darken-3{background-color:#0277bd!important;border-color:#0277bd!important}.light-blue--text.text--darken-3{caret-color:#0277bd!important;color:#0277bd!important}.light-blue.darken-4{background-color:#01579b!important;border-color:#01579b!important}.light-blue--text.text--darken-4{caret-color:#01579b!important;color:#01579b!important}.light-blue.accent-1{background-color:#80d8ff!important;border-color:#80d8ff!important}.light-blue--text.text--accent-1{caret-color:#80d8ff!important;color:#80d8ff!important}.light-blue.accent-2{background-color:#40c4ff!important;border-color:#40c4ff!important}.light-blue--text.text--accent-2{caret-color:#40c4ff!important;color:#40c4ff!important}.light-blue.accent-3{background-color:#00b0ff!important;border-color:#00b0ff!important}.light-blue--text.text--accent-3{caret-color:#00b0ff!important;color:#00b0ff!important}.light-blue.accent-4{background-color:#0091ea!important;border-color:#0091ea!important}.light-blue--text.text--accent-4{caret-color:#0091ea!important;color:#0091ea!important}.cyan{background-color:#00bcd4!important;border-color:#00bcd4!important}.cyan--text{caret-color:#00bcd4!important;color:#00bcd4!important}.cyan.lighten-5{background-color:#e0f7fa!important;border-color:#e0f7fa!important}.cyan--text.text--lighten-5{caret-color:#e0f7fa!important;color:#e0f7fa!important}.cyan.lighten-4{background-color:#b2ebf2!important;border-color:#b2ebf2!important}.cyan--text.text--lighten-4{caret-color:#b2ebf2!important;color:#b2ebf2!important}.cyan.lighten-3{background-color:#80deea!important;border-color:#80deea!important}.cyan--text.text--lighten-3{caret-color:#80deea!important;color:#80deea!important}.cyan.lighten-2{background-color:#4dd0e1!important;border-color:#4dd0e1!important}.cyan--text.text--lighten-2{caret-color:#4dd0e1!important;color:#4dd0e1!important}.cyan.lighten-1{background-color:#26c6da!important;border-color:#26c6da!important}.cyan--text.text--lighten-1{caret-color:#26c6da!important;color:#26c6da!important}.cyan.darken-1{background-color:#00acc1!important;border-color:#00acc1!important}.cyan--text.text--darken-1{caret-color:#00acc1!important;color:#00acc1!important}.cyan.darken-2{background-color:#0097a7!important;border-color:#0097a7!important}.cyan--text.text--darken-2{caret-color:#0097a7!important;color:#0097a7!important}.cyan.darken-3{background-color:#00838f!important;border-color:#00838f!important}.cyan--text.text--darken-3{caret-color:#00838f!important;color:#00838f!important}.cyan.darken-4{background-color:#006064!important;border-color:#006064!important}.cyan--text.text--darken-4{caret-color:#006064!important;color:#006064!important}.cyan.accent-1{background-color:#84ffff!important;border-color:#84ffff!important}.cyan--text.text--accent-1{caret-color:#84ffff!important;color:#84ffff!important}.cyan.accent-2{background-color:#18ffff!important;border-color:#18ffff!important}.cyan--text.text--accent-2{caret-color:#18ffff!important;color:#18ffff!important}.cyan.accent-3{background-color:#00e5ff!important;border-color:#00e5ff!important}.cyan--text.text--accent-3{caret-color:#00e5ff!important;color:#00e5ff!important}.cyan.accent-4{background-color:#00b8d4!important;border-color:#00b8d4!important}.cyan--text.text--accent-4{caret-color:#00b8d4!important;color:#00b8d4!important}.teal{background-color:#009688!important;border-color:#009688!important}.teal--text{caret-color:#009688!important;color:#009688!important}.teal.lighten-5{background-color:#e0f2f1!important;border-color:#e0f2f1!important}.teal--text.text--lighten-5{caret-color:#e0f2f1!important;color:#e0f2f1!important}.teal.lighten-4{background-color:#b2dfdb!important;border-color:#b2dfdb!important}.teal--text.text--lighten-4{caret-color:#b2dfdb!important;color:#b2dfdb!important}.teal.lighten-3{background-color:#80cbc4!important;border-color:#80cbc4!important}.teal--text.text--lighten-3{caret-color:#80cbc4!important;color:#80cbc4!important}.teal.lighten-2{background-color:#4db6ac!important;border-color:#4db6ac!important}.teal--text.text--lighten-2{caret-color:#4db6ac!important;color:#4db6ac!important}.teal.lighten-1{background-color:#26a69a!important;border-color:#26a69a!important}.teal--text.text--lighten-1{caret-color:#26a69a!important;color:#26a69a!important}.teal.darken-1{background-color:#00897b!important;border-color:#00897b!important}.teal--text.text--darken-1{caret-color:#00897b!important;color:#00897b!important}.teal.darken-2{background-color:#00796b!important;border-color:#00796b!important}.teal--text.text--darken-2{caret-color:#00796b!important;color:#00796b!important}.teal.darken-3{background-color:#00695c!important;border-color:#00695c!important}.teal--text.text--darken-3{caret-color:#00695c!important;color:#00695c!important}.teal.darken-4{background-color:#004d40!important;border-color:#004d40!important}.teal--text.text--darken-4{caret-color:#004d40!important;color:#004d40!important}.teal.accent-1{background-color:#a7ffeb!important;border-color:#a7ffeb!important}.teal--text.text--accent-1{caret-color:#a7ffeb!important;color:#a7ffeb!important}.teal.accent-2{background-color:#64ffda!important;border-color:#64ffda!important}.teal--text.text--accent-2{caret-color:#64ffda!important;color:#64ffda!important}.teal.accent-3{background-color:#1de9b6!important;border-color:#1de9b6!important}.teal--text.text--accent-3{caret-color:#1de9b6!important;color:#1de9b6!important}.teal.accent-4{background-color:#00bfa5!important;border-color:#00bfa5!important}.teal--text.text--accent-4{caret-color:#00bfa5!important;color:#00bfa5!important}.green{background-color:#4caf50!important;border-color:#4caf50!important}.green--text{caret-color:#4caf50!important;color:#4caf50!important}.green.lighten-5{background-color:#e8f5e9!important;border-color:#e8f5e9!important}.green--text.text--lighten-5{caret-color:#e8f5e9!important;color:#e8f5e9!important}.green.lighten-4{background-color:#c8e6c9!important;border-color:#c8e6c9!important}.green--text.text--lighten-4{caret-color:#c8e6c9!important;color:#c8e6c9!important}.green.lighten-3{background-color:#a5d6a7!important;border-color:#a5d6a7!important}.green--text.text--lighten-3{caret-color:#a5d6a7!important;color:#a5d6a7!important}.green.lighten-2{background-color:#81c784!important;border-color:#81c784!important}.green--text.text--lighten-2{caret-color:#81c784!important;color:#81c784!important}.green.lighten-1{background-color:#66bb6a!important;border-color:#66bb6a!important}.green--text.text--lighten-1{caret-color:#66bb6a!important;color:#66bb6a!important}.green.darken-1{background-color:#43a047!important;border-color:#43a047!important}.green--text.text--darken-1{caret-color:#43a047!important;color:#43a047!important}.green.darken-2{background-color:#388e3c!important;border-color:#388e3c!important}.green--text.text--darken-2{caret-color:#388e3c!important;color:#388e3c!important}.green.darken-3{background-color:#2e7d32!important;border-color:#2e7d32!important}.green--text.text--darken-3{caret-color:#2e7d32!important;color:#2e7d32!important}.green.darken-4{background-color:#1b5e20!important;border-color:#1b5e20!important}.green--text.text--darken-4{caret-color:#1b5e20!important;color:#1b5e20!important}.green.accent-1{background-color:#b9f6ca!important;border-color:#b9f6ca!important}.green--text.text--accent-1{caret-color:#b9f6ca!important;color:#b9f6ca!important}.green.accent-2{background-color:#69f0ae!important;border-color:#69f0ae!important}.green--text.text--accent-2{caret-color:#69f0ae!important;color:#69f0ae!important}.green.accent-3{background-color:#00e676!important;border-color:#00e676!important}.green--text.text--accent-3{caret-color:#00e676!important;color:#00e676!important}.green.accent-4{background-color:#00c853!important;border-color:#00c853!important}.green--text.text--accent-4{caret-color:#00c853!important;color:#00c853!important}.light-green{background-color:#8bc34a!important;border-color:#8bc34a!important}.light-green--text{caret-color:#8bc34a!important;color:#8bc34a!important}.light-green.lighten-5{background-color:#f1f8e9!important;border-color:#f1f8e9!important}.light-green--text.text--lighten-5{caret-color:#f1f8e9!important;color:#f1f8e9!important}.light-green.lighten-4{background-color:#dcedc8!important;border-color:#dcedc8!important}.light-green--text.text--lighten-4{caret-color:#dcedc8!important;color:#dcedc8!important}.light-green.lighten-3{background-color:#c5e1a5!important;border-color:#c5e1a5!important}.light-green--text.text--lighten-3{caret-color:#c5e1a5!important;color:#c5e1a5!important}.light-green.lighten-2{background-color:#aed581!important;border-color:#aed581!important}.light-green--text.text--lighten-2{caret-color:#aed581!important;color:#aed581!important}.light-green.lighten-1{background-color:#9ccc65!important;border-color:#9ccc65!important}.light-green--text.text--lighten-1{caret-color:#9ccc65!important;color:#9ccc65!important}.light-green.darken-1{background-color:#7cb342!important;border-color:#7cb342!important}.light-green--text.text--darken-1{caret-color:#7cb342!important;color:#7cb342!important}.light-green.darken-2{background-color:#689f38!important;border-color:#689f38!important}.light-green--text.text--darken-2{caret-color:#689f38!important;color:#689f38!important}.light-green.darken-3{background-color:#558b2f!important;border-color:#558b2f!important}.light-green--text.text--darken-3{caret-color:#558b2f!important;color:#558b2f!important}.light-green.darken-4{background-color:#33691e!important;border-color:#33691e!important}.light-green--text.text--darken-4{caret-color:#33691e!important;color:#33691e!important}.light-green.accent-1{background-color:#ccff90!important;border-color:#ccff90!important}.light-green--text.text--accent-1{caret-color:#ccff90!important;color:#ccff90!important}.light-green.accent-2{background-color:#b2ff59!important;border-color:#b2ff59!important}.light-green--text.text--accent-2{caret-color:#b2ff59!important;color:#b2ff59!important}.light-green.accent-3{background-color:#76ff03!important;border-color:#76ff03!important}.light-green--text.text--accent-3{caret-color:#76ff03!important;color:#76ff03!important}.light-green.accent-4{background-color:#64dd17!important;border-color:#64dd17!important}.light-green--text.text--accent-4{caret-color:#64dd17!important;color:#64dd17!important}.lime{background-color:#cddc39!important;border-color:#cddc39!important}.lime--text{caret-color:#cddc39!important;color:#cddc39!important}.lime.lighten-5{background-color:#f9fbe7!important;border-color:#f9fbe7!important}.lime--text.text--lighten-5{caret-color:#f9fbe7!important;color:#f9fbe7!important}.lime.lighten-4{background-color:#f0f4c3!important;border-color:#f0f4c3!important}.lime--text.text--lighten-4{caret-color:#f0f4c3!important;color:#f0f4c3!important}.lime.lighten-3{background-color:#e6ee9c!important;border-color:#e6ee9c!important}.lime--text.text--lighten-3{caret-color:#e6ee9c!important;color:#e6ee9c!important}.lime.lighten-2{background-color:#dce775!important;border-color:#dce775!important}.lime--text.text--lighten-2{caret-color:#dce775!important;color:#dce775!important}.lime.lighten-1{background-color:#d4e157!important;border-color:#d4e157!important}.lime--text.text--lighten-1{caret-color:#d4e157!important;color:#d4e157!important}.lime.darken-1{background-color:#c0ca33!important;border-color:#c0ca33!important}.lime--text.text--darken-1{caret-color:#c0ca33!important;color:#c0ca33!important}.lime.darken-2{background-color:#afb42b!important;border-color:#afb42b!important}.lime--text.text--darken-2{caret-color:#afb42b!important;color:#afb42b!important}.lime.darken-3{background-color:#9e9d24!important;border-color:#9e9d24!important}.lime--text.text--darken-3{caret-color:#9e9d24!important;color:#9e9d24!important}.lime.darken-4{background-color:#827717!important;border-color:#827717!important}.lime--text.text--darken-4{caret-color:#827717!important;color:#827717!important}.lime.accent-1{background-color:#f4ff81!important;border-color:#f4ff81!important}.lime--text.text--accent-1{caret-color:#f4ff81!important;color:#f4ff81!important}.lime.accent-2{background-color:#eeff41!important;border-color:#eeff41!important}.lime--text.text--accent-2{caret-color:#eeff41!important;color:#eeff41!important}.lime.accent-3{background-color:#c6ff00!important;border-color:#c6ff00!important}.lime--text.text--accent-3{caret-color:#c6ff00!important;color:#c6ff00!important}.lime.accent-4{background-color:#aeea00!important;border-color:#aeea00!important}.lime--text.text--accent-4{caret-color:#aeea00!important;color:#aeea00!important}.yellow{background-color:#ffeb3b!important;border-color:#ffeb3b!important}.yellow--text{caret-color:#ffeb3b!important;color:#ffeb3b!important}.yellow.lighten-5{background-color:#fffde7!important;border-color:#fffde7!important}.yellow--text.text--lighten-5{caret-color:#fffde7!important;color:#fffde7!important}.yellow.lighten-4{background-color:#fff9c4!important;border-color:#fff9c4!important}.yellow--text.text--lighten-4{caret-color:#fff9c4!important;color:#fff9c4!important}.yellow.lighten-3{background-color:#fff59d!important;border-color:#fff59d!important}.yellow--text.text--lighten-3{caret-color:#fff59d!important;color:#fff59d!important}.yellow.lighten-2{background-color:#fff176!important;border-color:#fff176!important}.yellow--text.text--lighten-2{caret-color:#fff176!important;color:#fff176!important}.yellow.lighten-1{background-color:#ffee58!important;border-color:#ffee58!important}.yellow--text.text--lighten-1{caret-color:#ffee58!important;color:#ffee58!important}.yellow.darken-1{background-color:#fdd835!important;border-color:#fdd835!important}.yellow--text.text--darken-1{caret-color:#fdd835!important;color:#fdd835!important}.yellow.darken-2{background-color:#fbc02d!important;border-color:#fbc02d!important}.yellow--text.text--darken-2{caret-color:#fbc02d!important;color:#fbc02d!important}.yellow.darken-3{background-color:#f9a825!important;border-color:#f9a825!important}.yellow--text.text--darken-3{caret-color:#f9a825!important;color:#f9a825!important}.yellow.darken-4{background-color:#f57f17!important;border-color:#f57f17!important}.yellow--text.text--darken-4{caret-color:#f57f17!important;color:#f57f17!important}.yellow.accent-1{background-color:#ffff8d!important;border-color:#ffff8d!important}.yellow--text.text--accent-1{caret-color:#ffff8d!important;color:#ffff8d!important}.yellow.accent-2{background-color:#ff0!important;border-color:#ff0!important}.yellow--text.text--accent-2{caret-color:#ff0!important;color:#ff0!important}.yellow.accent-3{background-color:#ffea00!important;border-color:#ffea00!important}.yellow--text.text--accent-3{caret-color:#ffea00!important;color:#ffea00!important}.yellow.accent-4{background-color:#ffd600!important;border-color:#ffd600!important}.yellow--text.text--accent-4{caret-color:#ffd600!important;color:#ffd600!important}.amber{background-color:#ffc107!important;border-color:#ffc107!important}.amber--text{caret-color:#ffc107!important;color:#ffc107!important}.amber.lighten-5{background-color:#fff8e1!important;border-color:#fff8e1!important}.amber--text.text--lighten-5{caret-color:#fff8e1!important;color:#fff8e1!important}.amber.lighten-4{background-color:#ffecb3!important;border-color:#ffecb3!important}.amber--text.text--lighten-4{caret-color:#ffecb3!important;color:#ffecb3!important}.amber.lighten-3{background-color:#ffe082!important;border-color:#ffe082!important}.amber--text.text--lighten-3{caret-color:#ffe082!important;color:#ffe082!important}.amber.lighten-2{background-color:#ffd54f!important;border-color:#ffd54f!important}.amber--text.text--lighten-2{caret-color:#ffd54f!important;color:#ffd54f!important}.amber.lighten-1{background-color:#ffca28!important;border-color:#ffca28!important}.amber--text.text--lighten-1{caret-color:#ffca28!important;color:#ffca28!important}.amber.darken-1{background-color:#ffb300!important;border-color:#ffb300!important}.amber--text.text--darken-1{caret-color:#ffb300!important;color:#ffb300!important}.amber.darken-2{background-color:#ffa000!important;border-color:#ffa000!important}.amber--text.text--darken-2{caret-color:#ffa000!important;color:#ffa000!important}.amber.darken-3{background-color:#ff8f00!important;border-color:#ff8f00!important}.amber--text.text--darken-3{caret-color:#ff8f00!important;color:#ff8f00!important}.amber.darken-4{background-color:#ff6f00!important;border-color:#ff6f00!important}.amber--text.text--darken-4{caret-color:#ff6f00!important;color:#ff6f00!important}.amber.accent-1{background-color:#ffe57f!important;border-color:#ffe57f!important}.amber--text.text--accent-1{caret-color:#ffe57f!important;color:#ffe57f!important}.amber.accent-2{background-color:#ffd740!important;border-color:#ffd740!important}.amber--text.text--accent-2{caret-color:#ffd740!important;color:#ffd740!important}.amber.accent-3{background-color:#ffc400!important;border-color:#ffc400!important}.amber--text.text--accent-3{caret-color:#ffc400!important;color:#ffc400!important}.amber.accent-4{background-color:#ffab00!important;border-color:#ffab00!important}.amber--text.text--accent-4{caret-color:#ffab00!important;color:#ffab00!important}.orange{background-color:#ff9800!important;border-color:#ff9800!important}.orange--text{caret-color:#ff9800!important;color:#ff9800!important}.orange.lighten-5{background-color:#fff3e0!important;border-color:#fff3e0!important}.orange--text.text--lighten-5{caret-color:#fff3e0!important;color:#fff3e0!important}.orange.lighten-4{background-color:#ffe0b2!important;border-color:#ffe0b2!important}.orange--text.text--lighten-4{caret-color:#ffe0b2!important;color:#ffe0b2!important}.orange.lighten-3{background-color:#ffcc80!important;border-color:#ffcc80!important}.orange--text.text--lighten-3{caret-color:#ffcc80!important;color:#ffcc80!important}.orange.lighten-2{background-color:#ffb74d!important;border-color:#ffb74d!important}.orange--text.text--lighten-2{caret-color:#ffb74d!important;color:#ffb74d!important}.orange.lighten-1{background-color:#ffa726!important;border-color:#ffa726!important}.orange--text.text--lighten-1{caret-color:#ffa726!important;color:#ffa726!important}.orange.darken-1{background-color:#fb8c00!important;border-color:#fb8c00!important}.orange--text.text--darken-1{caret-color:#fb8c00!important;color:#fb8c00!important}.orange.darken-2{background-color:#f57c00!important;border-color:#f57c00!important}.orange--text.text--darken-2{caret-color:#f57c00!important;color:#f57c00!important}.orange.darken-3{background-color:#ef6c00!important;border-color:#ef6c00!important}.orange--text.text--darken-3{caret-color:#ef6c00!important;color:#ef6c00!important}.orange.darken-4{background-color:#e65100!important;border-color:#e65100!important}.orange--text.text--darken-4{caret-color:#e65100!important;color:#e65100!important}.orange.accent-1{background-color:#ffd180!important;border-color:#ffd180!important}.orange--text.text--accent-1{caret-color:#ffd180!important;color:#ffd180!important}.orange.accent-2{background-color:#ffab40!important;border-color:#ffab40!important}.orange--text.text--accent-2{caret-color:#ffab40!important;color:#ffab40!important}.orange.accent-3{background-color:#ff9100!important;border-color:#ff9100!important}.orange--text.text--accent-3{caret-color:#ff9100!important;color:#ff9100!important}.orange.accent-4{background-color:#ff6d00!important;border-color:#ff6d00!important}.orange--text.text--accent-4{caret-color:#ff6d00!important;color:#ff6d00!important}.deep-orange{background-color:#ff5722!important;border-color:#ff5722!important}.deep-orange--text{caret-color:#ff5722!important;color:#ff5722!important}.deep-orange.lighten-5{background-color:#fbe9e7!important;border-color:#fbe9e7!important}.deep-orange--text.text--lighten-5{caret-color:#fbe9e7!important;color:#fbe9e7!important}.deep-orange.lighten-4{background-color:#ffccbc!important;border-color:#ffccbc!important}.deep-orange--text.text--lighten-4{caret-color:#ffccbc!important;color:#ffccbc!important}.deep-orange.lighten-3{background-color:#ffab91!important;border-color:#ffab91!important}.deep-orange--text.text--lighten-3{caret-color:#ffab91!important;color:#ffab91!important}.deep-orange.lighten-2{background-color:#ff8a65!important;border-color:#ff8a65!important}.deep-orange--text.text--lighten-2{caret-color:#ff8a65!important;color:#ff8a65!important}.deep-orange.lighten-1{background-color:#ff7043!important;border-color:#ff7043!important}.deep-orange--text.text--lighten-1{caret-color:#ff7043!important;color:#ff7043!important}.deep-orange.darken-1{background-color:#f4511e!important;border-color:#f4511e!important}.deep-orange--text.text--darken-1{caret-color:#f4511e!important;color:#f4511e!important}.deep-orange.darken-2{background-color:#e64a19!important;border-color:#e64a19!important}.deep-orange--text.text--darken-2{caret-color:#e64a19!important;color:#e64a19!important}.deep-orange.darken-3{background-color:#d84315!important;border-color:#d84315!important}.deep-orange--text.text--darken-3{caret-color:#d84315!important;color:#d84315!important}.deep-orange.darken-4{background-color:#bf360c!important;border-color:#bf360c!important}.deep-orange--text.text--darken-4{caret-color:#bf360c!important;color:#bf360c!important}.deep-orange.accent-1{background-color:#ff9e80!important;border-color:#ff9e80!important}.deep-orange--text.text--accent-1{caret-color:#ff9e80!important;color:#ff9e80!important}.deep-orange.accent-2{background-color:#ff6e40!important;border-color:#ff6e40!important}.deep-orange--text.text--accent-2{caret-color:#ff6e40!important;color:#ff6e40!important}.deep-orange.accent-3{background-color:#ff3d00!important;border-color:#ff3d00!important}.deep-orange--text.text--accent-3{caret-color:#ff3d00!important;color:#ff3d00!important}.deep-orange.accent-4{background-color:#dd2c00!important;border-color:#dd2c00!important}.deep-orange--text.text--accent-4{caret-color:#dd2c00!important;color:#dd2c00!important}.brown{background-color:#795548!important;border-color:#795548!important}.brown--text{caret-color:#795548!important;color:#795548!important}.brown.lighten-5{background-color:#efebe9!important;border-color:#efebe9!important}.brown--text.text--lighten-5{caret-color:#efebe9!important;color:#efebe9!important}.brown.lighten-4{background-color:#d7ccc8!important;border-color:#d7ccc8!important}.brown--text.text--lighten-4{caret-color:#d7ccc8!important;color:#d7ccc8!important}.brown.lighten-3{background-color:#bcaaa4!important;border-color:#bcaaa4!important}.brown--text.text--lighten-3{caret-color:#bcaaa4!important;color:#bcaaa4!important}.brown.lighten-2{background-color:#a1887f!important;border-color:#a1887f!important}.brown--text.text--lighten-2{caret-color:#a1887f!important;color:#a1887f!important}.brown.lighten-1{background-color:#8d6e63!important;border-color:#8d6e63!important}.brown--text.text--lighten-1{caret-color:#8d6e63!important;color:#8d6e63!important}.brown.darken-1{background-color:#6d4c41!important;border-color:#6d4c41!important}.brown--text.text--darken-1{caret-color:#6d4c41!important;color:#6d4c41!important}.brown.darken-2{background-color:#5d4037!important;border-color:#5d4037!important}.brown--text.text--darken-2{caret-color:#5d4037!important;color:#5d4037!important}.brown.darken-3{background-color:#4e342e!important;border-color:#4e342e!important}.brown--text.text--darken-3{caret-color:#4e342e!important;color:#4e342e!important}.brown.darken-4{background-color:#3e2723!important;border-color:#3e2723!important}.brown--text.text--darken-4{caret-color:#3e2723!important;color:#3e2723!important}.blue-grey{background-color:#607d8b!important;border-color:#607d8b!important}.blue-grey--text{caret-color:#607d8b!important;color:#607d8b!important}.blue-grey.lighten-5{background-color:#eceff1!important;border-color:#eceff1!important}.blue-grey--text.text--lighten-5{caret-color:#eceff1!important;color:#eceff1!important}.blue-grey.lighten-4{background-color:#cfd8dc!important;border-color:#cfd8dc!important}.blue-grey--text.text--lighten-4{caret-color:#cfd8dc!important;color:#cfd8dc!important}.blue-grey.lighten-3{background-color:#b0bec5!important;border-color:#b0bec5!important}.blue-grey--text.text--lighten-3{caret-color:#b0bec5!important;color:#b0bec5!important}.blue-grey.lighten-2{background-color:#90a4ae!important;border-color:#90a4ae!important}.blue-grey--text.text--lighten-2{caret-color:#90a4ae!important;color:#90a4ae!important}.blue-grey.lighten-1{background-color:#78909c!important;border-color:#78909c!important}.blue-grey--text.text--lighten-1{caret-color:#78909c!important;color:#78909c!important}.blue-grey.darken-1{background-color:#546e7a!important;border-color:#546e7a!important}.blue-grey--text.text--darken-1{caret-color:#546e7a!important;color:#546e7a!important}.blue-grey.darken-2{background-color:#455a64!important;border-color:#455a64!important}.blue-grey--text.text--darken-2{caret-color:#455a64!important;color:#455a64!important}.blue-grey.darken-3{background-color:#37474f!important;border-color:#37474f!important}.blue-grey--text.text--darken-3{caret-color:#37474f!important;color:#37474f!important}.blue-grey.darken-4{background-color:#263238!important;border-color:#263238!important}.blue-grey--text.text--darken-4{caret-color:#263238!important;color:#263238!important}.grey{background-color:#9e9e9e!important;border-color:#9e9e9e!important}.grey--text{caret-color:#9e9e9e!important;color:#9e9e9e!important}.grey.lighten-5{background-color:#fafafa!important;border-color:#fafafa!important}.grey--text.text--lighten-5{caret-color:#fafafa!important;color:#fafafa!important}.grey.lighten-4{background-color:#f5f5f5!important;border-color:#f5f5f5!important}.grey--text.text--lighten-4{caret-color:#f5f5f5!important;color:#f5f5f5!important}.grey.lighten-3{background-color:#eee!important;border-color:#eee!important}.grey--text.text--lighten-3{caret-color:#eee!important;color:#eee!important}.grey.lighten-2{background-color:#e0e0e0!important;border-color:#e0e0e0!important}.grey--text.text--lighten-2{caret-color:#e0e0e0!important;color:#e0e0e0!important}.grey.lighten-1{background-color:#bdbdbd!important;border-color:#bdbdbd!important}.grey--text.text--lighten-1{caret-color:#bdbdbd!important;color:#bdbdbd!important}.grey.darken-1{background-color:#757575!important;border-color:#757575!important}.grey--text.text--darken-1{caret-color:#757575!important;color:#757575!important}.grey.darken-2{background-color:#616161!important;border-color:#616161!important}.grey--text.text--darken-2{caret-color:#616161!important;color:#616161!important}.grey.darken-3{background-color:#424242!important;border-color:#424242!important}.grey--text.text--darken-3{caret-color:#424242!important;color:#424242!important}.grey.darken-4{background-color:#212121!important;border-color:#212121!important}.grey--text.text--darken-4{caret-color:#212121!important;color:#212121!important}.shades.black{background-color:#000!important;border-color:#000!important}.shades--text.text--black{caret-color:#000!important;color:#000!important}.shades.white{background-color:#fff!important;border-color:#fff!important}.shades--text.text--white{caret-color:#fff!important;color:#fff!important}.shades.transparent{background-color:transparent!important;border-color:transparent!important}.shades--text.text--transparent{caret-color:transparent!important;color:transparent!important}.elevation-0{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important;box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.elevation-1{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important}.elevation-2{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important}.elevation-3{-webkit-box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)!important}.elevation-4{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important;box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important}.elevation-5{-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)!important}.elevation-6{-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)!important}.elevation-7{-webkit-box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important;box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important}.elevation-8{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important}.elevation-9{-webkit-box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)!important;box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)!important}.elevation-10{-webkit-box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)!important;box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)!important}.elevation-11{-webkit-box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)!important;box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)!important}.elevation-12{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important;box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important}.elevation-13{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)!important;box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)!important}.elevation-14{-webkit-box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)!important;box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)!important}.elevation-15{-webkit-box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)!important;box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)!important}.elevation-16{-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)!important;box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)!important}.elevation-17{-webkit-box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)!important;box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)!important}.elevation-18{-webkit-box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)!important;box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)!important}.elevation-19{-webkit-box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)!important;box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)!important}.elevation-20{-webkit-box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)!important;box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)!important}.elevation-21{-webkit-box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)!important;box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)!important}.elevation-22{-webkit-box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)!important;box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)!important}.elevation-23{-webkit-box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)!important;box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)!important}.elevation-24{-webkit-box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)!important;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)!important}html{-webkit-text-size-adjust:100%;-webkit-box-sizing:border-box;box-sizing:border-box;overflow-y:scroll}*,:after,:before{-webkit-box-sizing:inherit;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{background-repeat:no-repeat;margin:0;padding:0}audio:not([controls]){display:none;height:0}hr{overflow:visible}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}summary{display:list-item}small{font-size:80%}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted;text-decoration:none}a{-webkit-text-decoration-skip:objects;background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[disabled]{cursor:default}[type=number]{width:auto}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:0;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{border:0;outline:0}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,select{text-transform:none}button,input,select,textarea{background-color:transparent;border-style:none;color:inherit}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}img{border-style:none}progress{vertical-align:baseline}svg:not(:root){overflow:hidden}audio,canvas,progress,video{display:inline-block}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.bottom-sheet-transition-enter,.bottom-sheet-transition-leave-to{-webkit-transform:translateY(100%);transform:translateY(100%)}.carousel-transition-enter{-webkit-transform:translate(100%);transform:translate(100%)}.carousel-transition-leave,.carousel-transition-leave-to{position:absolute;top:0}.carousel-reverse-transition-enter,.carousel-transition-leave,.carousel-transition-leave-to{-webkit-transform:translate(-100%);transform:translate(-100%)}.carousel-reverse-transition-leave,.carousel-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.dialog-transition-enter,.dialog-transition-leave-to{-webkit-transform:scale(.5);opacity:0;transform:scale(.5)}.dialog-transition-enter-to,.dialog-transition-leave{opacity:1}.dialog-bottom-transition-enter,.dialog-bottom-transition-leave-to{-webkit-transform:translateY(100%);transform:translateY(100%)}.picker-reverse-transition-enter-active,.picker-reverse-transition-leave-active,.picker-transition-enter-active,.picker-transition-leave-active{-webkit-transition:.3s cubic-bezier(0,0,.2,1);transition:.3s cubic-bezier(0,0,.2,1)}.picker-reverse-transition-enter,.picker-reverse-transition-leave-to,.picker-transition-enter,.picker-transition-leave-to{opacity:0}.picker-reverse-transition-leave,.picker-reverse-transition-leave-active,.picker-reverse-transition-leave-to,.picker-transition-leave,.picker-transition-leave-active,.picker-transition-leave-to{position:absolute!important}.picker-transition-enter{-webkit-transform:translateY(100%);transform:translateY(100%)}.picker-reverse-transition-enter,.picker-transition-leave-to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.picker-reverse-transition-leave-to{-webkit-transform:translateY(100%);transform:translateY(100%)}.picker-title-transition-enter-to,.picker-title-transition-leave{-webkit-transform:translate(0);transform:translate(0)}.picker-title-transition-enter{-webkit-transform:translate(-100%);transform:translate(-100%)}.picker-title-transition-leave-to{-webkit-transform:translate(100%);opacity:0;transform:translate(100%)}.picker-title-transition-leave,.picker-title-transition-leave-active,.picker-title-transition-leave-to{position:absolute!important}.tab-transition-enter{-webkit-transform:translate(100%);transform:translate(100%)}.tab-transition-leave,.tab-transition-leave-active{position:absolute;top:0}.tab-transition-leave-to{position:absolute}.tab-reverse-transition-enter,.tab-transition-leave-to{-webkit-transform:translate(-100%);transform:translate(-100%)}.tab-reverse-transition-leave,.tab-reverse-transition-leave-to{-webkit-transform:translate(100%);position:absolute;top:0;transform:translate(100%)}.expand-transition-enter-active,.expand-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.expand-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scale-transition-enter-active,.scale-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scale-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scale-transition-enter,.scale-transition-leave,.scale-transition-leave-to{-webkit-transform:scale(0);opacity:0;transform:scale(0)}.message-transition-enter-active,.message-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.message-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.message-transition-enter,.message-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.message-transition-leave,.message-transition-leave-active{position:absolute}.slide-y-transition-enter-active,.slide-y-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-y-transition-enter,.slide-y-transition-leave-to{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.slide-y-reverse-transition-enter-active,.slide-y-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-y-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-y-reverse-transition-enter,.slide-y-reverse-transition-leave-to{-webkit-transform:translateY(15px);opacity:0;transform:translateY(15px)}.scroll-y-transition-enter-active,.scroll-y-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-y-transition-enter,.scroll-y-transition-leave-to{opacity:0}.scroll-y-transition-enter{-webkit-transform:translateY(-15px);transform:translateY(-15px)}.scroll-y-transition-leave-to{-webkit-transform:translateY(15px);transform:translateY(15px)}.scroll-y-reverse-transition-enter-active,.scroll-y-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-y-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-y-reverse-transition-enter,.scroll-y-reverse-transition-leave-to{opacity:0}.scroll-y-reverse-transition-enter{-webkit-transform:translateY(15px);transform:translateY(15px)}.scroll-y-reverse-transition-leave-to{-webkit-transform:translateY(-15px);transform:translateY(-15px)}.scroll-x-transition-enter-active,.scroll-x-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-x-transition-enter,.scroll-x-transition-leave-to{opacity:0}.scroll-x-transition-enter{-webkit-transform:translateX(-15px);transform:translateX(-15px)}.scroll-x-transition-leave-to{-webkit-transform:translateX(15px);transform:translateX(15px)}.scroll-x-reverse-transition-enter-active,.scroll-x-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.scroll-x-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.scroll-x-reverse-transition-enter,.scroll-x-reverse-transition-leave-to{opacity:0}.scroll-x-reverse-transition-enter{-webkit-transform:translateX(15px);transform:translateX(15px)}.scroll-x-reverse-transition-leave-to{-webkit-transform:translateX(-15px);transform:translateX(-15px)}.slide-x-transition-enter-active,.slide-x-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-x-transition-enter,.slide-x-transition-leave-to{-webkit-transform:translateX(-15px);opacity:0;transform:translateX(-15px)}.slide-x-reverse-transition-enter-active,.slide-x-reverse-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.slide-x-reverse-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.slide-x-reverse-transition-enter,.slide-x-reverse-transition-leave-to{-webkit-transform:translateX(15px);opacity:0;transform:translateX(15px)}.fade-transition-enter-active,.fade-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.fade-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.fade-transition-enter,.fade-transition-leave-to{opacity:0}.fab-transition-enter-active,.fab-transition-leave-active{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.fab-transition-move{transition:-webkit-transform .6s;-webkit-transition:-webkit-transform .6s;transition:transform .6s;transition:transform .6s, -webkit-transform .6s;transition:transform .6s,-webkit-transform .6s}.fab-transition-enter,.fab-transition-leave-to{-webkit-transform:scale(0) rotate(-45deg);transform:scale(0) rotate(-45deg)}.blockquote{font-size:18px;font-weight:300;padding:16px 0 16px 24px}code,kbd{border-radius:3px;display:inline-block;font-size:85%;font-weight:900;white-space:pre-wrap}code:after,code:before,kbd:after,kbd:before{content:\"\\A0\";letter-spacing:-1px}code{background-color:#f5f5f5;-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);color:#bd4147}kbd{background:#424242;color:#fff}html{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);font-size:14px;overflow-x:hidden;text-rendering:optimizeLegibility}.application{font-family:Roboto,sans-serif;line-height:1.5}::-ms-clear,::-ms-reveal{display:none}ol,ul{padding-left:24px}.display-4{font-family:Roboto,sans-serif!important;font-size:112px!important;font-weight:300;letter-spacing:-.04em!important;line-height:1!important}.display-3{font-size:56px!important;letter-spacing:-.02em!important;line-height:1.35!important}.display-2,.display-3{font-family:Roboto,sans-serif!important;font-weight:400}.display-2{font-size:45px!important;letter-spacing:normal!important;line-height:48px!important}.display-1{font-size:34px!important;line-height:40px!important}.display-1,.headline{font-family:Roboto,sans-serif!important;font-weight:400;letter-spacing:normal!important}.headline{font-size:24px!important;line-height:32px!important}.title{font-family:Roboto,sans-serif!important;font-size:20px!important;font-weight:500;letter-spacing:.02em!important;line-height:1!important}.subheading{font-size:16px!important;font-weight:400}.body-2{font-weight:500}.body-1,.body-2{font-size:14px!important}.body-1,.caption{font-weight:400}.caption{font-size:12px!important}p{margin-bottom:16px}.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.right{float:right!important}.left{float:left!important}.ma-auto{margin:auto!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mt-auto{margin-top:auto}.mr-auto{margin-right:auto}.mb-auto{margin-bottom:auto}.ml-auto{margin-left:auto}.ma-0{margin:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.pa-0{padding:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.ma-1{margin:4px!important}.my-1{margin-bottom:4px!important;margin-top:4px!important}.mx-1{margin-left:4px!important;margin-right:4px!important}.mt-1{margin-top:4px!important}.mr-1{margin-right:4px!important}.mb-1{margin-bottom:4px!important}.ml-1{margin-left:4px!important}.pa-1{padding:4px!important}.py-1{padding-bottom:4px!important;padding-top:4px!important}.px-1{padding-left:4px!important;padding-right:4px!important}.pt-1{padding-top:4px!important}.pr-1{padding-right:4px!important}.pb-1{padding-bottom:4px!important}.pl-1{padding-left:4px!important}.ma-2{margin:8px!important}.my-2{margin-bottom:8px!important;margin-top:8px!important}.mx-2{margin-left:8px!important;margin-right:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.pa-2{padding:8px!important}.py-2{padding-bottom:8px!important;padding-top:8px!important}.px-2{padding-left:8px!important;padding-right:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2{padding-left:8px!important}.ma-3{margin:16px!important}.my-3{margin-bottom:16px!important;margin-top:16px!important}.mx-3{margin-left:16px!important;margin-right:16px!important}.mt-3{margin-top:16px!important}.mr-3{margin-right:16px!important}.mb-3{margin-bottom:16px!important}.ml-3{margin-left:16px!important}.pa-3{padding:16px!important}.py-3{padding-bottom:16px!important;padding-top:16px!important}.px-3{padding-left:16px!important;padding-right:16px!important}.pt-3{padding-top:16px!important}.pr-3{padding-right:16px!important}.pb-3{padding-bottom:16px!important}.pl-3{padding-left:16px!important}.ma-4{margin:24px!important}.my-4{margin-bottom:24px!important;margin-top:24px!important}.mx-4{margin-left:24px!important;margin-right:24px!important}.mt-4{margin-top:24px!important}.mr-4{margin-right:24px!important}.mb-4{margin-bottom:24px!important}.ml-4{margin-left:24px!important}.pa-4{padding:24px!important}.py-4{padding-bottom:24px!important;padding-top:24px!important}.px-4{padding-left:24px!important;padding-right:24px!important}.pt-4{padding-top:24px!important}.pr-4{padding-right:24px!important}.pb-4{padding-bottom:24px!important}.pl-4{padding-left:24px!important}.ma-5{margin:48px!important}.my-5{margin-bottom:48px!important;margin-top:48px!important}.mx-5{margin-left:48px!important;margin-right:48px!important}.mt-5{margin-top:48px!important}.mr-5{margin-right:48px!important}.mb-5{margin-bottom:48px!important}.ml-5{margin-left:48px!important}.pa-5{padding:48px!important}.py-5{padding-bottom:48px!important;padding-top:48px!important}.px-5{padding-left:48px!important;padding-right:48px!important}.pt-5{padding-top:48px!important}.pr-5{padding-right:48px!important}.pb-5{padding-bottom:48px!important}.pl-5{padding-left:48px!important}.font-weight-thin{font-weight:100!important}.font-weight-light{font-weight:300!important}.font-weight-regular{font-weight:400!important}.font-weight-medium{font-weight:500!important}.font-weight-bold{font-weight:700!important}.font-weight-black{font-weight:900!important}.font-italic{font-style:italic!important}.text-capitalize{text-transform:capitalize!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-no-wrap,.text-truncate{white-space:nowrap!important}.text-truncate{overflow:hidden!important;text-overflow:ellipsis!important}.transition-fast-out-slow-in{-webkit-transition:.3s cubic-bezier(.4,0,.2,1)!important;transition:.3s cubic-bezier(.4,0,.2,1)!important}.transition-linear-out-slow-in{-webkit-transition:.3s cubic-bezier(0,0,.2,1)!important;transition:.3s cubic-bezier(0,0,.2,1)!important}.transition-fast-out-linear-in{-webkit-transition:.3s cubic-bezier(.4,0,1,1)!important;transition:.3s cubic-bezier(.4,0,1,1)!important}.transition-ease-in-out{-webkit-transition:.3s cubic-bezier(.4,0,.6,1)!important;transition:.3s cubic-bezier(.4,0,.6,1)!important}.transition-fast-in-fast-out{-webkit-transition:.3s cubic-bezier(.25,.8,.25,1)!important;transition:.3s cubic-bezier(.25,.8,.25,1)!important}.transition-swing{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1)!important;transition:.3s cubic-bezier(.25,.8,.5,1)!important}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){clip:rect(0 0 0 0)!important;position:absolute!important}}@media only screen and (max-width:599px){.hidden-xs-only{display:none!important}}@media only screen and (min-width:600px) and (max-width:959px){.hidden-sm-only{display:none!important}}@media only screen and (max-width:959px){.hidden-sm-and-down{display:none!important}}@media only screen and (min-width:600px){.hidden-sm-and-up{display:none!important}}@media only screen and (min-width:960px) and (max-width:1263px){.hidden-md-only{display:none!important}}@media only screen and (max-width:1263px){.hidden-md-and-down{display:none!important}}@media only screen and (min-width:960px){.hidden-md-and-up{display:none!important}}@media only screen and (min-width:1264px) and (max-width:1903px){.hidden-lg-only{display:none!important}}@media only screen and (max-width:1903px){.hidden-lg-and-down{display:none!important}}@media only screen and (min-width:1264px){.hidden-lg-and-up{display:none!important}}@media only screen and (min-width:1904px){.hidden-xl-only{display:none!important}}@media (min-width:0){.text-xs-left{text-align:left!important}.text-xs-center{text-align:center!important}.text-xs-right{text-align:right!important}.text-xs-justify{text-align:justify!important}}@media (min-width:600px){.text-sm-left{text-align:left!important}.text-sm-center{text-align:center!important}.text-sm-right{text-align:right!important}.text-sm-justify{text-align:justify!important}}@media (min-width:960px){.text-md-left{text-align:left!important}.text-md-center{text-align:center!important}.text-md-right{text-align:right!important}.text-md-justify{text-align:justify!important}}@media (min-width:1264px){.text-lg-left{text-align:left!important}.text-lg-center{text-align:center!important}.text-lg-right{text-align:right!important}.text-lg-justify{text-align:justify!important}}@media (min-width:1904px){.text-xl-left{text-align:left!important}.text-xl-center{text-align:center!important}.text-xl-right{text-align:right!important}.text-xl-justify{text-align:justify!important}}.application{display:-webkit-box;display:-ms-flexbox;display:flex}.application a{cursor:pointer}.application--is-rtl{direction:rtl}.application--wrap{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;min-height:100vh;position:relative}.theme--light.application{background:#fafafa;color:rgba(0,0,0,.87)}.theme--light.application .text--primary{color:rgba(0,0,0,.87)!important}.theme--light.application .text--secondary{color:rgba(0,0,0,.54)!important}.theme--light.application .text--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.application{background:#303030;color:#fff}.theme--dark.application .text--primary{color:#fff!important}.theme--dark.application .text--secondary{color:hsla(0,0%,100%,.7)!important}.theme--dark.application .text--disabled{color:hsla(0,0%,100%,.5)!important}@media print{@-moz-document url-prefix(){.application,.application--wrap{display:block}}}.v-alert{border-radius:0;border-style:solid;border-width:4px 0 0;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;margin:4px auto;padding:16px;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-alert .v-alert__icon.v-icon,.v-alert__dismissible .v-icon{-ms-flex-item-align:center;align-self:center;color:rgba(0,0,0,.3);font-size:24px}.v-alert--outline .v-icon{color:inherit!important}.v-alert__icon{margin-right:16px}.v-alert__dismissible{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;color:inherit;margin-left:16px;margin-right:0;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-alert__dismissible:hover{opacity:.8}.v-alert--no-icon .v-alert__icon{display:none}.v-alert>div{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:1;-ms-flex:1 1;flex:1 1}.v-alert.v-alert{border-color:rgba(0,0,0,.12)!important}.v-alert.v-alert--outline{border:1px solid!important}@media screen and (max-width:600px){.v-alert__icon{display:none}}.theme--light.v-icon{color:rgba(0,0,0,.54)}.theme--light.v-icon.v-icon--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.v-icon{color:#fff}.theme--dark.v-icon.v-icon--disabled{color:hsla(0,0%,100%,.5)!important}.v-icon{-webkit-font-feature-settings:\"liga\";-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-feature-settings:\"liga\";font-size:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:1;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);vertical-align:text-bottom}.v-icon.v-icon.v-icon--link{cursor:pointer}.v-icon.v-icon--large{font-size:2.5rem}.v-icon.v-icon--medium{font-size:2rem}.v-icon.v-icon--x-large{font-size:3rem}.v-icon.v-icon--disabled{pointer-events:none}.v-autocomplete.v-input>.v-input__control>.v-input__slot{cursor:text}.v-autocomplete input{-ms-flex-item-align:center;align-self:center}.v-autocomplete--is-selecting-index input{opacity:0}.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo) .v-select__slot>input{margin-top:24px}.v-autocomplete:not(.v-input--is-disabled).v-select.v-text-field input{pointer-events:auto}.v-autocomplete__content.v-menu__content,.v-autocomplete__content.v-menu__content .v-card{border-radius:0}.theme--light.v-text-field .v-input__slot:before{border-color:rgba(0,0,0,.42)}.theme--light.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:rgba(0,0,0,.87)}.theme--light.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38) 0,rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38) 0,rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat}.theme--light.v-text-field__prefix,.theme--light.v-text-field__suffix{color:rgba(0,0,0,.54)}.theme--light.v-text-field--solo .v-input__slot{background:#fff;border-radius:2px}.theme--light.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:rgba(0,0,0,.16)}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#424242}.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--light.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:#fff}.theme--light.v-text-field--box .v-input__slot{background:rgba(0,0,0,.06)}.theme--light.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.12)}.theme--light.v-text-field--outline .v-input__slot{border:2px solid rgba(0,0,0,.54)}.theme--light.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid rgba(0,0,0,.87)}.theme--dark.v-text-field .v-input__slot:before{border-color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field:not(.v-input--has-state) .v-input__slot:hover:before{border-color:#fff}.theme--dark.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat}.theme--dark.v-text-field__prefix,.theme--dark.v-text-field__suffix{color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field--solo .v-input__slot{background:#424242;border-radius:2px}.theme--dark.v-text-field--solo-inverted.v-text-field--solo .v-input__slot{background:hsla(0,0%,100%,.16)}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot{background:#fff}.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot .v-label,.theme--dark.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused .v-input__slot input{color:rgba(0,0,0,.87)}.theme--dark.v-text-field--box .v-input__slot{background:rgba(0,0,0,.1)}.theme--dark.v-text-field--box:not(.v-input--is-focused) .v-input__slot:hover{background:rgba(0,0,0,.2)}.theme--dark.v-text-field--outline .v-input__slot{border:2px solid hsla(0,0%,100%,.7)}.theme--dark.v-text-field--outline:not(.v-input--is-focused) .v-input__slot:hover{border:2px solid #fff}.application--is-rtl .v-text-field .v-label{-webkit-transform-origin:top right;transform-origin:top right}.application--is-rtl .v-text-field .v-counter{margin-left:0;margin-right:8px}.application--is-rtl .v-text-field--enclosed .v-input__append-outer{margin-left:0;margin-right:16px}.application--is-rtl .v-text-field--enclosed .v-input__prepend-outer{margin-left:16px;margin-right:0}.application--is-rtl .v-text-field--reverse input{text-align:left}.application--is-rtl .v-text-field--reverse .v-label{-webkit-transform-origin:top left;transform-origin:top left}.application--is-rtl .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.application--is-rtl .v-text-field__suffix{padding-left:0;padding-right:4px}.application--is-rtl .v-text-field--reverse .v-text-field__prefix{padding-left:0;padding-right:4px;text-align:right}.application--is-rtl .v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field{margin-top:4px;padding-top:12px}.v-text-field input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:20px;max-width:100%;min-width:0;padding:8px 0;width:100%}.v-text-field .v-input__append-inner,.v-text-field .v-input__prepend-inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-ms-flex-item-align:start;align-self:flex-start;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-top:4px;user-select:none}.v-text-field .v-input__prepend-inner{margin-right:auto;padding-right:4px}.v-text-field .v-input__append-inner{margin-left:auto;padding-left:4px}.v-text-field .v-counter{margin-left:8px;white-space:nowrap}.v-text-field .v-label{-webkit-transform-origin:top left;max-width:90%;overflow:hidden;pointer-events:none;text-overflow:ellipsis;top:6px;transform-origin:top left;white-space:nowrap}.v-text-field .v-label--active{-webkit-transform:translateY(-18px) scale(.75);max-width:100%;transform:translateY(-18px) scale(.75)}.v-text-field>.v-input__control>.v-input__slot{cursor:text;-webkit-transition:background .3s cubic-bezier(.25,.8,.5,1);transition:background .3s cubic-bezier(.25,.8,.5,1)}.v-text-field>.v-input__control>.v-input__slot:after,.v-text-field>.v-input__control>.v-input__slot:before{bottom:-1px;content:\"\";left:0;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-text-field>.v-input__control>.v-input__slot:before{border-style:solid;border-width:thin 0 0}.v-text-field>.v-input__control>.v-input__slot:after{-webkit-transform:scaleX(0);border-color:currentColor;border-style:solid;border-width:thin 0;transform:scaleX(0)}.v-text-field__details{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;overflow:hidden}.v-text-field__prefix,.v-text-field__suffix{-ms-flex-item-align:center;align-self:center;cursor:default}.v-text-field__prefix{padding-right:4px;text-align:right;width:16px}.v-text-field__suffix{padding-left:4px;white-space:nowrap}.v-text-field--reverse .v-text-field__prefix{padding-left:4px;padding-right:0;text-align:left}.v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-text-field__slot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.v-text-field--box,.v-text-field--outline{position:relative}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.v-text-field--box input,.v-text-field--outline input{margin-top:22px}.v-text-field--box.v-text-field--single-line input,.v-text-field--outline.v-text-field--single-line input{margin-top:12px}.v-text-field--box .v-label,.v-text-field--outline .v-label{top:18px}.v-text-field--box .v-label--active,.v-text-field--outline .v-label--active{-webkit-transform:translateY(-6px) scale(.75);transform:translateY(-6px) scale(.75)}.v-text-field--box .v-input__slot,.v-text-field--outline .v-input__slot{min-height:56px}.v-text-field--box .v-input__slot{border-top-left-radius:4px;border-top-right-radius:4px}.v-text-field--box .v-input__slot:before{border-style:solid;border-width:thin 0}.v-text-field.v-text-field--enclosed{margin:0;padding:0}.v-text-field.v-text-field--enclosed:not(.v-text-field--box) .v-progress-linear__background{display:none}.v-text-field.v-text-field--enclosed .v-input__append-inner,.v-text-field.v-text-field--enclosed .v-input__append-outer,.v-text-field.v-text-field--enclosed .v-input__prepend-inner,.v-text-field.v-text-field--enclosed .v-input__prepend-outer{margin-top:16px}.v-text-field.v-text-field--enclosed .v-input__slot,.v-text-field.v-text-field--enclosed .v-text-field__details{padding:0 12px}.v-text-field.v-text-field--enclosed .v-text-field__details{margin-bottom:8px}.v-text-field.v-text-field--full-width.v-input{margin-bottom:0;margin-top:0}.v-text-field.v-text-field--full-width .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--full-width .v-input__control{padding:12px 0}.v-text-field.v-text-field--full-width .v-input__append-outer,.v-text-field.v-text-field--full-width .v-input__prepend-outer{margin-top:4px}.v-text-field.v-text-field--full-width .v-input__append-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field--reverse input{text-align:right}.v-text-field--reverse .v-label{-webkit-transform-origin:top right;transform-origin:top right}.v-text-field--reverse .v-input__slot,.v-text-field--reverse .v-text-field__slot{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-text-field--full-width .v-input__slot:after,.v-text-field--full-width .v-input__slot:before,.v-text-field--outline .v-input__slot:after,.v-text-field--outline .v-input__slot:before,.v-text-field--solo .v-input__slot:after,.v-text-field--solo .v-input__slot:before{display:none}.v-text-field--outline{margin-bottom:16px;-webkit-transition:border .3s cubic-bezier(.25,.8,.5,1);transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field--outline .v-input__slot{background:transparent!important;border-radius:4px}.v-text-field--outline .v-input__append-outer,.v-text-field--outline .v-input__prepend-outer{margin-top:18px}.v-text-field--outline.v-input--is-focused .v-input__slot{border:2px solid;-webkit-transition:border .3s cubic-bezier(.25,.8,.5,1);transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field.v-text-field--solo .v-label{top:calc(50% - 10px)}.v-text-field.v-text-field--solo .v-input__control{min-height:48px;padding:0}.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat) .v-input__slot{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-text-field.v-text-field--solo .v-text-field__slot{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.v-text-field.v-text-field--solo .v-input__append-inner,.v-text-field.v-text-field--solo .v-input__prepend-inner{-ms-flex-item-align:center;align-self:center;margin-top:0}.v-text-field.v-text-field--solo .v-input__append-outer,.v-text-field.v-text-field--solo .v-input__prepend-outer{margin-top:12px}.v-text-field.v-input--is-focused .v-input__slot:after{-webkit-transform:scaleX(1);transform:scaleX(1)}.v-text-field.v-input--has-state .v-input__slot:before{border-color:currentColor}.theme--light.v-select .v-select__selections{color:rgba(0,0,0,.87)}.theme--light.v-select .v-chip--disabled,.theme--light.v-select.v-input--is-disabled .v-select__selections,.theme--light.v-select .v-select__selection--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-select .v-select__selections,.theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:#fff}.theme--dark.v-select .v-chip--disabled,.theme--dark.v-select.v-input--is-disabled .v-select__selections,.theme--dark.v-select .v-select__selection--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:rgba(0,0,0,.87)}.v-select{position:relative}.v-select>.v-input__control>.v-input__slot{cursor:pointer}.v-select .v-chip{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.v-select .fade-transition-leave-active{left:0;position:absolute}.v-select.v-input--is-dirty ::-webkit-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty :-ms-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty ::-ms-input-placeholder{color:transparent!important}.v-select.v-input--is-dirty ::placeholder{color:transparent!important}.v-select.v-text-field--enclosed:not(.v-text-field--single-line) .v-select__selections{padding-top:24px}.v-select.v-text-field input{-webkit-box-flex:1;-ms-flex:1 1;flex:1 1;margin-top:0;min-width:0;pointer-events:none;position:relative}.v-select.v-select--is-menu-active .v-input__icon--append .v-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.v-select.v-select--chips input{margin:0}.v-select.v-select--chips .v-select__selections{min-height:42px}.v-select.v-select--chips.v-select--chips--small .v-select__selections{min-height:32px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections{min-height:68px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections{min-height:56px}.v-select.v-text-field--reverse .v-select__selections,.v-select.v-text-field--reverse .v-select__slot{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-select__selections{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:18px}.v-select__selection{max-width:90%}.v-select__selection--comma{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin:7px 4px 7px 0}.v-select__slot{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;width:100%}.v-select:not(.v-text-field--single-line) .v-select__slot>input{-ms-flex-item-align:end;align-self:flex-end}.theme--light.v-chip{background:#e0e0e0;color:rgba(0,0,0,.87)}.theme--light.v-chip--disabled{color:rgba(0,0,0,.38)}.theme--dark.v-chip{background:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-chip--disabled{color:hsla(0,0%,100%,.5)}.v-chip{border:1px solid transparent;border-radius:28px;font-size:13px;margin:4px;outline:none;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-chip,.v-chip .v-chip__content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.v-chip .v-chip__content{border-radius:28px;cursor:default;height:32px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 12px;white-space:nowrap;z-index:1}.v-chip--removable .v-chip__content{padding:0 4px 0 12px}.v-chip .v-avatar{height:32px!important;margin-left:-12px;margin-right:8px;min-width:32px;width:32px!important}.v-chip .v-avatar img{height:100%;width:100%}.v-chip--active,.v-chip--selected,.v-chip:focus:not(.v-chip--disabled){border-color:rgba(0,0,0,.13);-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-chip--active:after,.v-chip--selected:after,.v-chip:focus:not(.v-chip--disabled):after{background:currentColor;border-radius:inherit;content:\"\";height:100%;left:0;opacity:.13;pointer-events:none;position:absolute;top:0;-webkit-transition:inherit;transition:inherit;width:100%}.v-chip--label,.v-chip--label .v-chip__content{border-radius:2px}.v-chip.v-chip.v-chip--outline{background:transparent!important;border-color:currentColor;color:#9e9e9e}.v-chip--small{height:24px}.v-chip--small .v-avatar{height:24px;min-width:24px;width:24px}.v-chip--small .v-icon{font-size:20px}.v-chip__close{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:20px;margin:0 2px 0 8px;text-decoration:none;user-select:none}.v-chip__close>.v-icon{color:inherit!important;cursor:pointer;font-size:20px;opacity:.5}.v-chip__close>.v-icon:hover{opacity:1}.v-chip--disabled .v-chip__close{pointer-events:none}.v-chip--select-multi{margin:4px 4px 4px 0}.v-chip .v-icon{color:inherit}.v-chip .v-icon--right{margin-left:12px;margin-right:-8px}.v-chip .v-icon--left{margin-left:-8px;margin-right:12px}.v-menu{display:block;position:relative;vertical-align:middle}.v-menu--inline{display:inline-block}.v-menu__activator{-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.v-menu__activator *{cursor:pointer}.v-menu__activator--disabled{pointer-events:none}.v-menu__content{border-radius:2px;-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);contain:content;display:inline-block;max-width:80%;overflow-x:hidden;overflow-y:auto;position:absolute;will-change:transform}.v-menu__content--active{pointer-events:none}.v-menu__content>.card{-webkit-backface-visibility:hidden;backface-visibility:hidden;contain:content}.v-menu>.v-menu__content{max-width:none}.v-menu-transition-enter .v-list__tile{min-width:0;pointer-events:none}.v-menu-transition-enter-to .v-list__tile{pointer-events:auto;-webkit-transition-delay:.1s;transition-delay:.1s}.v-menu-transition-leave-active,.v-menu-transition-leave-to{pointer-events:none}.v-menu-transition-enter,.v-menu-transition-leave-to{opacity:0}.v-menu-transition-enter-active,.v-menu-transition-leave-active{-webkit-transition:all .3s cubic-bezier(.25,.8,.25,1);transition:all .3s cubic-bezier(.25,.8,.25,1)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile{-webkit-transform:translateY(-15px);opacity:0;transform:translateY(-15px)}.v-menu-transition-enter.v-menu__content--auto .v-list__tile--active{-webkit-transform:none!important;opacity:1;pointer-events:auto;transform:none!important}.theme--light.v-card{background-color:#fff;color:rgba(0,0,0,.87)}.theme--dark.v-card{background-color:#424242;color:#fff}.v-card{border-radius:2px;-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:block;min-width:0;position:relative;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-card>:first-child:not(.v-btn):not(.v-chip){border-top-left-radius:inherit;border-top-right-radius:inherit}.v-card>:last-child:not(.v-btn):not(.v-chip){border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.v-card--raised{-webkit-box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.v-card--tile{border-radius:0}.v-card--flat{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-card--hover{cursor:pointer;-webkit-transition:all .4s cubic-bezier(.25,.8,.25,1);transition:all .4s cubic-bezier(.25,.8,.25,1);-webkit-transition-property:-webkit-box-shadow;transition-property:-webkit-box-shadow;transition-property:box-shadow;transition-property:box-shadow, -webkit-box-shadow}.v-card--hover:hover{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-card__title{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:16px}.v-card__title--primary{padding-top:24px}.v-card__text{padding:16px;width:100%}.v-card__actions{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding:8px}.v-card__actions .v-btn,.v-card__actions>*{margin:0}.v-card__actions .v-btn+.v-btn{margin-left:8px}.theme--light.v-input--selection-controls.v-input--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-input--selection-controls.v-input--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.application--is-rtl .v-input--selection-controls .v-input--selection-controls__input{margin-left:8px;margin-right:0}.v-input--selection-controls{margin-top:16px;padding-top:4px}.v-input--selection-controls .v-input__append-outer,.v-input--selection-controls .v-input__prepend-outer{margin-bottom:0;margin-top:0}.v-input--selection-controls .v-input__slot{margin-bottom:12px}.v-input--selection-controls__input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;color:inherit;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:24px;margin-right:8px;position:relative;transition:color .2s cubic-bezier(.25,.8,.25,1),-webkit-transform .3s cubic-bezier(.25,.8,.25,1);-webkit-transition:color .2s cubic-bezier(.25,.8,.25,1),-webkit-transform .3s cubic-bezier(.25,.8,.25,1);transition:color .2s cubic-bezier(.25,.8,.25,1),transform .3s cubic-bezier(.25,.8,.25,1);transition:color .2s cubic-bezier(.25,.8,.25,1),transform .3s cubic-bezier(.25,.8,.25,1),-webkit-transform .3s cubic-bezier(.25,.8,.25,1);user-select:none;width:24px}.v-input--selection-controls__input input{height:100%;opacity:0;position:absolute;width:100%}.v-input--selection-controls__input+.v-label,.v-input--selection-controls__input input{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-input--selection-controls__ripple{cursor:pointer;height:48px;left:-12px;position:absolute;top:calc(50% - 24px);-webkit-transition:inherit;transition:inherit;width:48px}.v-input--selection-controls__ripple:before{-webkit-transform:scale(.2);-webkit-transform-origin:center center;border-radius:50%;bottom:0;content:\"\";left:0;opacity:.2;position:absolute;right:0;top:0;transform:scale(.2);transform-origin:center center;-webkit-transition:inherit;transition:inherit}.v-input--selection-controls.v-input .v-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:auto;top:0}.v-input--selection-controls.v-input--is-focused .v-input--selection-controls__ripple:before,.v-input--selection-controls .v-radio--is-focused .v-input--selection-controls__ripple:before{-webkit-transform:scale(.8);background:currentColor;transform:scale(.8)}.theme--light.v-input:not(.v-input--is-disabled) input,.theme--light.v-input:not(.v-input--is-disabled) textarea{color:rgba(0,0,0,.87)}.theme--light.v-input input::-webkit-input-placeholder,.theme--light.v-input textarea::-webkit-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input:-ms-input-placeholder,.theme--light.v-input textarea:-ms-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input::-ms-input-placeholder,.theme--light.v-input textarea::-ms-input-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input::placeholder,.theme--light.v-input textarea::placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input--is-disabled .v-label,.theme--light.v-input--is-disabled input,.theme--light.v-input--is-disabled textarea{color:rgba(0,0,0,.38)}.theme--dark.v-input:not(.v-input--is-disabled) input,.theme--dark.v-input:not(.v-input--is-disabled) textarea{color:#fff}.theme--dark.v-input input::-webkit-input-placeholder,.theme--dark.v-input textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input:-ms-input-placeholder,.theme--dark.v-input textarea:-ms-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input::-ms-input-placeholder,.theme--dark.v-input textarea::-ms-input-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input::placeholder,.theme--dark.v-input textarea::placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input--is-disabled .v-label,.theme--dark.v-input--is-disabled input,.theme--dark.v-input--is-disabled textarea{color:hsla(0,0%,100%,.5)}.v-input{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;text-align:left}.v-input .v-progress-linear{left:0;margin:0;position:absolute;top:calc(100% - 1px)}.v-input input{max-height:32px}.v-input input:invalid,.v-input textarea:invalid{-webkit-box-shadow:none;box-shadow:none}.v-input input:active,.v-input input:focus,.v-input textarea:active,.v-input textarea:focus{outline:none}.v-input .v-label{height:20px;line-height:20px}.v-input__append-outer,.v-input__prepend-outer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;line-height:1;margin-bottom:4px;margin-top:4px}.v-input__append-outer .v-icon,.v-input__prepend-outer .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.v-input__append-outer{margin-left:9px}.v-input__prepend-outer{margin-right:9px}.v-input__control{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto;position:relative;width:100%}.v-input__icon{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:24px;width:24px}.v-input__icon--clear{border-radius:50%}.v-input__slot{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:8px;min-height:inherit;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-input--is-disabled:not(.v-input--is-readonly){pointer-events:none}.v-input--is-loading .v-input__slot:after,.v-input--is-loading .v-input__slot:before{display:none}.v-input--hide-details .v-input__slot{margin-bottom:0}.v-input--has-state.error--text .v-label{-webkit-animation:shake .6s cubic-bezier(.25,.8,.5,1);animation:shake .6s cubic-bezier(.25,.8,.5,1)}.theme--light.v-label{color:rgba(0,0,0,.54)}.theme--light.v-label--is-disabled{color:rgba(0,0,0,.38)}.theme--dark.v-label{color:hsla(0,0%,100%,.7)}.theme--dark.v-label--is-disabled{color:hsla(0,0%,100%,.5)}.v-label{font-size:16px;line-height:1;min-height:8px;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.theme--light.v-messages{color:rgba(0,0,0,.54)}.theme--dark.v-messages{color:hsla(0,0%,100%,.7)}.application--is-rtl .v-messages{text-align:right}.v-messages{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:12px;min-height:12px;min-width:1px;position:relative}.v-messages__message{-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;line-height:1;overflow-wrap:break-word;word-break:break-word;word-wrap:break-word}.v-progress-linear{background:transparent;margin:1rem 0;overflow:hidden;position:relative;width:100%}.v-progress-linear__bar{position:relative;width:100%;z-index:1}.v-progress-linear__bar,.v-progress-linear__bar__determinate{height:inherit;-webkit-transition:.2s;transition:.2s}.v-progress-linear__bar__indeterminate .long,.v-progress-linear__bar__indeterminate .short{background-color:inherit;bottom:0;height:inherit;left:0;position:absolute;top:0;width:auto;will-change:left,right}.v-progress-linear__bar__indeterminate--active .long{-webkit-animation:indeterminate;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__bar__indeterminate--active .short{-webkit-animation:indeterminate-short;-webkit-animation-duration:2.2s;-webkit-animation-iteration-count:infinite;animation:indeterminate-short;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear__background{bottom:0;left:0;position:absolute;top:0;-webkit-transition:.3s ease-in;transition:.3s ease-in}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .long{-webkit-animation:query;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query;animation-duration:2s;animation-iteration-count:infinite}.v-progress-linear--query .v-progress-linear__bar__indeterminate--active .short{-webkit-animation:query-short;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;animation:query-short;animation-duration:2s;animation-iteration-count:infinite}@-webkit-keyframes indeterminate{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@-webkit-keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@-webkit-keyframes query{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes query{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@-webkit-keyframes query-short{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes query-short{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}.theme--light.v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-divider{border-color:hsla(0,0%,100%,.12)}.v-divider{border:solid;border-width:thin 0 0;display:block;-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;height:0;max-height:0;max-width:100%;-webkit-transition:inherit;transition:inherit}.v-divider--inset:not(.v-divider--vertical){margin-left:72px;max-width:calc(100% - 72px)}.v-divider--vertical{-ms-flex-item-align:stretch;align-self:stretch;border:solid;border-width:0 thin 0 0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:inherit;max-height:100%;max-width:0;min-height:100%;vertical-align:text-bottom;width:0}.v-divider--vertical.v-divider--inset{margin-top:8px;max-height:calc(100% - 16px);min-height:0}.theme--light.v-subheader{color:rgba(0,0,0,.54)}.theme--dark.v-subheader{color:hsla(0,0%,100%,.7)}.v-subheader{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;height:48px;padding:0 16px}.v-subheader--inset{margin-left:56px}.theme--light.v-list{background:#fff;color:rgba(0,0,0,.87)}.theme--light.v-list .v-list--disabled{color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__tile__sub-title{color:rgba(0,0,0,.54)}.theme--light.v-list .v-list__tile__mask{background:#eee;color:rgba(0,0,0,.38)}.theme--light.v-list .v-list__group__header:hover,.theme--light.v-list .v-list__tile--highlighted,.theme--light.v-list .v-list__tile--link:hover{background:rgba(0,0,0,.04)}.theme--light.v-list .v-list__group--active:after,.theme--light.v-list .v-list__group--active:before{background:rgba(0,0,0,.12)}.theme--light.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--light.v-list .v-list__group--disabled .v-list__tile{color:rgba(0,0,0,.38)!important}.theme--dark.v-list{background:#424242;color:#fff}.theme--dark.v-list .v-list--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__tile__sub-title{color:hsla(0,0%,100%,.7)}.theme--dark.v-list .v-list__tile__mask{background:#494949;color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list__group__header:hover,.theme--dark.v-list .v-list__tile--highlighted,.theme--dark.v-list .v-list__tile--link:hover{background:hsla(0,0%,100%,.08)}.theme--dark.v-list .v-list__group--active:after,.theme--dark.v-list .v-list__group--active:before{background:hsla(0,0%,100%,.12)}.theme--dark.v-list .v-list__group--disabled .v-list__group__header__prepend-icon .v-icon,.theme--dark.v-list .v-list__group--disabled .v-list__tile{color:hsla(0,0%,100%,.5)!important}.v-list{list-style-type:none;padding:8px 0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list .v-input .v-messages{display:none}.v-list .v-input,.v-list .v-input__slot{margin:0}.v-list>div{-webkit-transition:inherit;transition:inherit}.v-list__tile{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-weight:400;height:48px;margin:0;padding:0 16px;position:relative;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list__tile--link{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-list__tile__action,.v-list__tile__content{height:100%}.v-list__tile__sub-title,.v-list__tile__title{overflow:hidden;text-overflow:ellipsis;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:100%}.v-list__tile__title{height:24px;line-height:24px;position:relative;text-align:left}.v-list__tile__sub-title{font-size:14px}.v-list__tile__action,.v-list__tile__avatar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__tile__action{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.v-list__tile__action .v-btn{margin:0;padding:0}.v-list__tile__action .v-btn--icon{margin:-6px}.v-list__tile__action .v-radio.v-radio{margin:0}.v-list__tile__action .v-input--selection-controls{padding:0}.v-list__tile__action-text{color:#9e9e9e;font-size:12px}.v-list__tile__action--stack{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:8px;padding-top:8px;white-space:nowrap}.v-list__tile__content{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;text-align:left}.v-list__tile__content~.v-list__tile__action:not(.v-list__tile__action--stack),.v-list__tile__content~.v-list__tile__avatar{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.v-list__tile--active .v-list__tile__action:first-of-type .v-icon{color:inherit}.v-list__tile--avatar{height:56px}.v-list--dense{padding-bottom:4px;padding-top:4px}.v-list--dense .v-subheader{font-size:13px;height:40px}.v-list--dense .v-list__group .v-subheader{height:40px}.v-list--dense .v-list__tile{font-size:13px}.v-list--dense .v-list__tile--avatar{height:48px}.v-list--dense .v-list__tile:not(.v-list__tile--avatar){height:40px}.v-list--dense .v-list__tile .v-icon{font-size:22px}.v-list--dense .v-list__tile__sub-title{font-size:13px}.v-list--disabled{pointer-events:none}.v-list--two-line .v-list__tile{height:72px}.v-list--two-line.v-list--dense .v-list__tile{height:60px}.v-list--three-line .v-list__tile{height:88px}.v-list--three-line .v-list__tile__avatar{margin-top:-18px}.v-list--three-line .v-list__tile__sub-title{-webkit-line-clamp:2;display:-webkit-box;white-space:normal}.v-list--three-line.v-list--dense .v-list__tile{height:76px}.v-list>.v-list__group:before{top:0}.v-list>.v-list__group:before .v-list__tile__avatar{margin-top:-14px}.v-list__group{padding:0;position:relative;-webkit-transition:inherit;transition:inherit}.v-list__group:after,.v-list__group:before{content:\"\";height:1px;left:0;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-list__group--active~.v-list__group:before{display:none}.v-list__group__header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;list-style-type:none}.v-list__group__header>div:not(.v-list__group__header__prepend-icon):not(.v-list__group__header__append-icon){-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.v-list__group__header .v-list__group__header__append-icon,.v-list__group__header .v-list__group__header__prepend-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;padding:0 16px;user-select:none}.v-list__group__header--sub-group{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.v-list__group__header--sub-group div .v-list__tile{padding-left:0}.v-list__group__header--sub-group .v-list__group__header__prepend-icon{margin-right:8px;padding:0 0 0 40px}.v-list__group__header .v-list__group__header__prepend-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;min-width:56px}.v-list__group__header--active .v-list__group__header__append-icon .v-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-list__group__header--active .v-list__group__header__prepend-icon .v-icon{color:inherit}.v-list__group__header--active.v-list__group__header--sub-group .v-list__group__header__prepend-icon .v-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-list__group__items{padding:0;position:relative;-webkit-transition:inherit;transition:inherit}.v-list__group__items>div{display:block}.v-list__group__items--no-action .v-list__tile{padding-left:72px}.v-list__group--disabled{pointer-events:none}.v-list--subheader{padding-top:0}.v-avatar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;text-align:center;vertical-align:middle}.v-avatar .v-icon,.v-avatar .v-image,.v-avatar img{border-radius:50%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:inherit;width:inherit}.v-avatar--tile,.v-avatar--tile .v-icon,.v-avatar--tile .v-image,.v-avatar--tile img{border-radius:0}.theme--light.v-counter{color:rgba(0,0,0,.54)}.theme--dark.v-counter{color:hsla(0,0%,100%,.7)}.v-counter{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;font-size:12px;line-height:1;min-height:12px}.v-badge{display:inline-block;position:relative}.v-badge__badge{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:14px;height:22px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;right:-22px;top:-11px;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:22px}.v-badge__badge .v-icon{font-size:14px}.v-badge--overlap .v-badge__badge{right:-8px;top:-8px}.v-badge--overlap.v-badge--left .v-badge__badge{left:-8px;right:auto}.v-badge--overlap.v-badge--bottom .v-badge__badge{bottom:-8px;top:auto}.v-badge--left .v-badge__badge{left:-22px}.v-badge--bottom .v-badge__badge{bottom:-11px;top:auto}.theme--light.v-bottom-nav{background-color:#fff}.theme--dark.v-bottom-nav{background-color:#424242}.v-bottom-nav{-webkit-transform:translateY(60px);bottom:0;-webkit-box-shadow:0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 3px 14px 2px rgba(0,0,0,.12);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;transform:translateY(60px);-webkit-transition:all .4s cubic-bezier(.25,.8,.5,1);transition:all .4s cubic-bezier(.25,.8,.5,1);width:100%}.v-bottom-nav--absolute{position:absolute}.v-bottom-nav--active{-webkit-transform:translate(0);transform:translate(0)}.v-bottom-nav--fixed{position:fixed;z-index:4}.v-bottom-nav .v-btn{background:transparent!important;border-radius:0;-webkit-box-shadow:none!important;box-shadow:none!important;-ms-flex-negative:1;flex-shrink:1;font-weight:400;height:100%;margin:0;max-width:168px;min-width:80px;opacity:.5;padding:8px 12px 10px;text-transform:none;width:100%}.v-bottom-nav .v-btn .v-btn__content{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;font-size:12px;white-space:nowrap;will-change:font-size}.v-bottom-nav .v-btn .v-btn__content i.v-icon{color:inherit;margin-bottom:4px;-webkit-transition:all .4s cubic-bezier(.25,.8,.5,1);transition:all .4s cubic-bezier(.25,.8,.5,1)}.v-bottom-nav .v-btn .v-btn__content span{line-height:1}.v-bottom-nav .v-btn--active{opacity:1;padding-top:6px}.v-bottom-nav .v-btn--active:before{background-color:transparent}.v-bottom-nav .v-btn--active .v-btn__content{font-size:14px}.v-bottom-nav .v-btn--active .v-btn__content .v-icon{-webkit-transform:none;transform:none}.v-bottom-nav .v-btn:not(.v-btn--active){-webkit-filter:grayscale(100%);filter:grayscale(100%)}.v-bottom-nav--shift .v-btn__content{font-size:14px}.v-bottom-nav--shift .v-btn{max-width:96px;min-width:56px;-webkit-transition:all .3s;transition:all .3s}.v-bottom-nav--shift .v-btn--active{max-width:168px;min-width:96px}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content .v-icon{-webkit-transform:scale(1) translateY(8px);transform:scale(1) translateY(8px)}.v-bottom-nav--shift .v-btn:not(.v-btn--active) .v-btn__content span{color:transparent}.v-bottom-sheet.v-dialog{-ms-flex-item-align:end;align-self:flex-end;border-radius:0;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;margin:0;min-width:100%;overflow:visible;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1)}.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:70%;min-width:0}@media only screen and (max-width:599px){.v-bottom-sheet.v-dialog.v-bottom-sheet--inset{max-width:none}}.v-dialog{border-radius:2px;-webkit-box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);margin:24px;overflow-y:auto;pointer-events:auto;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);width:100%;z-index:inherit}.v-dialog__content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;outline:none;pointer-events:none;position:fixed;top:0;-webkit-transition:.2s cubic-bezier(.25,.8,.25,1);transition:.2s cubic-bezier(.25,.8,.25,1);width:100%;z-index:6}.v-dialog:not(.v-dialog--fullscreen){max-height:90%}.v-dialog__activator,.v-dialog__activator *{cursor:pointer}.v-dialog__activator--disabled{pointer-events:none}.v-dialog__container{display:inline-block;vertical-align:middle}.v-dialog--animated{-webkit-animation-duration:.15s;-webkit-animation-name:animate-dialog;-webkit-animation-timing-function:cubic-bezier(.25,.8,.25,1);animation-duration:.15s;animation-name:animate-dialog;animation-timing-function:cubic-bezier(.25,.8,.25,1)}.v-dialog--fullscreen{border-radius:0;height:100%;left:0;margin:0;overflow-y:auto;position:fixed;top:0}.v-dialog--fullscreen>.v-card{margin:0!important;min-height:100%;min-width:100%;padding:0!important}.v-dialog--scrollable{display:-webkit-box;display:-ms-flexbox;display:flex}.v-dialog--scrollable>.v-card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.v-dialog--scrollable>.v-card>.v-card__actions,.v-dialog--scrollable>.v-card>.v-card__title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.v-dialog--scrollable>.v-card>.v-card__text{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow-y:auto}@-webkit-keyframes animate-dialog{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.03);transform:scale(1.03)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes animate-dialog{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.03);transform:scale(1.03)}to{-webkit-transform:scale(1);transform:scale(1)}}.v-overlay{bottom:0;left:0;pointer-events:none;position:fixed;right:0;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);z-index:5}.v-overlay--absolute{position:absolute}.v-overlay:before{background-color:#212121;bottom:0;content:\"\";height:100%;left:0;opacity:0;position:absolute;right:0;top:0;-webkit-transition:inherit;transition:inherit;-webkit-transition-delay:.15s;transition-delay:.15s;width:100%}.v-overlay--active{pointer-events:auto;-ms-touch-action:none;touch-action:none}.v-overlay--active:before{opacity:.46}.theme--light.v-breadcrumbs li.v-breadcrumbs__divider,.theme--light.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--light.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:rgba(0,0,0,.38)}.theme--dark.v-breadcrumbs li.v-breadcrumbs__divider,.theme--dark.v-breadcrumbs li .v-breadcrumbs__item--disabled,.theme--dark.v-breadcrumbs li:last-child .v-breadcrumbs__item{color:hsla(0,0%,100%,.5)}.v-breadcrumbs{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style-type:none;margin:0;padding:18px 12px}.v-breadcrumbs li{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:14px}.v-breadcrumbs li .v-icon{font-size:16px}.v-breadcrumbs li:last-child a{cursor:default;pointer-events:none}.v-breadcrumbs li:nth-child(2n){padding:0 12px}.v-breadcrumbs--large li,.v-breadcrumbs--large li .v-icon{font-size:16px}.v-breadcrumbs__item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-breadcrumbs__item--disabled{pointer-events:none}.v-ripple__container{border-radius:inherit;contain:strict;height:100%;width:100%;z-index:0}.v-ripple__animation,.v-ripple__container{color:inherit;left:0;overflow:hidden;pointer-events:none;position:absolute;top:0}.v-ripple__animation{background:currentColor;border-radius:50%;opacity:0;-webkit-transition:.4s cubic-bezier(0,0,.2,1);transition:.4s cubic-bezier(0,0,.2,1);will-change:transform,opacity}.v-ripple__animation--enter{-webkit-transition:none;transition:none}.v-ripple__animation--visible{opacity:.15}.theme--light.v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn.v-btn--disabled,.theme--light.v-btn.v-btn--disabled .v-btn__loading,.theme--light.v-btn.v-btn--disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--light.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:rgba(0,0,0,.12)!important}.theme--light.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#f5f5f5}.theme--dark.v-btn{color:#fff}.theme--dark.v-btn.v-btn--disabled,.theme--dark.v-btn.v-btn--disabled .v-btn__loading,.theme--dark.v-btn.v-btn--disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.theme--dark.v-btn.v-btn--disabled:not(.v-btn--icon):not(.v-btn--flat){background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-btn:not(.v-btn--icon):not(.v-btn--flat){background-color:#212121}.v-btn{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:2px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:14px;font-weight:500;height:36px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:6px 8px;min-width:88px;outline:0;position:relative;text-decoration:none;text-transform:uppercase;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1),color 1ms;transition:.3s cubic-bezier(.25,.8,.5,1),color 1ms;user-select:none;vertical-align:middle}.v-btn:before{border-radius:inherit;color:inherit;content:\"\";height:100%;left:0;opacity:.12;position:absolute;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-btn{padding:0 16px}.v-btn--active,.v-btn:focus,.v-btn:hover{position:relative}.v-btn--active:before,.v-btn:focus:before,.v-btn:hover:before{background-color:currentColor}.v-btn__content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:inherit;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 auto;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap;width:inherit}.v-btn--small{font-size:13px;height:28px;padding:0 8px}.v-btn--large{font-size:15px;height:44px;padding:0 32px}.v-btn .v-btn__content .v-icon{color:inherit}.v-btn:not(.v-btn--depressed):not(.v-btn--flat){-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);will-change:box-shadow}.v-btn:not(.v-btn--depressed):not(.v-btn--flat):active{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-btn--icon{background:transparent;border-radius:50%;-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:0;width:36px}.v-btn--icon.v-btn--small{width:28px}.v-btn--icon.v-btn--large{width:44px}.v-btn--floating,.v-btn--icon:before{border-radius:50%}.v-btn--floating{height:56px;min-width:0;padding:0;width:56px}.v-btn--floating.v-btn--absolute,.v-btn--floating.v-btn--fixed{z-index:4}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat){-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.v-btn--floating:not(.v-btn--depressed):not(.v-btn--flat):active{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12);box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.v-btn--floating .v-btn__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;margin:0}.v-btn--floating:after{border-radius:50%}.v-btn--floating .v-btn__content :not(:only-child){-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-btn--floating .v-btn__content :not(:only-child):first-child{opacity:1}.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(-45deg);opacity:0;transform:rotate(-45deg)}.v-btn--floating .v-btn__content :not(:only-child):first-child,.v-btn--floating .v-btn__content :not(:only-child):last-child{-webkit-backface-visibility:hidden;left:0;position:absolute;top:0}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):first-child{-webkit-transform:rotate(45deg);opacity:0;transform:rotate(45deg)}.v-btn--floating.v-btn--active .v-btn__content :not(:only-child):last-child{-webkit-transform:rotate(0);opacity:1;transform:rotate(0)}.v-btn--floating .v-icon{height:inherit;width:inherit}.v-btn--floating.v-btn--small{height:40px;width:40px}.v-btn--floating.v-btn--small .v-icon{font-size:18px}.v-btn--floating.v-btn--large{height:72px;width:72px}.v-btn--floating.v-btn--large .v-icon{font-size:30px}.v-btn--reverse .v-btn__content{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.v-btn--reverse.v-btn--column .v-btn__content{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-btn--absolute,.v-btn--fixed{margin:0}.v-btn.v-btn--absolute{position:absolute}.v-btn.v-btn--fixed{position:fixed}.v-btn--top:not(.v-btn--absolute){top:16px}.v-btn--top.v-btn--absolute{top:-28px}.v-btn--top.v-btn--absolute.v-btn--small{top:-20px}.v-btn--top.v-btn--absolute.v-btn--large{top:-36px}.v-btn--bottom:not(.v-btn--absolute){bottom:16px}.v-btn--bottom.v-btn--absolute{bottom:-28px}.v-btn--bottom.v-btn--absolute.v-btn--small{bottom:-20px}.v-btn--bottom.v-btn--absolute.v-btn--large{bottom:-36px}.v-btn--left{left:16px}.v-btn--right{right:16px}.v-btn.v-btn--disabled{-webkit-box-shadow:none!important;box-shadow:none!important;pointer-events:none}.v-btn:not(.v-btn--disabled):not(.v-btn--floating):not(.v-btn--icon) .v-btn__content .v-icon{-webkit-transition:none;transition:none}.v-btn--icon{padding:0}.v-btn--loader{pointer-events:none}.v-btn--loader .v-btn__content{opacity:0}.v-btn__loading{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loading .v-icon--left{line-height:inherit;margin-right:1rem}.v-btn__loading .v-icon--right{line-height:inherit;margin-left:1rem}.v-btn.v-btn--outline{background:transparent!important;border:1px solid;-webkit-box-shadow:none;box-shadow:none}.v-btn.v-btn--outline:hover{-webkit-box-shadow:none;box-shadow:none}.v-btn--block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;margin:6px 0;width:100%}.v-btn--round,.v-btn--round:after{border-radius:28px}.v-btn .v-icon--right{margin-left:16px}.v-btn .v-icon--left{margin-right:16px}.v-btn:not(.v-btn--outline).accent,.v-btn:not(.v-btn--outline).error,.v-btn:not(.v-btn--outline).info,.v-btn:not(.v-btn--outline).primary,.v-btn:not(.v-btn--outline).secondary,.v-btn:not(.v-btn--outline).success,.v-btn:not(.v-btn--outline).warning{color:#fff}.v-progress-circular{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;position:relative;vertical-align:middle}.v-progress-circular svg{bottom:0;height:100%;left:0;margin:auto;position:absolute;right:0;top:0;width:100%;z-index:0}.v-progress-circular--indeterminate svg{-webkit-animation:progress-circular-rotate 1.4s linear infinite;-webkit-transform-origin:center center;animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{-webkit-animation:progress-circular-dash 1.4s ease-in-out infinite;animation:progress-circular-dash 1.4s ease-in-out infinite;stroke-dasharray:80,200;stroke-dashoffset:0px;stroke-linecap:round}.v-progress-circular__underlay{stroke:rgba(0,0,0,.1);z-index:1}.v-progress-circular__overlay{stroke:currentColor;-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out;z-index:2}.v-progress-circular__info{-webkit-transform:translate(-50%,-50%);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}@-webkit-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-webkit-keyframes progress-circular-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes progress-circular-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.theme--light.v-btn-toggle{background:#fff}.theme--light.v-btn-toggle .v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:rgba(0,0,0,.26)}.theme--dark.v-btn-toggle{background:#424242}.theme--dark.v-btn-toggle .v-btn{color:#fff}.theme--dark.v-btn-toggle .v-btn.v-btn--active:not(:last-child):not([data-only-child]){border-right-color:hsla(0,0%,100%,.3)}.v-btn-toggle{border-radius:2px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);will-change:background,box-shadow}.v-btn-toggle .v-btn{border-radius:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;min-width:auto;opacity:.4;padding:0 8px;width:auto}.v-btn-toggle .v-btn:not(:last-child){border-right:1px solid transparent}.v-btn-toggle .v-btn:after{display:none}.v-btn-toggle .v-btn.v-btn--active{opacity:1}.v-btn-toggle .v-btn span+.v-icon{font-size:medium;margin-left:10px}.v-btn-toggle .v-btn:first-child{border-radius:2px 0 0 2px}.v-btn-toggle .v-btn:last-child{border-radius:0 2px 2px 0}.v-btn-toggle--selected{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-image{z-index:0}.v-image__image,.v-image__placeholder{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.v-image__image{background-repeat:no-repeat}.v-image__image--preload{-webkit-filter:blur(2px);filter:blur(2px)}.v-image__image--contain{background-size:contain}.v-image__image--cover{background-size:cover}.v-responsive{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;overflow:hidden;position:relative}.v-responsive__content{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.v-responsive__sizer{-webkit-box-flex:0;-ms-flex:0 0 0px;flex:0 0 0px;-webkit-transition:padding-bottom .2s cubic-bezier(.25,.8,.5,1);transition:padding-bottom .2s cubic-bezier(.25,.8,.5,1)}.application--is-rtl .v-carousel__prev{left:auto;right:5px}.application--is-rtl .v-carousel__next{left:5px;right:auto}.v-carousel{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);height:500px;overflow:hidden;position:relative;width:100%}.v-carousel__item{position:absolute;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-carousel__next,.v-carousel__prev{-webkit-transform:translateY(-50%);position:absolute;top:50%;transform:translateY(-50%);z-index:1}.v-carousel__next .v-btn,.v-carousel__prev .v-btn{height:auto;margin:0;width:auto}.v-carousel__next .v-btn i,.v-carousel__prev .v-btn i{font-size:48px}.v-carousel__next .v-btn:hover,.v-carousel__prev .v-btn:hover{background:none}.v-carousel__prev{left:5px}.v-carousel__next{right:5px}.v-carousel__controls{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:rgba(0,0,0,.5);bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;list-style-type:none;position:absolute;width:100%;z-index:1}.v-carousel__controls__item{margin:0 8px!important}.v-carousel__controls__item .v-icon{opacity:.5;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-carousel__controls__item--active .v-icon{opacity:1;vertical-align:middle}.v-carousel__controls__item:hover{background:none}.v-carousel__controls__item:hover .v-icon{opacity:.8}.theme--light.v-data-iterator .v-data-iterator__actions{color:rgba(0,0,0,.54)}.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--light.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:rgba(0,0,0,.54)!important}.theme--dark.v-data-iterator .v-data-iterator__actions{color:hsla(0,0%,100%,.7)}.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-input__append-inner,.theme--dark.v-data-iterator .v-data-iterator__actions__select .v-select .v-select__selection--comma{color:hsla(0,0%,100%,.7)!important}.v-data-iterator__actions{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.v-data-iterator__actions .v-btn{color:inherit}.v-data-iterator__actions .v-btn:last-of-type{margin-left:14px}.v-data-iterator__actions__range-controls{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px}.v-data-iterator__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-data-iterator__actions__select{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:14px}.v-data-iterator__actions__select .v-select{margin:13px 0 13px 34px;padding:0;position:static}.v-data-iterator__actions__select .v-select .v-select__selection--comma{font-size:12px}.theme--light.v-overflow-btn .v-input__control:before,.theme--light.v-overflow-btn .v-input__slot:before{background-color:rgba(0,0,0,.12)!important}.theme--light.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--light.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--light.v-overflow-btn--editable:hover .v-input__append-inner,.theme--light.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid rgba(0,0,0,.12)}.theme--light.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--light.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--light.v-overflow-btn:hover .v-input__slot{background:#fff}.theme--dark.v-overflow-btn .v-input__control:before,.theme--dark.v-overflow-btn .v-input__slot:before{background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,.theme--dark.v-overflow-btn--editable.v-select--is-menu-active .v-input__append-inner,.theme--dark.v-overflow-btn--editable:hover .v-input__append-inner,.theme--dark.v-overflow-btn--segmented .v-input__append-inner{border-left:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-overflow-btn.v-input--is-focused .v-input__slot,.theme--dark.v-overflow-btn.v-select--is-menu-active .v-input__slot,.theme--dark.v-overflow-btn:hover .v-input__slot{background:#424242}.v-overflow-btn{margin-top:12px}.v-overflow-btn:not(.v-overflow-btn--editable)>.v-input__control>.v-input__slot{cursor:pointer}.v-overflow-btn .v-select__slot{height:48px}.v-overflow-btn .v-select__selection--comma:first-child,.v-overflow-btn .v-select__slot input{margin-left:16px}.v-overflow-btn .v-input__slot{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-overflow-btn .v-input__slot:after{content:none}.v-overflow-btn .v-label{margin-left:16px;top:calc(50% - 10px)}.v-overflow-btn .v-input__append-inner{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:auto;align-self:auto;-ms-flex-negative:0;flex-shrink:0;height:48px;margin-top:0;padding:0;width:48px}.v-overflow-btn .v-input__append-outer,.v-overflow-btn .v-input__prepend-outer{margin-bottom:12px;margin-top:12px}.v-overflow-btn .v-input__control:before{content:\"\";height:1px;left:0;position:absolute;top:-1px;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-overflow-btn.v-input--is-focused .v-input__slot,.v-overflow-btn.v-select--is-menu-active .v-input__slot{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-overflow-btn .v-select__selections{width:0}.v-overflow-btn--segmented .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-overflow-btn--segmented .v-select__selections .v-btn{border-radius:0;height:48px;margin:0 -16px 0 0;width:100%}.v-overflow-btn--segmented .v-select__selections .v-btn__content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.v-overflow-btn--segmented .v-select__selections .v-btn__content:before{background-color:transparent}.v-overflow-btn--editable .v-input__append-inner,.v-overflow-btn--editable .v-input__append-inner *{cursor:pointer}.theme--light.v-table{background-color:#fff;color:rgba(0,0,0,.87)}.theme--light.v-table thead tr:first-child{border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table thead th{color:rgba(0,0,0,.54)}.theme--light.v-table tbody tr:not(:last-child){border-bottom:1px solid rgba(0,0,0,.12)}.theme--light.v-table tbody tr[active]{background:#f5f5f5}.theme--light.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#eee}.theme--light.v-table tfoot tr{border-top:1px solid rgba(0,0,0,.12)}.theme--dark.v-table{background-color:#424242;color:#fff}.theme--dark.v-table thead tr:first-child{border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table thead th{color:hsla(0,0%,100%,.7)}.theme--dark.v-table tbody tr:not(:last-child){border-bottom:1px solid hsla(0,0%,100%,.12)}.theme--dark.v-table tbody tr[active]{background:#505050}.theme--dark.v-table tbody tr:hover:not(.v-datatable__expand-row){background:#616161}.theme--dark.v-table tfoot tr{border-top:1px solid hsla(0,0%,100%,.12)}.v-table__overflow{overflow-x:auto;overflow-y:hidden;width:100%}table.v-table{border-collapse:collapse;border-radius:2px;border-spacing:0;max-width:100%;width:100%}table.v-table tbody td:first-child,table.v-table tbody td:not(:first-child),table.v-table tbody th:first-child,table.v-table tbody th:not(:first-child),table.v-table thead td:first-child,table.v-table thead td:not(:first-child),table.v-table thead th:first-child,table.v-table thead th:not(:first-child){padding:0 24px}table.v-table thead tr{height:56px}table.v-table thead th{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;font-size:12px;font-weight:500;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:nowrap}table.v-table thead th.sortable{pointer-events:auto}table.v-table thead th>div{width:100%}table.v-table tbody tr{-webkit-transition:background .3s cubic-bezier(.25,.8,.5,1);transition:background .3s cubic-bezier(.25,.8,.5,1);will-change:background}table.v-table tbody td,table.v-table tbody th{height:48px}table.v-table tbody td{font-size:13px;font-weight:400}table.v-table .input-group--selection-controls{padding:0}table.v-table .input-group--selection-controls .input-group__details{display:none}table.v-table .input-group--selection-controls.checkbox .v-icon{-webkit-transform:translateX(-50%);left:50%;transform:translateX(-50%)}table.v-table .input-group--selection-controls.checkbox .input-group--selection-controls__ripple{-webkit-transform:translate(-50%,-50%);left:50%;transform:translate(-50%,-50%)}table.v-table tfoot tr{height:48px}table.v-table tfoot tr td{padding:0 24px}.theme--light.v-datatable thead th.column.sortable i{color:rgba(0,0,0,.38)}.theme--light.v-datatable thead th.column.sortable.active,.theme--light.v-datatable thead th.column.sortable.active i,.theme--light.v-datatable thead th.column.sortable:hover{color:rgba(0,0,0,.87)}.theme--light.v-datatable .v-datatable__actions{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.54)}.theme--dark.v-datatable thead th.column.sortable i{color:hsla(0,0%,100%,.5)}.theme--dark.v-datatable thead th.column.sortable.active,.theme--dark.v-datatable thead th.column.sortable.active i,.theme--dark.v-datatable thead th.column.sortable:hover{color:#fff}.theme--dark.v-datatable .v-datatable__actions{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:hsla(0,0%,100%,.7)}.v-datatable .v-input--selection-controls{margin:0}.v-datatable thead th.column.sortable{cursor:pointer;outline:0}.v-datatable thead th.column.sortable i{display:inline-block;font-size:16px;opacity:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-datatable thead th.column.sortable:focus i,.v-datatable thead th.column.sortable:hover i{opacity:.6}.v-datatable thead th.column.sortable.active{-webkit-transform:none;transform:none}.v-datatable thead th.column.sortable.active i{opacity:1}.v-datatable thead th.column.sortable.active.desc i{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-datatable__actions{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;font-size:12px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.v-datatable__actions .v-btn{color:inherit}.v-datatable__actions .v-btn:last-of-type{margin-left:14px}.v-datatable__actions__range-controls{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px}.v-datatable__actions__pagination{display:block;margin:0 32px 0 24px;text-align:center}.v-datatable__actions__select{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-right:14px;white-space:nowrap}.v-datatable__actions__select .v-select{-webkit-box-flex:0;-ms-flex:0 1 0px;flex:0 1 0;margin:13px 0 13px 34px;padding:0;position:static}.v-datatable__actions__select .v-select__selections{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.v-datatable__actions__select .v-select__selections .v-select__selection--comma{font-size:12px}.v-datatable__progress,.v-datatable__progress td,.v-datatable__progress th,.v-datatable__progress tr{height:auto!important}.v-datatable__progress th{padding:0!important}.v-datatable__progress th .v-progress-linear{margin:0}.v-datatable__expand-row{border:none!important}.v-datatable__expand-col{height:0!important;padding:0!important}.v-datatable__expand-col--expanded{border-bottom:1px solid rgba(0,0,0,.12)}.v-datatable__expand-content{-webkit-transition:height .3s cubic-bezier(.25,.8,.5,1);transition:height .3s cubic-bezier(.25,.8,.5,1)}.v-datatable__expand-content>.card{border-radius:0;-webkit-box-shadow:none;box-shadow:none}.theme--light.v-small-dialog a{color:rgba(0,0,0,.87)}.theme--dark.v-small-dialog a{color:#fff}.theme--light.v-small-dialog__content{background:#fff}.theme--dark.v-small-dialog__content{background:#424242}.theme--light.v-small-dialog__actions{background:#fff}.theme--dark.v-small-dialog__actions{background:#424242}.v-small-dialog{display:block;height:100%;width:100%}.v-small-dialog__content{padding:0 24px}.v-small-dialog__actions{text-align:right;white-space:pre}.v-small-dialog a{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;text-decoration:none}.v-small-dialog a>*{width:100%}.v-small-dialog .v-menu__activator{height:100%}.application--is-rtl .v-date-picker-title .v-picker__title__btn{text-align:right}.v-date-picker-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:1}.v-date-picker-title__year{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:14px;font-weight:500;margin-bottom:8px}.v-date-picker-title__date{font-size:34px;font-weight:500;overflow:hidden;position:relative;text-align:left}.v-date-picker-title__date>div{position:relative}.theme--light.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:rgba(0,0,0,.87)!important}.theme--light.v-date-picker-header .v-date-picker-header__value--disabled strong{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) strong:not(:hover){color:#fff!important}.theme--dark.v-date-picker-header .v-date-picker-header__value--disabled strong{color:hsla(0,0%,100%,.5)}.v-date-picker-header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:4px 16px;position:relative}.v-date-picker-header .v-btn{margin:0;z-index:auto}.v-date-picker-header .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:pointer;user-select:none}.v-date-picker-header__value{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:hidden;position:relative;text-align:center}.v-date-picker-header__value strong{cursor:pointer;display:block;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.theme--light.v-date-picker-table th{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-table th{color:hsla(0,0%,100%,.5)}.v-date-picker-table{height:242px;padding:0 12px;position:relative}.v-date-picker-table table{table-layout:fixed;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-date-picker-table td,.v-date-picker-table th{position:relative;text-align:center}.v-date-picker-table th{font-size:12px}.v-date-picker-table--date .v-btn{height:32px;width:32px}.v-date-picker-table .v-btn{font-size:12px;margin:0;z-index:auto}.v-date-picker-table .v-btn.v-btn--active{color:#fff}.v-date-picker-table--month td{height:56px;text-align:center;vertical-align:middle;width:33.333333%}.v-date-picker-table--month td .v-btn{margin:0 auto;max-width:160px;min-width:40px;width:100%}.v-date-picker-table--date th{font-weight:600;padding:8px 0}.v-date-picker-table--date td{width:45px}.v-date-picker-table__event{-webkit-transform:translateX(-4px);border-radius:50%;bottom:2px;content:\"\";display:block;height:8px;left:50%;position:absolute;transform:translateX(-4px);width:8px}.v-date-picker-years{font-size:16px;font-weight:400;height:286px;list-style-type:none;overflow:auto;padding:0;text-align:center}.v-date-picker-years li{cursor:pointer;padding:8px 0;-webkit-transition:none;transition:none}.v-date-picker-years li.active{font-size:26px;font-weight:500;padding:10px 0}.v-date-picker-years li:hover{background:rgba(0,0,0,.12)}.v-picker--landscape .v-date-picker-years{height:286px}.theme--light.v-picker__title{background:#e0e0e0}.theme--dark.v-picker__title{background:#616161}.theme--light.v-picker__body{background:#fff}.theme--dark.v-picker__body{background:#424242}.v-picker{border-radius:2px;contain:layout style;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;vertical-align:top}.v-picker--full-width{display:-webkit-box;display:-ms-flexbox;display:flex}.v-picker__title{border-top-left-radius:2px;border-top-right-radius:2px;color:#fff;padding:16px}.v-picker__title__btn{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-picker__title__btn:not(.active){cursor:pointer;opacity:.6}.v-picker__title__btn:not(.active):hover{opacity:1}.v-picker__title__btn--readonly{pointer-events:none}.v-picker__title__btn--active{opacity:1}.v-picker__body{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden;position:relative;z-index:0}.v-picker__body>div{width:100%}.v-picker__body>div.fade-transition-leave-active{position:absolute}.v-picker--landscape .v-picker__title{border-bottom-right-radius:0;border-top-right-radius:0;height:100%;left:0;position:absolute;top:0;width:170px;z-index:1}.v-picker--landscape .v-picker__actions,.v-picker--landscape .v-picker__body{margin-left:170px}.theme--light.v-expansion-panel .v-expansion-panel__container{background-color:#fff;border-top:1px solid rgba(0,0,0,.12);color:rgba(0,0,0,.87)}.theme--light.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-expansion-panel .v-expansion-panel__container--disabled{color:rgba(0,0,0,.38)}.theme--light.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#eee}.theme--dark.v-expansion-panel .v-expansion-panel__container{background-color:#424242;border-top:1px solid hsla(0,0%,100%,.12);color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container .v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{color:#fff}.theme--dark.v-expansion-panel .v-expansion-panel__container--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-expansion-panel--focusable .v-expansion-panel__container:focus{background-color:#494949}.v-expansion-panel{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;list-style-type:none;padding:0;text-align:left;width:100%}.v-expansion-panel__container{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;max-width:100%;outline:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__container:first-child{border-top:none!important}.v-expansion-panel__container .v-expansion-panel__header__iconnel__header__icon{margin-left:auto}.v-expansion-panel__container--disabled .v-expansion-panel__header{pointer-events:none}.v-expansion-panel__container--active>.v-expansion-panel__header .v-expansion-panel__header__icon .v-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.v-expansion-panel__header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px;padding:12px 24px;position:relative}.v-expansion-panel__header>:not(.v-expansion-panel__header__icon){-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.v-expansion-panel__body{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel__body .v-card{border-radius:0}.v-expansion-panel--inset,.v-expansion-panel--popout,.v-expansion-panel__body .v-card{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-expansion-panel--inset .v-expansion-panel__container--active,.v-expansion-panel--popout .v-expansion-panel__container--active{-webkit-box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);margin:16px}.v-expansion-panel--inset .v-expansion-panel__container,.v-expansion-panel--popout .v-expansion-panel__container{max-width:95%}.v-expansion-panel--popout .v-expansion-panel__container--active{max-width:100%}.v-expansion-panel--inset .v-expansion-panel__container--active{max-width:85%}.theme--light.v-footer{background:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-footer{background:#212121;color:#fff}.v-footer{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0!important;-ms-flex:0 1 auto!important;flex:0 1 auto!important;min-height:36px;-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1)}.v-footer--absolute,.v-footer--fixed{bottom:0;left:0;width:100%;z-index:3}.v-footer--inset{z-index:2}.v-footer--absolute{position:absolute}.v-footer--fixed{position:fixed}.v-form>.container{padding:16px}.v-form>.container>.layout>.flex{padding:8px}.v-form>.container>.layout:only-child{margin:-8px}.v-form>.container>.layout:not(:only-child){margin:auto -8px}.container{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;margin:auto;padding:24px;width:100%}.container.fluid{max-width:100%}.container.fill-height{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.container.fill-height>.layout{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%}.container.grid-list-xs .layout .flex{padding:1px}.container.grid-list-xs .layout:only-child{margin:-1px}.container.grid-list-xs .layout:not(:only-child){margin:auto -1px}.container.grid-list-xs :not(:only-child) .layout:first-child{margin-top:-1px}.container.grid-list-xs :not(:only-child) .layout:last-child{margin-bottom:-1px}.container.grid-list-sm .layout .flex{padding:2px}.container.grid-list-sm .layout:only-child{margin:-2px}.container.grid-list-sm .layout:not(:only-child){margin:auto -2px}.container.grid-list-sm :not(:only-child) .layout:first-child{margin-top:-2px}.container.grid-list-sm :not(:only-child) .layout:last-child{margin-bottom:-2px}.container.grid-list-md .layout .flex{padding:4px}.container.grid-list-md .layout:only-child{margin:-4px}.container.grid-list-md .layout:not(:only-child){margin:auto -4px}.container.grid-list-md :not(:only-child) .layout:first-child{margin-top:-4px}.container.grid-list-md :not(:only-child) .layout:last-child{margin-bottom:-4px}.container.grid-list-lg .layout .flex{padding:8px}.container.grid-list-lg .layout:only-child{margin:-8px}.container.grid-list-lg .layout:not(:only-child){margin:auto -8px}.container.grid-list-lg :not(:only-child) .layout:first-child{margin-top:-8px}.container.grid-list-lg :not(:only-child) .layout:last-child{margin-bottom:-8px}.container.grid-list-xl .layout .flex{padding:12px}.container.grid-list-xl .layout:only-child{margin:-12px}.container.grid-list-xl .layout:not(:only-child){margin:auto -12px}.container.grid-list-xl :not(:only-child) .layout:first-child{margin-top:-12px}.container.grid-list-xl :not(:only-child) .layout:last-child{margin-bottom:-12px}.layout{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:nowrap;flex-wrap:nowrap;min-width:0}.layout.row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.layout.row.reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.layout.column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.layout.column.reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.layout.column>.flex{max-width:100%}.layout.wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.child-flex>*,.flex{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.align-baseline{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.align-self-start{-ms-flex-item-align:start;align-self:flex-start}.align-self-end{-ms-flex-item-align:end;align-self:flex-end}.align-self-center{-ms-flex-item-align:center;align-self:center}.align-self-baseline{-ms-flex-item-align:baseline;align-self:baseline}.align-content-start{-ms-flex-line-pack:start;align-content:flex-start}.align-content-end{-ms-flex-line-pack:end;align-content:flex-end}.align-content-center{-ms-flex-line-pack:center;align-content:center}.align-content-space-between{-ms-flex-line-pack:justify;align-content:space-between}.align-content-space-around{-ms-flex-line-pack:distribute;align-content:space-around}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-space-around{-ms-flex-pack:distribute;justify-content:space-around}.justify-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.justify-self-start{justify-self:flex-start}.justify-self-end{justify-self:flex-end}.justify-self-center{justify-self:center}.justify-self-baseline{justify-self:baseline}.grow,.spacer{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.grow{-ms-flex-negative:0!important;flex-shrink:0!important}.shrink{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important;-ms-flex-negative:1!important;flex-shrink:1!important}.scroll-y{overflow-y:auto}.fill-height{height:100%}.hide-overflow{overflow:hidden!important}.show-overflow{overflow:visible!important}.ellipsis,.no-wrap{white-space:nowrap}.ellipsis{overflow:hidden;text-overflow:ellipsis}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-flex>*,.d-inline-flex>*{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.d-block{display:block!important}.d-inline-block{display:inline-block!important}.d-inline{display:inline!important}@media only screen and (min-width:960px){.container{max-width:900px}}@media only screen and (min-width:1264px){.container{max-width:1185px}}@media only screen and (min-width:1904px){.container{max-width:1785px}}@media only screen and (max-width:959px){.container{padding:16px}}@media (min-width:0){.flex.xs1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xs1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.xs2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xs2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.xs3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xs3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.xs4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xs4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.xs5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xs5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.xs6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xs6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.xs7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xs7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.xs8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xs8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.xs9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xs9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.xs10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xs10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.xs11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xs11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.xs12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xs12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-xs0{margin-left:0}.flex.offset-xs1{margin-left:8.333333333333332%}.flex.offset-xs2{margin-left:16.666666666666664%}.flex.offset-xs3{margin-left:25%}.flex.offset-xs4{margin-left:33.33333333333333%}.flex.offset-xs5{margin-left:41.66666666666667%}.flex.offset-xs6{margin-left:50%}.flex.offset-xs7{margin-left:58.333333333333336%}.flex.offset-xs8{margin-left:66.66666666666666%}.flex.offset-xs9{margin-left:75%}.flex.offset-xs10{margin-left:83.33333333333334%}.flex.offset-xs11{margin-left:91.66666666666666%}.flex.offset-xs12{margin-left:100%}}@media (min-width:600px){.flex.sm1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-sm1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.sm2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-sm2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.sm3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-sm3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.sm4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-sm4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.sm5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-sm5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.sm6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-sm6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.sm7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-sm7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.sm8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-sm8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.sm9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-sm9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.sm10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-sm10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.sm11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-sm11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.sm12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-sm12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-sm0{margin-left:0}.flex.offset-sm1{margin-left:8.333333333333332%}.flex.offset-sm2{margin-left:16.666666666666664%}.flex.offset-sm3{margin-left:25%}.flex.offset-sm4{margin-left:33.33333333333333%}.flex.offset-sm5{margin-left:41.66666666666667%}.flex.offset-sm6{margin-left:50%}.flex.offset-sm7{margin-left:58.333333333333336%}.flex.offset-sm8{margin-left:66.66666666666666%}.flex.offset-sm9{margin-left:75%}.flex.offset-sm10{margin-left:83.33333333333334%}.flex.offset-sm11{margin-left:91.66666666666666%}.flex.offset-sm12{margin-left:100%}}@media (min-width:960px){.flex.md1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-md1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.md2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-md2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.md3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-md3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.md4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-md4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.md5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-md5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.md6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-md6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.md7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-md7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.md8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-md8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.md9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-md9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.md10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-md10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.md11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-md11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.md12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-md12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-md0{margin-left:0}.flex.offset-md1{margin-left:8.333333333333332%}.flex.offset-md2{margin-left:16.666666666666664%}.flex.offset-md3{margin-left:25%}.flex.offset-md4{margin-left:33.33333333333333%}.flex.offset-md5{margin-left:41.66666666666667%}.flex.offset-md6{margin-left:50%}.flex.offset-md7{margin-left:58.333333333333336%}.flex.offset-md8{margin-left:66.66666666666666%}.flex.offset-md9{margin-left:75%}.flex.offset-md10{margin-left:83.33333333333334%}.flex.offset-md11{margin-left:91.66666666666666%}.flex.offset-md12{margin-left:100%}}@media (min-width:1264px){.flex.lg1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-lg1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.lg2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-lg2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.lg3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-lg3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.lg4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-lg4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.lg5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-lg5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.lg6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-lg6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.lg7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-lg7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.lg8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-lg8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.lg9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-lg9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.lg10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-lg10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.lg11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-lg11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.lg12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-lg12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-lg0{margin-left:0}.flex.offset-lg1{margin-left:8.333333333333332%}.flex.offset-lg2{margin-left:16.666666666666664%}.flex.offset-lg3{margin-left:25%}.flex.offset-lg4{margin-left:33.33333333333333%}.flex.offset-lg5{margin-left:41.66666666666667%}.flex.offset-lg6{margin-left:50%}.flex.offset-lg7{margin-left:58.333333333333336%}.flex.offset-lg8{margin-left:66.66666666666666%}.flex.offset-lg9{margin-left:75%}.flex.offset-lg10{margin-left:83.33333333333334%}.flex.offset-lg11{margin-left:91.66666666666666%}.flex.offset-lg12{margin-left:100%}}@media (min-width:1904px){.flex.xl1{-ms-flex-preferred-size:8.333333333333332%;flex-basis:8.333333333333332%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:8.333333333333332%}.flex.order-xl1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.flex.xl2{-ms-flex-preferred-size:16.666666666666664%;flex-basis:16.666666666666664%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:16.666666666666664%}.flex.order-xl2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.flex.xl3{-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:25%}.flex.order-xl3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.flex.xl4{-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:33.33333333333333%}.flex.order-xl4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.flex.xl5{-ms-flex-preferred-size:41.66666666666667%;flex-basis:41.66666666666667%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:41.66666666666667%}.flex.order-xl5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.flex.xl6{-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:50%}.flex.order-xl6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.flex.xl7{-ms-flex-preferred-size:58.333333333333336%;flex-basis:58.333333333333336%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:58.333333333333336%}.flex.order-xl7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.flex.xl8{-ms-flex-preferred-size:66.66666666666666%;flex-basis:66.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:66.66666666666666%}.flex.order-xl8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.flex.xl9{-ms-flex-preferred-size:75%;flex-basis:75%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:75%}.flex.order-xl9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.flex.xl10{-ms-flex-preferred-size:83.33333333333334%;flex-basis:83.33333333333334%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:83.33333333333334%}.flex.order-xl10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.flex.xl11{-ms-flex-preferred-size:91.66666666666666%;flex-basis:91.66666666666666%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:91.66666666666666%}.flex.order-xl11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.flex.xl12{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;max-width:100%}.flex.order-xl12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.flex.offset-xl0{margin-left:0}.flex.offset-xl1{margin-left:8.333333333333332%}.flex.offset-xl2{margin-left:16.666666666666664%}.flex.offset-xl3{margin-left:25%}.flex.offset-xl4{margin-left:33.33333333333333%}.flex.offset-xl5{margin-left:41.66666666666667%}.flex.offset-xl6{margin-left:50%}.flex.offset-xl7{margin-left:58.333333333333336%}.flex.offset-xl8{margin-left:66.66666666666666%}.flex.offset-xl9{margin-left:75%}.flex.offset-xl10{margin-left:83.33333333333334%}.flex.offset-xl11{margin-left:91.66666666666666%}.flex.offset-xl12{margin-left:100%}}.v-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;-webkit-transition:none;transition:none}.v-content[data-booted=true]{-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1)}.v-content__wrap{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%;position:relative}@media print{@-moz-document url-prefix(){.v-content{display:block}}}.theme--light.v-jumbotron .v-jumbotron__content{color:rgba(0,0,0,.87)}.theme--dark.v-jumbotron .v-jumbotron__content{color:#fff}.v-jumbotron{display:block;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-jumbotron__wrapper{height:100%;overflow:hidden;position:relative;-webkit-transition:inherit;transition:inherit;width:100%}.v-jumbotron__background{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;-webkit-transition:inherit;transition:inherit}.v-jumbotron__image{-webkit-transform:translate(-50%,-50%);left:50%;min-width:100%;position:absolute;top:50%;transform:translate(-50%,-50%);-webkit-transition:inherit;transition:inherit;will-change:transform}.v-jumbotron__content{height:100%;position:relative;-webkit-transition:inherit;transition:inherit}.theme--light.v-navigation-drawer{background-color:#fff}.theme--light.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:rgba(0,0,0,.12)}.theme--light.v-navigation-drawer .v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-navigation-drawer{background-color:#424242}.theme--dark.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border{background-color:hsla(0,0%,100%,.12)}.theme--dark.v-navigation-drawer .v-divider{border-color:hsla(0,0%,100%,.12)}.v-navigation-drawer{-webkit-overflow-scrolling:touch;display:block;left:0;max-width:100%;overflow-x:hidden;overflow-y:auto;pointer-events:auto;top:0;-webkit-transition:none;transition:none;will-change:transform;z-index:3}.v-navigation-drawer[data-booted=true]{-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1);transition-property:width,-webkit-transform;-webkit-transition-property:width,-webkit-transform;transition-property:transform,width;transition-property:transform,width,-webkit-transform}.v-navigation-drawer__border{height:100%;position:absolute;right:0;top:0;width:1px}.v-navigation-drawer.v-navigation-drawer--right:after{left:0;right:auto}.v-navigation-drawer--right{left:auto;right:0}.v-navigation-drawer--right>.v-navigation-drawer__border{left:0;right:auto}.v-navigation-drawer--absolute{position:absolute}.v-navigation-drawer--fixed{position:fixed}.v-navigation-drawer--floating:after{display:none}.v-navigation-drawer--mini-variant{overflow:hidden}.v-navigation-drawer--mini-variant .v-list__group__header__prepend-icon{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%}.v-navigation-drawer--mini-variant .v-list__tile__action,.v-navigation-drawer--mini-variant .v-list__tile__avatar{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:48px}.v-navigation-drawer--mini-variant .v-list__tile:after,.v-navigation-drawer--mini-variant .v-list__tile__content{opacity:0}.v-navigation-drawer--mini-variant .v-divider,.v-navigation-drawer--mini-variant .v-list--group,.v-navigation-drawer--mini-variant .v-subheader{display:none!important}.v-navigation-drawer--is-mobile,.v-navigation-drawer--temporary{z-index:6}.v-navigation-drawer--is-mobile:not(.v-navigation-drawer--close),.v-navigation-drawer--temporary:not(.v-navigation-drawer--close){-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.v-navigation-drawer .v-list{background:inherit}.v-navigation-drawer>.v-list .v-list__tile{font-weight:500;-webkit-transition:none;transition:none}.v-navigation-drawer>.v-list .v-list__tile--active .v-list__tile__title{color:inherit}.v-navigation-drawer>.v-list .v-list--group .v-list__tile{font-weight:400}.v-navigation-drawer>.v-list .v-list--group__header--active:after{background:transparent}.v-navigation-drawer>.v-list:not(.v-list--dense) .v-list__tile{font-size:14px}.theme--light.v-pagination .v-pagination__item{background:#fff;color:#000}.theme--light.v-pagination .v-pagination__item--active{color:#fff}.theme--light.v-pagination .v-pagination__navigation{background:#fff}.theme--light.v-pagination .v-pagination__navigation .v-icon{color:rgba(0,0,0,.54)}.theme--dark.v-pagination .v-pagination__item{background:#424242;color:#fff}.theme--dark.v-pagination .v-pagination__item--active{color:#fff}.theme--dark.v-pagination .v-pagination__navigation{background:#424242}.theme--dark.v-pagination .v-pagination__navigation .v-icon{color:#fff}.v-pagination{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;list-style-type:none;margin:0;max-width:100%;padding:0}.v-pagination>li{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.v-pagination--circle .v-pagination__item,.v-pagination--circle .v-pagination__more,.v-pagination--circle .v-pagination__navigation{border-radius:50%}.v-pagination--disabled{opacity:.6;pointer-events:none}.v-pagination__item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border-radius:4px;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:14px;height:34px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:.3rem;text-decoration:none;-webkit-transition:.3s cubic-bezier(0,0,.2,1);transition:.3s cubic-bezier(0,0,.2,1);width:34px}.v-pagination__item--active{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-pagination__navigation{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:2rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:.3rem 10px;text-decoration:none;width:2rem}.v-pagination__navigation .v-icon{font-size:2rem;-webkit-transition:.2s cubic-bezier(.4,0,.6,1);transition:.2s cubic-bezier(.4,0,.6,1);vertical-align:middle}.v-pagination__navigation--disabled{opacity:.6;pointer-events:none}.v-pagination__more{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:2rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:.3rem;width:2rem}.v-parallax{overflow:hidden;position:relative;z-index:0}.v-parallax__image-container{bottom:0;contain:strict;left:0;position:absolute;right:0;top:0;z-index:1}.v-parallax__image{-webkit-transform:translate(-50%);bottom:0;display:none;left:50%;min-height:100%;min-width:100%;position:absolute;transform:translate(-50%);-webkit-transition:opacity .3s cubic-bezier(.25,.8,.5,1);transition:opacity .3s cubic-bezier(.25,.8,.5,1);will-change:transform;z-index:1}.v-parallax__content{color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 1rem;position:relative;z-index:2}.v-input--radio-group .v-radio{margin-bottom:8px}.v-input--radio-group__input{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.v-input--radio-group__input>.v-label{padding-bottom:8px}.v-input--radio-group--row .v-input--radio-group__input{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.v-input--radio-group--column .v-input--radio-group__input{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.theme--light.v-radio--is-disabled label{color:rgba(0,0,0,.38)}.theme--light.v-radio--is-disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--dark.v-radio--is-disabled label{color:hsla(0,0%,100%,.5)}.theme--dark.v-radio--is-disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.v-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:auto;margin-right:16px;outline:none}.v-radio--is-disabled{pointer-events:none}.theme--light.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#bdbdbd}.theme--dark.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb{background:#424242}.v-input--range-slider.v-input--is-disabled .v-slider__track-fill{display:none}.v-input--range-slider.v-input--is-disabled.v-input--slider .v-slider.v-slider .v-slider__thumb{border-color:transparent}.theme--light.v-input--slider .v-slider__track,.theme--light.v-input--slider .v-slider__track-fill{background:rgba(0,0,0,.26)}.theme--light.v-input--slider .v-slider__track__container:after{border:1px solid rgba(0,0,0,.87)}.theme--light.v-input--slider .v-slider__ticks{border-color:rgba(0,0,0,.87);color:rgba(0,0,0,.54)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid rgba(0,0,0,.26)}.theme--light.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid rgba(0,0,0,.38)}.theme--light.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:rgba(0,0,0,.26)}.theme--light.v-input--slider.v-input--slider--is-active .v-slider__track{background:rgba(0,0,0,.38)}.theme--dark.v-input--slider .v-slider__track,.theme--dark.v-input--slider .v-slider__track-fill{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider .v-slider__track__container:after{border:1px solid #fff}.theme--dark.v-input--slider .v-slider__ticks{border-color:#fff;color:hsla(0,0%,100%,.7)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb-label{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty) .v-slider__thumb{border:3px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider:not(.v-input--is-dirty).v-input--slider--is-active .v-slider__thumb{border:3px solid hsla(0,0%,100%,.3)}.theme--dark.v-input--slider.v-input--is-disabled .v-slider__thumb{border:5px solid hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{background:hsla(0,0%,100%,.2)}.theme--dark.v-input--slider.v-input--slider--is-active .v-slider__track{background:hsla(0,0%,100%,.3)}.application--is-rtl .v-input--slider .v-label{margin-left:16px;margin-right:0}.v-input--slider{margin-top:16px}.v-input--slider.v-input--is-focused .v-slider__thumb-container--is-active:not(.v-slider__thumb-container--show-label):before{-webkit-transform:scale(1);opacity:.2;transform:scale(1)}.v-input--slider.v-input--is-focused .v-slider__track{-webkit-transition:none;transition:none}.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider .v-slider__tick,.v-input--slider.v-input--is-focused.v-input--slider--ticks .v-slider__track__container:after,.v-input--slider.v-input--slider--ticks .v-slider__ticks.v-slider__ticks--always-show{opacity:1}.v-input--slider.v-input--slider--ticks-labels .v-input__slot{margin-bottom:16px}.v-input--slider.v-input--is-readonly{pointer-events:none}.v-input--slider.v-input--is-disabled .v-slider__thumb{-webkit-transform:translateY(-50%) scale(.45);transform:translateY(-50%) scale(.45)}.v-input--slider.v-input--is-disabled.v-input--is-dirty .v-slider__thumb{border:0 solid transparent}.v-input--slider .v-input__slot>:first-child:not(:only-child){margin-right:16px}.v-slider{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;height:32px;outline:none;position:relative;user-select:none}.v-slider input{cursor:default;opacity:0;padding:0;width:100%}.v-slider__track__container{-webkit-transform:translateY(-50%);height:2px;left:0;overflow:hidden;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__track__container:after{content:\"\";height:2px;opacity:0;position:absolute;right:0;top:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:2px}.v-slider__thumb,.v-slider__ticks,.v-slider__track{position:absolute;top:0}.v-slider__track{-webkit-transform-origin:right;overflow:hidden;transform-origin:right}.v-slider__track,.v-slider__track-fill{height:2px;left:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-slider__track-fill{-webkit-transform-origin:left;position:absolute;transform-origin:left}.v-slider__ticks-container{-webkit-transform:translateY(-50%);height:2px;left:0;position:absolute;top:50%;transform:translateY(-50%);width:100%}.v-slider__ticks{border-style:solid;opacity:0;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__ticks>span{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateX(-50%);-webkit-user-select:none;position:absolute;top:8px;transform:translateX(-50%);user-select:none;white-space:nowrap}.v-slider__ticks:first-child>span{-webkit-transform:translateX(0);transform:translateX(0)}.v-slider__ticks:last-child>span{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.v-slider:not(.v-input--is-dirty) .v-slider__ticks:first-child{border-color:transparent}.v-slider__thumb-container{position:absolute;top:50%;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__thumb-container:before{-webkit-transform:scale(.2);background:currentColor;border-radius:50%;color:inherit;content:\"\";height:32px;left:-16px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;top:-16px;transform:scale(.2);-webkit-transition:.4s cubic-bezier(0,0,.2,1);transition:.4s cubic-bezier(0,0,.2,1);width:32px;will-change:transform,opacity}.v-slider__thumb{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-50%) scale(.6);-webkit-user-select:none;background:transparent;border-radius:50%;height:24px;left:-12px;top:50%;transform:translateY(-50%) scale(.6);-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;width:24px}.v-slider--is-active .v-slider__thumb-container--is-active .v-slider__thumb{-webkit-transform:translateY(-50%) scale(1);transform:translateY(-50%) scale(1)}.v-slider--is-active .v-slider__thumb-container--is-active.v-slider__thumb-container--show-label .v-slider__thumb{-webkit-transform:translateY(-50%) scale(0);transform:translateY(-50%) scale(0)}.v-slider--is-active .v-slider__ticks-container .v-slider__ticks{opacity:1}.v-slider__thumb-label__container{top:0}.v-slider__thumb-label,.v-slider__thumb-label__container{left:0;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1)}.v-slider__thumb-label{-moz-user-select:none;-ms-user-select:none;-webkit-transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50% 50% 0;bottom:100%;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px;height:32px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);user-select:none;width:32px}.v-slider__thumb-label>*{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.v-slider__track,.v-slider__track-fill{position:absolute}.v-rating .v-icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:50%;padding:.5rem;user-select:none}.v-rating--readonly .v-icon{pointer-events:none}.v-rating--dense .v-icon{padding:.1rem}.v-snack{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;left:0;pointer-events:none;position:fixed;right:0;z-index:1000}.v-snack--absolute{position:absolute}.v-snack--top{top:0}.v-snack--bottom{bottom:0}.v-snack__wrapper{background-color:#323232;-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);pointer-events:auto}.v-snack__content,.v-snack__wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.v-snack__content{height:48px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden;padding:14px 24px}.v-snack__content .v-btn{color:#fff;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;margin:0 0 0 24px;min-width:auto;padding:8px;width:auto}.v-snack__content .v-btn__content{margin:-2px}.v-snack__content .v-btn:before{display:none}.v-snack--multi-line .v-snack__content{height:80px;padding:24px}.v-snack--vertical .v-snack__content{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:112px;padding:24px 24px 14px}.v-snack--vertical .v-snack__content .v-btn.v-btn{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-left:0;margin-top:24px;padding:0}.v-snack--vertical .v-snack__content .v-btn__content{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin:0}.v-snack--auto-height .v-snack__content{height:auto}.v-snack-transition-enter-active,.v-snack-transition-leave-active{transition:-webkit-transform .4s cubic-bezier(.25,.8,.5,1);-webkit-transition:-webkit-transform .4s cubic-bezier(.25,.8,.5,1);transition:transform .4s cubic-bezier(.25,.8,.5,1);transition:transform .4s cubic-bezier(.25,.8,.5,1), -webkit-transform .4s cubic-bezier(.25,.8,.5,1);transition:transform .4s cubic-bezier(.25,.8,.5,1),-webkit-transform .4s cubic-bezier(.25,.8,.5,1)}.v-snack-transition-enter-active .v-snack__content,.v-snack-transition-leave-active .v-snack__content{-webkit-transition:opacity .3s linear .1s;transition:opacity .3s linear .1s}.v-snack-transition-enter .v-snack__content{opacity:0}.v-snack-transition-enter-to .v-snack__content,.v-snack-transition-leave .v-snack__content{opacity:1}.v-snack-transition-enter.v-snack.v-snack--top,.v-snack-transition-leave-to.v-snack.v-snack--top{-webkit-transform:translateY(calc(-100% - 8px));transform:translateY(calc(-100% - 8px))}.v-snack-transition-enter.v-snack.v-snack--bottom,.v-snack-transition-leave-to.v-snack.v-snack--bottom{-webkit-transform:translateY(100%);transform:translateY(100%)}@media only screen and (min-width:600px){.v-snack__wrapper{border-radius:2px;margin:0 auto;max-width:568px;min-width:288px;width:auto}.v-snack--left .v-snack__wrapper{margin-left:0}.v-snack--right .v-snack__wrapper{margin-right:0}.v-snack--left,.v-snack--right{margin:0 24px}.v-snack--left.v-snack--top,.v-snack--right.v-snack--top{-webkit-transform:translateY(24px);transform:translateY(24px)}.v-snack--left.v-snack--bottom,.v-snack--right.v-snack--bottom{-webkit-transform:translateY(-24px);transform:translateY(-24px)}.v-snack__content .v-btn:first-of-type{margin-left:42px}}.v-speed-dial{position:relative}.v-speed-dial--absolute{position:absolute}.v-speed-dial--fixed{position:fixed}.v-speed-dial--absolute,.v-speed-dial--fixed{z-index:4}.v-speed-dial--absolute>.v-btn--floating,.v-speed-dial--fixed>.v-btn--floating{margin:0}.v-speed-dial--top:not(.v-speed-dial--absolute){top:16px}.v-speed-dial--top.v-speed-dial--absolute{-webkit-transform:translateY(-50%);top:50%;transform:translateY(-50%)}.v-speed-dial--bottom:not(.v-speed-dial--absolute){bottom:16px}.v-speed-dial--bottom.v-speed-dial--absolute{-webkit-transform:translateY(50%);bottom:50%;transform:translateY(50%)}.v-speed-dial--left{left:16px}.v-speed-dial--right{right:16px}.v-speed-dial--direction-left .v-speed-dial__list,.v-speed-dial--direction-right .v-speed-dial__list{height:100%;top:0}.v-speed-dial--direction-bottom .v-speed-dial__list,.v-speed-dial--direction-top .v-speed-dial__list{left:0;width:100%}.v-speed-dial--direction-top .v-speed-dial__list{bottom:100%;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-speed-dial--direction-right .v-speed-dial__list{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;left:100%}.v-speed-dial--direction-bottom .v-speed-dial__list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;top:100%}.v-speed-dial--direction-left .v-speed-dial__list{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;right:100%}.v-speed-dial__list{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute}.v-speed-dial__list .v-btn:first-child{-webkit-transition-delay:.05s;transition-delay:.05s}.v-speed-dial__list .v-btn:nth-child(2){-webkit-transition-delay:.1s;transition-delay:.1s}.v-speed-dial__list .v-btn:nth-child(3){-webkit-transition-delay:.15s;transition-delay:.15s}.v-speed-dial__list .v-btn:nth-child(4){-webkit-transition-delay:.2s;transition-delay:.2s}.v-speed-dial__list .v-btn:nth-child(5){-webkit-transition-delay:.25s;transition-delay:.25s}.v-speed-dial__list .v-btn:nth-child(6){-webkit-transition-delay:.3s;transition-delay:.3s}.v-speed-dial__list .v-btn:nth-child(7){-webkit-transition-delay:.35s;transition-delay:.35s}.theme--light.v-stepper{background:#fff}.theme--light.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:rgba(0,0,0,.38)}.theme--light.v-stepper .v-stepper__step__step,.theme--light.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--light.v-stepper .v-stepper__header .v-divider{border-color:rgba(0,0,0,.12)}.theme--light.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--editable:hover{background:rgba(0,0,0,.06)}.theme--light.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--complete .v-stepper__label{color:rgba(0,0,0,.87)}.theme--light.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:rgba(0,0,0,.54)}.theme--light.v-stepper .v-stepper__label{color:rgba(0,0,0,.38)}.theme--light.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--light.v-stepper .v-stepper__label small{color:rgba(0,0,0,.54)}.theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid rgba(0,0,0,.12)}.theme--dark.v-stepper{background:#303030}.theme--dark.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:hsla(0,0%,100%,.5)}.theme--dark.v-stepper .v-stepper__step__step,.theme--dark.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--dark.v-stepper .v-stepper__header .v-divider{border-color:hsla(0,0%,100%,.12)}.theme--dark.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--editable:hover{background:hsla(0,0%,100%,.06)}.theme--dark.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--complete .v-stepper__label{color:hsla(0,0%,100%,.87)}.theme--dark.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:hsla(0,0%,100%,.75)}.theme--dark.v-stepper .v-stepper__label{color:hsla(0,0%,100%,.5)}.theme--dark.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label,.theme--dark.v-stepper .v-stepper__label small{color:hsla(0,0%,100%,.7)}.theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid hsla(0,0%,100%,.12)}.v-stepper{overflow:hidden;position:relative}.v-stepper,.v-stepper__header{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-stepper__header{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:72px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.v-stepper__header .v-divider{-ms-flex-item-align:center;align-self:center;margin:0 -16px}.v-stepper__items{overflow:hidden;position:relative}.v-stepper__step__step{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:8px;min-width:24px;-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);width:24px}.v-stepper__step__step .v-icon{font-size:18px}.v-stepper__step{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:24px;position:relative}.v-stepper__step--active .v-stepper__label{-webkit-transition:.3s cubic-bezier(.4,0,.6,1);transition:.3s cubic-bezier(.4,0,.6,1)}.v-stepper__step--editable{cursor:pointer}.v-stepper__step.v-stepper__step--error .v-stepper__step__step{background:transparent;color:inherit}.v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon{color:inherit;font-size:24px}.v-stepper__step.v-stepper__step--error .v-stepper__label{color:inherit;font-weight:500;text-shadow:none}.v-stepper__step.v-stepper__step--error .v-stepper__label small{color:inherit}.v-stepper__label{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:left}.v-stepper__label small{font-size:12px;font-weight:300;text-shadow:none}.v-stepper__wrapper{overflow:hidden;-webkit-transition:none;transition:none}.v-stepper__content{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:24px 24px 16px;top:0;width:100%}.v-stepper__content>.v-btn{margin:24px 8px 8px 0}.v-stepper--is-booted .v-stepper__content,.v-stepper--is-booted .v-stepper__wrapper{-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-stepper--vertical{padding-bottom:36px}.v-stepper--vertical .v-stepper__content{margin:-8px -36px -16px 36px;padding:16px 60px 16px 23px;width:auto}.v-stepper--vertical .v-stepper__step{padding:24px 24px 16px}.v-stepper--vertical .v-stepper__step__step{margin-right:12px}.v-stepper--alt-labels .v-stepper__header{height:auto}.v-stepper--alt-labels .v-stepper__header .v-divider{-ms-flex-item-align:start;align-self:flex-start;margin:35px -67px 0}.v-stepper--alt-labels .v-stepper__step{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-preferred-size:175px;flex-basis:175px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.v-stepper--alt-labels .v-stepper__step small{-ms-flex-item-align:center;align-self:center}.v-stepper--alt-labels .v-stepper__step__step{margin-bottom:11px;margin-right:0}@media only screen and (max-width:959px){.v-stepper:not(.v-stepper--vertical) .v-stepper__label{display:none}.v-stepper:not(.v-stepper--vertical) .v-stepper__step__step{margin-right:0}}.theme--light.v-input--switch__thumb{color:#fafafa}.theme--light.v-input--switch__track{color:rgba(0,0,0,.38)}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#bdbdbd!important}.theme--light.v-input--switch.v-input--is-disabled .v-input--switch__track{color:rgba(0,0,0,.12)!important}.theme--dark.v-input--switch__thumb{color:#bdbdbd}.theme--dark.v-input--switch__track{color:hsla(0,0%,100%,.3)}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__thumb{color:#424242!important}.theme--dark.v-input--switch.v-input--is-disabled .v-input--switch__track{color:hsla(0,0%,100%,.1)!important}.application--is-rtl .v-input--switch .v-input--selection-controls__ripple{left:auto;right:-14px}.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.application--is-rtl .v-input--switch.v-input--is-dirty .v-input--switch__thumb{-webkit-transform:translate(-16px);transform:translate(-16px)}.v-input--switch__thumb,.v-input--switch__track{background-color:currentColor;pointer-events:none;-webkit-transition:inherit;transition:inherit}.v-input--switch__track{border-radius:8px;height:14px;left:2px;opacity:.6;position:absolute;right:2px;top:calc(50% - 7px)}.v-input--switch__thumb{border-radius:50%;-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);height:20px;position:relative;top:calc(50% - 10px);width:20px}.v-input--switch .v-input--selection-controls__input{width:38px}.v-input--switch .v-input--selection-controls__ripple{left:-14px;top:calc(50% - 24px)}.v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.v-input--switch.v-input--is-dirty .v-input--switch__thumb{-webkit-transform:translate(16px);transform:translate(16px)}.theme--light.v-system-bar{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.theme--light.v-system-bar .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-system-bar--lights-out{background-color:hsla(0,0%,100%,.7)!important}.theme--dark.v-system-bar{background-color:#000;color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar .v-icon{color:hsla(0,0%,100%,.7)}.theme--dark.v-system-bar--lights-out{background-color:rgba(0,0,0,.2)!important}.v-system-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;font-weight:500;padding:0 8px}.v-system-bar .v-icon{font-size:16px}.v-system-bar--absolute,.v-system-bar--fixed{left:0;top:0;width:100%;z-index:3}.v-system-bar--fixed{position:fixed}.v-system-bar--absolute{position:absolute}.v-system-bar--status .v-icon{margin-right:4px}.v-system-bar--window .v-icon{font-size:20px;margin-right:8px}.theme--light.v-tabs__bar{background-color:#fff}.theme--light.v-tabs__bar .v-tabs__div{color:rgba(0,0,0,.87)}.theme--light.v-tabs__bar .v-tabs__item--disabled{color:rgba(0,0,0,.26)}.theme--dark.v-tabs__bar{background-color:#424242}.theme--dark.v-tabs__bar .v-tabs__div{color:#fff}.theme--dark.v-tabs__bar .v-tabs__item--disabled{color:hsla(0,0%,100%,.3)}.v-tabs,.v-tabs__bar{position:relative}.v-tabs__icon{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:100%;position:absolute;top:0;user-select:none;width:32px}.v-tabs__icon--prev{left:4px}.v-tabs__icon--next{right:4px}.v-tabs__wrapper{contain:content;display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden}.v-tabs__wrapper--show-arrows{margin-left:40px;margin-right:40px}.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:16px}.v-tabs__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;height:48px;list-style-type:none;position:relative;transition:-webkit-transform .6s cubic-bezier(.86,0,.07,1);-webkit-transition:-webkit-transform .6s cubic-bezier(.86,0,.07,1);transition:transform .6s cubic-bezier(.86,0,.07,1);transition:transform .6s cubic-bezier(.86,0,.07,1), -webkit-transform .6s cubic-bezier(.86,0,.07,1);transition:transform .6s cubic-bezier(.86,0,.07,1),-webkit-transform .6s cubic-bezier(.86,0,.07,1);white-space:nowrap}.v-tabs__container--overflow .v-tabs__div{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.v-tabs__container--grow .v-tabs__div{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:none}.v-tabs__container--icons-and-text{height:72px}.v-tabs__container--align-with-title{padding-left:56px}.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:72px}.v-tabs__container--centered .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--centered>.v-tabs__div:first-child,.v-tabs__container--fixed-tabs .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--fixed-tabs>.v-tabs__div:first-child,.v-tabs__container--right .v-tabs__slider-wrapper+.v-tabs__div,.v-tabs__container--right>.v-tabs__div:first-child{margin-left:auto}.v-tabs__container--centered>.v-tabs__div:last-child,.v-tabs__container--fixed-tabs>.v-tabs__div:last-child{margin-right:auto}.v-tabs__container--icons-and-text .v-tabs__item{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.v-tabs__container--icons-and-text .v-tabs__item .v-icon{margin-bottom:6px}.v-tabs__div{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;font-size:14px;font-weight:500;height:inherit;line-height:normal;max-width:264px;text-align:center;text-transform:uppercase;vertical-align:middle}.v-tabs__item{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;max-width:inherit;padding:6px 12px;text-decoration:none;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none;white-space:normal}.v-tabs__item:not(.v-tabs__item--active){opacity:.7}.v-tabs__item--disabled{pointer-events:none}.v-tabs__slider{height:2px;width:100%}.v-tabs__slider-wrapper{bottom:0;margin:0!important;position:absolute;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1)}.v-tabs__items{overflow:hidden;position:relative}.v-tabs__content{transition:-webkit-transform .4s cubic-bezier(.86,0,.07,1);-webkit-transition:-webkit-transform .4s cubic-bezier(.86,0,.07,1);transition:transform .4s cubic-bezier(.86,0,.07,1);transition:transform .4s cubic-bezier(.86,0,.07,1), -webkit-transform .4s cubic-bezier(.86,0,.07,1);transition:transform .4s cubic-bezier(.86,0,.07,1),-webkit-transform .4s cubic-bezier(.86,0,.07,1);width:100%}@media only screen and (max-width:599px){.v-tabs__wrapper--show-arrows .v-tabs__container--align-with-title{padding-left:24px}.v-tabs__container--fixed-tabs .v-tabs__div{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}}@media only screen and (min-width:600px){.v-tabs__container--fixed-tabs .v-tabs__div,.v-tabs__container--icons-and-text .v-tabs__div{min-width:160px}}.theme--light.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:#fff}.theme--dark.v-textarea.v-text-field--solo-inverted.v-text-field--solo.v-input--is-focused textarea{color:rgba(0,0,0,.87)}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot{margin-left:-12px;margin-right:0}.application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-left:12px;padding-right:0}.v-textarea textarea{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px;max-width:100%;min-height:32px;outline:none;padding:7px 0 8px;width:100%}.v-textarea .v-text-field__prefix{-ms-flex-item-align:start;align-self:start;padding-top:4px}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__slot textarea,.v-textarea.v-text-field--full-width .v-text-field__slot textarea{margin-top:0}.v-textarea.v-text-field--full-width.v-text-field--single-line .v-text-field__details,.v-textarea.v-text-field--full-width .v-text-field__details{bottom:4px}.v-textarea.v-text-field--enclosed .v-text-field__slot{margin-right:-12px}.v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-right:12px}.v-textarea.v-text-field--box .v-text-field__prefix,.v-textarea.v-text-field--box textarea,.v-textarea.v-text-field--enclosed .v-text-field__prefix,.v-textarea.v-text-field--enclosed textarea{margin-top:24px}.v-textarea.v-text-field--box.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--single-line textarea,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--single-line textarea{margin-top:12px}.v-textarea.v-text-field--box.v-text-field--single-line .v-label,.v-textarea.v-text-field--enclosed.v-text-field--single-line .v-label{top:18px}.v-textarea.v-text-field--box.v-text-field--single-line.v-text-field--outline .v-input__control,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-text-field--outline .v-input__control{padding-top:0}.v-textarea.v-text-field--solo{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.v-textarea.v-text-field--solo .v-input__append-inner,.v-textarea.v-text-field--solo .v-input__append-outer,.v-textarea.v-text-field--solo .v-input__prepend-inner,.v-textarea.v-text-field--solo .v-input__prepend-outer{-ms-flex-item-align:start;align-self:flex-start;margin-top:16px}.v-textarea--auto-grow textarea{overflow:hidden}.v-textarea--no-resize textarea{resize:none}.v-time-picker-title{color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;line-height:1}.v-time-picker-title__time{white-space:nowrap}.v-time-picker-title__time .v-picker__title__btn,.v-time-picker-title__time span{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:70px;height:70px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.v-time-picker-title__ampm{-ms-flex-item-align:end;align-self:flex-end;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:16px;margin:8px 0 6px 8px;text-transform:uppercase}.v-time-picker-title__ampm div:only-child{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.v-picker__title--landscape .v-time-picker-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.v-picker__title--landscape .v-time-picker-title__time{text-align:right}.v-picker__title--landscape .v-time-picker-title__time .v-picker__title__btn,.v-picker__title--landscape .v-time-picker-title__time span{font-size:55px;height:55px}.v-picker__title--landscape .v-time-picker-title__ampm{-ms-flex-item-align:auto;align-self:auto;margin:16px 0 0;text-align:center}.theme--light.v-time-picker-clock{background:#e0e0e0}.theme--light.v-time-picker-clock>span.disabled{color:rgba(0,0,0,.26)}.theme--light.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate>span.active{background-color:#bdbdbd}.theme--dark.v-time-picker-clock{background:#616161}.theme--dark.v-time-picker-clock>span.disabled,.theme--dark.v-time-picker-clock>span.disabled.active{color:hsla(0,0%,100%,.3)}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#757575}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand:after{color:#757575}.theme--dark.v-time-picker-clock--indeterminate>span.active{background-color:#757575}.v-time-picker-clock{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:100%;position:relative;-webkit-transition:.3s cubic-bezier(.25,.8,.5,1);transition:.3s cubic-bezier(.25,.8,.5,1);user-select:none}.v-time-picker-clock__container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px}.v-time-picker-clock__hand{-webkit-transform-origin:center bottom;bottom:50%;height:calc(50% - 28px);left:calc(50% - 1px);position:absolute;transform-origin:center bottom;width:2px;will-change:transform;z-index:1}.v-time-picker-clock__hand:before{background:transparent;border:2px solid;border-color:inherit;border-radius:100%;height:10px;top:-3%;width:10px}.v-time-picker-clock__hand:after,.v-time-picker-clock__hand:before{-webkit-transform:translate(-50%,-50%);content:\"\";left:50%;position:absolute;transform:translate(-50%,-50%)}.v-time-picker-clock__hand:after{background-color:inherit;border-color:inherit;border-radius:100%;border-style:solid;height:8px;top:100%;width:8px}.v-time-picker-clock>span{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:100%;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;height:40px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:calc(50% - 20px);position:absolute;text-align:center;top:calc(50% - 20px);user-select:none;width:40px}.v-time-picker-clock>span>span{z-index:1}.v-time-picker-clock>span:after,.v-time-picker-clock>span:before{-webkit-transform:translate(-50%,-50%);border-radius:100%;content:\"\";height:14px;height:40px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:14px;width:40px}.v-time-picker-clock>span.active{color:#fff;cursor:default;z-index:2}.v-time-picker-clock>span.disabled{pointer-events:none}.theme--light.v-toolbar{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-toolbar{background-color:#212121;color:#fff}.v-toolbar{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);position:relative;-webkit-transition:none;transition:none;width:100%;will-change:padding-left,padding-right}.v-toolbar[data-booted=true]{-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1)}.v-toolbar .v-text-field--box,.v-toolbar .v-text-field--enclosed{margin:0}.v-toolbar .v-text-field--box .v-text-field__details,.v-toolbar .v-text-field--enclosed .v-text-field__details{display:none}.v-toolbar .v-tabs{width:100%}.v-toolbar__title{font-size:20px;font-weight:500;letter-spacing:.02em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar__title:not(:first-child){margin-left:20px}.v-toolbar__content,.v-toolbar__extension{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 24px}.v-toolbar__content .v-btn--icon,.v-toolbar__extension .v-btn--icon{margin:6px}.v-toolbar__content>:first-child,.v-toolbar__extension>:first-child{margin-left:0}.v-toolbar__content>:first-child.v-btn--icon,.v-toolbar__extension>:first-child.v-btn--icon{margin-left:-6px}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:first-child.v-tooltip span .v-btn,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:first-child.v-tooltip span .v-btn{margin-left:0}.v-toolbar__content>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:first-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:first-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:first-child.v-tooltip span .v-btn--icon{margin-left:-6px}.v-toolbar__content>:last-child,.v-toolbar__extension>:last-child{margin-right:0}.v-toolbar__content>:last-child.v-btn--icon,.v-toolbar__extension>:last-child.v-btn--icon{margin-right:-6px}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__content>:last-child.v-tooltip span .v-btn,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn,.v-toolbar__extension>:last-child.v-tooltip span .v-btn{margin-right:0}.v-toolbar__content>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__content>:last-child.v-tooltip span .v-btn--icon,.v-toolbar__extension>:last-child.v-menu .v-menu__activator .v-btn--icon,.v-toolbar__extension>:last-child.v-tooltip span .v-btn--icon{margin-right:-6px}.v-toolbar__content>.v-list,.v-toolbar__extension>.v-list{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-height:100%}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-24px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-24px}.v-toolbar__extension>.v-toolbar__title{margin-left:72px}.v-toolbar__items{display:-webkit-box;display:-ms-flexbox;display:flex;height:inherit;max-width:100%;padding:0}.v-toolbar__items .v-btn{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center}.v-toolbar__items .v-tooltip,.v-toolbar__items .v-tooltip>span{height:inherit}.v-toolbar__items .v-btn:not(.v-btn--floating):not(.v-btn--icon),.v-toolbar__items .v-menu,.v-toolbar__items .v-menu__activator{height:inherit;margin:0}.v-toolbar .v-btn-toggle,.v-toolbar .v-overflow-btn{-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar .v-input{margin:0}.v-toolbar .v-overflow-btn .v-input__control:before,.v-toolbar .v-overflow-btn .v-input__slot:before{display:none}.v-toolbar--card{border-radius:2px 2px 0 0;-webkit-box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12);box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-toolbar--fixed{position:fixed;z-index:2}.v-toolbar--absolute,.v-toolbar--fixed{left:0;top:0}.v-toolbar--absolute{position:absolute;z-index:2}.v-toolbar--floating{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin:16px;width:auto}.v-toolbar--clipped{z-index:3}@media only screen and (max-width:959px){.v-toolbar__content,.v-toolbar__extension{padding:0 16px}.v-toolbar__content>.v-list:first-child,.v-toolbar__extension>.v-list:first-child{margin-left:-16px}.v-toolbar__content>.v-list:last-child,.v-toolbar__extension>.v-list:last-child{margin-right:-16px}}.v-tooltip{position:relative}.v-tooltip__content{background:#616161;border-radius:2px;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);color:#fff;display:inline-block;font-size:12px;padding:5px 8px;position:absolute;text-transform:none;-webkit-transition:.15s cubic-bezier(.25,.8,.5,1);transition:.15s cubic-bezier(.25,.8,.5,1);width:auto}.v-tooltip__content[class*=-active]{pointer-events:none}@media only screen and (max-width:959px){.v-tooltip .v-tooltip__content{padding:10px 16px}}"]} \ No newline at end of file diff --git a/web_test/production/static/img/logo.svg b/web_test/production/static/img/logo.svg new file mode 100644 index 0000000..3ca3c26 --- /dev/null +++ b/web_test/production/static/img/logo.svg @@ -0,0 +1 @@ +Time Cop \ No newline at end of file diff --git a/web_test/production/static/img/logo_dark.svg b/web_test/production/static/img/logo_dark.svg new file mode 100644 index 0000000..0d55e16 --- /dev/null +++ b/web_test/production/static/img/logo_dark.svg @@ -0,0 +1 @@ +Time CopLayer 1 \ No newline at end of file diff --git a/web_test/production/static/js/app.9bddbc1f5c768a018f59.js b/web_test/production/static/js/app.9bddbc1f5c768a018f59.js new file mode 100644 index 0000000..665df74 --- /dev/null +++ b/web_test/production/static/js/app.9bddbc1f5c768a018f59.js @@ -0,0 +1,2 @@ +webpackJsonp([1],{0:function(t,e){},"7zck":function(t,e){},NHnr:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=a("/5sW"),r={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-app",{attrs:{dark:t.dark}},[a("v-content",[a("router-view",{on:{toggleTheme:function(e){t.dark=e}}})],1)],1)},staticRenderFns:[]};var s=a("VU/8")({name:"App",data:function(){return{dark:!1}}},r,!1,function(t){a("etxH")},null,null).exports,n=a("/ocq"),o=a("mvHQ"),l=a.n(o),d=a("fZjL"),c=a.n(d),h={name:"Tform",data:function(){return{url:"http://localhost:5000/univariate/get",dataToProcess:"",loading:!1,future:5,rules:{json:function(t){try{JSON.parse(t)}catch(t){return"Data is not a valid json"}return!0},url:function(t){return!!/(http|https):\/\/(\w+:{0,1}\w*)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%!\\/]))?/.test(t)||"Url is not a valid"}},errorDialog:{value:!1,text:""},selectHeaderDialog:{selectedHeaders:{},value:!1,data:{}},multivariateData:{timeseries:[],main:[]},mainKey:null}},methods:{loadCSVFile:function(t){var e=this,a=t.target.files[0],i=new FileReader,r={};i.onload=function(t){for(var a=t.target.result.split("\n"),i=a[0].split(","),s=0;s0?this.multivariateData.timeseries.push({data:t[a]}):this.multivariateData.main=t[a];this.dataToProcess=l()(this.multivariateData)}this.multivariateData={timeseries:[],main:[]},this.mainKey="",this.selectHeaderDialog={selectedHeaders:{},value:!1,data:{}},this.$refs.csvFile.value=""},addToProcessList:function(t,e){this.selectHeaderDialog.selectedHeaders[e]?(this.mainKey===e&&(this.mainKey=null),this.$delete(this.selectHeaderDialog.selectedHeaders,e)):(this.mainKey||(this.mainKey=e),this.$set(this.selectHeaderDialog.selectedHeaders,e,t))},getUrl:function(){var t=this;this.loading=!0,this.$set(this.dataSet,"num_future",+this.future),this.$http.post(this.url,this.dataSet).then(function(e){t.$emit("response",{dataToProcess:t.dataSet,result:e.body}),t.loading=!1}).catch(function(e){t.loading=!1,t.errorDialog.value=!0,t.errorDialog.text=e,console.log(e)})}},computed:{dataSet:function(){return JSON.parse(this.dataToProcess)},amountSelectedData:function(){return c()(this.selectHeaderDialog.selectedHeaders).length}}},u={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-flex",{attrs:{xs12:""}},[a("v-card",[a("v-card-text",[a("v-flex",{attrs:{xs12:""}},[a("v-text-field",{attrs:{label:"Url",rules:[t.rules.url],outline:""},on:{keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getUrl(e):null}},model:{value:t.url,callback:function(e){t.url=e},expression:"url"}})],1),t._v(" "),a("v-flex",{attrs:{xs12:""}},[a("v-textarea",{attrs:{hint:"Paste your data or load CSV file","persistent-hint":"",outline:"",label:"DatatSet",rules:[t.rules.json]},on:{keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getUrl(e):null}},model:{value:t.dataToProcess,callback:function(e){t.dataToProcess=e},expression:"dataToProcess"}})],1),t._v(" "),a("v-layout",[a("v-flex",{attrs:{xs4:""}},[a("v-text-field",{attrs:{outline:"","single-line":"","persistent-hint":""},model:{value:t.future,callback:function(e){t.future=e},expression:"future"}})],1),t._v(" "),a("v-flex",{staticClass:"mt-3",attrs:{xs10:""}},[t._v("Steps in the future that you want to predict")])],1)],1),t._v(" "),a("v-card-actions",[a("v-btn",{attrs:{outline:"",color:"indigo"},on:{click:function(e){t.$refs.csvFile.click()}}},[t._v("csv")]),t._v(" "),a("input",{ref:"csvFile",attrs:{type:"file",hidden:"",accept:".csv, text/plain"},on:{change:t.loadCSVFile}}),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{color:"success"},on:{click:t.getUrl}},[t._v("Submit "),a("v-icon",{attrs:{right:""}},[t._v("send")])],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{"hide-overlay":"",persistent:"",width:"300"},model:{value:t.loading,callback:function(e){t.loading=e},expression:"loading"}},[a("v-card",{attrs:{"max-width":"300"}},[a("v-card-text",[t._v("\n Processing... this may take a while\n "),a("v-progress-linear",{staticClass:"mb-0",attrs:{indeterminate:""}})],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{"hide-overlay":"",persistent:"",width:"500"},model:{value:t.errorDialog.value,callback:function(e){t.$set(t.errorDialog,"value",e)},expression:"errorDialog.value"}},[a("v-card",{attrs:{color:"red",dark:"","max-width":"500"}},[a("v-card-text",[a("pre",[t._v(t._s(t.errorDialog.text))])]),t._v(" "),a("v-card-actions",[a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:""},on:{click:function(e){t.errorDialog.value=!1}}},[t._v("ok")])],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{persistent:"",width:"500"},model:{value:t.selectHeaderDialog.value,callback:function(e){t.$set(t.selectHeaderDialog,"value",e)},expression:"selectHeaderDialog.value"}},[a("v-card",{attrs:{dark:"","max-width":"500"}},[a("v-card-title",[a("div",[a("h3",{staticClass:"headline"},[t._v("What column do you want to process?")]),t._v(" "),t.amountSelectedData>0?a("small",[t._v("data type: "+t._s(t.amountSelectedData>1?"Multivariate":"Univariate"))]):t._e()])]),t._v(" "),a("v-card-text",[a("v-list",t._l(t.selectHeaderDialog.data,function(e,i){return a("v-list-tile",{key:i,on:{click:function(a){!e||t.addToProcessList(e,i)}}},[i===t.mainKey?a("v-list-tile-action",[a("v-icon",{attrs:{color:"yellow"}},[t._v("star")])],1):t._e(),t._v(" "),a("v-list-tile-content",[a("v-list-tile-title",[t._v(t._s(i))]),t._v(" "),a("v-list-tile-sub-title",{staticClass:"blue--text text--lighten-2"},[t._v(t._s(e||"it is not a valid data, a number is needed"))])],1),t._v(" "),t.selectHeaderDialog.selectedHeaders[i]?a("v-list-tile-action",[a("v-icon",{attrs:{color:"green"}},[t._v("check_circle")])],1):t._e()],1)}))],1),t._v(" "),a("v-card-actions",[a("small",[a("v-icon",{attrs:{small:"",color:"yellow"}},[t._v("star")]),t._v(" data to forecast")],1),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:""},on:{click:function(e){t.selectHeaderDialog.value=!1}}},[t._v("cancel")]),t._v(" "),a("v-btn",{attrs:{disabled:0===t.amountSelectedData,flat:""},on:{click:t.dataFileToDataSet}},[t._v("process")])],1)],1)],1)],1)},staticRenderFns:[]},v=a("VU/8")(h,u,!1,null,null,null).exports,g=a("pFYg"),f=a.n(g),p={name:"jsonViewer",props:["json"],data:function(){return{items:[],hightLevel:0}},methods:{addItems:function(t,e,a){for(var i in t)this.items.splice(e,0,{name:i,type:f()(t[i]),data:t[i],level:a,open:!0});this.hightLevel=a},toggle:function(t,e,a,i){i?this.addItems(t,e,a):this.deleteItems(t,e,a)},deleteItems:function(t,e,a){this.hightLeve--;for(var i=this.items.filter(function(t){return t.level>=a}).length,r=c()(t).length,s=a!==this.hightLevel?i:r,n=0;n0)for(var e=t.offsetX-this.marginLeft,a=0;aa?t:a}return t},globalMin:function(){var t=1e11;for(var e in this.toGraph)if(this.toGraph[e].visible){var a=this.$utils.getMin(this.toGraph[e].data,"y");t=t0?a("g",{attrs:{transform:"translate("+t.marginLeft+", "+t.marginTop+")"}},[a("defs",[a("clipPath",{attrs:{id:"clip-rect"}},[a("rect",{attrs:{width:t.chartWidth,height:t.height,y:-this.marginTop}})])]),t._v(" "),a("g",{attrs:{"clip-path":"url(#clip-rect)"}},[t._l(t.toGraph,function(e,i){return e.visible?a("g",{key:i},[a("c-path",{attrs:{dasharray:e.debug?"5,5":"",transform:"translate("+-t.offsetX+", 0)",color:e.color,rangeX:[t.zoomMin,t.zoomMax],rangeY:[t.globalMin,t.globalMax],dataset:e.data,y:"y",x:"x",height:t.chartHeight,width:t.chartWidth}})],1):t._e()}),t._v(" "),t.markPos.pos>0?a("line",{attrs:{x1:t.markPos.pos,x2:t.markPos.pos,y2:t.chartHeight,"stroke-width":"2",stroke:"#0eff0e78",fill:"none"}}):t._e(),t._v(" "),t.markPos.pos>0?a("text",{attrs:{fill:"#0eff0e78","text-anchor":"middle",dy:"-5px",transform:"translate("+t.markPos.pos+" 0)"}},[t._v("\n "+t._s(t.markPos.val)+"\n ")]):t._e(),t._v(" "),t._l(t.anomalies,function(e,i){return a("circle",{key:i,attrs:{cx:e-t.offsetX,cy:t.chartHeight,r:"7",stroke:"white","stroke-width":"1",fill:"red"}})}),t._v(" "),a("c-axis-x",{attrs:{transform:"translate("+-t.offsetX+" "+t.chartHeight+")",range:[t.zoomMin,t.zoomMax],dataset:t.total,x:"x",ticks:25,fixed:1,height:t.chartHeight,width:t.chartWidth,strokeColor:this.$vuetify.dark?"white":"#6d6d6d"}})],2),t._v(" "),a("c-axis-y",{attrs:{transform:"translate("+(t.chartWidth-t.marginLeft-t.marginRight)+" 0)",range:[t.globalMin,t.globalMax],ticks:5,fixed:3,height:t.chartHeight,strokeColor:this.$vuetify.dark?"white":"#6d6d6d"}})],1):t._e(),t._v(" "),t.extendedArea.active?a("g",{attrs:{transform:"translate("+t.extendedArea.el.x+", "+t.extendedArea.el.y+")"}},[a("rect",{attrs:{fill:"#ffffff17",width:t.extendedArea.el.w,height:t.extendedArea.el.h},on:{mousemove:t.moveExtendedArea,mousedown:function(e){if(e.ctrlKey||e.shiftKey||e.altKey||e.metaKey)return null;t.extendedArea.el.draggable=!0},mouseup:function(e){t.extendedArea.el.draggable=!1},mouseout:function(e){t.extendedArea.el.draggable=!1}}}),t._v(" "),a("circle",{attrs:{cx:t.extendedArea.el.w,cy:t.extendedArea.el.h/2,r:"15",stroke:"black",fill:"grey"},on:{mousemove:function(e){t.extendedArea.el.w+=e.movementX}}}),t._v(" "),a("circle",{attrs:{cx:t.extendedArea.el.w/2,cy:t.extendedArea.el.h,r:"15",stroke:"black",fill:"grey"},on:{mousemove:function(e){t.extendedArea.el.h+=e.movementY}}})]):t._e()]),t._v(" "),a("svg",{class:t.background,attrs:{viewBox:t.extendedArea.el.x+" "+t.extendedArea.el.y+" "+t.extendedArea.el.w+" "+t.extendedArea.el.h,width:"100%",height:"300",preserveAspectRatio:"xMidYMid slice"},domProps:{innerHTML:t._s(t.extendedArea.value)}})],1)},staticRenderFns:[]};var k={name:"homeView",components:{tForm:v,tJson:x,tGraph2d:a("VU/8")(y,_,!1,function(t){a("P6lf")},null,null).exports},data:function(){return{response:{},toggleDataVisibility:!0,dark:!0}},mounted:function(){this.$emit("toggleTheme",this.dark)},methods:{toggleData:function(){this.toggleDataVisibility=!0},showResponse:function(t){this.response={toPredict:t.dataToProcess,prediction:t.result}}}},b={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-container",{attrs:{fluid:"","grid-list-md":""}},[a("v-toolbar",{attrs:{dense:"",app:""}},[a("span",{staticClass:"mt-3"},[a("v-switch",{on:{change:function(e){t.$emit("toggleTheme",t.dark)}},model:{value:t.dark,callback:function(e){t.dark=e},expression:"dark"}})],1),t._v(" "),t.dark?a("img",{staticClass:"pa-1",attrs:{src:"static/img/logo_dark.svg",height:"70%",alt:"Time Cop"}}):a("img",{staticClass:"pa-1",attrs:{src:"static/img/logo.svg",height:"70%",alt:"Time Cop"}}),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:"",color:"blue"},on:{click:function(e){t.toggleDataVisibility=!t.toggleDataVisibility}}},[t._v("\n data\n "),t.toggleDataVisibility?a("v-icon",{attrs:{right:""}},[t._v("visibility")]):a("v-icon",{attrs:{right:""}},[t._v("visibility_off")])],1)],1),t._v(" "),a("v-layout",{attrs:{wrap:""}},[a("v-flex",{class:t.toggleDataVisibility?"xs8":"xs12"},[a("t-graph-2d",{attrs:{dataSet:t.response,toggleSize:t.toggleDataVisibility,height:350,"margin-left":5,background:t.dark?"grey darken-3":"grey lighten-3"}})],1),t._v(" "),a("v-flex",{directives:[{name:"show",rawName:"v-show",value:t.toggleDataVisibility,expression:"toggleDataVisibility"}],attrs:{xs4:""}},[a("t-form",{staticClass:"mb-4",on:{response:t.showResponse}}),t._v(" "),a("t-json",{attrs:{json:t.response.prediction}})],1)],1)],1)},staticRenderFns:[]};var w=a("VU/8")(k,b,!1,function(t){a("R5Fh")},null,null).exports;i.default.use(n.a);var $=new n.a({routes:[{path:"/",name:"home",component:w}]}),S=a("3EgV"),D=a.n(S),A=a("8+8L"),M=a("wmFm");a("7zck");i.default.use(D.a),i.default.config.productionTip=!1,i.default.use(A.a),i.default.http.headers.common["content-type"]="application/json",i.default.use(M.a),new i.default({el:"#app",router:$,render:function(t){return t(s)}})},NvMd:function(t,e,a){"use strict";var i={name:"cAxisY",props:{range:{type:Array,required:!0},ticks:{type:Number},height:{type:Number,required:!0},label:{type:String},fixed:{type:Number},strokeColor:{type:String,default:"white"}},computed:{ticksList:function(){if(this.range&&this.range.length>0){var t=[],e=this.range[0],a=(this.range[1]-e)/(this.ticks-1),i=e;t.push(this.fixed?i.toFixed(this.fixed):i);for(var r=1;r0){for(var t=this.rangeY?this.rangeY[0]:this.$utils.getMin(this.dataset,this.y),e=this.rangeY?this.rangeY[1]:this.$utils.getMax(this.dataset,this.y),a=this.rangeX?this.rangeX[0]:this.$utils.getMin(this.dataset,this.x),i=this.rangeX?this.rangeX[1]:this.$utils.getMax(this.dataset,this.x),r=[],s=[],n=0;n0){for(var t=this.range?this.range[0]:this.$utils.getMin(this.dataset,this.x),e=this.range?this.range[1]:this.$utils.getMax(this.dataset,this.x),a=[],i=0;i0?a("line",{attrs:{x1:t.ticksList[0].position,x2:t.ticksList[t.ticksList.length-1].position}}):t._e(),t._v(" "),t._l(t.ticksList,function(e,i){return a("g",{key:"tick"+i,attrs:{transform:"translate("+e.position+", 0)"}},[a("line",{attrs:{y2:"6"}}),t._v(" "),a("text",{attrs:{"stroke-width":"0.1",y:"9",dy:"0.71em"}},[t._v(t._s(e.value))])])}),t._v(" "),a("text",{attrs:{x:t.ticksList[0].position,y:"-25",dx:"-0.71em",dy:"0.71em","stroke-width":"0.1"}},[t._v(t._s(t.label))])],2)},staticRenderFns:[]},s=a("VU/8")(i,r,!1,null,null,null);e.a=s.exports},o3Cr:function(t,e,a){"use strict";var i={name:"bars",props:{dataset:{type:Array,required:!0},column:{type:String,required:!0},height:{type:Number,required:!0},width:{type:Number,required:!0}},computed:{list:function(){for(var t=[],e=this.$utils.getMax(this.dataset,this.column),a=this.$utils.getMin(this.dataset,this.column),i=0;i\n\n \n \n \n\n\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/App.vue","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/form.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-card',[_c('v-card-text',[_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-text-field',{attrs:{\"label\":\"Url\",\"rules\":[_vm.rules.url],\"outline\":\"\"},on:{\"keypress\":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,\"enter\",13,$event.key,\"Enter\")){ return null; }return _vm.getUrl($event)}},model:{value:(_vm.url),callback:function ($$v) {_vm.url=$$v},expression:\"url\"}})],1),_vm._v(\" \"),_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-textarea',{attrs:{\"hint\":\"Paste your data or load CSV file\",\"persistent-hint\":\"\",\"outline\":\"\",\"label\":\"DatatSet\",\"rules\":[_vm.rules.json]},on:{\"keypress\":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,\"enter\",13,$event.key,\"Enter\")){ return null; }return _vm.getUrl($event)}},model:{value:(_vm.dataToProcess),callback:function ($$v) {_vm.dataToProcess=$$v},expression:\"dataToProcess\"}})],1),_vm._v(\" \"),_c('v-layout',[_c('v-flex',{attrs:{\"xs4\":\"\"}},[_c('v-text-field',{attrs:{\"outline\":\"\",\"single-line\":\"\",\"persistent-hint\":\"\"},model:{value:(_vm.future),callback:function ($$v) {_vm.future=$$v},expression:\"future\"}})],1),_vm._v(\" \"),_c('v-flex',{staticClass:\"mt-3\",attrs:{\"xs10\":\"\"}},[_vm._v(\"Steps in the future that you want to predict\")])],1)],1),_vm._v(\" \"),_c('v-card-actions',[_c('v-btn',{attrs:{\"outline\":\"\",\"color\":\"indigo\"},on:{\"click\":function($event){_vm.$refs.csvFile.click()}}},[_vm._v(\"csv\")]),_vm._v(\" \"),_c('input',{ref:\"csvFile\",attrs:{\"type\":\"file\",\"hidden\":\"\",\"accept\":\".csv, text/plain\"},on:{\"change\":_vm.loadCSVFile}}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"color\":\"success\"},on:{\"click\":_vm.getUrl}},[_vm._v(\"Submit \"),_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"send\")])],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"300\"},model:{value:(_vm.loading),callback:function ($$v) {_vm.loading=$$v},expression:\"loading\"}},[_c('v-card',{attrs:{\"max-width\":\"300\"}},[_c('v-card-text',[_vm._v(\"\\n Processing... this may take a while\\n \"),_c('v-progress-linear',{staticClass:\"mb-0\",attrs:{\"indeterminate\":\"\"}})],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"500\"},model:{value:(_vm.errorDialog.value),callback:function ($$v) {_vm.$set(_vm.errorDialog, \"value\", $$v)},expression:\"errorDialog.value\"}},[_c('v-card',{attrs:{\"color\":\"red\",\"dark\":\"\",\"max-width\":\"500\"}},[_c('v-card-text',[_c('pre',[_vm._v(_vm._s(_vm.errorDialog.text))])]),_vm._v(\" \"),_c('v-card-actions',[_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":function($event){_vm.errorDialog.value = false}}},[_vm._v(\"ok\")])],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"persistent\":\"\",\"width\":\"500\"},model:{value:(_vm.selectHeaderDialog.value),callback:function ($$v) {_vm.$set(_vm.selectHeaderDialog, \"value\", $$v)},expression:\"selectHeaderDialog.value\"}},[_c('v-card',{attrs:{\"dark\":\"\",\"max-width\":\"500\"}},[_c('v-card-title',[_c('div',[_c('h3',{staticClass:\"headline\"},[_vm._v(\"What column do you want to process?\")]),_vm._v(\" \"),(_vm.amountSelectedData > 0)?_c('small',[_vm._v(\"data type: \"+_vm._s(_vm.amountSelectedData > 1 ? 'Multivariate' : 'Univariate'))]):_vm._e()])]),_vm._v(\" \"),_c('v-card-text',[_c('v-list',_vm._l((_vm.selectHeaderDialog.data),function(data,i){return _c('v-list-tile',{key:i,on:{\"click\":function($event){!data || _vm.addToProcessList(data, i)}}},[(i === _vm.mainKey)?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"yellow\"}},[_vm._v(\"star\")])],1):_vm._e(),_vm._v(\" \"),_c('v-list-tile-content',[_c('v-list-tile-title',[_vm._v(_vm._s(i))]),_vm._v(\" \"),_c('v-list-tile-sub-title',{staticClass:\"blue--text text--lighten-2\"},[_vm._v(_vm._s(data || 'it is not a valid data, a number is needed'))])],1),_vm._v(\" \"),(_vm.selectHeaderDialog.selectedHeaders[i])?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"green\"}},[_vm._v(\"check_circle\")])],1):_vm._e()],1)}))],1),_vm._v(\" \"),_c('v-card-actions',[_c('small',[_c('v-icon',{attrs:{\"small\":\"\",\"color\":\"yellow\"}},[_vm._v(\"star\")]),_vm._v(\" data to forecast\")],1),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":function($event){_vm.selectHeaderDialog.value = false}}},[_vm._v(\"cancel\")]),_vm._v(\" \"),_c('v-btn',{attrs:{\"disabled\":_vm.amountSelectedData === 0,\"flat\":\"\"},on:{\"click\":_vm.dataFileToDataSet}},[_vm._v(\"process\")])],1)],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-43e8a342\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/form.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-43e8a342\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./form.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/form.vue\n// module id = null\n// module chunks = ","\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/jsonViewer.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},_vm._l((_vm.items),function(item,i){return _c('div',{key:i,style:({'margin-left': item.level * 10 + 'px', cursor: item.type === 'object' && item.data.length !== 0 ? 'pointer' : 'auto'}),on:{\"click\":function($event){item.type !== 'object' || _vm.toggle(item.data, i + 1, item.level + 1, item.open), item.open = !item.open}}},[_c('span',{class:{'font-weight-bold': item.type === 'object' && item.data.length !== 0}},[_vm._v(_vm._s(item.name)+\":\")]),_vm._v(\" \"),_c('span',{class:_vm.getColor(item.type)},[_vm._v(_vm._s(item.type === 'object' && item.data.length !== 0 ? '{...}' : item.data))])])}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-d44f50fe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-d44f50fe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./jsonViewer.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/graph.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{directives:[{name:\"resize\",rawName:\"v-resize\",value:(_vm.calculateSize),expression:\"calculateSize\"}],attrs:{\"xs12\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\"}},[_c('v-toolbar-items',_vm._l((_vm.toGraph),function(g,i){return _c('v-btn',{key:'btn' + i,class:{'graph-inactive-btn': !g.visible},attrs:{\"color\":g.color,\"disabled\":_vm.extendedArea.active,\"flat\":\"\"},on:{\"click\":function($event){g.visible = !g.visible}}},[_vm._v(\"\\n \"+_vm._s(g.name)+\"\\n \"),(g.name === _vm.dataSet.prediction.engine)?_c('span',{staticClass:\"winner\"},[_vm._v(\"♕\")]):_vm._e()])})),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.extendedArea.active,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":_vm.randomizeColors},slot:\"activator\"},[_c('v-icon',[_vm._v(\"brush\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"Randomize Colors\")])],1),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.total.length === 0,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":function($event){_vm.extendedArea.active = !_vm.extendedArea.active}},slot:\"activator\"},[_c('v-icon',[_vm._v(\"crop_free\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"extend area\")])],1)],1),_vm._v(\" \"),_c('svg',{ref:\"graph-container\",class:_vm.background,attrs:{\"width\":\"100%\",\"height\":_vm.height},on:{\"wheel\":function($event){$event.preventDefault();return _vm.zoom($event)},\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.panEnabled = true},\"mouseup\":function($event){_vm.panEnabled = false},\"mousemove\":_vm.pan}},[(_vm.total.length > 0)?_c('g',{attrs:{\"transform\":(\"translate(\" + _vm.marginLeft + \", \" + _vm.marginTop + \")\")}},[_c('defs',[_c('clipPath',{attrs:{\"id\":\"clip-rect\"}},[_c('rect',{attrs:{\"width\":_vm.chartWidth,\"height\":_vm.height,\"y\":-this.marginTop}})])]),_vm._v(\" \"),_c('g',{attrs:{\"clip-path\":\"url(#clip-rect)\"}},[_vm._l((_vm.toGraph),function(g,i){return (g.visible)?_c('g',{key:i},[_c('c-path',{attrs:{\"dasharray\":g.debug ? '5,5' : '',\"transform\":(\"translate(\" + (- _vm.offsetX) + \", 0)\"),\"color\":g.color,\"rangeX\":[_vm.zoomMin, _vm.zoomMax],\"rangeY\":[_vm.globalMin, _vm.globalMax],\"dataset\":g.data,\"y\":\"y\",\"x\":\"x\",\"height\":_vm.chartHeight,\"width\":_vm.chartWidth}})],1):_vm._e()}),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('line',{attrs:{\"x1\":_vm.markPos.pos,\"x2\":_vm.markPos.pos,\"y2\":_vm.chartHeight,\"stroke-width\":\"2\",\"stroke\":\"#0eff0e78\",\"fill\":\"none\"}}):_vm._e(),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('text',{attrs:{\"fill\":\"#0eff0e78\",\"text-anchor\":\"middle\",\"dy\":\"-5px\",\"transform\":(\"translate(\" + (_vm.markPos.pos) + \" 0)\")}},[_vm._v(\"\\n \"+_vm._s(_vm.markPos.val)+\"\\n \")]):_vm._e(),_vm._v(\" \"),_vm._l((_vm.anomalies),function(line,i){return _c('circle',{key:i,attrs:{\"cx\":line - _vm.offsetX,\"cy\":_vm.chartHeight,\"r\":\"7\",\"stroke\":\"white\",\"stroke-width\":\"1\",\"fill\":\"red\"}})}),_vm._v(\" \"),_c('c-axis-x',{attrs:{\"transform\":(\"translate(\" + (-_vm.offsetX) + \" \" + _vm.chartHeight + \")\"),\"range\":[_vm.zoomMin, _vm.zoomMax],\"dataset\":_vm.total,\"x\":\"x\",\"ticks\":25,\"fixed\":1,\"height\":_vm.chartHeight,\"width\":_vm.chartWidth,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],2),_vm._v(\" \"),_c('c-axis-y',{attrs:{\"transform\":(\"translate(\" + (_vm.chartWidth - _vm.marginLeft - _vm.marginRight) + \" 0)\"),\"range\":[_vm.globalMin, _vm.globalMax],\"ticks\":5,\"fixed\":3,\"height\":_vm.chartHeight,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],1):_vm._e(),_vm._v(\" \"),(_vm.extendedArea.active)?_c('g',{attrs:{\"transform\":(\"translate(\" + (_vm.extendedArea.el.x) + \", \" + (_vm.extendedArea.el.y) + \")\")}},[_c('rect',{attrs:{\"fill\":\"#ffffff17\",\"width\":_vm.extendedArea.el.w,\"height\":_vm.extendedArea.el.h},on:{\"mousemove\":_vm.moveExtendedArea,\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.extendedArea.el.draggable = true},\"mouseup\":function($event){_vm.extendedArea.el.draggable = false},\"mouseout\":function($event){_vm.extendedArea.el.draggable = false}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w,\"cy\":_vm.extendedArea.el.h / 2,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.w += $event.movementX}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w / 2,\"cy\":_vm.extendedArea.el.h,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.h += $event.movementY}}})]):_vm._e()]),_vm._v(\" \"),_c('svg',{class:_vm.background,attrs:{\"viewBox\":((_vm.extendedArea.el.x) + \" \" + (_vm.extendedArea.el.y) + \" \" + (_vm.extendedArea.el.w) + \" \" + (_vm.extendedArea.el.h)),\"width\":\"100%\",\"height\":\"300\",\"preserveAspectRatio\":\"xMidYMid slice\"},domProps:{\"innerHTML\":_vm._s(_vm.extendedArea.value)}})],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-58e2ba42\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/graph.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-58e2ba42\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./graph.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-58e2ba42\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./graph.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/graph.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/view/homeView.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-container',{attrs:{\"fluid\":\"\",\"grid-list-md\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\",\"app\":\"\"}},[_c('span',{staticClass:\"mt-3\"},[_c('v-switch',{on:{\"change\":function($event){_vm.$emit('toggleTheme', _vm.dark)}},model:{value:(_vm.dark),callback:function ($$v) {_vm.dark=$$v},expression:\"dark\"}})],1),_vm._v(\" \"),(!_vm.dark)?_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}):_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo_dark.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\",\"color\":\"blue\"},on:{\"click\":function($event){_vm.toggleDataVisibility = !_vm.toggleDataVisibility}}},[_vm._v(\"\\n data\\n \"),(_vm.toggleDataVisibility)?_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility\")]):_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility_off\")])],1)],1),_vm._v(\" \"),_c('v-layout',{attrs:{\"wrap\":\"\"}},[_c('v-flex',{class:_vm.toggleDataVisibility ? 'xs8' : 'xs12'},[_c('t-graph-2d',{attrs:{\"dataSet\":_vm.response,\"toggleSize\":_vm.toggleDataVisibility,\"height\":350,\"margin-left\":5,\"background\":_vm.dark ? 'grey darken-3': 'grey lighten-3'}})],1),_vm._v(\" \"),_c('v-flex',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.toggleDataVisibility),expression:\"toggleDataVisibility\"}],attrs:{\"xs4\":\"\"}},[_c('t-form',{staticClass:\"mb-4\",on:{\"response\":_vm.showResponse}}),_vm._v(\" \"),_c('t-json',{attrs:{\"json\":_vm.response.prediction}})],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-04efdfce\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/view/homeView.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./homeView.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./homeView.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/view/homeView.vue\n// module id = null\n// module chunks = ","import Vue from 'vue'\nimport Router from 'vue-router'\nimport home from '@/view/homeView'\n\nVue.use(Router)\n\nexport default new Router({\n routes: [\n {\n path: '/',\n name: 'home',\n component: home\n }\n ]\n})\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/index.js","import Vue from 'vue'\nimport App from './App'\nimport router from './router'\nimport Vuetify from 'vuetify'\nimport VueResource from 'vue-resource'\n// import chartConstructor from './constructor/2d_graph'\nimport chart2dConstructor from 'vue-chart2d-constructor'\nimport 'vuetify/dist/vuetify.min.css'\n\nVue.use(Vuetify)\n\nVue.config.productionTip = false\nVue.use(VueResource)\nVue.http.headers.common['content-type'] = 'application/json'\nVue.use(chart2dConstructor)\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n render: h => h(App)\n})\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.js","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-y.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"end\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\"}},[_c('line',{attrs:{\"y1\":_vm.height}}),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(0, \" + (i * (_vm.height/(_vm.ticksList.length - 1))) + \")\")}},[_c('line',{attrs:{\"x2\":\"-6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"x\":\"-9\",\"dy\":\"0.32em\"}},[_vm._v(_vm._s(tick))])])}),_vm._v(\" \"),_c('text',{attrs:{\"transform\":\"rotate(-90)\",\"y\":\"6\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-35c15ce6\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-35c15ce6\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-y.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cPath.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('path',{attrs:{\"fill\":\"none\",\"stroke\":_vm.color,\"stroke-linejoin\":\"round\",\"stroke-linecap\":\"round\",\"stroke-width\":_vm.strokeWidth,\"stroke-dasharray\":_vm.dasharray,\"d\":_vm.points}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-58b941c4\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-58b941c4\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cPath.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-x.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"middle\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\",\"transform\":(\"translate(0, \" + _vm.height + \")\")}},[(_vm.ticksList && _vm.ticksList.length > 0)?_c('line',{attrs:{\"x1\":_vm.ticksList[0].position,\"x2\":_vm.ticksList[_vm.ticksList.length - 1].position}}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(\" + (tick.position) + \", 0)\")}},[_c('line',{attrs:{\"y2\":\"6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"y\":\"9\",\"dy\":\"0.71em\"}},[_vm._v(_vm._s(tick.value))])])}),_vm._v(\" \"),_c('text',{attrs:{\"x\":_vm.ticksList[0].position,\"y\":\"-25\",\"dx\":\"-0.71em\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-69a54ebe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-69a54ebe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-x.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cBars.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',_vm._l((_vm.list),function(item,i){return _c('rect',{key:i,attrs:{\"x\":i * (_vm.width / _vm.list.length),\"y\":item.v,\"width\":30,\"height\":_vm.height - item.v,\"fill\":\"green\"}})}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-65db09f9\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-65db09f9\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cBars.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cCircle.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('circle',{attrs:{\"cx\":_vm.x,\"cy\":_vm.y,\"r\":_vm.r,\"stroke\":_vm.strokeColor,\"stroke-width\":_vm.strokeWidth,\"fill\":_vm.color}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-10fc018e\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-10fc018e\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cCircle.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = "],"sourceRoot":""} \ No newline at end of file diff --git a/web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js b/web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js new file mode 100644 index 0000000..1acd401 --- /dev/null +++ b/web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js @@ -0,0 +1,2 @@ +!function(r){var n=window.webpackJsonp;window.webpackJsonp=function(e,u,c){for(var f,i,p,a=0,l=[];a=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function f(t){var e=parseFloat(t);return isNaN(e)?t:e}function p(t,e){for(var n=Object.create(null),i=t.split(","),s=0;s-1)return t.splice(n,1)}}var g=Object.prototype.hasOwnProperty;function y(t,e){return g.call(t,e)}function b(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var x=/-(\w)/g,_=b(function(t){return t.replace(x,function(t,e){return e?e.toUpperCase():""})}),V=b(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),w=/\B([A-Z])/g,S=b(function(t){return t.replace(w,"-$1").toLowerCase()});var k=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var i=arguments.length;return i?i>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function C(t,e){e=e||0;for(var n=t.length-e,i=new Array(n);n--;)i[n]=t[n+e];return i}function T(t,e){for(var n in e)t[n]=e[n];return t}function j(t){for(var e={},n=0;n0,K=q&&q.indexOf("edge/")>0,Z=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===Y),J=(q&&/chrome\/\d+/.test(q),{}.watch),Q=!1;if(W)try{var tt={};Object.defineProperty(tt,"passive",{get:function(){Q=!0}}),window.addEventListener("test-passive",null,tt)}catch(t){}var et=function(){return void 0===H&&(H=!W&&!U&&void 0!==t&&"server"===t.process.env.VUE_ENV),H},nt=W&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,rt="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);st="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ot=$,at=0,ct=function(){this.id=at++,this.subs=[]};ct.prototype.addSub=function(t){this.subs.push(t)},ct.prototype.removeSub=function(t){v(this.subs,t)},ct.prototype.depend=function(){ct.target&&ct.target.addDep(this)},ct.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;e-1)if(r&&!y(s,"default"))o=!1;else if(""===o||o===S(t)){var c=Ft(String,s.type);(c<0||a0&&(le((l=t(l,(n||"")+"_"+c))[0])&&le(h)&&(a[u]=mt(h.text+l[0].text),l.shift()),a.push.apply(a,l)):o(l)?le(h)?a[u]=mt(h.text+l):""!==l&&a.push(mt(l)):le(l)&&le(h)?a[u]=mt(h.text+l.text):(r(e._isVList)&&s(l.tag)&&i(l.key)&&s(n)&&(l.key="__vlist"+n+"_"+c+"__"),a.push(l)));return a}(t):void 0}function le(t){return s(t)&&s(t.text)&&!1===t.isComment}function ue(t,e){return(t.__esModule||rt&&"Module"===t[Symbol.toStringTag])&&(t=t.default),a(t)?e.extend(t):t}function he(t){return t.isComment&&t.asyncFactory}function de(t){if(Array.isArray(t))for(var e=0;eje&&we[n].id>t.id;)n--;we.splice(n+1,0,t)}else we.push(t);Ce||(Ce=!0,Qt($e))}}(this)},Ie.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||a(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Nt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Ie.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Ie.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Ie.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||v(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Ae={enumerable:!0,configurable:!0,get:$,set:$};function Pe(t,e,n){Ae.get=function(){return this[e][n]},Ae.set=function(t){this[e][n]=t},Object.defineProperty(t,n,Ae)}function De(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},i=t._props={},s=t.$options._propKeys=[];t.$parent&&_t(!1);var r=function(r){s.push(r);var o=Mt(r,e,n,t);Ct(i,r,o),r in t||Pe(t,"_props",r)};for(var o in e)r(o);_t(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]=null==e[n]?$:k(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;l(e=t._data="function"==typeof e?function(t,e){ut();try{return t.call(e,e)}catch(t){return Nt(t,e,"data()"),{}}finally{ht()}}(e,t):e||{})||(e={});var n=Object.keys(e),i=t.$options.props,s=(t.$options.methods,n.length);for(;s--;){var r=n[s];0,i&&y(i,r)||R(r)||Pe(t,"_data",r)}kt(e,!0)}(t):kt(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),i=et();for(var s in e){var r=e[s],o="function"==typeof r?r:r.get;0,i||(n[s]=new Ie(t,o||$,$,Ee)),s in t||Be(t,s,r)}}(t,e.computed),e.watch&&e.watch!==J&&function(t,e){for(var n in e){var i=e[n];if(Array.isArray(i))for(var s=0;s=0||n.indexOf(t[s])<0)&&i.push(t[s]);return i}return t}function hn(t){this._init(t)}function dn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,i=n.cid,s=t._Ctor||(t._Ctor={});if(s[i])return s[i];var r=t.name||n.options.name;var o=function(t){this._init(t)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=e++,o.options=Et(n.options,t),o.super=n,o.options.props&&function(t){var e=t.options.props;for(var n in e)Pe(t.prototype,"_props",n)}(o),o.options.computed&&function(t){var e=t.options.computed;for(var n in e)Be(t.prototype,n,e[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,B.forEach(function(t){o[t]=n[t]}),r&&(o.options.components[r]=o),o.superOptions=n.options,o.extendOptions=t,o.sealedOptions=T({},o.options),s[i]=o,o}}function fn(t){return t&&(t.Ctor.options.name||t.tag)}function pn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!u(t)&&t.test(e)}function mn(t,e){var n=t.cache,i=t.keys,s=t._vnode;for(var r in n){var o=n[r];if(o){var a=fn(o.componentOptions);a&&!e(a)&&vn(n,r,i,s)}}}function vn(t,e,n,i){var s=t[e];!s||i&&s.tag===i.tag||s.componentInstance.$destroy(),t[e]=null,v(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=cn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),i=e._parentVnode;n.parent=e.parent,n._parentVnode=i,n._parentElm=e._parentElm,n._refElm=e._refElm;var s=i.componentOptions;n.propsData=s.propsData,n._parentListeners=s.listeners,n._renderChildren=s.children,n._componentTag=s.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Et(ln(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&me(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,i=t.$vnode=e._parentVnode,s=i&&i.context;t.$slots=ve(e._renderChildren,s),t.$scopedSlots=n,t._c=function(e,n,i,s){return an(t,e,n,i,s,!1)},t.$createElement=function(e,n,i,s){return an(t,e,n,i,s,!0)};var r=i&&i.data;Ct(t,"$attrs",r&&r.attrs||n,null,!0),Ct(t,"$listeners",e._parentListeners||n,null,!0)}(e),Ve(e,"beforeCreate"),function(t){var e=Re(t.$options.inject,t);e&&(_t(!1),Object.keys(e).forEach(function(n){Ct(t,n,e[n])}),_t(!0))}(e),De(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),Ve(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(hn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Tt,t.prototype.$delete=jt,t.prototype.$watch=function(t,e,n){if(l(e))return Le(this,t,e,n);(n=n||{}).user=!0;var i=new Ie(this,t,e,n);return n.immediate&&e.call(this,i.value),function(){i.teardown()}}}(hn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){if(Array.isArray(t))for(var i=0,s=t.length;i1?C(n):n;for(var i=C(arguments,1),s=0,r=n.length;sparseInt(this.max)&&vn(o,a[0],a,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return L}};Object.defineProperty(t,"config",e),t.util={warn:ot,extend:T,mergeOptions:Et,defineReactive:Ct},t.set=Tt,t.delete=jt,t.nextTick=Qt,t.options=Object.create(null),B.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,T(t.options.components,yn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=C(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Et(this.options,t),this}}(t),dn(t),function(t){B.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&l(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}(t)}(hn),Object.defineProperty(hn.prototype,"$isServer",{get:et}),Object.defineProperty(hn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(hn,"FunctionalRenderContext",{value:Je}),hn.version="2.5.17";var bn=p("style,class"),xn=p("input,textarea,option,select,progress"),_n=p("contenteditable,draggable,spellcheck"),Vn=p("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),wn="http://www.w3.org/1999/xlink",Sn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},kn=function(t){return Sn(t)?t.slice(6,t.length):""},Cn=function(t){return null==t||!1===t};function Tn(t){for(var e=t.data,n=t,i=t;s(i.componentInstance);)(i=i.componentInstance._vnode)&&i.data&&(e=jn(i.data,e));for(;s(n=n.parent);)n&&n.data&&(e=jn(e,n.data));return function(t,e){if(s(t)||s(e))return $n(t,On(e));return""}(e.staticClass,e.class)}function jn(t,e){return{staticClass:$n(t.staticClass,e.staticClass),class:s(t.class)?[t.class,e.class]:e.class}}function $n(t,e){return t?e?t+" "+e:t:e||""}function On(t){return Array.isArray(t)?function(t){for(var e,n="",i=0,r=t.length;i-1?Qn(t,e,n):Vn(e)?Cn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):_n(e)?t.setAttribute(e,Cn(n)||"false"===n?"false":"true"):Sn(e)?Cn(n)?t.removeAttributeNS(wn,kn(e)):t.setAttributeNS(wn,e,n):Qn(t,e,n)}function Qn(t,e,n){if(Cn(n))t.removeAttribute(e);else{if(X&&!G&&"TEXTAREA"===t.tagName&&"placeholder"===e&&!t.__ieph){var i=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",i)};t.addEventListener("input",i),t.__ieph=!0}t.setAttribute(e,n)}}var ti={create:Zn,update:Zn};function ei(t,e){var n=e.elm,r=e.data,o=t.data;if(!(i(r.staticClass)&&i(r.class)&&(i(o)||i(o.staticClass)&&i(o.class)))){var a=Tn(e),c=n._transitionClasses;s(c)&&(a=$n(a,On(c))),a!==n._prevClass&&(n.setAttribute("class",a),n._prevClass=a)}}var ni,ii={create:ei,update:ei},si="__r",ri="__c";function oi(t,e,n,i,s){var r;e=(r=e)._withTask||(r._withTask=function(){Gt=!0;var t=r.apply(null,arguments);return Gt=!1,t}),n&&(e=function(t,e,n){var i=ni;return function s(){null!==t.apply(null,arguments)&&ai(e,s,n,i)}}(e,t,i)),ni.addEventListener(t,e,Q?{capture:i,passive:s}:i)}function ai(t,e,n,i){(i||ni).removeEventListener(t,e._withTask||e,n)}function ci(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};ni=e.elm,function(t){if(s(t[si])){var e=X?"change":"input";t[e]=[].concat(t[si],t[e]||[]),delete t[si]}s(t[ri])&&(t.change=[].concat(t[ri],t.change||[]),delete t[ri])}(n),re(n,r,oi,ai,e.context),ni=void 0}}var li={create:ci,update:ci};function ui(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,r,o=e.elm,a=t.data.domProps||{},c=e.data.domProps||{};for(n in s(c.__ob__)&&(c=e.data.domProps=T({},c)),a)i(c[n])&&(o[n]="");for(n in c){if(r=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===a[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n){o._value=r;var l=i(r)?"":String(r);hi(o,l)&&(o.value=l)}else o[n]=r}}}function hi(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,i=t._vModifiers;if(s(i)){if(i.lazy)return!1;if(i.number)return f(n)!==f(e);if(i.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var di={create:ui,update:ui},fi=b(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var i=t.split(n);i.length>1&&(e[i[0].trim()]=i[1].trim())}}),e});function pi(t){var e=mi(t.style);return t.staticStyle?T(t.staticStyle,e):e}function mi(t){return Array.isArray(t)?j(t):"string"==typeof t?fi(t):t}var vi,gi=/^--/,yi=/\s*!important$/,bi=function(t,e,n){if(gi.test(e))t.style.setProperty(e,n);else if(yi.test(n))t.style.setProperty(e,n.replace(yi,""),"important");else{var i=_i(e);if(Array.isArray(n))for(var s=0,r=n.length;s-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function ki(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",i=" "+e+" ";n.indexOf(i)>=0;)n=n.replace(i," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Ci(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&T(e,Ti(t.name||"v")),T(e,t),e}return"string"==typeof t?Ti(t):void 0}}var Ti=b(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),ji=W&&!G,$i="transition",Oi="animation",Ii="transition",Ai="transitionend",Pi="animation",Di="animationend";ji&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Ii="WebkitTransition",Ai="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Pi="WebkitAnimation",Di="webkitAnimationEnd"));var Ei=W?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Bi(t){Ei(function(){Ei(t)})}function Mi(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Si(t,e))}function Li(t,e){t._transitionClasses&&v(t._transitionClasses,e),ki(t,e)}function Ri(t,e,n){var i=Ni(t,e),s=i.type,r=i.timeout,o=i.propCount;if(!s)return n();var a=s===$i?Ai:Di,c=0,l=function(){t.removeEventListener(a,u),n()},u=function(e){e.target===t&&++c>=o&&l()};setTimeout(function(){c0&&(n=$i,u=o,h=r.length):e===Oi?l>0&&(n=Oi,u=l,h=c.length):h=(n=(u=Math.max(o,l))>0?o>l?$i:Oi:null)?n===$i?r.length:c.length:0,{type:n,timeout:u,propCount:h,hasTransform:n===$i&&Fi.test(i[Ii+"Property"])}}function Hi(t,e){for(;t.length1}function Xi(t,e){!0!==e.data.show&&Wi(e)}var Gi=function(t){var e,n,a={},c=t.modules,l=t.nodeOps;for(e=0;ep?b(t,i(n[g+1])?null:n[g+1].elm,n,f,g,r):f>g&&_(0,e,d,p)}(c,f,p,n,o):s(p)?(s(t.text)&&l.setTextContent(c,""),b(c,null,p,0,p.length-1,n)):s(f)?_(0,f,0,f.length-1):s(t.text)&&l.setTextContent(c,""):t.text!==e.text&&l.setTextContent(c,e.text),s(d)&&s(u=d.hook)&&s(u=u.postpatch)&&u(t,e)}}}function k(t,e,n){if(r(n)&&s(t.parent))t.parent.data.pendingInsert=e;else for(var i=0;i-1,o.selected!==r&&(o.selected=r);else if(A(ts(o),i))return void(t.selectedIndex!==a&&(t.selectedIndex=a));s||(t.selectedIndex=-1)}}function Qi(t,e){return e.every(function(e){return!A(e,t)})}function ts(t){return"_value"in t?t._value:t.value}function es(t){t.target.composing=!0}function ns(t){t.target.composing&&(t.target.composing=!1,is(t.target,"input"))}function is(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ss(t){return!t.componentInstance||t.data&&t.data.transition?t:ss(t.componentInstance._vnode)}var rs={model:Ki,show:{bind:function(t,e,n){var i=e.value,s=(n=ss(n)).data&&n.data.transition,r=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;i&&s?(n.data.show=!0,Wi(n,function(){t.style.display=r})):t.style.display=i?r:"none"},update:function(t,e,n){var i=e.value;!i!=!e.oldValue&&((n=ss(n)).data&&n.data.transition?(n.data.show=!0,i?Wi(n,function(){t.style.display=t.__vOriginalDisplay}):Ui(n,function(){t.style.display="none"})):t.style.display=i?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,i,s){s||(t.style.display=t.__vOriginalDisplay)}}},os={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function as(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?as(de(e.children)):t}function cs(t){var e={},n=t.$options;for(var i in n.propsData)e[i]=t[i];var s=n._parentListeners;for(var r in s)e[_(r)]=s[r];return e}function ls(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var us={name:"transition",props:os,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(function(t){return t.tag||he(t)})).length){0;var i=this.mode;0;var s=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return s;var r=as(s);if(!r)return s;if(this._leaving)return ls(t,s);var a="__transition-"+this._uid+"-";r.key=null==r.key?r.isComment?a+"comment":a+r.tag:o(r.key)?0===String(r.key).indexOf(a)?r.key:a+r.key:r.key;var c=(r.data||(r.data={})).transition=cs(this),l=this._vnode,u=as(l);if(r.data.directives&&r.data.directives.some(function(t){return"show"===t.name})&&(r.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(r,u)&&!he(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var h=u.data.transition=T({},c);if("out-in"===i)return this._leaving=!0,oe(h,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),ls(t,s);if("in-out"===i){if(he(r))return l;var d,f=function(){d()};oe(c,"afterEnter",f),oe(c,"enterCancelled",f),oe(h,"delayLeave",function(t){d=t})}}return s}}},hs=T({tag:String,moveClass:String},os);function ds(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function fs(t){t.data.newPos=t.elm.getBoundingClientRect()}function ps(t){var e=t.data.pos,n=t.data.newPos,i=e.left-n.left,s=e.top-n.top;if(i||s){t.data.moved=!0;var r=t.elm.style;r.transform=r.WebkitTransform="translate("+i+"px,"+s+"px)",r.transitionDuration="0s"}}delete hs.mode;var ms={Transition:us,TransitionGroup:{props:hs,render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,s=this.$slots.default||[],r=this.children=[],o=cs(this),a=0;a-1?En[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:En[t]=/HTMLUnknownElement/.test(e.toString())},T(hn.options.directives,rs),T(hn.options.components,ms),hn.prototype.__patch__=W?Gi:$,hn.prototype.$mount=function(t,e){return function(t,e,n){return t.$el=e,t.$options.render||(t.$options.render=pt),Ve(t,"beforeMount"),new Ie(t,function(){t._update(t._render(),n)},$,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Ve(t,"mounted")),t}(this,t=t&&W?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},W&&setTimeout(function(){L.devtools&&nt&&nt.emit("init",hn)},0),e.default=hn}.call(e,n("DuR2"))},"/bQp":function(t,e){t.exports={}},"/n6Q":function(t,e,n){n("zQR9"),n("+tPU"),t.exports=n("Kh4W").f("iterator")},"/ocq":function(t,e,n){"use strict"; +/** + * vue-router v3.0.1 + * (c) 2017 Evan You + * @license MIT + */function i(t,e){0}function s(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}var r={name:"router-view",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,i=e.children,s=e.parent,r=e.data;r.routerView=!0;for(var o=s.$createElement,a=n.name,c=s.$route,l=s._routerViewCache||(s._routerViewCache={}),u=0,h=!1;s&&s._routerRoot!==s;)s.$vnode&&s.$vnode.data.routerView&&u++,s._inactive&&(h=!0),s=s.$parent;if(r.routerViewDepth=u,h)return o(l[a],r,i);var d=c.matched[u];if(!d)return l[a]=null,o();var f=l[a]=d.components[a];r.registerRouteInstance=function(t,e){var n=d.instances[a];(e&&n!==t||!e&&n===t)&&(d.instances[a]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){d.instances[a]=e.componentInstance};var p=r.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(c,d.props&&d.props[a]);if(p){p=r.props=function(t,e){for(var n in e)t[n]=e[n];return t}({},p);var m=r.attrs=r.attrs||{};for(var v in p)f.props&&v in f.props||(m[v]=p[v],delete p[v])}return o(f,r,i)}};var o=/[!'()*]/g,a=function(t){return"%"+t.charCodeAt(0).toString(16)},c=/%2C/g,l=function(t){return encodeURIComponent(t).replace(o,a).replace(c,",")},u=decodeURIComponent;function h(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),i=u(n.shift()),s=n.length>0?u(n.join("=")):null;void 0===e[i]?e[i]=s:Array.isArray(e[i])?e[i].push(s):e[i]=[e[i],s]}),e):e}function d(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return l(e);if(Array.isArray(n)){var i=[];return n.forEach(function(t){void 0!==t&&(null===t?i.push(l(e)):i.push(l(e)+"="+l(t)))}),i.join("&")}return l(e)+"="+l(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var f=/\/?$/;function p(t,e,n,i){var s=i&&i.options.stringifyQuery,r=e.query||{};try{r=m(r)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:g(e,s),matched:t?function(t){var e=[];for(;t;)e.unshift(t),t=t.parent;return e}(t):[]};return n&&(o.redirectedFrom=g(n,s)),Object.freeze(o)}function m(t){if(Array.isArray(t))return t.map(m);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=m(t[n]);return e}return t}var v=p(null,{path:"/"});function g(t,e){var n=t.path,i=t.query;void 0===i&&(i={});var s=t.hash;return void 0===s&&(s=""),(n||"/")+(e||d)(i)+s}function y(t,e){return e===v?t===e:!!e&&(t.path&&e.path?t.path.replace(f,"")===e.path.replace(f,"")&&t.hash===e.hash&&b(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&b(t.query,e.query)&&b(t.params,e.params)))}function b(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),i=Object.keys(e);return n.length===i.length&&n.every(function(n){var i=t[n],s=e[n];return"object"==typeof i&&"object"==typeof s?b(i,s):String(i)===String(s)})}var x,_=[String,Object],V=[String,Array],w={name:"router-link",props:{to:{type:_,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:V,default:"click"}},render:function(t){var e=this,n=this.$router,i=this.$route,s=n.resolve(this.to,i,this.append),r=s.location,o=s.route,a=s.href,c={},l=n.options.linkActiveClass,u=n.options.linkExactActiveClass,h=null==l?"router-link-active":l,d=null==u?"router-link-exact-active":u,m=null==this.activeClass?h:this.activeClass,v=null==this.exactActiveClass?d:this.exactActiveClass,g=r.path?p(null,r,null,n):o;c[v]=y(i,g),c[m]=this.exact?c[v]:function(t,e){return 0===t.path.replace(f,"/").indexOf(e.path.replace(f,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(i,g);var b=function(t){S(t)&&(e.replace?n.replace(r):n.push(r))},_={click:S};Array.isArray(this.event)?this.event.forEach(function(t){_[t]=b}):_[this.event]=b;var V={class:c};if("a"===this.tag)V.on=_,V.attrs={href:a};else{var w=function t(e){if(e)for(var n,i=0;i=0&&(e=t.slice(i),t=t.slice(0,i));var s=t.indexOf("?");return s>=0&&(n=t.slice(s+1),t=t.slice(0,s)),{path:t,query:n,hash:e}}(s.path||""),c=e&&e.path||"/",l=a.path?T(a.path,c,n||s.append):c,u=function(t,e,n){void 0===e&&(e={});var i,s=n||h;try{i=s(t||"")}catch(t){i={}}for(var r in e)i[r]=e[r];return i}(a.query,s.query,i&&i.options.parseQuery),d=s.hash||a.hash;return d&&"#"!==d.charAt(0)&&(d="#"+d),{_normalized:!0,path:l,query:u,hash:d}}function G(t,e){for(var n in e)t[n]=e[n];return t}function K(t,e){var n=q(t),i=n.pathList,s=n.pathMap,r=n.nameMap;function o(t,n,o){var a=X(t,n,!1,e),l=a.name;if(l){var u=r[l];if(!u)return c(null,a);var h=u.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof a.params&&(a.params={}),n&&"object"==typeof n.params)for(var d in n.params)!(d in a.params)&&h.indexOf(d)>-1&&(a.params[d]=n.params[d]);if(u)return a.path=Y(u.path,a.params),c(u,a,o)}else if(a.path){a.params={};for(var f=0;f=t.length?n():t[s]?e(t[s],function(){i(s+1)}):i(s+1)};i(0)}function mt(t){return function(e,n,i){var r=!1,o=0,a=null;vt(t,function(t,e,n,c){if("function"==typeof t&&void 0===t.cid){r=!0,o++;var l,u=bt(function(e){var s;((s=e).__esModule||yt&&"Module"===s[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:x.extend(e),n.components[c]=e,--o<=0&&i()}),h=bt(function(t){var e="Failed to resolve async component "+c+": "+t;a||(a=s(t)?t:new Error(e),i(a))});try{l=t(u,h)}catch(t){h(t)}if(l)if("function"==typeof l.then)l.then(u,h);else{var d=l.component;d&&"function"==typeof d.then&&d.then(u,h)}}}),r||i()}}function vt(t,e){return gt(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function gt(t){return Array.prototype.concat.apply([],t)}var yt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function bt(t){var e=!1;return function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];if(!e)return e=!0,t.apply(this,n)}}var xt=function(t,e){this.router=t,this.base=function(t){if(!t)if(C){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=v,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function _t(t,e,n,i){var s=vt(t,function(t,i,s,r){var o=function(t,e){"function"!=typeof t&&(t=x.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map(function(t){return n(t,i,s,r)}):n(o,i,s,r)});return gt(i?s.reverse():s)}function Vt(t,e){if(e)return function(){return t.apply(e,arguments)}}xt.prototype.listen=function(t){this.cb=t},xt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},xt.prototype.onError=function(t){this.errorCbs.push(t)},xt.prototype.transitionTo=function(t,e,n){var i=this,s=this.router.match(t,this.current);this.confirmTransition(s,function(){i.updateRoute(s),e&&e(s),i.ensureURL(),i.ready||(i.ready=!0,i.readyCbs.forEach(function(t){t(s)}))},function(t){n&&n(t),t&&!i.ready&&(i.ready=!0,i.readyErrorCbs.forEach(function(e){e(t)}))})},xt.prototype.confirmTransition=function(t,e,n){var r=this,o=this.current,a=function(t){s(t)&&(r.errorCbs.length?r.errorCbs.forEach(function(e){e(t)}):(i(),console.error(t))),n&&n(t)};if(y(t,o)&&t.matched.length===o.matched.length)return this.ensureURL(),a();var c=function(t,e){var n,i=Math.max(t.length,e.length);for(n=0;n=0?e.slice(0,n):e)+"#"+t}function $t(t){at?dt(jt(t)):window.location.hash=t}function Ot(t){at?ft(jt(t)):window.location.replace(jt(t))}var It=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index+1).concat(t),i.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,function(){e.index=n,e.updateRoute(i)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(xt),At=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=K(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!at&&!1!==t.fallback,this.fallback&&(e="hash"),C||(e="abstract"),this.mode=e,e){case"history":this.history=new wt(this,t.base);break;case"hash":this.history=new kt(this,t.base,this.fallback);break;case"abstract":this.history=new It(this,t.base);break;default:0}},Pt={currentRoute:{configurable:!0}};function Dt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}At.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Pt.currentRoute.get=function(){return this.history&&this.history.current},At.prototype.init=function(t){var e=this;if(this.apps.push(t),!this.app){this.app=t;var n=this.history;if(n instanceof wt)n.transitionTo(n.getCurrentLocation());else if(n instanceof kt){var i=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},At.prototype.beforeEach=function(t){return Dt(this.beforeHooks,t)},At.prototype.beforeResolve=function(t){return Dt(this.resolveHooks,t)},At.prototype.afterEach=function(t){return Dt(this.afterHooks,t)},At.prototype.onReady=function(t,e){this.history.onReady(t,e)},At.prototype.onError=function(t){this.history.onError(t)},At.prototype.push=function(t,e,n){this.history.push(t,e,n)},At.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},At.prototype.go=function(t){this.history.go(t)},At.prototype.back=function(){this.go(-1)},At.prototype.forward=function(){this.go(1)},At.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},At.prototype.resolve=function(t,e,n){var i=X(t,e||this.history.current,n,this),s=this.match(i,e),r=s.redirectedFrom||s.fullPath;return{location:i,route:s,href:function(t,e,n){var i="hash"===n?"#"+e:e;return t?j(t+"/"+i):i}(this.history.base,r,this.mode),normalizedTo:i,resolved:s}},At.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==v&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(At.prototype,Pt),At.install=k,At.version="3.0.1",C&&window.Vue&&window.Vue.use(At),e.a=At},"06OY":function(t,e,n){var i=n("3Eo+")("meta"),s=n("EqjI"),r=n("D2L2"),o=n("evD5").f,a=0,c=Object.isExtensible||function(){return!0},l=!n("S82l")(function(){return c(Object.preventExtensions({}))}),u=function(t){o(t,i,{value:{i:"O"+ ++a,w:{}}})},h=t.exports={KEY:i,NEED:!1,fastKey:function(t,e){if(!s(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!r(t,i)){if(!c(t))return"F";if(!e)return"E";u(t)}return t[i].i},getWeak:function(t,e){if(!r(t,i)){if(!c(t))return!0;if(!e)return!1;u(t)}return t[i].w},onFreeze:function(t){return l&&h.NEED&&c(t)&&!r(t,i)&&u(t),t}}},"1kS7":function(t,e){e.f=Object.getOwnPropertySymbols},"3EgV":function(t,e,n){var i;"undefined"!=typeof self&&self,i=function(t){return function(t){var e={};function n(i){if(e[i])return e[i].exports;var s=e[i]={i:i,l:!1,exports:{}};return t[i].call(s.exports,s,s.exports,n),s.l=!0,s.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var s in t)n.d(i,s,function(e){return t[e]}.bind(null,s));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/dist/",n(n.s="./src/index.ts")}({"./src/components/VAlert/VAlert.ts": +/*!*****************************************!*\ + !*** ./src/components/VAlert/VAlert.ts ***! + \*****************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_alerts.styl */"./src/stylus/components/_alerts.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/transitionable */"./src/mixins/transitionable.ts"),a=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(a.default)(s.default,r.default,o.default).extend({name:"v-alert",props:{dismissible:Boolean,icon:String,outline:Boolean,type:{type:String,validator:function(t){return["info","error","success","warning"].includes(t)}}},computed:{computedColor:function(){return this.type&&!this.color?this.type:this.color||"error"},computedIcon:function(){if(this.icon||!this.type)return this.icon;switch(this.type){case"info":return"$vuetify.icons.info";case"error":return"$vuetify.icons.error";case"success":return"$vuetify.icons.success";case"warning":return"$vuetify.icons.warning"}}},methods:{genIcon:function(){return this.computedIcon?this.$createElement(i.default,{class:"v-alert__icon"},this.computedIcon):null},genDismissible:function(){var t=this;return this.dismissible?this.$createElement("a",{class:"v-alert__dismissible",on:{click:function(){t.isActive=!1}}},[this.$createElement(i.default,{props:{right:!0}},"$vuetify.icons.cancel")]):null}},render:function(t){var e=[this.genIcon(),t("div",this.$slots.default),this.genDismissible()],n=t("div",(this.outline?this.setTextColor:this.setBackgroundColor)(this.computedColor,{staticClass:"v-alert",class:{"v-alert--outline":this.outline},directives:[{name:"show",value:this.isActive}],on:this.$listeners}),e);return this.transition?t("transition",{props:{name:this.transition,origin:this.origin,mode:this.mode}},[n]):n}})},"./src/components/VAlert/index.ts": +/*!****************************************!*\ + !*** ./src/components/VAlert/index.ts ***! + \****************************************/ +/*! exports provided: VAlert, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VAlert */"./src/components/VAlert/VAlert.ts");n.d(e,"VAlert",function(){return i.default}),e.default=i.default},"./src/components/VApp/VApp.js": +/*!*************************************!*\ + !*** ./src/components/VApp/VApp.js ***! + \*************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_app.styl */"./src/stylus/components/_app.styl");var i=n(/*! ./mixins/app-theme */"./src/components/VApp/mixins/app-theme.js"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=n(/*! ../../directives/resize */"./src/directives/resize.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n"+this.generatedStyles+""}else"undefined"!=typeof document&&(this.genStyle(),this.applyTheme())},methods:{applyTheme:function(){this.style&&(this.style.innerHTML=this.generatedStyles)},genStyle:function(){var t=document.getElementById("vuetify-theme-stylesheet");t||((t=document.createElement("style")).type="text/css",t.id="vuetify-theme-stylesheet",this.$vuetify.options.cspNonce&&t.setAttribute("nonce",this.$vuetify.options.cspNonce),document.head.appendChild(t)),this.style=t}}}},"./src/components/VAutocomplete/VAutocomplete.js": +/*!*******************************************************!*\ + !*** ./src/components/VAutocomplete/VAutocomplete.js ***! + \*******************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_autocompletes.styl */"./src/stylus/components/_autocompletes.styl");var i=n(/*! ../VSelect/VSelect */"./src/components/VSelect/VSelect.js"),s=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),r=n(/*! ../../util/helpers */"./src/util/helpers.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1}},hideNoData:Boolean,noFilter:Boolean,searchInput:{default:void 0},menuProps:{type:i.default.props.menuProps.type,default:function(){return a}}},data:function(t){return{attrsInput:null,lazySearch:t.searchInput}},computed:{classes:function(){return Object.assign({},i.default.computed.classes.call(this),{"v-autocomplete":!0,"v-autocomplete--is-selecting-index":this.selectedIndex>-1})},computedItems:function(){return this.filteredItems},displayedItemsCount:function(){return this.hideSelected?this.filteredItems.length-this.selectedItems.length:this.filteredItems.length},currentRange:function(){return null==this.selectedItem?0:this.getText(this.selectedItem).toString().length},filteredItems:function(){var t=this;return!this.isSearching||this.noFilter?this.allItems:this.allItems.filter(function(e){return t.filter(e,t.internalSearch,t.getText(e))})},internalSearch:{get:function(){return this.lazySearch},set:function(t){this.lazySearch=t,this.$emit("update:searchInput",t)}},isAnyValueAllowed:function(){return!1},isDirty:function(){return this.searchIsDirty||this.selectedItems.length>0},isSearching:function(){return this.multiple?this.searchIsDirty:this.searchIsDirty&&this.internalSearch!==this.getText(this.selectedItem)},menuCanShow:function(){return!!this.isFocused&&(this.displayedItemsCount>0||!this.hideNoData)},$_menuProps:function(){var t=i.default.computed.$_menuProps.call(this);return t.contentClass=("v-autocomplete__content "+(t.contentClass||"")).trim(),o({},a,t)},searchIsDirty:function(){return null!=this.internalSearch&&""!==this.internalSearch},selectedItem:function(){var t=this;return this.multiple?null:this.selectedItems.find(function(e){return t.valueComparator(t.getValue(e),t.getValue(t.internalValue))})},listData:function(){var t=i.default.computed.listData.call(this);return Object.assign(t.props,{items:this.virtualizedItems,noFilter:this.noFilter||!this.isSearching||!this.filteredItems.length,searchInput:this.internalSearch}),t}},watch:{filteredItems:function(t){this.onFilteredItemsChanged(t)},internalValue:function(){this.setSearch()},isFocused:function(t){t?this.$refs.input&&this.$refs.input.select():this.updateSelf()},isMenuActive:function(t){!t&&this.hasSlot&&(this.lazySearch=null)},items:function(t){this.isFocused&&!this.isMenuActive&&t.length&&this.activateMenu()},searchInput:function(t){this.lazySearch=t},internalSearch:function(t){this.onInternalSearchChanged(t)}},created:function(){this.setSearch()},methods:{onFilteredItemsChanged:function(t){var e=this;this.setMenuIndex(-1),this.$nextTick(function(){e.setMenuIndex(1===t.length?0:-1)})},onInternalSearchChanged:function(t){this.updateMenuDimensions()},updateMenuDimensions:function(){this.isMenuActive&&this.$refs.menu&&this.$refs.menu.updateDimensions()},changeSelectedIndex:function(t){if(!this.searchIsDirty&&[r.keyCodes.backspace,r.keyCodes.left,r.keyCodes.right,r.keyCodes.delete].includes(t)){var e=this.selectedItems.length-1;if(t===r.keyCodes.left)this.selectedIndex=-1===this.selectedIndex?e:this.selectedIndex-1;else if(t===r.keyCodes.right)this.selectedIndex=this.selectedIndex>=e?-1:this.selectedIndex+1;else if(-1===this.selectedIndex)return void(this.selectedIndex=e);var n=this.selectedItems[this.selectedIndex];if([r.keyCodes.backspace,r.keyCodes.delete].includes(t)&&!this.getDisabled(n)){var i=this.selectedIndex===e?this.selectedIndex-1:this.selectedItems[this.selectedIndex+1]?this.selectedIndex:-1;-1===i?this.internalValue=this.multiple?[]:void 0:this.selectItem(n),this.selectedIndex=i}}},clearableCallback:function(){this.internalSearch=void 0,i.default.methods.clearableCallback.call(this)},genInput:function(){var t=s.default.methods.genInput.call(this);return t.data.attrs.role="combobox",t.data.domProps.value=this.internalSearch,t},genSelections:function(){return this.hasSlot||this.multiple?i.default.methods.genSelections.call(this):[]},onClick:function(){this.isDisabled||(this.selectedIndex>-1?this.selectedIndex=-1:this.onFocus(),this.activateMenu())},onEnterDown:function(){},onInput:function(t){this.selectedIndex>-1||(t.target.value&&(this.activateMenu(),this.isAnyValueAllowed||this.setMenuIndex(0)),this.mask&&this.resetSelections(t.target),this.internalSearch=t.target.value,this.badInput=t.target.validity&&t.target.validity.badInput)},onKeyDown:function(t){var e=t.keyCode;i.default.methods.onKeyDown.call(this,t),this.changeSelectedIndex(e)},onTabDown:function(t){i.default.methods.onTabDown.call(this,t),this.updateSelf()},selectItem:function(t){i.default.methods.selectItem.call(this,t),this.setSearch()},setSelectedItems:function(){i.default.methods.setSelectedItems.call(this),this.isFocused||this.setSearch()},setSearch:function(){var t=this;this.$nextTick(function(){t.internalSearch=!t.selectedItem||t.multiple||t.hasSlot?null:t.getText(t.selectedItem)})},setValue:function(){this.internalValue=this.internalSearch,this.$emit("change",this.internalSearch)},updateSelf:function(){this.updateAutocomplete()},updateAutocomplete:function(){(this.searchIsDirty||this.internalValue)&&(this.valueComparator(this.internalSearch,this.getValue(this.internalValue))||this.setSearch())}}}},"./src/components/VAutocomplete/index.js": +/*!***********************************************!*\ + !*** ./src/components/VAutocomplete/index.js ***! + \***********************************************/ +/*! exports provided: VAutocomplete, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VAutocomplete */"./src/components/VAutocomplete/VAutocomplete.js");n.d(e,"VAutocomplete",function(){return i.default}),e.default=i.default},"./src/components/VAvatar/VAvatar.ts": +/*!*******************************************!*\ + !*** ./src/components/VAvatar/VAvatar.ts ***! + \*******************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_avatars.styl */"./src/stylus/components/_avatars.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1){if(this.mandatory&&1===n.length)return;n.length>=1&&n.splice(i,1)}else n.push(e);this.$emit("change",n)}else{if(this.mandatory&&this.inputValue===e)return;this.$emit("change",this.inputValue===e?null:e)}},updateAllValues:function(){if(this.multiple){for(var t=[],e=0;e0}},nextIcon:{type:[Boolean,String],default:"$vuetify.icons.next"},prevIcon:{type:[Boolean,String],default:"$vuetify.icons.prev"},value:Number},data:function(){return{inputValue:null,items:[],slideTimeout:null,reverse:!1}},computed:{isDark:function(){return this.dark||!this.light}},watch:{items:function(){this.inputValue>=this.items.length&&(this.inputValue=this.items.length-1)},inputValue:function(){for(var t=(this.items[this.inputValue]||{}).uid,e=this.items.length;--e>=0;)this.items[e].open(t,this.reverse);this.$emit("input",this.inputValue),this.restartTimeout()},value:function(t){this.inputValue=t},interval:function(){this.restartTimeout()},cycle:function(t){t?this.restartTimeout():(clearTimeout(this.slideTimeout),this.slideTimeout=null)}},mounted:function(){this.init()},methods:{genDelimiters:function(){return this.$createElement("div",{staticClass:"v-carousel__controls"},this.genItems())},genIcon:function(t,e,n){return e?this.$createElement("div",{staticClass:"v-carousel__"+t},[this.$createElement(i.default,{props:{icon:!0},on:{click:n}},[this.$createElement(s.default,{props:{size:"46px"}},e)])]):null},genItems:function(){var t=this;return this.items.map(function(e,n){return t.$createElement(i.default,{class:{"v-carousel__controls__item":!0,"v-carousel__controls__item--active":n===t.inputValue},props:{icon:!0,small:!0},key:n,on:{click:t.select.bind(t,n)}},[t.$createElement(s.default,{props:{size:"18px"}},t.delimiterIcon)])})},restartTimeout:function(){this.slideTimeout&&clearTimeout(this.slideTimeout),this.slideTimeout=null,(requestAnimationFrame||setTimeout)(this.startTimeout)},init:function(){this.inputValue=this.value||0},next:function(){this.reverse=!1,this.inputValue=(this.inputValue+1)%this.items.length},prev:function(){this.reverse=!0,this.inputValue=(this.inputValue+this.items.length-1)%this.items.length},select:function(t){this.reverse=t0?this.interval:6e3))},register:function(t,e){this.items.push({uid:t,open:e})},unregister:function(t){this.items=this.items.filter(function(e){return e.uid!==t})}},render:function(t){return t("div",{staticClass:"v-carousel",directives:[{name:"touch",value:{left:this.next,right:this.prev}}]},[this.hideControls?null:this.genIcon("prev",this.$vuetify.rtl?this.nextIcon:this.prevIcon,this.prev),this.hideControls?null:this.genIcon("next",this.$vuetify.rtl?this.prevIcon:this.nextIcon,this.next),this.hideDelimiters?null:this.genDelimiters(),this.$slots.default])}}},"./src/components/VCarousel/VCarouselItem.js": +/*!***************************************************!*\ + !*** ./src/components/VCarousel/VCarouselItem.js ***! + \***************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VImg */"./src/components/VImg/index.ts"),s=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0||!!this.$slots["no-data"]&&!this.hideNoData)}},methods:{onFilteredItemsChanged:function(){},onInternalSearchChanged:function(t){if(t&&this.multiple&&this.delimiters){var e=this.delimiters.find(function(e){return t.endsWith(e)});if(null==e)return;this.internalSearch=t.slice(0,t.length-e.length),this.updateTags()}this.updateMenuDimensions()},genChipSelection:function(t,e){var n=this,s=i.default.methods.genChipSelection.call(this,t,e);return this.multiple&&(s.componentOptions.listeners.dblclick=function(){n.editingIndex=e,n.internalSearch=n.getText(t),n.selectedIndex=-1}),s},onChipInput:function(t){i.default.methods.onChipInput.call(this,t),this.editingIndex=-1},onEnterDown:function(t){t.preventDefault(),i.default.methods.onEnterDown.call(this),this.getMenuIndex()>-1||this.updateSelf()},onKeyDown:function(t){var e=t.keyCode;i.default.methods.onKeyDown.call(this,t),this.multiple&&e===r.keyCodes.left&&0===this.$refs.input.selectionStart&&this.updateSelf(),this.changeSelectedIndex(e)},onTabDown:function(t){if(this.multiple&&this.internalSearch&&-1===this.getMenuIndex())return t.preventDefault(),t.stopPropagation(),this.updateTags();s.default.methods.onTabDown.call(this,t)},selectItem:function(t){this.editingIndex>-1?this.updateEditing():i.default.methods.selectItem.call(this,t),this.setSearch()},setSelectedItems:function(){null==this.internalValue||""===this.internalValue?this.selectedItems=[]:this.selectedItems=this.multiple?this.internalValue:[this.internalValue]},updateEditing:function(){var t=this.internalValue.slice();t[this.editingIndex]=this.internalSearch,this.internalValue=t,this.editingIndex=-1},updateCombobox:function(){var t=Boolean(this.$scopedSlots.selection)||this.hasChips;t&&!this.searchIsDirty||(this.internalSearch!==this.getText(this.internalValue)&&this.setValue(),t&&(this.internalSearch=void 0))},updateSelf:function(){this.multiple?this.updateTags():this.updateCombobox()},updateTags:function(){var t=this.getMenuIndex();if(!(t<0)||this.searchIsDirty){if(this.editingIndex>-1)return this.updateEditing();var e=this.selectedItems.indexOf(this.internalSearch);if(e>-1&&this.internalValue.splice(e,1),t>-1)return this.internalSearch=null;this.selectItem(this.internalSearch),this.internalSearch=null}}}}},"./src/components/VCombobox/index.js": +/*!*******************************************!*\ + !*** ./src/components/VCombobox/index.js ***! + \*******************************************/ +/*! exports provided: VCombobox, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCombobox */"./src/components/VCombobox/VCombobox.js");n.d(e,"VCombobox",function(){return i.default}),e.default=i.default},"./src/components/VCounter/VCounter.js": +/*!*********************************************!*\ + !*** ./src/components/VCounter/VCounter.js ***! + \*********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_counters.styl */"./src/stylus/components/_counters.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;nr},Object(i.functionalThemeClasses)(e))},a)}}},"./src/components/VCounter/index.js": +/*!******************************************!*\ + !*** ./src/components/VCounter/index.js ***! + \******************************************/ +/*! exports provided: VCounter, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCounter */"./src/components/VCounter/VCounter.js");n.d(e,"VCounter",function(){return i.default}),e.default=i.default},"./src/components/VDataIterator/VDataIterator.js": +/*!*******************************************************!*\ + !*** ./src/components/VDataIterator/VDataIterator.js ***! + \*******************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_data-iterator.styl */"./src/stylus/components/_data-iterator.styl");var i=n(/*! ../../mixins/data-iterable */"./src/mixins/data-iterable.js"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},a=function(){for(var t=[],e=0;e0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default={name:"v-date-picker",mixins:[c.default],props:{allowedDates:Function,dayFormat:{type:Function,default:null},events:{type:[Array,Object,Function],default:function(){return null}},eventColor:{type:[String,Function,Object],default:"warning"},firstDayOfWeek:{type:[String,Number],default:0},headerDateFormat:{type:Function,default:null},locale:{type:String,default:"en-us"},max:String,min:String,monthFormat:{type:Function,default:null},multiple:Boolean,nextIcon:{type:String,default:"$vuetify.icons.next"},pickerDate:String,prevIcon:{type:String,default:"$vuetify.icons.prev"},reactive:Boolean,readonly:Boolean,scrollable:Boolean,showCurrent:{type:[Boolean,String],default:!0},titleDateFormat:{type:Function,default:null},type:{type:String,default:"date",validator:function(t){return["date","month"].includes(t)}},value:[Array,String],yearFormat:{type:Function,default:null},yearIcon:String},data:function(){var t=this,e=new Date;return{activePicker:this.type.toUpperCase(),inputDay:null,inputMonth:null,inputYear:null,isReversing:!1,now:e,tableDate:function(){if(t.pickerDate)return t.pickerDate;var n=(t.multiple?t.value[t.value.length-1]:t.value)||e.getFullYear()+"-"+(e.getMonth()+1),i="date"===t.type?"month":"year";return t.sanitizeDateString(n,i)}()}},computed:{lastValue:function(){return this.multiple?this.value[this.value.length-1]:this.value},selectedMonths:function(){return this.value&&this.value.length&&"month"!==this.type?this.multiple?this.value.map(function(t){return t.substr(0,7)}):this.value.substr(0,7):this.value},current:function(){return!0===this.showCurrent?this.sanitizeDateString(this.now.getFullYear()+"-"+(this.now.getMonth()+1)+"-"+this.now.getDate(),this.type):this.showCurrent||null},inputDate:function(){return"date"===this.type?this.inputYear+"-"+Object(l.pad)(this.inputMonth+1)+"-"+Object(l.pad)(this.inputDay):this.inputYear+"-"+Object(l.pad)(this.inputMonth+1)},tableMonth:function(){return(this.pickerDate||this.tableDate).split("-")[1]-1},tableYear:function(){return 1*(this.pickerDate||this.tableDate).split("-")[0]},minMonth:function(){return this.min?this.sanitizeDateString(this.min,"month"):null},maxMonth:function(){return this.max?this.sanitizeDateString(this.max,"month"):null},minYear:function(){return this.min?this.sanitizeDateString(this.min,"year"):null},maxYear:function(){return this.max?this.sanitizeDateString(this.max,"year"):null},formatters:function(){return{year:this.yearFormat||Object(l.createNativeLocaleFormatter)(this.locale,{year:"numeric",timeZone:"UTC"},{length:4}),titleDate:this.titleDateFormat||(this.multiple?this.defaultTitleMultipleDateFormatter:this.defaultTitleDateFormatter)}},defaultTitleMultipleDateFormatter:function(){var t=this;return this.value.length<2?function(e){return e.length?t.defaultTitleDateFormatter(e[0]):"0 selected"}:function(t){return t.length+" selected"}},defaultTitleDateFormatter:function(){var t=Object(l.createNativeLocaleFormatter)(this.locale,{year:{year:"numeric",timeZone:"UTC"},month:{month:"long",timeZone:"UTC"},date:{weekday:"short",month:"short",day:"numeric",timeZone:"UTC"}}[this.type],{start:0,length:{date:10,month:7,year:4}[this.type]});return this.landscape?function(e){return t(e).replace(/([^\d\s])([\d])/g,function(t,e,n){return e+" "+n}).replace(", ",",
")}:t}},watch:{tableDate:function(t,e){var n="month"===this.type?"year":"month";this.isReversing=this.sanitizeDateString(t,n)-1:this.events instanceof Function&&this.events(t)},genTBody:function(){for(var t=[],e=new Date(this.displayedYear,this.displayedMonth+1,0).getDate(),n=[],i=this.weekDaysBeforeFirstDayOfTheMonth();i--;)n.push(this.$createElement("td"));for(i=1;i<=e;i++){var s=this.displayedYear+"-"+Object(o.pad)(this.displayedMonth+1)+"-"+Object(o.pad)(i);n.push(this.$createElement("td",[this.genButton(s,!0),this.isEvent(s)?this.genEvent(s):null])),n.length%7==0&&(t.push(this.genTR(n)),n=[])}return n.length&&t.push(this.genTR(n)),this.$createElement("tbody",t)},genTR:function(t){return[this.$createElement("tr",t)]}},render:function(){return this.genTable("v-date-picker-table v-date-picker-table--date",[this.genTHead(),this.genTBody()])}}},"./src/components/VDatePicker/VDatePickerHeader.js": +/*!*********************************************************!*\ + !*** ./src/components/VDatePicker/VDatePickerHeader.js ***! + \*********************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_date-picker-header.styl */"./src/stylus/components/_date-picker-header.styl");var i=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),s=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ./util */"./src/components/VDatePicker/util/index.js"),c=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default={name:"v-date-picker-header",mixins:[r.default,o.default],props:{disabled:Boolean,format:{type:Function,default:null},locale:{type:String,default:"en-us"},min:String,max:String,nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},value:{type:[Number,String],required:!0}},data:function(){return{isReversing:!1}},computed:{formatter:function(){return this.format?this.format:String(this.value).split("-")[1]?Object(a.createNativeLocaleFormatter)(this.locale,{month:"long",year:"numeric",timeZone:"UTC"},{length:7}):Object(a.createNativeLocaleFormatter)(this.locale,{year:"numeric",timeZone:"UTC"},{length:4})}},watch:{value:function(t,e){this.isReversing=t0&&this.max&&this.calculateChange(t)>this.max;return this.$createElement(i.default,{props:{dark:this.dark,disabled:n,icon:!0,light:this.light},nativeOn:{click:function(n){n.stopPropagation(),e.$emit("input",e.calculateChange(t))}}},[this.$createElement(s.default,t<0==!this.$vuetify.rtl?this.prevIcon:this.nextIcon)])},calculateChange:function(t){var e=c(String(this.value).split("-").map(function(t){return 1*t}),2),n=e[0];return null==e[1]?""+(n+t):Object(a.monthChange)(String(this.value),t)},genHeader:function(){var t=this,e=!this.disabled&&(this.color||"accent"),n=this.$createElement("strong",this.setTextColor(e,{key:String(this.value),on:{click:function(){return t.$emit("toggle")}}}),[this.$slots.default||this.formatter(String(this.value))]),i=this.$createElement("transition",{props:{name:this.isReversing===!this.$vuetify.rtl?"tab-reverse-transition":"tab-transition"}},[n]);return this.$createElement("div",{staticClass:"v-date-picker-header__value",class:{"v-date-picker-header__value--disabled":this.disabled}},[i])}},render:function(){return this.$createElement("div",{staticClass:"v-date-picker-header",class:this.themeClasses},[this.genBtn(-1),this.genHeader(),this.genBtn(1)])}}},"./src/components/VDatePicker/VDatePickerMonthTable.js": +/*!*************************************************************!*\ + !*** ./src/components/VDatePicker/VDatePickerMonthTable.js ***! + \*************************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ./mixins/date-picker-table */"./src/components/VDatePicker/mixins/date-picker-table.js"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ./util */"./src/components/VDatePicker/util/index.js");e.default={name:"v-date-picker-month-table",mixins:[i.default,s.default,r.default],computed:{formatter:function(){return this.format||Object(o.createNativeLocaleFormatter)(this.locale,{month:"short",timeZone:"UTC"},{start:5,length:2})}},methods:{calculateTableDate:function(t){return""+(parseInt(this.tableDate,10)+Math.sign(t||1))},genTBody:function(){for(var t=this,e=[],n=Array(3).fill(null),i=12/n.length,s=function(i){var s=n.map(function(e,s){var r=i*n.length+s;return t.$createElement("td",{key:r},[t.genButton(t.displayedYear+"-"+Object(o.pad)(r+1),!1)])});e.push(r.$createElement("tr",{key:i},s))},r=this,a=0;a=i;s--)t.push(this.genYearItem(s));return t}},render:function(){return this.$createElement("ul",{staticClass:"v-date-picker-years",ref:"years"},this.genYearItems())}}},"./src/components/VDatePicker/index.js": +/*!*********************************************!*\ + !*** ./src/components/VDatePicker/index.js ***! + \*********************************************/ +/*! exports provided: VDatePicker, VDatePickerTitle, VDatePickerHeader, VDatePickerDateTable, VDatePickerMonthTable, VDatePickerYears, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDatePicker */"./src/components/VDatePicker/VDatePicker.js");n.d(e,"VDatePicker",function(){return i.default});var s=n(/*! ./VDatePickerTitle */"./src/components/VDatePicker/VDatePickerTitle.js");n.d(e,"VDatePickerTitle",function(){return s.default});var r=n(/*! ./VDatePickerHeader */"./src/components/VDatePicker/VDatePickerHeader.js");n.d(e,"VDatePickerHeader",function(){return r.default});var o=n(/*! ./VDatePickerDateTable */"./src/components/VDatePicker/VDatePickerDateTable.js");n.d(e,"VDatePickerDateTable",function(){return o.default});var a=n(/*! ./VDatePickerMonthTable */"./src/components/VDatePicker/VDatePickerMonthTable.js");n.d(e,"VDatePickerMonthTable",function(){return a.default});var c=n(/*! ./VDatePickerYears */"./src/components/VDatePicker/VDatePickerYears.js");n.d(e,"VDatePickerYears",function(){return c.default}),e.default={$_vuetify_subcomponents:{VDatePicker:i.default,VDatePickerTitle:s.default,VDatePickerHeader:r.default,VDatePickerDateTable:o.default,VDatePickerMonthTable:a.default,VDatePickerYears:c.default}}},"./src/components/VDatePicker/mixins/date-picker-table.js": +/*!****************************************************************!*\ + !*** ./src/components/VDatePicker/mixins/date-picker-table.js ***! + \****************************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../../stylus/components/_date-picker-table.styl */"./src/stylus/components/_date-picker-table.styl");var i=n(/*! ../../../directives/touch */"./src/directives/touch.ts"),s=n(/*! .././util/isDateAllowed */"./src/components/VDatePicker/util/isDateAllowed.js"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n'+this.formatter(t)+""},on:this.disabled||!i?{}:{click:function(){return n.$emit("input",t)}}}))},wheel:function(t){t.preventDefault(),this.$emit("tableDate",this.calculateTableDate(t.deltaY))},touch:function(t){this.$emit("tableDate",this.calculateTableDate(t))},genTable:function(t,e){var n=this,i=this.$createElement("transition",{props:{name:this.computedTransition}},[this.$createElement("table",{key:this.tableDate},e)]),s={name:"touch",value:{left:function(t){return t.offsetX<-15&&n.touch(1)},right:function(t){return t.offsetX>15&&n.touch(-1)}}};return this.$createElement("div",{staticClass:t,class:this.themeClasses,on:this.scrollable?{wheel:this.wheel}:void 0,directives:[s]},[i])}}}},"./src/components/VDatePicker/util/createNativeLocaleFormatter.js": +/*!************************************************************************!*\ + !*** ./src/components/VDatePicker/util/createNativeLocaleFormatter.js ***! + \************************************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js"),s=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default=function(t,e,n){var r=void 0===n?{start:0,length:0}:n,o=r.start,a=r.length,c=function(t){var e=s(t.trim().split(" ")[0].split("-"),3),n=e[0],r=e[1],o=e[2];return[n,Object(i.default)(r||1),Object(i.default)(o||1)].join("-")};try{var l=new Intl.DateTimeFormat(t||void 0,e);return function(t){return l.format(new Date(c(t)+"T00:00:00+00:00"))}}catch(t){return o||a?function(t){return c(t).substr(o,a)}:null}}},"./src/components/VDatePicker/util/index.js": +/*!**************************************************!*\ + !*** ./src/components/VDatePicker/util/index.js ***! + \**************************************************/ +/*! exports provided: createNativeLocaleFormatter, monthChange, pad */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./createNativeLocaleFormatter */"./src/components/VDatePicker/util/createNativeLocaleFormatter.js");n.d(e,"createNativeLocaleFormatter",function(){return i.default});var s=n(/*! ./monthChange */"./src/components/VDatePicker/util/monthChange.js");n.d(e,"monthChange",function(){return s.default});var r=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js");n.d(e,"pad",function(){return r.default})},"./src/components/VDatePicker/util/isDateAllowed.js": +/*!**********************************************************!*\ + !*** ./src/components/VDatePicker/util/isDateAllowed.js ***! + \**********************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";function i(t,e,n,i){return(!i||i(t))&&(!e||t>=e)&&(!n||t<=n)}n.r(e),n.d(e,"default",function(){return i})},"./src/components/VDatePicker/util/monthChange.js": +/*!********************************************************!*\ + !*** ./src/components/VDatePicker/util/monthChange.js ***! + \********************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js"),s=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};e.default=function(t,e){var n=s(t.split("-").map(function(t){return 1*t}),2),r=n[0],o=n[1];return o+e===0?r-1+"-12":o+e===13?r+1+"-01":r+"-"+Object(i.default)(o+e)}},"./src/components/VDatePicker/util/pad.js": +/*!************************************************!*\ + !*** ./src/components/VDatePicker/util/pad.js ***! + \************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);e.default=function(t,e){return void 0===e&&(e=2),n=t,i=e,s="0",i>>=0,n=String(n),s=String(s),n.length>i?String(n):((i-=n.length)>s.length&&(s+=s.repeat(i/s.length)),s.slice(0,i)+String(n));var n,i,s}},"./src/components/VDialog/VDialog.js": +/*!*******************************************!*\ + !*** ./src/components/VDialog/VDialog.js ***! + \*******************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_dialogs.styl */"./src/stylus/components/_dialogs.styl");var i=n(/*! ../../mixins/dependent */"./src/mixins/dependent.js"),s=n(/*! ../../mixins/detachable */"./src/mixins/detachable.js"),r=n(/*! ../../mixins/overlayable */"./src/mixins/overlayable.js"),o=n(/*! ../../mixins/returnable */"./src/mixins/returnable.js"),a=n(/*! ../../mixins/stackable */"./src/mixins/stackable.js"),c=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),l=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=n(/*! ../../util/ThemeProvider */"./src/util/ThemeProvider.ts"),d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=this.getMaxZIndex())},show:function(){!this.fullscreen&&!this.hideOverlay&&this.genOverlay(),this.fullscreen&&this.hideScroll(),this.$refs.content.focus(),this.$listeners.keydown&&this.bind()},bind:function(){window.addEventListener("keydown",this.onKeydown)},unbind:function(){window.removeEventListener("keydown",this.onKeydown)},onKeydown:function(t){this.$emit("keydown",t)}},render:function(t){var e=this,n=[],i={class:this.classes,ref:"dialog",directives:[{name:"click-outside",value:function(){return e.isActive=!1},args:{closeConditional:this.closeConditional,include:this.getOpenDependentElements}},{name:"show",value:this.isActive}],on:{click:function(t){t.stopPropagation()}}};this.fullscreen||(i.style={maxWidth:"none"===this.maxWidth?void 0:Object(u.convertToUnit)(this.maxWidth),width:"auto"===this.width?void 0:Object(u.convertToUnit)(this.width)}),this.$slots.activator&&n.push(t("div",{staticClass:"v-dialog__activator",class:{"v-dialog__activator--disabled":this.disabled},on:{click:function(t){t.stopPropagation(),e.disabled||(e.isActive=!e.isActive)}}},[this.$slots.activator]));var s=t("div",i,this.showLazyContent(this.$slots.default));return this.transition&&(s=t("transition",{props:{name:this.transition,origin:this.origin}},[s])),n.push(t("div",{class:this.contentClasses,attrs:d({tabIndex:"-1"},this.getScopeIdAttrs()),style:{zIndex:this.activeZIndex},ref:"content"},[this.$createElement(h.default,{props:{dark:this.$vuetify.dark||this.dark}},[s])])),t("div",{staticClass:"v-dialog__container",style:{display:!this.$slots.activator||this.fullWidth?"block":"inline-block"}},n)}}},"./src/components/VDialog/index.js": +/*!*****************************************!*\ + !*** ./src/components/VDialog/index.js ***! + \*****************************************/ +/*! exports provided: VDialog, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDialog */"./src/components/VDialog/VDialog.js");n.d(e,"VDialog",function(){return i.default}),e.default=i.default},"./src/components/VDivider/VDivider.ts": +/*!*********************************************!*\ + !*** ./src/components/VDivider/VDivider.ts ***! + \*********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_dividers.styl */"./src/stylus/components/_dividers.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1&&(i[e]=!0),this.open=i}this.$emit("input",t?this.open:e>-1?e:null)},value:function(t){this.updateFromValue(t)}},mounted:function(){null!==this.value&&this.updateFromValue(this.value)},methods:{updateFromValue:function(t){if(!Array.isArray(t)||this.expand){var e=Array(this.items.length).fill(!1);"number"==typeof t?e[t]=!0:null!==t&&(e=t),this.updatePanels(e)}},updatePanels:function(t){this.open=t;for(var e=0;e0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},d=function(){for(var t=[],e=0;e-1;return f?function(t){return["fas","far","fal","fab"].some(function(e){return t.includes(e)})}(u=l.slice(0,d))&&(u=""):o.push(l),c.class=h(((e={"v-icon--disabled":this.disabled,"v-icon--left":this.left,"v-icon--link":this.$listeners.click||this.$listeners["!click"],"v-icon--right":this.right})[u]=!0,e[l]=f,e),this.themeClasses),t("i",this.setTextColor(this.color,c),o)}});e.default=l.a.extend({name:"v-icon",$_wrapperFor:d,functional:!0,render:function(t,e){var n=e.data,i=e.children,s="";return n.domProps&&(s=n.domProps.textContent||n.domProps.innerHTML||s,delete n.domProps.textContent,delete n.domProps.innerHTML),t(d,n,s?[s]:i)}})},"./src/components/VIcon/index.ts": +/*!***************************************!*\ + !*** ./src/components/VIcon/index.ts ***! + \***************************************/ +/*! exports provided: VIcon, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VIcon */"./src/components/VIcon/VIcon.ts");n.d(e,"VIcon",function(){return i.default}),e.default=i.default},"./src/components/VImg/VImg.ts": +/*!*************************************!*\ + !*** ./src/components/VImg/VImg.ts ***! + \*************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_images.styl */"./src/stylus/components/_images.styl");var i=n(/*! ../VResponsive */"./src/components/VResponsive/index.ts"),s=n(/*! ../../util/console */"./src/util/console.ts");e.default=i.default.extend({name:"v-img",props:{alt:String,contain:Boolean,src:{type:[String,Object],default:""},gradient:String,lazySrc:String,srcset:String,sizes:String,position:{type:String,default:"center center"},transition:{type:[Boolean,String],default:"fade-transition"}},data:function(){return{currentSrc:"",image:null,isLoading:!0,calculatedAspectRatio:void 0}},computed:{computedAspectRatio:function(){return this.normalisedSrc.aspect},normalisedSrc:function(){return"string"==typeof this.src?{src:this.src,srcset:this.srcset,lazySrc:this.lazySrc,aspect:Number(this.aspectRatio||this.calculatedAspectRatio)}:{src:this.src.src,srcset:this.srcset||this.src.srcset,lazySrc:this.lazySrc||this.src.lazySrc,aspect:Number(this.aspectRatio||this.src.aspect||this.calculatedAspectRatio)}},__cachedImage:function(){if(!this.normalisedSrc.src&&!this.normalisedSrc.lazySrc)return[];var t=[],e=this.isLoading?this.normalisedSrc.lazySrc:this.currentSrc;this.gradient&&t.push("linear-gradient("+this.gradient+")"),e&&t.push('url("'+e+'")');var n=this.$createElement("div",{staticClass:"v-image__image",class:{"v-image__image--preload":this.isLoading,"v-image__image--contain":this.contain,"v-image__image--cover":!this.contain},style:{backgroundImage:t.join(", "),backgroundPosition:this.position},key:+this.isLoading});return this.transition?this.$createElement("transition",{attrs:{name:this.transition,mode:"in-out"}},[n]):n}},watch:{src:function(){this.isLoading?this.loadImage():this.init()},"$vuetify.breakpoint.width":"getSrc"},beforeMount:function(){this.init()},methods:{init:function(){if(this.normalisedSrc.lazySrc){var t=new Image;t.src=this.normalisedSrc.lazySrc,this.pollForSize(t,null)}this.normalisedSrc.src&&this.loadImage()},onLoad:function(){this.getSrc(),this.isLoading=!1,this.$emit("load",this.src)},onError:function(t){Object(s.consoleError)("Image load failed\n\nsrc: "+this.normalisedSrc.src+(t.message?"\nOriginal error: "+t.message:""),this),this.$emit("error",this.src)},getSrc:function(){this.image&&(this.currentSrc=this.image.currentSrc||this.image.src)},loadImage:function(){var t=this,e=new Image;this.image=e,e.onload=function(){e.decode?e.decode().catch(function(e){Object(s.consoleWarn)("Failed to decode image, trying to render anyway\n\nsrc: "+t.normalisedSrc.src+(e.message?"\nOriginal error: "+e.message:""),t)}).then(t.onLoad):t.onLoad()},e.onerror=this.onError,e.src=this.normalisedSrc.src,this.sizes&&(e.sizes=this.sizes),this.normalisedSrc.srcset&&(e.srcset=this.normalisedSrc.srcset),this.aspectRatio||this.pollForSize(e),this.getSrc()},pollForSize:function(t,e){var n=this;void 0===e&&(e=100);!function i(){var s=t.naturalHeight,r=t.naturalWidth;s||r?n.calculatedAspectRatio=r/s:null!=e&&setTimeout(i,e)}()},__genPlaceholder:function(){if(this.$slots.placeholder){var t=this.isLoading?[this.$createElement("div",{staticClass:"v-image__placeholder"},this.$slots.placeholder)]:[];return this.transition?this.$createElement("transition",{attrs:{name:this.transition}},t):t[0]}}},render:function(t){var e=i.default.options.render.call(this,t);return e.data.staticClass+=" v-image",e.data.attrs={role:this.alt?"img":void 0,"aria-label":this.alt},e.children=[this.__cachedSizer,this.__cachedImage,this.__genPlaceholder(),this.genContent()],t(e.tag,e.data,e.children)}})},"./src/components/VImg/index.ts": +/*!**************************************!*\ + !*** ./src/components/VImg/index.ts ***! + \**************************************/ +/*! exports provided: VImg, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VImg */"./src/components/VImg/VImg.ts");n.d(e,"VImg",function(){return i.default}),e.default=i.default},"./src/components/VInput/VInput.js": +/*!*****************************************!*\ + !*** ./src/components/VInput/VInput.js ***! + \*****************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_inputs.styl */"./src/stylus/components/_inputs.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../VLabel */"./src/components/VLabel/index.js"),r=n(/*! ../VMessages */"./src/components/VMessages/index.js"),o=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),a=n(/*! ../../mixins/loadable */"./src/mixins/loadable.ts"),c=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=n(/*! ../../mixins/validatable */"./src/mixins/validatable.js"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=n(/*! ../../util/console */"./src/util/console.ts"),d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n-1&&this.groups.splice(e,1)},listClick:function(t){if(!this.expand)for(var e=this.groups.length;e--;)this.groups[e].cb(t)}},render:function(t){return t("div",{staticClass:"v-list",class:this.classes},[this.$slots.default])}}},"./src/components/VList/VListGroup.js": +/*!********************************************!*\ + !*** ./src/components/VList/VListGroup.js ***! + \********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../components/VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../mixins/bootable */"./src/mixins/bootable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),a=n(/*! ../transitions */"./src/components/transitions/index.js");e.default={name:"v-list-group",mixins:[s.default,Object(o.inject)("list","v-list-group","v-list"),r.default],inject:["listClick"],props:{activeClass:{type:String,default:"primary--text"},appendIcon:{type:String,default:"$vuetify.icons.expand"},disabled:Boolean,group:String,noAction:Boolean,prependIcon:String,subGroup:Boolean},data:function(){return{groups:[]}},computed:{groupClasses:function(){return{"v-list__group--active":this.isActive,"v-list__group--disabled":this.disabled}},headerClasses:function(){return{"v-list__group__header--active":this.isActive,"v-list__group__header--sub-group":this.subGroup}},itemsClasses:function(){return{"v-list__group__items--no-action":this.noAction}}},watch:{isActive:function(t){!this.subGroup&&t&&this.listClick(this._uid)},$route:function(t){var e=this.matchRoute(t.path);this.group&&(e&&this.isActive!==e&&this.listClick(this._uid),this.isActive=e)}},mounted:function(){this.list.register(this._uid,this.toggle),this.group&&this.$route&&null==this.value&&(this.isActive=this.matchRoute(this.$route.path))},beforeDestroy:function(){this.list.unregister(this._uid)},methods:{click:function(){this.disabled||(this.isActive=!this.isActive)},genIcon:function(t){return this.$createElement(i.default,t)},genAppendIcon:function(){var t=!this.subGroup&&this.appendIcon;return t||this.$slots.appendIcon?this.$createElement("div",{staticClass:"v-list__group__header__append-icon"},[this.$slots.appendIcon||this.genIcon(t)]):null},genGroup:function(){return this.$createElement("div",{staticClass:"v-list__group__header",class:this.headerClasses,on:Object.assign({},{click:this.click},this.$listeners),ref:"item"},[this.genPrependIcon(),this.$slots.activator,this.genAppendIcon()])},genItems:function(){return this.$createElement("div",{staticClass:"v-list__group__items",class:this.itemsClasses,directives:[{name:"show",value:this.isActive}],ref:"group"},this.showLazyContent(this.$slots.default))},genPrependIcon:function(){var t,e=this.prependIcon?this.prependIcon:!!this.subGroup&&"$vuetify.icons.subgroup";return e||this.$slots.prependIcon?this.$createElement("div",{staticClass:"v-list__group__header__prepend-icon",class:(t={},t[this.activeClass]=this.isActive,t)},[this.$slots.prependIcon||this.genIcon(e)]):null},toggle:function(t){this.isActive=this._uid===t},matchRoute:function(t){return!!this.group&&null!==t.match(this.group)}},render:function(t){return t("div",{staticClass:"v-list__group",class:this.groupClasses},[this.genGroup(),t(a.VExpandTransition,[this.genItems()])])}}},"./src/components/VList/VListTile.js": +/*!*******************************************!*\ + !*** ./src/components/VList/VListTile.js ***! + \*******************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../directives/ripple */"./src/directives/ripple.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n1&&(n.staticClass+=" v-list__tile__action--stack"),t("div",n,i)}}},"./src/components/VList/VListTileAvatar.js": +/*!*************************************************!*\ + !*** ./src/components/VList/VListTileAvatar.js ***! + \*************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VAvatar */"./src/components/VAvatar/index.ts");e.default={name:"v-list-tile-avatar",functional:!0,props:{color:String,size:{type:[Number,String],default:40},tile:Boolean},render:function(t,e){var n=e.data,s=e.children,r=e.props;return n.staticClass=("v-list__tile__avatar "+(n.staticClass||"")).trim(),t("div",n,[t(i.default,{props:{color:r.color,size:r.size,tile:r.tile}},[s])])}}},"./src/components/VList/index.js": +/*!***************************************!*\ + !*** ./src/components/VList/index.js ***! + \***************************************/ +/*! exports provided: VList, VListGroup, VListTile, VListTileAction, VListTileAvatar, VListTileActionText, VListTileContent, VListTileTitle, VListTileSubTitle, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VListTileActionText",function(){return l}),n.d(e,"VListTileContent",function(){return u}),n.d(e,"VListTileTitle",function(){return h}),n.d(e,"VListTileSubTitle",function(){return d});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),s=n(/*! ./VList */"./src/components/VList/VList.js");n.d(e,"VList",function(){return s.default});var r=n(/*! ./VListGroup */"./src/components/VList/VListGroup.js");n.d(e,"VListGroup",function(){return r.default});var o=n(/*! ./VListTile */"./src/components/VList/VListTile.js");n.d(e,"VListTile",function(){return o.default});var a=n(/*! ./VListTileAction */"./src/components/VList/VListTileAction.js");n.d(e,"VListTileAction",function(){return a.default});var c=n(/*! ./VListTileAvatar */"./src/components/VList/VListTileAvatar.js");n.d(e,"VListTileAvatar",function(){return c.default});var l=Object(i.createSimpleFunctional)("v-list__tile__action-text","span"),u=Object(i.createSimpleFunctional)("v-list__tile__content","div"),h=Object(i.createSimpleFunctional)("v-list__tile__title","div"),d=Object(i.createSimpleFunctional)("v-list__tile__sub-title","div");e.default={$_vuetify_subcomponents:{VList:s.default,VListGroup:r.default,VListTile:o.default,VListTileAction:a.default,VListTileActionText:l,VListTileAvatar:c.default,VListTileContent:u,VListTileSubTitle:d,VListTileTitle:h}}},"./src/components/VMenu/VMenu.js": +/*!***************************************!*\ + !*** ./src/components/VMenu/VMenu.js ***! + \***************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_menus.styl */"./src/stylus/components/_menus.styl");var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../../mixins/delayable */"./src/mixins/delayable.ts"),o=n(/*! ../../mixins/dependent */"./src/mixins/dependent.js"),a=n(/*! ../../mixins/detachable */"./src/mixins/detachable.js"),c=n(/*! ../../mixins/menuable.js */"./src/mixins/menuable.js"),l=n(/*! ../../mixins/returnable */"./src/mixins/returnable.js"),u=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),h=n(/*! ./mixins/menu-activator */"./src/components/VMenu/mixins/menu-activator.js"),d=n(/*! ./mixins/menu-generators */"./src/components/VMenu/mixins/menu-generators.js"),f=n(/*! ./mixins/menu-keyable */"./src/components/VMenu/mixins/menu-keyable.js"),p=n(/*! ./mixins/menu-position */"./src/components/VMenu/mixins/menu-position.js"),m=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),v=n(/*! ../../directives/resize */"./src/directives/resize.ts"),g=n(/*! ../../util/helpers */"./src/util/helpers.ts"),y=n(/*! ../../util/ThemeProvider */"./src/util/ThemeProvider.ts");e.default=s.a.extend({name:"v-menu",directives:{ClickOutside:m.default,Resize:v.default},mixins:[h.default,o.default,r.default,a.default,d.default,f.default,c.default,p.default,l.default,u.default],props:{auto:Boolean,closeOnClick:{type:Boolean,default:!0},closeOnContentClick:{type:Boolean,default:!0},disabled:Boolean,fullWidth:Boolean,maxHeight:{default:"auto"},offsetX:Boolean,offsetY:Boolean,openOnClick:{type:Boolean,default:!0},openOnHover:Boolean,origin:{type:String,default:"top left"},transition:{type:[Boolean,String],default:"v-menu-transition"}},data:function(){return{defaultOffset:8,maxHeightAutoDefault:"200px",startIndex:3,stopIndex:0,hasJustFocused:!1,resizeTimeout:null}},computed:{calculatedLeft:function(){return this.auto?this.calcXOverflow(this.calcLeftAuto())+"px":this.calcLeft()},calculatedMaxHeight:function(){return this.auto?"200px":Object(g.convertToUnit)(this.maxHeight)},calculatedMaxWidth:function(){return isNaN(this.maxWidth)?this.maxWidth:this.maxWidth+"px"},calculatedMinWidth:function(){if(this.minWidth)return isNaN(this.minWidth)?this.minWidth:this.minWidth+"px";var t=this.dimensions.activator.width+this.nudgeWidth+(this.auto?16:0),e=isNaN(parseInt(this.calculatedMaxWidth))?t:parseInt(this.calculatedMaxWidth);return Math.min(e,t)+"px"},calculatedTop:function(){return!this.auto||this.isAttached?this.calcTop():this.calcYOverflow(this.calcTopAuto())+"px"},styles:function(){return{maxHeight:this.calculatedMaxHeight,minWidth:this.calculatedMinWidth,maxWidth:this.calculatedMaxWidth,top:this.calculatedTop,left:this.calculatedLeft,transformOrigin:this.origin,zIndex:this.zIndex||this.activeZIndex}},tileHeight:function(){return this.dense?36:48}},watch:{activator:function(t,e){this.removeActivatorEvents(e),this.addActivatorEvents(t)},isContentActive:function(t){this.hasJustFocused=t}},methods:{activate:function(){this.getTiles(),this.updateDimensions(),requestAnimationFrame(this.startTransition),setTimeout(this.calculateScroll,50)},closeConditional:function(){return this.isActive&&this.closeOnClick},onResize:function(){this.isActive&&(this.$refs.content.offsetWidth,this.updateDimensions(),clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(this.updateDimensions,100))}},render:function(t){return t("div",{staticClass:"v-menu",class:{"v-menu--inline":!this.fullWidth&&this.$slots.activator},directives:[{arg:500,name:"resize",value:this.onResize}],on:{keydown:this.onKeyDown}},[this.genActivator(),this.$createElement(y.default,{props:{dark:this.$vuetify.dark||this.dark}},[this.genTransition()])])}})},"./src/components/VMenu/index.js": +/*!***************************************!*\ + !*** ./src/components/VMenu/index.js ***! + \***************************************/ +/*! exports provided: VMenu, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VMenu */"./src/components/VMenu/VMenu.js");n.d(e,"VMenu",function(){return i.default}),e.default=i.default},"./src/components/VMenu/mixins/menu-activator.js": +/*!*******************************************************!*\ + !*** ./src/components/VMenu/mixins/menu-activator.js ***! + \*******************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{activatorClickHandler:function(t){this.disabled||(this.openOnClick&&!this.isActive?(this.getActivator().focus(),this.isActive=!0,this.absoluteX=t.clientX,this.absoluteY=t.clientY):this.closeOnClick&&this.isActive&&(this.getActivator().blur(),this.isActive=!1))},mouseEnterHandler:function(){var t=this;this.runDelay("open",function(){t.hasJustFocused||(t.hasJustFocused=!0,t.isActive=!0)})},mouseLeaveHandler:function(t){var e=this;this.runDelay("close",function(){e.$refs.content.contains(t.relatedTarget)||requestAnimationFrame(function(){e.isActive=!1,e.callDeactivate()})})},addActivatorEvents:function(t){void 0===t&&(t=null),t&&t.addEventListener("click",this.activatorClickHandler)},removeActivatorEvents:function(t){void 0===t&&(t=null),t&&t.removeEventListener("click",this.activatorClickHandler)}}}},"./src/components/VMenu/mixins/menu-generators.js": +/*!********************************************************!*\ + !*** ./src/components/VMenu/mixins/menu-generators.js ***! + \********************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=function(){return(i=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},r=function(){for(var t=[],e=0;e-1?this.listIndex--:t.keyCode===i.keyCodes.enter&&-1!==this.listIndex&&this.tiles[this.listIndex].click()},getTiles:function(){this.tiles=this.$refs.content.querySelectorAll(".v-list__tile")}}}},"./src/components/VMenu/mixins/menu-position.js": +/*!******************************************************!*\ + !*** ./src/components/VMenu/mixins/menu-position.js ***! + \******************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{calculateScroll:function(){if(null!==this.selectedIndex){var t=0;this.selectedIndex>=this.stopIndex?t=this.$refs.content.scrollHeight:this.selectedIndex>this.startIndex&&(t=this.selectedIndex*this.tileHeight+this.tileHeight/2+this.defaultOffset/2-100),this.$refs.content&&(this.$refs.content.scrollTop=t)}},calcLeftAuto:function(){return this.isAttached?0:parseInt(this.dimensions.activator.left-2*this.defaultOffset)},calcTopAuto:function(){var t=Array.from(this.tiles).findIndex(function(t){return t.classList.contains("v-list__tile--active")});if(-1===t)return this.selectedIndex=null,this.computedTop;this.selectedIndex=t,this.stopIndex=this.tiles.length>4?this.tiles.length-4:this.tiles.length;var e,n=this.defaultOffset;return t>this.startIndex&&t=this.stopIndex?(n*=2,e=(t-this.stopIndex)*this.tileHeight):e=t*this.tileHeight,this.computedTop+n-e-this.tileHeight/2}}}},"./src/components/VMessages/VMessages.js": +/*!***********************************************!*\ + !*** ./src/components/VMessages/VMessages.js ***! + \***********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_messages.styl */"./src/stylus/components/_messages.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts");e.default={name:"v-messages",mixins:[i.default,s.default],props:{value:{type:Array,default:function(){return[]}}},methods:{genChildren:function(){var t=this;return this.$createElement("transition-group",{staticClass:"v-messages__wrapper",attrs:{name:"message-transition",tag:"div"}},this.value.map(function(e){return t.genMessage(e)}))},genMessage:function(t){return this.$createElement("div",{staticClass:"v-messages__message",key:t,domProps:{innerHTML:t}})}},render:function(t){return t("div",this.setTextColor(this.color,{staticClass:"v-messages",class:this.themeClasses}),[this.genChildren()])}}},"./src/components/VMessages/index.js": +/*!*******************************************!*\ + !*** ./src/components/VMessages/index.js ***! + \*******************************************/ +/*! exports provided: VMessages, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VMessages */"./src/components/VMessages/VMessages.js");n.d(e,"VMessages",function(){return i.default}),e.default=i.default},"./src/components/VNavigationDrawer/VNavigationDrawer.js": +/*!***************************************************************!*\ + !*** ./src/components/VNavigationDrawer/VNavigationDrawer.js ***! + \***************************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_navigation-drawer.styl */"./src/stylus/components/_navigation-drawer.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),s=n(/*! ../../mixins/overlayable */"./src/mixins/overlayable.js"),r=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),c=n(/*! ../../directives/resize */"./src/directives/resize.ts"),l=n(/*! ../../directives/touch */"./src/directives/touch.ts"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=function(){return(h=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=this.touchArea.right?this.isActive=!0:!this.right&&this.isActive&&(this.isActive=!1)))},updateApplication:function(){return!this.isActive||this.temporary||this.isMobile?0:this.calculatedWidth}},render:function(t){var e=this;return t("aside",{class:this.classes,style:this.styles,directives:this.genDirectives(),on:{click:function(){e.miniVariant&&e.$emit("update:miniVariant",!1)},transitionend:function(t){if(t.target===t.currentTarget){e.$emit("transitionend",t);var n=document.createEvent("UIEvents");n.initUIEvent("resize",!0,!1,window,0),window.dispatchEvent(n)}}}},[this.$slots.default,t("div",{class:"v-navigation-drawer__border"})])}}},"./src/components/VNavigationDrawer/index.js": +/*!***************************************************!*\ + !*** ./src/components/VNavigationDrawer/index.js ***! + \***************************************************/ +/*! exports provided: VNavigationDrawer, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VNavigationDrawer */"./src/components/VNavigationDrawer/VNavigationDrawer.js");n.d(e,"VNavigationDrawer",function(){return i.default}),e.default=i.default},"./src/components/VOverflowBtn/VOverflowBtn.js": +/*!*****************************************************!*\ + !*** ./src/components/VOverflowBtn/VOverflowBtn.js ***! + \*****************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_overflow-buttons.styl */"./src/stylus/components/_overflow-buttons.styl");var i=n(/*! ../VSelect/VSelect */"./src/components/VSelect/VSelect.js"),s=n(/*! ../VAutocomplete */"./src/components/VAutocomplete/index.js"),r=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),o=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),a=n(/*! ../../util/console */"./src/util/console.ts");e.default={name:"v-overflow-btn",extends:s.default,props:{segmented:Boolean,editable:Boolean,transition:i.default.props.transition},computed:{classes:function(){return Object.assign(s.default.computed.classes.call(this),{"v-overflow-btn":!0,"v-overflow-btn--segmented":this.segmented,"v-overflow-btn--editable":this.editable})},isAnyValueAllowed:function(){return this.editable||s.default.computed.isAnyValueAllowed.call(this)},isSingle:function(){return!0},computedItems:function(){return this.segmented?this.allItems:this.filteredItems},$_menuProps:function(){var t=s.default.computed.$_menuProps.call(this);return t.transition=t.transition||"v-menu-transition",t}},methods:{genSelections:function(){return this.editable?s.default.methods.genSelections.call(this):i.default.methods.genSelections.call(this)},genCommaSelection:function(t,e,n){return this.segmented?this.genSegmentedBtn(t):i.default.methods.genCommaSelection.call(this,t,e,n)},genInput:function(){var t=r.default.methods.genInput.call(this);return t.data.domProps.value=this.editable?this.internalSearch:"",t.data.attrs.readonly=!this.isAnyValueAllowed,t},genLabel:function(){if(this.editable&&this.isFocused)return null;var t=r.default.methods.genLabel.call(this);return t?(t.data.style={},t):t},genSegmentedBtn:function(t){var e=this,n=this.getValue(t),i=this.computedItems.find(function(t){return e.getValue(t)===n})||t;return i.text&&i.callback?this.$createElement(o.default,{props:{flat:!0},on:{click:function(t){t.stopPropagation(),i.callback(t)}}},[i.text]):(Object(a.consoleWarn)("When using 'segmented' prop without a selection slot, items must contain both a text and callback property",this),null)},setSelectedItems:function(){null==this.internalValue?this.selectedItems=[]:this.selectedItems=[this.internalValue]}}}},"./src/components/VOverflowBtn/index.js": +/*!**********************************************!*\ + !*** ./src/components/VOverflowBtn/index.js ***! + \**********************************************/ +/*! exports provided: VOverflowBtn, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VOverflowBtn */"./src/components/VOverflowBtn/VOverflowBtn.js");n.d(e,"VOverflowBtn",function(){return i.default}),e.default=i.default},"./src/components/VPagination/VPagination.ts": +/*!***************************************************!*\ + !*** ./src/components/VPagination/VPagination.ts ***! + \***************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_pagination.styl */"./src/stylus/components/_pagination.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../directives/resize */"./src/directives/resize.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},u=function(){for(var t=[],e=0;en&&this.value0?t:1;i<=e;i++)n.push(i);return n},genIcon:function(t,e,n,s){return t("li",[t("button",{staticClass:"v-pagination__navigation",class:{"v-pagination__navigation--disabled":n},on:n?{}:{click:s}},[t(i.default,[e])])])},genItem:function(t,e){var n=this,i=e===this.value&&(this.color||"primary");return t("button",this.setBackgroundColor(i,{staticClass:"v-pagination__item",class:{"v-pagination__item--active":e===this.value},on:{click:function(){return n.$emit("input",e)}}}),[e.toString()])},genItems:function(t){var e=this;return this.items.map(function(n,i){return t("li",{key:i},[isNaN(Number(n))?t("span",{class:"v-pagination__more"},[n.toString()]):e.genItem(t,n)])})}},render:function(t){var e=[this.genIcon(t,this.$vuetify.rtl?this.nextIcon:this.prevIcon,this.value<=1,this.previous),this.genItems(t),this.genIcon(t,this.$vuetify.rtl?this.prevIcon:this.nextIcon,this.value>=this.length,this.next)];return t("ul",{directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],class:this.classes},e)}})},"./src/components/VPagination/index.ts": +/*!*********************************************!*\ + !*** ./src/components/VPagination/index.ts ***! + \*********************************************/ +/*! exports provided: VPagination, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VPagination */"./src/components/VPagination/VPagination.ts");n.d(e,"VPagination",function(){return i.default}),e.default=i.default},"./src/components/VParallax/VParallax.ts": +/*!***********************************************!*\ + !*** ./src/components/VParallax/VParallax.ts ***! + \***********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_parallax.styl */"./src/stylus/components/_parallax.styl");var i=n(/*! ../../mixins/translatable */"./src/mixins/translatable.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(s.default)(i.default).extend({name:"v-parallax",props:{alt:String,height:{type:[String,Number],default:500},src:String},data:function(){return{isBooted:!1}},computed:{styles:function(){return{display:"block",opacity:this.isBooted?1:0,transform:"translate(-50%, "+this.parallax+"px)"}}},watch:{parallax:function(){this.isBooted=!0}},mounted:function(){this.init()},methods:{init:function(){var t=this,e=this.$refs.img;e&&(e.complete?(this.translate(),this.listeners()):e.addEventListener("load",function(){t.translate(),t.listeners()},!1))},objHeight:function(){return this.$refs.img.naturalHeight}},render:function(t){var e={staticClass:"v-parallax__image",style:this.styles,attrs:{src:this.src},ref:"img"};this.alt&&(e.attrs.alt=this.alt);var n=t("div",{staticClass:"v-parallax__image-container"},[t("img",e)]),i=t("div",{staticClass:"v-parallax__content"},this.$slots.default);return t("div",{staticClass:"v-parallax",style:{height:this.height+"px"},on:this.$listeners},[n,i])}})},"./src/components/VParallax/index.ts": +/*!*******************************************!*\ + !*** ./src/components/VParallax/index.ts ***! + \*******************************************/ +/*! exports provided: VParallax, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VParallax */"./src/components/VParallax/VParallax.ts");n.d(e,"VParallax",function(){return i.default}),e.default=i.default},"./src/components/VPicker/VPicker.js": +/*!*******************************************!*\ + !*** ./src/components/VPicker/VPicker.js ***! + \*******************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_pickers.styl */"./src/stylus/components/_pickers.styl"),n(/*! ../../stylus/components/_cards.styl */"./src/stylus/components/_cards.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0}}},computed:{computedTitleColor:function(){var t=this.isDark?null:this.color||"primary";return this.color||t}},methods:{genTitle:function(){return this.$createElement("div",this.setBackgroundColor(this.computedTitleColor,{staticClass:"v-picker__title",class:{"v-picker__title--landscape":this.landscape}}),this.$slots.title)},genBodyTransition:function(){return this.$createElement("transition",{props:{name:this.transition}},this.$slots.default)},genBody:function(){return this.$createElement("div",{staticClass:"v-picker__body",class:this.themeClasses,style:this.fullWidth?void 0:{width:this.width+"px"}},[this.genBodyTransition()])},genActions:function(){return this.$createElement("div",{staticClass:"v-picker__actions v-card__actions"},this.$slots.actions)}},render:function(t){return t("div",{staticClass:"v-picker v-card",class:r({"v-picker--landscape":this.landscape},this.themeClasses)},[this.$slots.title?this.genTitle():null,this.genBody(),this.$slots.actions?this.genActions():null])}}},"./src/components/VPicker/index.js": +/*!*****************************************!*\ + !*** ./src/components/VPicker/index.js ***! + \*****************************************/ +/*! exports provided: VPicker, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VPicker */"./src/components/VPicker/VPicker.js");n.d(e,"VPicker",function(){return i.default}),e.default=i.default},"./src/components/VProgressCircular/VProgressCircular.ts": +/*!***************************************************************!*\ + !*** ./src/components/VProgressCircular/VProgressCircular.ts ***! + \***************************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_progress-circular.styl */"./src/stylus/components/_progress-circular.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(s.default)(i.default).extend({name:"v-progress-circular",props:{button:Boolean,indeterminate:Boolean,rotate:{type:Number,default:0},size:{type:[Number,String],default:32},width:{type:Number,default:4},value:{type:Number,default:0}},computed:{calculatedSize:function(){return Number(this.size)+(this.button?8:0)},circumference:function(){return 2*Math.PI*this.radius},classes:function(){return{"v-progress-circular--indeterminate":this.indeterminate,"v-progress-circular--button":this.button}},normalizedValue:function(){return this.value<0?0:this.value>100?100:this.value},radius:function(){return 20},strokeDashArray:function(){return Math.round(1e3*this.circumference)/1e3},strokeDashOffset:function(){return(100-this.normalizedValue)/100*this.circumference+"px"},strokeWidth:function(){return this.width/+this.size*this.viewBoxSize*2},styles:function(){return{height:this.calculatedSize+"px",width:this.calculatedSize+"px"}},svgStyles:function(){return{transform:"rotate("+this.rotate+"deg)"}},viewBoxSize:function(){return this.radius/(1-this.width/+this.size)}},methods:{genCircle:function(t,e,n){return t("circle",{class:"v-progress-circular__"+e,attrs:{fill:"transparent",cx:2*this.viewBoxSize,cy:2*this.viewBoxSize,r:this.radius,"stroke-width":this.strokeWidth,"stroke-dasharray":this.strokeDashArray,"stroke-dashoffset":n}})},genSvg:function(t){var e=[this.indeterminate||this.genCircle(t,"underlay",0),this.genCircle(t,"overlay",this.strokeDashOffset)];return t("svg",{style:this.svgStyles,attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:this.viewBoxSize+" "+this.viewBoxSize+" "+2*this.viewBoxSize+" "+2*this.viewBoxSize}},e)}},render:function(t){var e=t("div",{staticClass:"v-progress-circular__info"},[this.$slots.default]),n=this.genSvg(t);return t("div",this.setTextColor(this.color,{staticClass:"v-progress-circular",class:this.classes,style:this.styles,on:this.$listeners}),[n,e])}})},"./src/components/VProgressCircular/index.ts": +/*!***************************************************!*\ + !*** ./src/components/VProgressCircular/index.ts ***! + \***************************************************/ +/*! exports provided: VProgressCircular, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VProgressCircular */"./src/components/VProgressCircular/VProgressCircular.ts");n.d(e,"VProgressCircular",function(){return i.default}),e.default=i.default},"./src/components/VProgressLinear/VProgressLinear.ts": +/*!***********************************************************!*\ + !*** ./src/components/VProgressLinear/VProgressLinear.ts ***! + \***********************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_progress-linear.styl */"./src/stylus/components/_progress-linear.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../transitions */"./src/components/transitions/index.js");e.default=Object(r.default)(i.default).extend({name:"v-progress-linear",props:{active:{type:Boolean,default:!0},backgroundColor:{type:String,default:null},backgroundOpacity:{type:[Number,String],default:null},bufferValue:{type:[Number,String],default:100},color:{type:String,default:"primary"},height:{type:[Number,String],default:7},indeterminate:Boolean,query:Boolean,value:{type:[Number,String],default:0}},computed:{styles:function(){var t={};return this.active||(t.height=0),this.indeterminate||100===parseInt(this.bufferValue,10)||(t.width=this.bufferValue+"%"),t},effectiveWidth:function(){return this.bufferValue?100*+this.value/+this.bufferValue:0},backgroundStyle:function(){var t=null==this.backgroundOpacity?this.backgroundColor?1:.3:parseFloat(this.backgroundOpacity);return{height:this.active?Object(s.convertToUnit)(this.height):0,opacity:t,width:this.bufferValue+"%"}}},methods:{genDeterminate:function(t){return t("div",this.setBackgroundColor(this.color,{ref:"front",staticClass:"v-progress-linear__bar__determinate",style:{width:this.effectiveWidth+"%"}}))},genBar:function(t,e){var n;return t("div",this.setBackgroundColor(this.color,{staticClass:"v-progress-linear__bar__indeterminate",class:(n={},n[e]=!0,n)}))},genIndeterminate:function(t){return t("div",{ref:"front",staticClass:"v-progress-linear__bar__indeterminate",class:{"v-progress-linear__bar__indeterminate--active":this.active}},[this.genBar(t,"long"),this.genBar(t,"short")])}},render:function(t){var e=t(o.VFadeTransition,this.indeterminate?[this.genIndeterminate(t)]:[]),n=t(o.VSlideXTransition,this.indeterminate?[]:[this.genDeterminate(t)]),i=t("div",{staticClass:"v-progress-linear__bar",style:this.styles},[e,n]),r=t("div",{staticClass:"v-progress-linear__background",class:[this.backgroundColor||this.color],style:this.backgroundStyle});return t("div",{staticClass:"v-progress-linear",class:{"v-progress-linear--query":this.query},style:{height:Object(s.convertToUnit)(this.height)},on:this.$listeners},[r,i])}})},"./src/components/VProgressLinear/index.ts": +/*!*************************************************!*\ + !*** ./src/components/VProgressLinear/index.ts ***! + \*************************************************/ +/*! exports provided: VProgressLinear, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VProgressLinear */"./src/components/VProgressLinear/VProgressLinear.ts");n.d(e,"VProgressLinear",function(){return i.default}),e.default=i.default},"./src/components/VRadioGroup/VRadio.js": +/*!**********************************************!*\ + !*** ./src/components/VRadioGroup/VRadio.js ***! + \**********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_radios.styl */"./src/stylus/components/_radios.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../VLabel */"./src/components/VLabel/index.js"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/rippleable */"./src/mixins/rippleable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),c=n(/*! ../../mixins/selectable */"./src/mixins/selectable.js"),l=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),u=function(){return(u=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},d=function(){for(var t=[],e=0;e=0;)this.radios[e].parentError=t},setActiveRadio:function(){for(var t=this.radios.length;--t>=0;){var e=this.radios[t];e.isActive=this.valueComparator(this.internalValue,e.value)}},unregister:function(t){t.$off("change",this.onRadioChange),t.$off("blur",this.onRadioBlur);var e=this.radios.findIndex(function(e){return e===t});e>-1&&this.radios.splice(e,1)}}}},"./src/components/VRadioGroup/index.js": +/*!*********************************************!*\ + !*** ./src/components/VRadioGroup/index.js ***! + \*********************************************/ +/*! exports provided: VRadioGroup, VRadio, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VRadioGroup */"./src/components/VRadioGroup/VRadioGroup.js");n.d(e,"VRadioGroup",function(){return i.default});var s=n(/*! ./VRadio */"./src/components/VRadioGroup/VRadio.js");n.d(e,"VRadio",function(){return s.default}),e.default={$_vuetify_subcomponents:{VRadioGroup:i.default,VRadio:s.default}}},"./src/components/VRangeSlider/VRangeSlider.js": +/*!*****************************************************!*\ + !*** ./src/components/VRangeSlider/VRangeSlider.js ***! + \*****************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_range-sliders.styl */"./src/stylus/components/_range-sliders.styl");var i=n(/*! ../VSlider */"./src/components/VSlider/index.js"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default={name:"v-range-slider",extends:i.default,props:{value:{type:Array,default:function(){return[]}}},data:function(t){return{activeThumb:null,lazyValue:t.value.length?t.value:[0,0]}},computed:{classes:function(){return Object.assign({},{"v-input--range-slider":!0},i.default.computed.classes.call(this))},internalValue:{get:function(){return this.lazyValue},set:function(t){var e=this,n=this.min,i=this.max,r=t.map(function(t){return e.roundValue(Math.min(Math.max(t,n),i))});(r[0]>r[1]||r[1]=0}},watch:{internalValue:function(t){t!==this.value&&this.$emit("input",t)},value:function(t){this.internalValue=t}},methods:{createClickFn:function(t){var e=this;return function(n){if(!e.readonly){var i=e.genHoverIndex(n,t);e.clearable&&e.internalValue===i?e.internalValue=0:e.internalValue=i}}},createProps:function(t){var e={index:t,value:this.internalValue,click:this.createClickFn(t),isFilled:Math.floor(this.internalValue)>t,isHovered:Math.floor(this.hoverIndex)>t};return this.halfIncrements&&(e.isHalfHovered=!e.isHovered&&(this.hoverIndex-t)%1>0,e.isHalfFilled=!e.isFilled&&(this.internalValue-t)%1>0),e},genHoverIndex:function(t,e){return e+(this.isHalfEvent(t)?.5:1)},getIconName:function(t){var e=this.isHovering?t.isHovered:t.isFilled,n=this.isHovering?t.isHalfHovered:t.isHalfFilled;return e?this.fullIcon:n?this.halfIcon:this.emptyIcon},getColor:function(t){if(this.isHovering){if(t.isHovered||t.isHalfHovered)return this.color}else if(t.isFilled||t.isHalfFilled)return this.color;return this.backgroundColor},isHalfEvent:function(t){if(this.halfIncrements){var e=t.target&&t.target.getBoundingClientRect();if(e&&t.offsetX=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}},p={closeOnClick:!1,closeOnContentClick:!1,openOnClick:!1,maxHeight:300};e.default={name:"v-select",directives:{ClickOutside:l.default},extends:o.default,mixins:[a.default,c.default],props:{appendIcon:{type:String,default:"$vuetify.icons.dropdown"},appendIconCb:Function,attach:{type:null,default:!1},browserAutocomplete:{type:String,default:"on"},cacheItems:Boolean,chips:Boolean,clearable:Boolean,deletableChips:Boolean,dense:Boolean,hideSelected:Boolean,items:{type:Array,default:function(){return[]}},itemAvatar:{type:[String,Array,Function],default:"avatar"},itemDisabled:{type:[String,Array,Function],default:"disabled"},itemText:{type:[String,Array,Function],default:"text"},itemValue:{type:[String,Array,Function],default:"value"},menuProps:{type:[String,Array,Object],default:function(){return p}},multiple:Boolean,openOnClear:Boolean,returnObject:Boolean,searchInput:{default:null},smallChips:Boolean},data:function(t){return{attrsInput:{role:"combobox"},cachedItems:t.cacheItems?t.items:[],content:null,isBooted:!1,isMenuActive:!1,lastItem:20,lazyValue:void 0!==t.value?t.value:t.multiple?[]:void 0,selectedIndex:-1,selectedItems:[]}},computed:{allItems:function(){return this.filterDuplicates(this.cachedItems.concat(this.items))},classes:function(){return Object.assign({},o.default.computed.classes.call(this),{"v-select":!0,"v-select--chips":this.hasChips,"v-select--chips--small":this.smallChips,"v-select--is-menu-active":this.isMenuActive})},computedItems:function(){return this.allItems},counterValue:function(){return this.multiple?this.selectedItems.length:(this.getText(this.selectedItems[0])||"").toString().length},directives:function(){return this.isFocused?[{name:"click-outside",value:this.blur,args:{closeConditional:this.closeConditional}}]:void 0},dynamicHeight:function(){return"auto"},hasChips:function(){return this.chips||this.smallChips},hasSlot:function(){return Boolean(this.hasChips||this.$scopedSlots.selection)},isDirty:function(){return this.selectedItems.length>0},listData:function(){return{props:{action:this.multiple&&!this.isHidingSelected,color:this.color,dense:this.dense,hideSelected:this.hideSelected,items:this.virtualizedItems,noDataText:this.$vuetify.t(this.noDataText),selectedItems:this.selectedItems,itemAvatar:this.itemAvatar,itemDisabled:this.itemDisabled,itemValue:this.itemValue,itemText:this.itemText},on:{select:this.selectItem},scopedSlots:{item:this.$scopedSlots.item}}},staticList:function(){return(this.$slots["no-data"]||this.$slots["prepend-item"]||this.$slots["append-item"])&&Object(h.consoleError)("assert: staticList should not be called if slots are used"),this.$createElement(r.default,this.listData)},virtualizedItems:function(){return this.$_menuProps.auto?this.computedItems:this.computedItems.slice(0,this.lastItem)},menuCanShow:function(){return!0},$_menuProps:function(){var t;return t="string"==typeof this.menuProps?this.menuProps.split(","):this.menuProps,Array.isArray(t)&&(t=t.reduce(function(t,e){return t[e.trim()]=!0,t},{})),d({},p,{value:this.menuCanShow&&this.isMenuActive,nudgeBottom:this.nudgeBottom?this.nudgeBottom:t.offsetY?1:0},t)}},watch:{internalValue:function(t){this.initialValue=t,this.$emit("change",this.internalValue),this.setSelectedItems()},isBooted:function(){var t=this;this.$nextTick(function(){t.content&&t.content.addEventListener&&t.content.addEventListener("scroll",t.onScroll,!1)})},isMenuActive:function(t){t&&(this.isBooted=!0)},items:{immediate:!0,handler:function(t){this.cacheItems&&(this.cachedItems=this.filterDuplicates(this.cachedItems.concat(t))),this.setSelectedItems()}}},mounted:function(){this.content=this.$refs.menu&&this.$refs.menu.$refs.content},methods:{blur:function(){this.isMenuActive=!1,this.isFocused=!1,this.$refs.input&&this.$refs.input.blur(),this.selectedIndex=-1},activateMenu:function(){this.isMenuActive=!0},clearableCallback:function(){var t=this;this.internalValue=this.multiple?[]:void 0,this.$nextTick(function(){return t.$refs.input.focus()}),this.openOnClear&&(this.isMenuActive=!0)},closeConditional:function(t){return!(!this.content||this.content.contains(t.target)||!this.$el||this.$el.contains(t.target)||t.target===this.$el)},filterDuplicates:function(t){for(var e=new Map,n=0;n1,p=o.reduce(function(t,e){return t[Object(u.camelize)(e)]=n.$attrs[e],t},{}),m=o.map(function(t){return"'"+t+"'"}).join(", "),v=d?"\n":"'",g=Object.keys(p).every(function(t){var e=s.default.options.props[t],n=p[t];return!0===n||(e.type||e)===Boolean&&""===n});p=g?Object.keys(p).join(", "):JSON.stringify(p,null,d?2:0).replace(/"([^(")"]+)":/g,"$1:").replace(/"/g,"'"),Object(h.consoleWarn)(m+" "+(d?"are":"is")+" deprecated, use "+v+':menu-props="'+p+'"'+v+" instead",this)}return""===this.attach||!0===this.attach||"attach"===this.attach?i.attach=this.$el:i.attach=this.attach,this.$createElement(s.default,{props:i,on:{input:function(t){n.isMenuActive=t,n.isFocused=t}},ref:"menu"},[this.genList()])},genSelections:function(){var t,e=this.selectedItems.length,n=new Array(e);for(t=this.$scopedSlots.selection?this.genSlotSelection:this.hasChips?this.genChipSelection:this.genCommaSelection;e--;)n[e]=t(this.selectedItems[e],e,e===n.length-1);return this.$createElement("div",{staticClass:"v-select__selections"},n)},genSlotSelection:function(t,e){return this.$scopedSlots.selection({parent:this,item:t,index:e,selected:e===this.selectedIndex,disabled:this.disabled||this.readonly})},getMenuIndex:function(){return this.$refs.menu?this.$refs.menu.listIndex:-1},getDisabled:function(t){return Object(u.getPropertyFromItem)(t,this.itemDisabled,!1)},getText:function(t){return Object(u.getPropertyFromItem)(t,this.itemText,t)},getValue:function(t){return Object(u.getPropertyFromItem)(t,this.itemValue,this.getText(t))},onBlur:function(t){this.$emit("blur",t)},onChipInput:function(t){this.multiple?this.selectItem(t):this.internalValue=null,0===this.selectedItems.length&&(this.isMenuActive=!0),this.selectedIndex=-1},onClick:function(){this.isDisabled||(this.isMenuActive=!0,this.isFocused||(this.isFocused=!0,this.$emit("focus")))},onEnterDown:function(){this.onBlur()},onEscDown:function(t){t.preventDefault(),this.isMenuActive=!1},onKeyDown:function(t){var e=t.keyCode;return!this.isMenuActive&&[u.keyCodes.enter,u.keyCodes.space,u.keyCodes.up,u.keyCodes.down].includes(e)&&this.activateMenu(),this.isMenuActive&&this.$refs.menu&&this.$refs.menu.changeListIndex(t),e===u.keyCodes.enter?this.onEnterDown(t):e===u.keyCodes.esc?this.onEscDown(t):e===u.keyCodes.tab?this.onTabDown(t):void 0},onMouseUp:function(t){var e=this,n=this.$refs["append-inner"];this.isMenuActive&&n&&(n===t.target||n.contains(t.target))?this.$nextTick(function(){return e.isMenuActive=!e.isMenuActive}):this.isEnclosed&&!this.isDisabled&&(this.isMenuActive=!0),o.default.methods.onMouseUp.call(this,t)},onScroll:function(){var t=this;if(this.isMenuActive){if(this.lastItem>=this.computedItems.length)return;this.content.scrollHeight-(this.content.scrollTop+this.content.clientHeight)<200&&(this.lastItem+=20)}else requestAnimationFrame(function(){return t.content.scrollTop=0})},onTabDown:function(t){var e=this.getMenuIndex(),n=this.$refs.menu.tiles[e];n&&n.className.indexOf("v-list__tile--highlighted")>-1&&this.isMenuActive&&e>-1?(t.preventDefault(),t.stopPropagation(),n.click()):o.default.methods.onBlur.call(this,t)},selectItem:function(t){var e=this;if(this.multiple){var n=(this.internalValue||[]).slice(),i=this.findExistingIndex(t);-1!==i?n.splice(i,1):n.push(t),this.internalValue=n.map(function(t){return e.returnObject?t:e.getValue(t)}),this.$nextTick(function(){e.$refs.menu&&e.$refs.menu.updateDimensions()})}else this.internalValue=this.returnObject?t:this.getValue(t),this.isMenuActive=!1},setMenuIndex:function(t){this.$refs.menu&&(this.$refs.menu.listIndex=t)},setSelectedItems:function(){var t,e,n=this,i=[],s=this.multiple&&Array.isArray(this.internalValue)?this.internalValue:[this.internalValue],r=function(t){var e=o.allItems.findIndex(function(e){return n.valueComparator(n.getValue(e),n.getValue(t))});e>-1&&i.push(o.allItems[e])},o=this;try{for(var a=f(s),c=a.next();!c.done;c=a.next()){r(c.value)}}catch(e){t={error:e}}finally{try{c&&!c.done&&(e=a.return)&&e.call(a)}finally{if(t)throw t.error}}this.selectedItems=i}}}},"./src/components/VSelect/VSelectList.js": +/*!***********************************************!*\ + !*** ./src/components/VSelect/VSelectList.js ***! + \***********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_cards.styl */"./src/stylus/components/_cards.styl");var i=n(/*! ../VCheckbox */"./src/components/VCheckbox/index.js"),s=n(/*! ../VDivider */"./src/components/VDivider/index.ts"),r=n(/*! ../VSubheader */"./src/components/VSubheader/index.js"),o=n(/*! ../VList */"./src/components/VList/index.js"),a=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),c=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=n(/*! ../../util/helpers */"./src/util/helpers.ts"),u=function(t){var e="function"==typeof Symbol&&t[Symbol.iterator],n=0;return e?e.call(t):{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}};e.default={name:"v-select-list",mixins:[a.default,c.default],props:{action:Boolean,dense:Boolean,hideSelected:Boolean,items:{type:Array,default:function(){return[]}},itemAvatar:{type:[String,Array,Function],default:"avatar"},itemDisabled:{type:[String,Array,Function],default:"disabled"},itemText:{type:[String,Array,Function],default:"text"},itemValue:{type:[String,Array,Function],default:"value"},noDataText:String,noFilter:Boolean,searchInput:{default:null},selectedItems:{type:Array,default:function(){return[]}}},computed:{parsedItems:function(){var t=this;return this.selectedItems.map(function(e){return t.getValue(e)})},tileActiveClass:function(){return Object.keys(this.setTextColor(this.color).class||{}).join(" ")},staticNoDataTile:function(){return this.$createElement(o.VListTile,{on:{mousedown:function(t){return t.preventDefault()}}},[this.genTileContent(this.noDataText)])}},methods:{genAction:function(t,e){var n=this,s={on:{click:function(e){e.stopPropagation(),n.$emit("select",t)}}};return this.$createElement(o.VListTileAction,s,[this.$createElement(i.default,{props:{color:this.color,inputValue:e}})])},genDivider:function(t){return this.$createElement(s.default,{props:t})},genFilteredText:function(t){if(t=(t||"").toString(),!this.searchInput||this.noFilter)return Object(l.escapeHTML)(t);var e=this.getMaskedCharacters(t),n=e.start,i=e.middle,s=e.end;return""+Object(l.escapeHTML)(n)+this.genHighlight(i)+Object(l.escapeHTML)(s)},genHeader:function(t){return this.$createElement(r.default,{props:t},t.header)},genHighlight:function(t){return''+Object(l.escapeHTML)(t)+""},getMaskedCharacters:function(t){var e=(this.searchInput||"").toString().toLowerCase(),n=t.toLowerCase().indexOf(e);return n<0?{start:"",middle:t,end:""}:{start:t.slice(0,n),middle:t.slice(n,n+e.length),end:t.slice(n+e.length)}},genTile:function(t,e,n,i){var s=this;void 0===e&&(e=null),void 0===n&&(n=!1),void 0===i&&(i=this.hasItem(t)),t===Object(t)&&(n=this.getAvatar(t),e=null!==e?e:this.getDisabled(t));var r={on:{mousedown:function(t){t.preventDefault()},click:function(){return e||s.$emit("select",t)}},props:{activeClass:this.tileActiveClass,avatar:n,disabled:e,ripple:!0,value:i}};if(!this.$scopedSlots.item)return this.$createElement(o.VListTile,r,[this.action&&!this.hideSelected&&this.items.length>0?this.genAction(t,i):null,this.genTileContent(t)]);var a=this.$scopedSlots.item({parent:this,item:t,tile:r});return this.needsTile(a)?this.$createElement(o.VListTile,r,[a]):a},genTileContent:function(t){var e=this.genFilteredText(this.getText(t));return this.$createElement(o.VListTileContent,[this.$createElement(o.VListTileTitle,{domProps:{innerHTML:e}})])},hasItem:function(t){return this.parsedItems.indexOf(this.getValue(t))>-1},needsTile:function(t){return null==t.componentOptions||"v-list-tile"!==t.componentOptions.Ctor.options.name},getAvatar:function(t){return Boolean(Object(l.getPropertyFromItem)(t,this.itemAvatar,!1))},getDisabled:function(t){return Boolean(Object(l.getPropertyFromItem)(t,this.itemDisabled,!1))},getText:function(t){return String(Object(l.getPropertyFromItem)(t,this.itemText,t))},getValue:function(t){return Object(l.getPropertyFromItem)(t,this.itemValue,this.getText(t))}},render:function(){var t,e,n=[];try{for(var i=u(this.items),s=i.next();!s.done;s=i.next()){var r=s.value;this.hideSelected&&this.hasItem(r)||(null==r?n.push(this.genTile(r)):r.header?n.push(this.genHeader(r)):r.divider?n.push(this.genDivider(r)):n.push(this.genTile(r)))}}catch(e){t={error:e}}finally{try{s&&!s.done&&(e=i.return)&&e.call(i)}finally{if(t)throw t.error}}return n.length||n.push(this.$slots["no-data"]||this.staticNoDataTile),this.$slots["prepend-item"]&&n.unshift(this.$slots["prepend-item"]),this.$slots["append-item"]&&n.push(this.$slots["append-item"]),this.$createElement("div",{staticClass:"v-select-list v-card",class:this.themeClasses},[this.$createElement(o.VList,{props:{dense:this.dense}},n)])}}},"./src/components/VSelect/index.js": +/*!*****************************************!*\ + !*** ./src/components/VSelect/index.js ***! + \*****************************************/ +/*! exports provided: VSelect, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VSelect",function(){return u});var i=n(/*! ./VSelect */"./src/components/VSelect/VSelect.js"),s=n(/*! ../VOverflowBtn */"./src/components/VOverflowBtn/index.js"),r=n(/*! ../VAutocomplete */"./src/components/VAutocomplete/index.js"),o=n(/*! ../VCombobox */"./src/components/VCombobox/index.js"),a=n(/*! ../../util/rebuildFunctionalSlots */"./src/util/rebuildFunctionalSlots.js"),c=n(/*! ../../util/dedupeModelListeners */"./src/util/dedupeModelListeners.ts"),l=n(/*! ../../util/console */"./src/util/console.ts"),u={functional:!0,$_wrapperFor:i.default,props:{autocomplete:Boolean,combobox:Boolean,multiple:Boolean,tags:Boolean,editable:Boolean,overflow:Boolean,segmented:Boolean},render:function(t,e){var n=e.props,h=e.data,d=e.slots,f=e.parent;Object(c.default)(h);var p=Object(a.default)(d(),t);return n.autocomplete&&Object(l.deprecate)("","",u,f),n.combobox&&Object(l.deprecate)("","",u,f),n.tags&&Object(l.deprecate)("","",u,f),n.overflow&&Object(l.deprecate)("","",u,f),n.segmented&&Object(l.deprecate)("","",u,f),n.editable&&Object(l.deprecate)("","",u,f),n.combobox||n.tags?(h.attrs.multiple=n.tags,t(o.default,h,p)):n.autocomplete?(h.attrs.multiple=n.multiple,t(r.default,h,p)):n.overflow||n.segmented||n.editable?(h.attrs.segmented=n.segmented,h.attrs.editable=n.editable,t(s.default,h,p)):(h.attrs.multiple=n.multiple,t(i.default,h,p))}};e.default=u},"./src/components/VSlider/VSlider.js": +/*!*******************************************!*\ + !*** ./src/components/VSlider/VSlider.js ***! + \*******************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_sliders.styl */"./src/stylus/components/_sliders.styl");var i=n(/*! ../transitions */"./src/components/transitions/index.js"),s=n(/*! ../VInput */"./src/components/VInput/index.js"),r=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),o=n(/*! ../../util/helpers */"./src/util/helpers.ts"),a=n(/*! ../../util/console */"./src/util/console.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0,"v-input--slider--thumb-label":this.thumbLabel||this.$scopedSlots.thumbLabel}},showTicks:function(){return this.tickLabels.length>0||!this.disabled&&this.stepNumeric&&!!this.ticks},showThumbLabel:function(){return!this.disabled&&(!!this.thumbLabel||""===this.thumbLabel||this.$scopedSlots["thumb-label"])},computedColor:function(){return this.disabled?null:this.validationState||this.color||"primary"},computedTrackColor:function(){return this.disabled?null:this.trackColor||null},computedThumbColor:function(){return this.disabled||!this.isDirty?null:this.validationState||this.thumbColor||this.color||"primary"},internalValue:{get:function(){return this.lazyValue},set:function(t){var e=this.min,n=this.max,i=this.roundValue(Math.min(Math.max(t,e),n));i!==this.lazyValue&&(this.lazyValue=i,this.$emit("input",i),this.validate())}},stepNumeric:function(){return this.step>0?parseFloat(this.step):0},trackFillStyles:function(){var t=this.$vuetify.rtl?"auto":0,e=this.$vuetify.rtl?0:"auto",n=this.inputWidth+"%";return this.disabled&&(n="calc("+this.inputWidth+"% - 8px)"),{transition:this.trackTransition,left:t,right:e,width:n}},trackPadding:function(){return this.isActive||this.inputWidth>0||this.disabled?0:7},trackStyles:function(){var t=this.disabled?"calc("+this.inputWidth+"% + 8px)":this.trackPadding+"px",e=this.$vuetify.rtl?"auto":t,n=this.$vuetify.rtl?t:"auto",i=this.disabled?"calc("+(100-this.inputWidth)+"% - 8px)":"100%";return{transition:this.trackTransition,left:e,right:n,width:i}},tickStyles:function(){var t=Number(this.tickSize);return{"border-width":t+"px","border-radius":t>1?"50%":null,transform:t>1?"translateX(-"+t+"px) translateY(-"+(t-1)+"px)":null}},trackTransition:function(){return this.keyPressed>=2?"none":""},numTicks:function(){return Math.ceil((this.max-this.min)/this.stepNumeric)},inputWidth:function(){return(this.roundValue(this.internalValue)-this.min)/(this.max-this.min)*100},isDirty:function(){return this.internalValue>this.min||this.alwaysDirty}},watch:{min:function(t){t>this.internalValue&&this.$emit("input",parseFloat(t))},max:function(t){t0},style:c({},t.tickStyles,{left:e*(100/t.numTicks)+"%"})},n)});return this.$createElement("div",{staticClass:"v-slider__ticks-container"},e)},genThumb:function(){return this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb"}))},genThumbContainer:function(t,e,n,i){var s=[this.genThumb()],r=this.getLabel(t);return this.showThumbLabel&&s.push(this.genThumbLabel(r)),this.$createElement("div",this.setTextColor(this.computedThumbColor,{staticClass:"v-slider__thumb-container",class:{"v-slider__thumb-container--is-active":n,"v-slider__thumb-container--show-label":this.showThumbLabel},style:{transition:this.trackTransition,left:(this.$vuetify.rtl?100-e:e)+"%"},on:{touchstart:i,mousedown:i}}),s)},genThumbLabel:function(t){var e=Object(o.convertToUnit)(this.thumbSize);return this.$createElement(i.VScaleTransition,{props:{origin:"bottom center"}},[this.$createElement("div",{staticClass:"v-slider__thumb-label__container",directives:[{name:"show",value:this.isFocused||this.isActive||"always"===this.thumbLabel}]},[this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb-label",style:{height:e,width:e}}),[t])])])},genTrackContainer:function(){var t=[this.$createElement("div",this.setBackgroundColor(this.computedTrackColor,{staticClass:"v-slider__track",style:this.trackStyles})),this.$createElement("div",this.setBackgroundColor(this.computedColor,{staticClass:"v-slider__track-fill",style:this.trackFillStyles}))];return this.$createElement("div",{staticClass:"v-slider__track__container",ref:"track"},t)},getLabel:function(t){return this.$scopedSlots["thumb-label"]?this.$scopedSlots["thumb-label"]({value:t}):this.$createElement("span",t)},onBlur:function(t){2!==this.keyPressed&&(this.isActive=!1,this.isFocused=!1,this.$emit("blur",t))},onFocus:function(t){this.isFocused=!0,this.$emit("focus",t)},onThumbMouseDown:function(t){this.oldValue=this.internalValue,this.keyPressed=2;var e={passive:!0};this.isActive=!0,this.isFocused=!1,"touches"in t?(this.app.addEventListener("touchmove",this.onMouseMove,e),Object(o.addOnceEventListener)(this.app,"touchend",this.onSliderMouseUp)):(this.app.addEventListener("mousemove",this.onMouseMove,e),Object(o.addOnceEventListener)(this.app,"mouseup",this.onSliderMouseUp)),this.$emit("start",this.internalValue)},onSliderMouseUp:function(){this.keyPressed=0;var t={passive:!0};this.isActive=!1,this.isFocused=!1,this.app.removeEventListener("touchmove",this.onMouseMove,t),this.app.removeEventListener("mousemove",this.onMouseMove,t),this.$emit("end",this.internalValue),Object(o.deepEqual)(this.oldValue,this.internalValue)||this.$emit("change",this.internalValue)},onMouseMove:function(t){var e=this.parseMouseMove(t),n=e.value;e.isInsideTrack&&this.setInternalValue(n)},onKeyDown:function(t){if(!this.disabled&&!this.readonly){var e=this.parseKeyDown(t);null!=e&&(this.setInternalValue(e),this.$emit("change",e))}},onKeyUp:function(){this.keyPressed=0},onSliderClick:function(t){this.isFocused=!0,this.onMouseMove(t),this.$emit("change",this.internalValue)},parseMouseMove:function(t){var e=this.$refs.track.getBoundingClientRect(),n=e.left,i=e.width,s="touches"in t?t.touches[0].clientX:t.clientX,r=Math.min(Math.max((s-n)/i,0),1)||0;this.$vuetify.rtl&&(r=1-r);var o=s>=n-8&&s<=n+i+8;return{value:parseFloat(this.min)+r*(this.max-this.min),isInsideTrack:o}},parseKeyDown:function(t,e){if(void 0===e&&(e=this.internalValue),!this.disabled){var n=o.keyCodes.pageup,i=o.keyCodes.pagedown,s=o.keyCodes.end,r=o.keyCodes.home,a=o.keyCodes.left,c=o.keyCodes.right,l=o.keyCodes.down,u=o.keyCodes.up;if([n,i,s,r,a,c,l,u].includes(t.keyCode)){t.preventDefault();var h=this.stepNumeric||1,d=(this.max-this.min)/h;if([a,c,l,u].includes(t.keyCode))this.keyPressed+=1,e+=((this.$vuetify.rtl?[a,u]:[c,u]).includes(t.keyCode)?1:-1)*h*(t.shiftKey?3:t.ctrlKey?2:1);else if(t.keyCode===r)e=parseFloat(this.min);else if(t.keyCode===s)e=parseFloat(this.max);else{e-=(t.keyCode===i?1:-1)*h*(d>100?d/10:10)}return e}}},roundValue:function(t){if(!this.stepNumeric)return t;var e=this.step.toString().trim(),n=e.indexOf(".")>-1?e.length-e.indexOf(".")-1:0,i=this.min%this.stepNumeric,s=Math.round((t-i)/this.stepNumeric)*this.stepNumeric+i;return parseFloat(Math.min(s,this.max).toFixed(n))},setInternalValue:function(t){this.internalValue=t}}}},"./src/components/VSlider/index.js": +/*!*****************************************!*\ + !*** ./src/components/VSlider/index.js ***! + \*****************************************/ +/*! exports provided: VSlider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSlider */"./src/components/VSlider/VSlider.js");n.d(e,"VSlider",function(){return i.default}),e.default=i.default},"./src/components/VSnackbar/VSnackbar.ts": +/*!***********************************************!*\ + !*** ./src/components/VSnackbar/VSnackbar.ts ***! + \***********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_snackbars.styl */"./src/stylus/components/_snackbars.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),r=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),o=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(o.default)(i.default,s.default,Object(r.factory)(["absolute","top","bottom","left","right"])).extend({name:"v-snackbar",props:{autoHeight:Boolean,multiLine:Boolean,timeout:{type:Number,default:6e3},vertical:Boolean},data:function(){return{activeTimeout:-1}},computed:{classes:function(){return{"v-snack--active":this.isActive,"v-snack--absolute":this.absolute,"v-snack--auto-height":this.autoHeight,"v-snack--bottom":this.bottom||!this.top,"v-snack--left":this.left,"v-snack--multi-line":this.multiLine&&!this.vertical,"v-snack--right":this.right,"v-snack--top":this.top,"v-snack--vertical":this.vertical}}},watch:{isActive:function(){this.setTimeout()}},mounted:function(){this.setTimeout()},methods:{setTimeout:function(){var t=this;window.clearTimeout(this.activeTimeout),this.isActive&&this.timeout&&(this.activeTimeout=window.setTimeout(function(){t.isActive=!1},this.timeout))}},render:function(t){var e=[];return this.isActive&&e.push(t("div",{staticClass:"v-snack",class:this.classes,on:this.$listeners},[t("div",this.setBackgroundColor(this.color,{staticClass:"v-snack__wrapper"}),[t("div",{staticClass:"v-snack__content"},this.$slots.default)])])),t("transition",{attrs:{name:"v-snack-transition"}},e)}})},"./src/components/VSnackbar/index.ts": +/*!*******************************************!*\ + !*** ./src/components/VSnackbar/index.ts ***! + \*******************************************/ +/*! exports provided: VSnackbar, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSnackbar */"./src/components/VSnackbar/VSnackbar.ts");n.d(e,"VSnackbar",function(){return i.default}),e.default=i.default},"./src/components/VSpeedDial/VSpeedDial.js": +/*!*************************************************!*\ + !*** ./src/components/VSpeedDial/VSpeedDial.js ***! + \*************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_speed-dial.styl */"./src/stylus/components/_speed-dial.styl");var i=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),s=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),r=n(/*! ../../mixins/transitionable */"./src/mixins/transitionable.ts"),o=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts");e.default={name:"v-speed-dial",directives:{ClickOutside:o.default},mixins:[s.default,i.default,r.default],props:{direction:{type:String,default:"top",validator:function(t){return["top","right","bottom","left"].includes(t)}},openOnHover:Boolean,transition:{type:String,default:"scale-transition"}},computed:{classes:function(){var t;return(t={"v-speed-dial":!0,"v-speed-dial--top":this.top,"v-speed-dial--right":this.right,"v-speed-dial--bottom":this.bottom,"v-speed-dial--left":this.left,"v-speed-dial--absolute":this.absolute,"v-speed-dial--fixed":this.fixed})["v-speed-dial--direction-"+this.direction]=!0,t}},render:function(t){var e=this,n=[],i={class:this.classes,directives:[{name:"click-outside",value:function(){return e.isActive=!1}}],on:{click:function(){return e.isActive=!e.isActive}}};this.openOnHover&&(i.on.mouseenter=function(){return e.isActive=!0},i.on.mouseleave=function(){return e.isActive=!1}),this.isActive&&(n=(this.$slots.default||[]).map(function(t,e){return t.key=e,t}));var s=t("transition-group",{class:"v-speed-dial__list",props:{name:this.transition,mode:this.mode,origin:this.origin,tag:"div"}},n);return t("div",i,[this.$slots.activator,s])}}},"./src/components/VSpeedDial/index.js": +/*!********************************************!*\ + !*** ./src/components/VSpeedDial/index.js ***! + \********************************************/ +/*! exports provided: VSpeedDial, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSpeedDial */"./src/components/VSpeedDial/VSpeedDial.js");n.d(e,"VSpeedDial",function(){return i.default}),e.default=i.default},"./src/components/VStepper/VStepper.js": +/*!*********************************************!*\ + !*** ./src/components/VStepper/VStepper.js ***! + \*********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_steppers.styl */"./src/stylus/components/_steppers.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=0;)this.steps[n].toggle(this.inputValue);for(n=this.content.length;--n>=0;)this.content[n].toggle(this.inputValue,this.isReverse);this.$emit("input",this.inputValue),e&&(this.isBooted=!0)},value:function(){var t=this;this.getSteps(),this.$nextTick(function(){return t.inputValue=t.value})}},mounted:function(){this.getSteps(),this.inputValue=this.value||this.steps[0].step||1},methods:{getSteps:function(){this.steps=[],this.content=[];for(var t=0;t-1&&t.preventDefault(),this.$emit("click",t),this.to||this.tabClick(this)},onRouteChange:function(){var t=this;if(this.to&&this.$refs.link){var e="_vnode.data.class."+this.activeClass;this.$nextTick(function(){Object(o.getObjectValueByPath)(t.$refs.link,e)&&t.tabClick(t)})}},toggle:function(t){this.isActive=t===this||t===this.action}},render:function(t){var e=this.generateRouteLink(this.classes),n=e.data,i=this.disabled?"div":e.tag;return n.ref="link",t("div",{staticClass:"v-tabs__div"},[t(i,n,this.$slots.default)])}}},"./src/components/VTabs/VTabItem.js": +/*!******************************************!*\ + !*** ./src/components/VTabs/VTabItem.js ***! + \******************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/bootable */"./src/mixins/bootable.ts"),s=n(/*! ../transitions */"./src/components/transitions/index.js"),r=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),o=n(/*! ../../directives/touch */"./src/directives/touch.ts");e.default={name:"v-tab-item",components:{VTabTransition:s.VTabTransition,VTabReverseTransition:s.VTabReverseTransition},directives:{Touch:o.default},mixins:[i.default,Object(r.inject)("tabs","v-tab-item","v-tabs-items")],props:{id:String,transition:{type:[Boolean,String],default:"tab-transition"},reverseTransition:{type:[Boolean,String],default:"tab-reverse-transition"}},data:function(){return{isActive:!1,reverse:!1}},computed:{computedTransition:function(){return this.reverse?this.reverseTransition:this.transition}},mounted:function(){this.tabs.register(this)},beforeDestroy:function(){this.tabs.unregister(this)},methods:{toggle:function(t,e,n){this.$el.style.transition=n?null:"none",this.reverse=e,this.isActive=t}},render:function(t){var e=t("div",{staticClass:"v-tabs__content",directives:[{name:"show",value:this.isActive}],domProps:{id:this.id},on:this.$listeners},this.showLazyContent(this.$slots.default));return this.computedTransition?t("transition",{props:{name:this.computedTransition}},[e]):e}}},"./src/components/VTabs/VTabs.js": +/*!***************************************!*\ + !*** ./src/components/VTabs/VTabs.js ***! + \***************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_tabs.styl */"./src/stylus/components/_tabs.styl");var i=n(/*! ./mixins/tabs-computed */"./src/components/VTabs/mixins/tabs-computed.js"),s=n(/*! ./mixins/tabs-generators */"./src/components/VTabs/mixins/tabs-generators.js"),r=n(/*! ./mixins/tabs-props */"./src/components/VTabs/mixins/tabs-props.js"),o=n(/*! ./mixins/tabs-touch */"./src/components/VTabs/mixins/tabs-touch.js"),a=n(/*! ./mixins/tabs-watchers */"./src/components/VTabs/mixins/tabs-watchers.js"),c=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),l=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),u=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),h=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),d=n(/*! ../../directives/resize */"./src/directives/resize.ts"),f=n(/*! ../../directives/touch */"./src/directives/touch.ts");e.default={name:"v-tabs",directives:{Resize:d.default,Touch:f.default},mixins:[Object(h.provide)("tabs"),c.default,l.default,i.default,r.default,s.default,o.default,a.default,u.default],provide:function(){return{tabs:this,tabClick:this.tabClick,tabProxy:this.tabProxy,registerItems:this.registerItems,unregisterItems:this.unregisterItems}},data:function(){return{bar:[],content:[],isBooted:!1,isOverflowing:!1,lazyValue:this.value,nextIconVisible:!1,prevIconVisible:!1,resizeTimeout:null,reverse:!1,scrollOffset:0,sliderWidth:null,sliderLeft:null,startX:0,tabsContainer:null,tabs:[],tabItems:null,transitionTime:300,widths:{bar:0,container:0,wrapper:0}}},computed:{isDark:function(){return this.theme.isDark},selfIsDark:function(){return u.default.options.computed.isDark.call(this)},themeClasses:function(){return{"theme--dark":this.selfIsDark,"theme--light":!this.selfIsDark}}},watch:{tabs:"onResize"},mounted:function(){this.checkIcons()},methods:{checkIcons:function(){this.prevIconVisible=this.checkPrevIcon(),this.nextIconVisible=this.checkNextIcon()},checkPrevIcon:function(){return this.scrollOffset>0},checkNextIcon:function(){return this.widths.container>this.scrollOffset+this.widths.wrapper},callSlider:function(){var t=this;if(this.hideSlider||!this.activeTab)return!1;var e=(this.activeTab||{}).action,n=e===this.activeTab?this.activeTab:this.tabs.find(function(t){return t.action===e});this.$nextTick(function(){n&&n.$el&&(t.sliderWidth=n.$el.scrollWidth,t.sliderLeft=n.$el.offsetLeft)})},onResize:function(){var t=this;this._isDestroyed||(this.setWidths(),clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(function(){t.callSlider(),t.scrollIntoView(),t.checkIcons()},this.transitionTime))},overflowCheck:function(t,e){this.isOverflowing&&e(t)},scrollTo:function(t){this.scrollOffset=this.newOffset(t)},setOverflow:function(){this.isOverflowing=this.widths.bar-1}),n=e>-1?e:0,i=this.tabs[n];this.inputValue=i.action===i?n:i.action}},parseNodes:function(){for(var t=[],e=[],n=[],i=[],s=(this.$slots.default||[]).length,r=0;r=0;)this.tabs[t].toggle(this.target);this.setOverflow()}},render:function(t){var e=this.parseNodes(),n=e.tab,i=e.slider,s=e.items,r=e.item;return t("div",{staticClass:"v-tabs",directives:[{name:"resize",arg:400,modifiers:{quiet:!0},value:this.onResize}]},[this.genBar([this.hideSlider?null:this.genSlider(i),n]),this.genItems(s,r)])}}},"./src/components/VTabs/VTabsItems.js": +/*!********************************************!*\ + !*** ./src/components/VTabs/VTabsItems.js ***! + \********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),s=n(/*! ../../directives/touch */"./src/directives/touch.ts");e.default={name:"v-tabs-items",directives:{Touch:s.default},mixins:[Object(i.provide)("tabs")],inject:{registerItems:{default:null},tabProxy:{default:null},unregisterItems:{default:null}},props:{cycle:Boolean,touchless:Boolean,value:[Number,String]},data:function(){return{items:[],lazyValue:this.value,reverse:!1}},computed:{activeIndex:function(){var t=this;return this.items.findIndex(function(e,n){return e.id===t.lazyValue||n===t.lazyValue})},activeItem:function(){if(this.items.length)return this.items[this.activeIndex]},inputValue:{get:function(){return this.lazyValue},set:function(t){this.lazyValue=t,this.tabProxy?this.tabProxy(t):this.$emit("input",t)}}},watch:{activeIndex:function(t,e){this.reverse=t=0;)this.items[t].toggle(this.activeIndex===t,this.reverse,this.isBooted);this.isBooted=!0}},render:function(t){var e=this,n={staticClass:"v-tabs__items",directives:[]};return!this.touchless&&n.directives.push({name:"touch",value:{left:function(){return e.onSwipe("next")},right:function(){return e.onSwipe("prev")}}}),t("div",n,this.$slots.default)}}},"./src/components/VTabs/VTabsSlider.js": +/*!*********************************************!*\ + !*** ./src/components/VTabs/VTabsSlider.js ***! + \*********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts");e.default={name:"v-tabs-slider",mixins:[i.default],render:function(t){return t("div",this.setBackgroundColor(this.color||"accent",{staticClass:"v-tabs__slider"}))}}},"./src/components/VTabs/index.js": +/*!***************************************!*\ + !*** ./src/components/VTabs/index.js ***! + \***************************************/ +/*! exports provided: VTabs, VTab, VTabItem, VTabsItems, VTabsSlider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTabs */"./src/components/VTabs/VTabs.js");n.d(e,"VTabs",function(){return i.default});var s=n(/*! ./VTab */"./src/components/VTabs/VTab.js");n.d(e,"VTab",function(){return s.default});var r=n(/*! ./VTabsItems */"./src/components/VTabs/VTabsItems.js");n.d(e,"VTabsItems",function(){return r.default});var o=n(/*! ./VTabItem */"./src/components/VTabs/VTabItem.js");n.d(e,"VTabItem",function(){return o.default});var a=n(/*! ./VTabsSlider */"./src/components/VTabs/VTabsSlider.js");n.d(e,"VTabsSlider",function(){return a.default}),e.default={$_vuetify_subcomponents:{VTabs:i.default,VTab:s.default,VTabsItems:r.default,VTabItem:o.default,VTabsSlider:a.default}}},"./src/components/VTabs/mixins/tabs-computed.js": +/*!******************************************************!*\ + !*** ./src/components/VTabs/mixins/tabs-computed.js ***! + \******************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={computed:{activeIndex:function(){var t=this;return this.tabs.findIndex(function(e,n){return(e.action===e?n:e.action)===t.lazyValue})},activeTab:function(){if(this.tabs.length)return this.tabs[this.activeIndex]},containerStyles:function(){return this.height?{height:parseInt(this.height,10)+"px"}:null},hasArrows:function(){return(this.showArrows||!this.isMobile)&&this.isOverflowing},inputValue:{get:function(){return this.lazyValue},set:function(t){this.inputValue!==t&&(this.lazyValue=t,this.$emit("input",t))}},isMobile:function(){return this.$vuetify.breakpoint.width0?t:e.length?this.$createElement(i.default,e):null},genTransition:function(t){return this.$createElement("transition",{props:{name:"fade-transition"}},[this.genIcon(t)])},genWrapper:function(t){var e=this;return this.$createElement("div",{staticClass:"v-tabs__wrapper",class:{"v-tabs__wrapper--show-arrows":this.hasArrows},ref:"wrapper",directives:[{name:"touch",value:{start:function(t){return e.overflowCheck(t,e.onTouchStart)},move:function(t){return e.overflowCheck(t,e.onTouchMove)},end:function(t){return e.overflowCheck(t,e.onTouchEnd)}}}]},[t])},genSlider:function(t){return t.length||(t=[this.$createElement(s.default,{props:{color:this.sliderColor}})]),this.$createElement("div",{staticClass:"v-tabs__slider-wrapper",style:this.sliderStyles},t)}}}},"./src/components/VTabs/mixins/tabs-props.js": +/*!***************************************************!*\ + !*** ./src/components/VTabs/mixins/tabs-props.js ***! + \***************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={props:{alignWithTitle:Boolean,centered:Boolean,fixedTabs:Boolean,grow:Boolean,height:{type:[Number,String],default:void 0,validator:function(t){return!isNaN(parseInt(t))}},hideSlider:Boolean,iconsAndText:Boolean,mobileBreakPoint:{type:[Number,String],default:1264,validator:function(t){return!isNaN(parseInt(t))}},nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},right:Boolean,showArrows:Boolean,sliderColor:{type:String,default:"accent"},value:[Number,String]}}},"./src/components/VTabs/mixins/tabs-touch.js": +/*!***************************************************!*\ + !*** ./src/components/VTabs/mixins/tabs-touch.js ***! + \***************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{newOffset:function(t){var e=this.$refs.wrapper.clientWidth;return"prev"===t?Math.max(this.scrollOffset-e,0):Math.min(this.scrollOffset+e,this.$refs.container.clientWidth-e)},onTouchStart:function(t){this.startX=this.scrollOffset+t.touchstartX,this.$refs.container.style.transition="none",this.$refs.container.style.willChange="transform"},onTouchMove:function(t){this.scrollOffset=this.startX-t.touchmoveX},onTouchEnd:function(){var t=this.$refs.container,e=this.$refs.wrapper,n=t.clientWidth-e.clientWidth;t.style.transition=null,t.style.willChange=null,this.scrollOffset<0||!this.isOverflowing?this.scrollOffset=0:this.scrollOffset>=n&&(this.scrollOffset=n)}}}},"./src/components/VTabs/mixins/tabs-watchers.js": +/*!******************************************************!*\ + !*** ./src/components/VTabs/mixins/tabs-watchers.js ***! + \******************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={watch:{activeTab:function(t,e){if(!e&&t&&this.updateTabs(),setTimeout(this.callSlider,0),t){var n=t.action;this.tabItems&&this.tabItems(n===t?this.tabs.indexOf(t):n)}},alignWithTitle:"callSlider",centered:"callSlider",fixedTabs:"callSlider",hasArrows:function(t){t||(this.scrollOffset=0)},isBooted:"findActiveLink",lazyValue:"updateTabs",right:"callSlider",value:function(t){this.lazyValue=t},"$vuetify.application.left":"onResize","$vuetify.application.right":"onResize",scrollOffset:function(t){this.$refs.container.style.transform="translateX("+-t+"px)",this.hasArrows&&(this.prevIconVisible=this.checkPrevIcon(),this.nextIconVisible=this.checkNextIcon())}}}},"./src/components/VTextField/VTextField.js": +/*!*************************************************!*\ + !*** ./src/components/VTextField/VTextField.js ***! + \*************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_text-fields.styl */"./src/stylus/components/_text-fields.styl");var i=n(/*! ../VInput */"./src/components/VInput/index.js"),s=n(/*! ../VCounter */"./src/components/VCounter/index.js"),r=n(/*! ../VLabel */"./src/components/VLabel/index.js"),o=n(/*! ../../mixins/maskable */"./src/mixins/maskable.js"),a=n(/*! ../../directives/ripple */"./src/directives/ripple.ts"),c=n(/*! ../../util/helpers */"./src/util/helpers.ts"),l=n(/*! ../../util/console */"./src/util/console.ts"),u=function(){return(u=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0||this.badInput},isEnclosed:function(){return this.box||this.isSolo||this.hasOutline||this.fullWidth},isLabelActive:function(){return this.isDirty||h.includes(this.type)},isSingle:function(){return this.isSolo||this.singleLine},isSolo:function(){return this.solo||this.soloInverted},labelPosition:function(){var t=this.prefix&&!this.labelValue?16:0;return!this.$vuetify.rtl!=!this.reverse?{left:"auto",right:t}:{left:t,right:"auto"}},showLabel:function(){return this.hasLabel&&(!this.isSingle||!this.isLabelActive&&!this.placeholder)},labelValue:function(){return!this.isSingle&&Boolean(this.isFocused||this.isLabelActive||this.placeholder)}},watch:{isFocused:function(t){this.hasColor=t,t?this.initialValue=this.lazyValue:this.initialValue!==this.lazyValue&&this.$emit("change",this.lazyValue)},value:function(t){var e=this;if(this.mask&&!this.internalChange){var n=this.maskText(this.unmaskText(t));this.lazyValue=this.unmaskText(n),String(t)!==this.lazyValue&&this.$nextTick(function(){e.$refs.input.value=n,e.$emit("input",e.lazyValue)})}else this.lazyValue=t}},mounted:function(){this.autofocus&&this.onFocus()},methods:{focus:function(){this.onFocus()},blur:function(){this.$refs.input?this.$refs.input.blur():this.onBlur()},clearableCallback:function(){var t=this;this.internalValue=null,this.$nextTick(function(){return t.$refs.input.focus()})},genAppendSlot:function(){var t=[];return this.$slots["append-outer"]?t.push(this.$slots["append-outer"]):this.appendOuterIcon&&t.push(this.genIcon("appendOuter")),this.genSlot("append","outer",t)},genPrependInnerSlot:function(){var t=[];return this.$slots["prepend-inner"]?t.push(this.$slots["prepend-inner"]):this.prependInnerIcon&&t.push(this.genIcon("prependInner")),this.genSlot("prepend","inner",t)},genIconSlot:function(){var t=[];return this.$slots.append?t.push(this.$slots.append):this.appendIcon&&t.push(this.genIcon("append")),this.genSlot("append","inner",t)},genInputSlot:function(){var t=i.default.methods.genInputSlot.call(this),e=this.genPrependInnerSlot();return e&&t.children.unshift(e),t},genClearIcon:function(){if(!this.clearable)return null;var t=!!this.isDirty&&"clear";return this.clearIconCb&&Object(l.deprecate)(":clear-icon-cb","@click:clear",this),this.genSlot("append","inner",[this.genIcon(t,!this.$listeners["click:clear"]&&this.clearIconCb||this.clearableCallback,!1)])},genCounter:function(){if(!1===this.counter||null==this.counter)return null;var t=!0===this.counter?this.$attrs.maxlength:this.counter;return this.$createElement(s.default,{props:{dark:this.dark,light:this.light,max:t,value:this.counterValue}})},genDefaultSlot:function(){return[this.genTextFieldSlot(),this.genClearIcon(),this.genIconSlot()]},genLabel:function(){if(!this.showLabel)return null;var t={props:{absolute:!0,color:this.validationState,dark:this.dark,disabled:this.disabled,focused:!this.isSingle&&(this.isFocused||!!this.validationState),left:this.labelPosition.left,light:this.light,right:this.labelPosition.right,value:this.labelValue}};return this.$attrs.id&&(t.props.for=this.$attrs.id),this.$createElement(r.default,t,this.$slots.label||this.label)},genInput:function(){var t=Object.assign({},this.$listeners);delete t.change;var e={style:{},domProps:{value:this.maskText(this.lazyValue)},attrs:u({"aria-label":(!this.$attrs||!this.$attrs.id)&&this.label},this.$attrs,{autofocus:this.autofocus,disabled:this.disabled,readonly:this.readonly,type:this.type}),on:Object.assign(t,{blur:this.onBlur,input:this.onInput,focus:this.onFocus,keydown:this.onKeyDown}),ref:"input"};return this.placeholder&&(e.attrs.placeholder=this.placeholder),this.mask&&(e.attrs.maxlength=this.masked.length),this.browserAutocomplete&&(e.attrs.autocomplete=this.browserAutocomplete),this.$createElement("input",e)},genMessages:function(){return this.hideDetails?null:this.$createElement("div",{staticClass:"v-text-field__details"},[i.default.methods.genMessages.call(this),this.genCounter()])},genTextFieldSlot:function(){return this.$createElement("div",{staticClass:"v-text-field__slot"},[this.genLabel(),this.prefix?this.genAffix("prefix"):null,this.genInput(),this.suffix?this.genAffix("suffix"):null])},genAffix:function(t){return this.$createElement("div",{class:"v-text-field__"+t,ref:t},this[t])},onBlur:function(t){this.isFocused=!1,this.internalChange=!1,this.$emit("blur",t)},onClick:function(){this.isFocused||this.disabled||this.$refs.input.focus()},onFocus:function(t){if(this.$refs.input)return document.activeElement!==this.$refs.input?this.$refs.input.focus():void(this.isFocused||(this.isFocused=!0,this.$emit("focus",t)))},onInput:function(t){this.internalChange=!0,this.mask&&this.resetSelections(t.target),this.internalValue=t.target.value,this.badInput=t.target.validity&&t.target.validity.badInput},onKeyDown:function(t){this.internalChange=!0,t.keyCode===c.keyCodes.enter&&this.$emit("change",this.internalValue),this.$emit("keydown",t)},onMouseDown:function(t){t.target!==this.$refs.input&&(t.preventDefault(),t.stopPropagation()),i.default.methods.onMouseDown.call(this,t)},onMouseUp:function(t){this.focus(),i.default.methods.onMouseUp.call(this,t)}}}},"./src/components/VTextField/index.js": +/*!********************************************!*\ + !*** ./src/components/VTextField/index.js ***! + \********************************************/ +/*! exports provided: VTextField, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VTextField",function(){return c});var i=n(/*! ./VTextField */"./src/components/VTextField/VTextField.js"),s=n(/*! ../VTextarea/VTextarea */"./src/components/VTextarea/VTextarea.js"),r=n(/*! ../../util/rebuildFunctionalSlots */"./src/util/rebuildFunctionalSlots.js"),o=n(/*! ../../util/dedupeModelListeners */"./src/util/dedupeModelListeners.ts"),a=n(/*! ../../util/console */"./src/util/console.ts"),c={functional:!0,$_wrapperFor:i.default,props:{textarea:Boolean,multiLine:Boolean},render:function(t,e){var n=e.props,l=e.data,u=e.slots,h=e.parent;Object(o.default)(l);var d=Object(r.default)(u(),t);return n.textarea&&Object(a.deprecate)("","",c,h),n.multiLine&&Object(a.deprecate)("","",c,h),n.textarea||n.multiLine?(l.attrs.outline=n.textarea,t(s.default,l,d)):t(i.default,l,d)}};e.default=c},"./src/components/VTextarea/VTextarea.js": +/*!***********************************************!*\ + !*** ./src/components/VTextarea/VTextarea.js ***! + \***********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_textarea.styl */"./src/stylus/components/_textarea.styl");var i=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),s=n(/*! ../../util/console */"./src/util/console.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},l=Object(o.createRange)(24),u=Object(o.createRange)(12),h=u.map(function(t){return t+12}),d=Object(o.createRange)(60);e.default={name:"v-time-picker",mixins:[r.default],props:{allowedHours:Function,allowedMinutes:Function,format:{type:String,default:"ampm",validator:function(t){return["ampm","24hr"].includes(t)}},min:String,max:String,readonly:Boolean,scrollable:Boolean,value:null},data:function(){return{inputHour:null,inputMinute:null,period:"am",selectingHour:!0}},computed:{isAllowedHourCb:function(){var t=this;if(!this.min&&!this.max)return this.allowedHours;var e=this.min?this.min.split(":")[0]:0,n=this.max?this.max.split(":")[0]:23;return function(i){return i>=1*e&&i<=1*n&&(!t.allowedHours||t.allowedHours(i))}},isAllowedMinuteCb:function(){var t=this,e=!this.allowedHours||this.allowedHours(this.inputHour);if(!this.min&&!this.max)return e?this.allowedMinutes:function(){return!1};var n=c(this.min?this.min.split(":"):[0,0],2),i=n[0],s=n[1],r=c(this.max?this.max.split(":"):[23,59],2),o=60*i+1*s,a=60*r[0]+1*r[1];return function(n){var i=60*t.inputHour+n;return i>=o&&i<=a&&e&&(!t.allowedMinutes||t.allowedMinutes(n))}},isAmPm:function(){return"ampm"===this.format}},watch:{value:"setInputData"},mounted:function(){this.setInputData(this.value)},methods:{emitValue:function(){null!=this.inputHour&&null!=this.inputMinute&&this.$emit("input",Object(a.default)(this.inputHour)+":"+Object(a.default)(this.inputMinute))},setPeriod:function(t){if(this.period=t,null!=this.inputHour){var e=this.inputHour+("am"===t?-12:12);this.inputHour=this.firstAllowed("hour",e),this.emitValue()}},setInputData:function(t){if(null==t)return this.inputHour=null,void(this.inputMinute=null);if(t instanceof Date)this.inputHour=t.getHours(),this.inputMinute=t.getMinutes();else{var e=c(t.trim().toLowerCase().match(/^(\d+):(\d+)(:\d+)?([ap]m)?$/,"")||[],5),n=e[1],i=e[2],s=e[4];this.inputHour=s?this.convert12to24(parseInt(n,10),s):parseInt(n,10),this.inputMinute=parseInt(i,10)}this.period=this.inputHour<12?"am":"pm"},convert24to12:function(t){return t?(t-1)%12+1:12},convert12to24:function(t,e){return t%12+("pm"===e?12:0)},onInput:function(t){this.selectingHour?this.inputHour=this.isAmPm?this.convert12to24(t,this.period):t:this.inputMinute=t,this.emitValue()},onChange:function(){this.selectingHour?this.selectingHour=!1:this.$emit("change",this.value)},firstAllowed:function(t,e){var n="hour"===t?this.isAllowedHourCb:this.isAllowedMinuteCb;if(!n)return e;var i="minute"===t?d:this.isAmPm?e<12?u:h:l;return((i.find(function(t){return n((t+e)%i.length+i[0])})||0)+e)%i.length+i[0]},genClock:function(){return this.$createElement(s.default,{props:{allowedValues:this.selectingHour?this.isAllowedHourCb:this.isAllowedMinuteCb,color:this.color,dark:this.dark,double:this.selectingHour&&!this.isAmPm,format:this.selectingHour?this.isAmPm?this.convert24to12:function(t){return t}:function(t){return Object(a.default)(t,2)},light:this.light,max:this.selectingHour?this.isAmPm&&"am"===this.period?11:23:59,min:this.selectingHour&&this.isAmPm&&"pm"===this.period?12:0,readonly:this.readonly,scrollable:this.scrollable,size:this.width-(!this.fullWidth&&this.landscape?80:20),step:this.selectingHour?1:5,value:this.selectingHour?this.inputHour:this.inputMinute},on:{input:this.onInput,change:this.onChange},ref:"clock"})},genPickerBody:function(){return this.$createElement("div",{staticClass:"v-time-picker-clock__container",style:{width:this.width+"px",height:this.width-(!this.fullWidth&&this.landscape?60:0)+"px"},key:this.selectingHour},[this.genClock()])},genPickerTitle:function(){var t=this;return this.$createElement(i.default,{props:{ampm:this.isAmPm,hour:this.inputHour,minute:this.inputMinute,period:this.period,readonly:this.readonly,selectingHour:this.selectingHour},on:{"update:selectingHour":function(e){return t.selectingHour=e},"update:period":this.setPeriod},ref:"title",slot:"title"})}},render:function(){return this.genPicker("v-picker--time")}}},"./src/components/VTimePicker/VTimePickerClock.js": +/*!********************************************************!*\ + !*** ./src/components/VTimePicker/VTimePickerClock.js ***! + \********************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_time-picker-clock.styl */"./src/stylus/components/_time-picker-clock.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n=this.roundCount?this.innerRadius/this.radius:this.outerRadius/this.radius},isAllowed:function(t){return!this.allowedValues||this.allowedValues(t)},genValues:function(){for(var t=[],e=this.min;e<=this.max;e+=this.step){var n=e===this.value&&(this.color||"accent");t.push(this.$createElement("span",this.setBackgroundColor(n,{class:{active:e===this.displayedValue,disabled:!this.isAllowed(e)},style:this.getTransform(e),domProps:{innerHTML:""+this.format(e)+""}})))}return t},genHand:function(){var t="scaleY("+this.handScale(this.displayedValue)+")",e=this.rotate+this.degreesPerUnit*(this.displayedValue-this.min),n=null!=this.value&&(this.color||"accent");return this.$createElement("div",this.setBackgroundColor(n,{staticClass:"v-time-picker-clock__hand",style:{transform:"rotate("+e+"deg) "+t}}))},getTransform:function(t){var e=this.getPosition(t);return{transform:"translate("+e.x+"px, "+e.y+"px)"}},getPosition:function(t){var e=(this.radius-24)*this.handScale(t),n=this.rotate*Math.PI/180;return{x:Math.round(Math.sin((t-this.min)*this.degrees+n)*e),y:Math.round(-Math.cos((t-this.min)*this.degrees+n)*e)}},onMouseDown:function(t){t.preventDefault(),this.valueOnMouseDown=null,this.valueOnMouseUp=null,this.isDragging=!0,this.onDragMove(t)},onMouseUp:function(){this.isDragging=!1,null!==this.valueOnMouseUp&&this.isAllowed(this.valueOnMouseUp)&&this.$emit("change",this.valueOnMouseUp)},onDragMove:function(t){if(t.preventDefault(),this.isDragging||"click"===t.type){var e,n=this.$refs.clock.getBoundingClientRect(),i=n.width,s=n.top,r=n.left,o="touches"in t?t.touches[0]:t,a={x:i/2,y:-i/2},c={x:o.clientX-r,y:s-o.clientY},l=Math.round(this.angle(a,c)-this.rotate+360)%360,u=this.double&&this.euclidean(a,c)<(this.outerRadius+this.innerRadius)/2-16,h=Math.round(l/this.degreesPerUnit)+this.min+(u?this.roundCount:0);e=l>=360-this.degreesPerUnit/2?u?this.max:this.min:h,this.isAllowed(h)&&(null===this.valueOnMouseDown&&(this.valueOnMouseDown=e),this.valueOnMouseUp=e,this.update(e))}},update:function(t){this.inputValue!==t&&(this.inputValue=t,this.$emit("input",t))},euclidean:function(t,e){var n=e.x-t.x,i=e.y-t.y;return Math.sqrt(n*n+i*i)},angle:function(t,e){var n=2*Math.atan2(e.y-t.y-this.euclidean(t,e),e.x-t.x);return Math.abs(180*n/Math.PI)}},render:function(){var t=this,e={staticClass:"v-time-picker-clock",class:r({"v-time-picker-clock--indeterminate":null==this.value},this.themeClasses),on:this.readonly?void 0:{mousedown:this.onMouseDown,mouseup:this.onMouseUp,mouseleave:function(){return t.isDragging&&t.onMouseUp()},touchstart:this.onMouseDown,touchend:this.onMouseUp,mousemove:this.onDragMove,touchmove:this.onDragMove},style:{height:this.size+"px",width:this.size+"px"},ref:"clock"};return!this.readonly&&this.scrollable&&(e.on.wheel=this.wheel),this.$createElement("div",e,[this.genHand(),this.genValues()])}}},"./src/components/VTimePicker/VTimePickerTitle.js": +/*!********************************************************!*\ + !*** ./src/components/VTimePicker/VTimePickerTitle.js ***! + \********************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_time-picker-title.styl */"./src/stylus/components/_time-picker-title.styl");var i=n(/*! ../../mixins/picker-button */"./src/mixins/picker-button.js"),s=n(/*! ../VDatePicker/util */"./src/components/VDatePicker/util/index.js");e.default={name:"v-time-picker-title",mixins:[i.default],props:{ampm:Boolean,hour:Number,minute:Number,period:{type:String,validator:function(t){return"am"===t||"pm"===t}},readonly:Boolean,selectingHour:Boolean},methods:{genTime:function(){var t=this.hour;this.ampm&&(t=t?(t-1)%12+1:12);var e=null==this.hour?"--":this.ampm?t:Object(s.pad)(t),n=null==this.minute?"--":Object(s.pad)(this.minute);return this.$createElement("div",{class:"v-time-picker-title__time"},[this.genPickerButton("selectingHour",!0,e),this.$createElement("span",":"),this.genPickerButton("selectingHour",!1,n)])},genAmPm:function(){return this.$createElement("div",{staticClass:"v-time-picker-title__ampm"},[this.genPickerButton("period","am","am",this.readonly),this.genPickerButton("period","pm","pm",this.readonly)])}},render:function(t){return t("div",{staticClass:"v-time-picker-title"},[this.genTime(),this.ampm?this.genAmPm():null])}}},"./src/components/VTimePicker/index.js": +/*!*********************************************!*\ + !*** ./src/components/VTimePicker/index.js ***! + \*********************************************/ +/*! exports provided: VTimePicker, VTimePickerClock, VTimePickerTitle, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTimePicker */"./src/components/VTimePicker/VTimePicker.js");n.d(e,"VTimePicker",function(){return i.default});var s=n(/*! ./VTimePickerClock */"./src/components/VTimePicker/VTimePickerClock.js");n.d(e,"VTimePickerClock",function(){return s.default});var r=n(/*! ./VTimePickerTitle */"./src/components/VTimePicker/VTimePickerTitle.js");n.d(e,"VTimePickerTitle",function(){return r.default}),e.default={$_vuetify_subcomponents:{VTimePicker:i.default,VTimePickerClock:s.default,VTimePickerTitle:r.default}}},"./src/components/VToolbar/VToolbar.js": +/*!*********************************************!*\ + !*** ./src/components/VToolbar/VToolbar.js ***! + \*********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_toolbar.styl */"./src/stylus/components/_toolbar.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),a=n(/*! ../../directives/scroll */"./src/directives/scroll.ts"),c=n(/*! ../../util/console */"./src/util/console.ts"),l=function(){return(l=Object.assign||function(t){for(var e,n=1,i=arguments.length;nthis.$vuetify.breakpoint.height?this.heights.mobileLandscape:this.heights.mobile},computedExtensionHeight:function(){return this.tabs?48:this.extensionHeight?parseInt(this.extensionHeight):this.computedContentHeight},computedHeight:function(){return this.isExtended?this.computedContentHeight+this.computedExtensionHeight:this.computedContentHeight},computedMarginTop:function(){return this.app?this.$vuetify.application.bar:0},classes:function(){return l({"v-toolbar":!0,"elevation-0":this.flat||!this.isActive&&!this.tabs&&this.canScroll,"v-toolbar--absolute":this.absolute,"v-toolbar--card":this.card,"v-toolbar--clipped":this.clippedLeft||this.clippedRight,"v-toolbar--dense":this.dense,"v-toolbar--extended":this.isExtended,"v-toolbar--fixed":!this.absolute&&(this.app||this.fixed),"v-toolbar--floating":this.floating,"v-toolbar--prominent":this.prominent},this.themeClasses)},computedPaddingLeft:function(){return!this.app||this.clippedLeft?0:this.$vuetify.application.left},computedPaddingRight:function(){return!this.app||this.clippedRight?0:this.$vuetify.application.right},computedTransform:function(){return this.isActive?0:this.canScroll?-this.computedContentHeight:-this.computedHeight},currentThreshold:function(){return Math.abs(this.currentScroll-this.savedScroll)},styles:function(){return{marginTop:this.computedMarginTop+"px",paddingRight:this.computedPaddingRight+"px",paddingLeft:this.computedPaddingLeft+"px",transform:"translateY("+this.computedTransform+"px)"}}},watch:{currentThreshold:function(t){if(this.invertedScroll)return this.isActive=this.currentScroll>this.scrollThreshold;ti[1]||s[1]===i[1]&&s[2]>=i[2])||Object(d.consoleWarn)("Vuetify requires Vue version "+n)}e.default=f},"./src/components/Vuetify/mixins/application.ts": +/*!******************************************************!*\ + !*** ./src/components/Vuetify/mixins/application.ts ***! + \******************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={bar:0,bottom:0,footer:0,insetFooter:0,left:0,right:0,top:0,components:{bar:{},bottom:{},footer:{},insetFooter:{},left:{},right:{},top:{}},bind:function(t,e,n){var i;this.components[e]&&(this.components[e]=((i={})[t]=n,i),this.update(e))},unbind:function(t,e){null!=this.components[e][t]&&(delete this.components[e][t],this.update(e))},update:function(t){this[t]=Object.values(this.components[t]).reduce(function(t,e){return t+e},0)}}},"./src/components/Vuetify/mixins/breakpoint.ts": +/*!*****************************************************!*\ + !*** ./src/components/Vuetify/mixins/breakpoint.ts ***! + \*****************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i);function r(){return"undefined"==typeof document?0:Math.max(document.documentElement.clientWidth,window.innerWidth||0)}function o(){return"undefined"==typeof document?0:Math.max(document.documentElement.clientHeight,window.innerHeight||0)}e.default=s.a.extend({data:function(){return{clientHeight:o(),clientWidth:r(),resizeTimeout:void 0}},computed:{breakpoint:function(){var t,e=this.clientWidth<600,n=this.clientWidth<960&&!e,i=this.clientWidth<1264&&!(n||e),s=this.clientWidth<1904&&!(i||n||e),r=this.clientWidth>=1904,o=e,a=n,c=(e||n)&&!(i||s||r),l=!e&&(n||i||s||r),u=i,h=(e||n||i)&&!(s||r),d=!(e||n)&&(i||s||r),f=s,p=(e||n||i||s)&&!r,m=!(e||n||i)&&(s||r),v=r;switch(!0){case e:t="xs";break;case n:t="sm";break;case i:t="md";break;case s:t="lg";break;default:t="xl"}return{xs:e,sm:n,md:i,lg:s,xl:r,name:t,xsOnly:o,smOnly:a,smAndDown:c,smAndUp:l,mdOnly:u,mdAndDown:h,mdAndUp:d,lgOnly:f,lgAndDown:p,lgAndUp:m,xlOnly:v,width:this.clientWidth,height:this.clientHeight}}},created:function(){"undefined"!=typeof window&&window.addEventListener("resize",this.onResize,{passive:!0})},beforeDestroy:function(){"undefined"!=typeof window&&window.removeEventListener("resize",this.onResize)},methods:{onResize:function(){clearTimeout(this.resizeTimeout),this.resizeTimeout=window.setTimeout(this.setDimensions,200)},setDimensions:function(){this.clientHeight=o(),this.clientWidth=r()}}})},"./src/components/Vuetify/mixins/icons.js": +/*!************************************************!*\ + !*** ./src/components/Vuetify/mixins/icons.js ***! + \************************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return s});var i={md:{complete:"check",cancel:"cancel",close:"close",delete:"cancel",clear:"clear",success:"check_circle",info:"info",warning:"priority_high",error:"warning",prev:"chevron_left",next:"chevron_right",checkboxOn:"check_box",checkboxOff:"check_box_outline_blank",checkboxIndeterminate:"indeterminate_check_box",delimiter:"fiber_manual_record",sort:"arrow_upward",expand:"keyboard_arrow_down",menu:"menu",subgroup:"arrow_drop_down",dropdown:"arrow_drop_down",radioOn:"radio_button_checked",radioOff:"radio_button_unchecked",edit:"edit",ratingEmpty:"star_border",ratingFull:"star",ratingHalf:"star_half"},mdi:{complete:"mdi-check",cancel:"mdi-close-circle",close:"mdi-close",delete:"mdi-close-circle",clear:"mdi-close",success:"mdi-check-circle",info:"mdi-information",warning:"mdi-exclamation",error:"mdi-alert",prev:"mdi-chevron-left",next:"mdi-chevron-right",checkboxOn:"mdi-checkbox-marked",checkboxOff:"mdi-checkbox-blank-outline",checkboxIndeterminate:"mdi-minus-box",delimiter:"mdi-circle",sort:"mdi-arrow-up",expand:"mdi-chevron-down",menu:"mdi-menu",subgroup:"mdi-menu-down",dropdown:"mdi-menu-down",radioOn:"mdi-radiobox-marked",radioOff:"mdi-radiobox-blank",edit:"mdi-pencil",ratingEmpty:"mdi-star-outline",ratingFull:"mdi-star",ratingHalf:"mdi-star-half"},fa:{complete:"fas fa-check",cancel:"fas fa-times-circle",close:"fas fa-times",delete:"fas fa-times-circle",clear:"fas fa-times-circle",success:"fas fa-check-circle",info:"fas fa-info-circle",warning:"fas fa-exclamation",error:"fas fa-exclamation-triangle",prev:"fas fa-chevron-left",next:"fas fa-chevron-right",checkboxOn:"fas fa-check-square",checkboxOff:"far fa-square",checkboxIndeterminate:"fas fa-minus-square",delimiter:"fas fa-circle",sort:"fas fa-sort-up",expand:"fas fa-chevron-down",menu:"fas fa-bars",subgroup:"fas fa-caret-down",dropdown:"fas fa-caret-down",radioOn:"far fa-dot-circle",radioOff:"far fa-circle",edit:"fas fa-edit",ratingEmpty:"far fa-star",ratingFull:"fas fa-star",ratingHalf:"fas fa-star-half"},fa4:{complete:"fa fa-check",cancel:"fa fa-times-circle",close:"fa fa-times",delete:"fa fa-times-circle",clear:"fa fa-times-circle",success:"fa fa-check-circle",info:"fa fa-info-circle",warning:"fa fa-exclamation",error:"fa fa-exclamation-triangle",prev:"fa fa-chevron-left",next:"fa fa-chevron-right",checkboxOn:"fa fa-check-square",checkboxOff:"fa fa-square-o",checkboxIndeterminate:"fa fa-minus-square",delimiter:"fa fa-circle",sort:"fa fa-sort-up",expand:"fa fa-chevron-down",menu:"fa fa-bars",subgroup:"fa fa-caret-down",dropdown:"fa fa-caret-down",radioOn:"fa fa-dot-circle",radioOff:"fa fa-circle-o",edit:"fa fa-pencil",ratingEmpty:"fa fa-star-o",ratingFull:"fa fa-star",ratingHalf:"fa fa-star-half-o"}};function s(t,e){return void 0===t&&(t="md"),void 0===e&&(e={}),Object.assign({},i[t]||i.md,e)}},"./src/components/Vuetify/mixins/lang.ts": +/*!***********************************************!*\ + !*** ./src/components/Vuetify/mixins/lang.ts ***! + \***********************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return u});var i=n(/*! ../../../locale/en */"./src/locale/en.ts"),s=n(/*! ../../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ../../../util/console */"./src/util/console.ts"),o=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},a=function(){for(var t=[],e=0;e=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}};function s(){return!1}function r(t,e,n){n.args=n.args||{};var r=n.args.closeConditional||s;if(t&&!1!==r(t)&&!("isTrusted"in t&&!t.isTrusted||"pointerType"in t&&!t.pointerType)){var a=(n.args.include||function(){return[]})();a.push(e),!function(t,e){var n,s,r=t.clientX,a=t.clientY;try{for(var c=i(e),l=c.next();!l.done;l=c.next()){var u=l.value;if(o(u,r,a))return!0}}catch(t){n={error:t}}finally{try{l&&!l.done&&(s=c.return)&&s.call(c)}finally{if(n)throw n.error}}return!1}(t,a)&&setTimeout(function(){r(t)&&n.value(t)},0)}}function o(t,e,n){var i=t.getBoundingClientRect();return e>=i.left&&e<=i.right&&n>=i.top&&n<=i.bottom}e.default={inserted:function(t,e){var n=function(n){return r(n,t,e)};(document.querySelector("[data-app]")||document.body).addEventListener("click",n,!0),t._clickOutside=n},unbind:function(t){if(t._clickOutside){var e=document.querySelector("[data-app]")||document.body;e&&e.removeEventListener("click",t._clickOutside,!0),delete t._clickOutside}}}},"./src/directives/index.ts": +/*!*********************************!*\ + !*** ./src/directives/index.ts ***! + \*********************************/ +/*! exports provided: ClickOutside, Ripple, Resize, Scroll, Touch */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./click-outside */"./src/directives/click-outside.ts");n.d(e,"ClickOutside",function(){return i.default});var s=n(/*! ./resize */"./src/directives/resize.ts");n.d(e,"Resize",function(){return s.default});var r=n(/*! ./ripple */"./src/directives/ripple.ts");n.d(e,"Ripple",function(){return r.default});var o=n(/*! ./scroll */"./src/directives/scroll.ts");n.d(e,"Scroll",function(){return o.default});var a=n(/*! ./touch */"./src/directives/touch.ts");n.d(e,"Touch",function(){return a.default})},"./src/directives/resize.ts": +/*!**********************************!*\ + !*** ./src/directives/resize.ts ***! + \**********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={inserted:function(t,e){var n=e.value,i=e.options||{passive:!0};window.addEventListener("resize",n,i),t._onResize={callback:n,options:i},e.modifiers&&e.modifiers.quiet||n()},unbind:function(t){if(t._onResize){var e=t._onResize,n=e.callback,i=e.options;window.removeEventListener("resize",n,i),delete t._onResize}}}},"./src/directives/ripple.ts": +/*!**********************************!*\ + !*** ./src/directives/ripple.ts ***! + \**********************************/ +/*! exports provided: default */function(t,e,n){"use strict";function i(t,e){t.style.transform=e,t.style.webkitTransform=e}n.r(e);var s={show:function(t,e,n){if(void 0===n&&(n={}),e._ripple&&e._ripple.enabled){var s=document.createElement("span"),r=document.createElement("span");s.appendChild(r),s.className="v-ripple__container",n.class&&(s.className+=" "+n.class);var o=Math.min(e.clientWidth,e.clientHeight)*(n.center?1:e.clientWidth/e.clientHeight*1.6),a=o/2;r.className="v-ripple__animation",r.style.width=o+"px",r.style.height=o+"px",e.appendChild(s);var c=window.getComputedStyle(e);"absolute"!==c.position&&"fixed"!==c.position&&(e.style.position="relative");var l=e.getBoundingClientRect(),u=n.center?0:t.clientX-l.left-a,h=n.center?0:t.clientY-l.top-a;r.classList.add("v-ripple__animation--enter"),r.classList.add("v-ripple__animation--visible"),i(r,"translate("+u+"px, "+h+"px) scale3d(0.5, 0.5, 0.5)"),r.dataset.activated=String(performance.now()),setTimeout(function(){r.classList.remove("v-ripple__animation--enter"),i(r,"translate("+u+"px, "+h+"px) scale3d(1, 1, 1)")},0)}},hide:function(t){if(t&&t._ripple&&t._ripple.enabled){var e=t.getElementsByClassName("v-ripple__animation");if(0!==e.length){var n=e[e.length-1];if(!n.dataset.isHiding){n.dataset.isHiding="true";var i=performance.now()-Number(n.dataset.activated),s=Math.max(300-i,0);setTimeout(function(){n.classList.remove("v-ripple__animation--visible"),setTimeout(function(){0===t.getElementsByClassName("v-ripple__animation").length&&(t.style.position=null),n.parentNode&&t.removeChild(n.parentNode)},300)},s)}}}}};function r(t){return void 0===t||!!t}function o(t){var e={},n=t.currentTarget;n&&(e.center=n._ripple.centered,n._ripple.class&&(e.class=n._ripple.class),s.show(t,n,e))}function a(t){s.hide(t.currentTarget)}function c(t,e,n){var i=r(e.value);i||s.hide(t),t._ripple=t._ripple||{},t._ripple.enabled=i;var c=e.value||{};c.center&&(t._ripple.centered=!0),c.class&&(t._ripple.class=e.value.class),i&&!n?("ontouchstart"in window&&(t.addEventListener("touchend",a,!1),t.addEventListener("touchcancel",a,!1)),t.addEventListener("mousedown",o,!1),t.addEventListener("mouseup",a,!1),t.addEventListener("mouseleave",a,!1),t.addEventListener("dragstart",a,!1)):!i&&n&&l(t)}function l(t){t.removeEventListener("mousedown",o,!1),t.removeEventListener("touchend",a,!1),t.removeEventListener("touchcancel",a,!1),t.removeEventListener("mouseup",a,!1),t.removeEventListener("mouseleave",a,!1),t.removeEventListener("dragstart",a,!1)}e.default={bind:function(t,e){c(t,e,!1)},unbind:function(t){delete t._ripple,l(t)},update:function(t,e){e.value!==e.oldValue&&c(t,e,r(e.oldValue))}}},"./src/directives/scroll.ts": +/*!**********************************!*\ + !*** ./src/directives/scroll.ts ***! + \**********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={inserted:function(t,e){var n=e.value,i=e.options||{passive:!0},s=e.arg?document.querySelector(e.arg):window;s&&(s.addEventListener("scroll",n,i),t._onScroll={callback:n,options:i,target:s})},unbind:function(t){if(t._onScroll){var e=t._onScroll,n=e.callback,i=e.options;e.target.removeEventListener("scroll",n,i),delete t._onScroll}}}},"./src/directives/touch.ts": +/*!*********************************!*\ + !*** ./src/directives/touch.ts ***! + \*********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../util/helpers */"./src/util/helpers.ts"),s=function(t){var e=t.touchstartX,n=t.touchendX,i=t.touchstartY,s=t.touchendY;t.offsetX=n-e,t.offsetY=s-i,Math.abs(t.offsetY)<.5*Math.abs(t.offsetX)&&(t.left&&ne+16&&t.right(t)),Math.abs(t.offsetX)<.5*Math.abs(t.offsetY)&&(t.up&&si+16&&t.down(t))};function r(t){var e={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:t.left,right:t.right,up:t.up,down:t.down,start:t.start,move:t.move,end:t.end};return{touchstart:function(t){return function(t,e){var n=t.changedTouches[0];e.touchstartX=n.clientX,e.touchstartY=n.clientY,e.start&&e.start(Object.assign(t,e))}(t,e)},touchend:function(t){return function(t,e){var n=t.changedTouches[0];e.touchendX=n.clientX,e.touchendY=n.clientY,e.end&&e.end(Object.assign(t,e)),s(e)}(t,e)},touchmove:function(t){return function(t,e){var n=t.changedTouches[0];e.touchmoveX=n.clientX,e.touchmoveY=n.clientY,e.move&&e.move(Object.assign(t,e))}(t,e)}}}e.default={inserted:function(t,e,n){var s=e.value,o=s.parent?t.parentElement:t,a=s.options||{passive:!0};if(o){var c=r(e.value);o._touchHandlers=Object(o._touchHandlers),o._touchHandlers[n.context._uid]=c,Object(i.keys)(c).forEach(function(t){o.addEventListener(t,c[t],a)})}},unbind:function(t,e,n){var s=e.value.parent?t.parentElement:t;if(s&&s._touchHandlers){var r=s._touchHandlers[n.context._uid];Object(i.keys)(r).forEach(function(t){s.removeEventListener(t,r[t])}),delete s._touchHandlers[n.context._uid]}}}},"./src/index.ts": +/*!**********************!*\ + !*** ./src/index.ts ***! + \**********************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ./stylus/app.styl */"./src/stylus/app.styl");var i=n(/*! ./components/Vuetify */"./src/components/Vuetify/index.ts"),s=n(/*! ./components */"./src/components/index.js"),r=n(/*! ./directives */"./src/directives/index.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)},register:function(t){var e=this.buttons.length;this.buttons.push(t),this.listeners.push(this.updateValue.bind(this,e)),t.$on("click",this.listeners[e])},unregister:function(t){if(this.isDestroying){var e=this.buttons.indexOf(t);-1!==e&&t.$off("click",this.listeners[e])}else this.redoRegistrations(t)},redoRegistrations:function(t){for(var e=0,n=[],i=0;i0),this.updateAllValues&&this.updateAllValues()},ensureMandatoryInvariant:function(t){this.mandatory&&!t&&(this.listeners.length?this.listeners[0]():Object(r.consoleWarn)("There must be at least one v-btn child if the mandatory property is true.",this))}}})},"./src/mixins/colorable.ts": +/*!*********************************!*\ + !*** ./src/mixins/colorable.ts ***! + \*********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};function a(t){return!!t&&!!t.match(/^(#|(rgb|hsl)a?\()/)}e.default=s.a.extend({name:"colorable",props:{color:String},methods:{setBackgroundColor:function(t,e){var n;return void 0===e&&(e={}),a(t)?e.style=r({},e.style,{"background-color":""+t,"border-color":""+t}):t&&(e.class=r({},e.class,((n={})[t]=!0,n))),e},setTextColor:function(t,e){var n;if(void 0===e&&(e={}),a(t))e.style=r({},e.style,{color:""+t,"caret-color":""+t});else if(t){var i=o(t.toString().trim().split(" ",2),2),s=i[0],c=i[1];e.class=r({},e.class,((n={})[s+"--text"]=!0,n)),c&&(e.class["text--"+c]=!0)}return e}}})},"./src/mixins/comparable.ts": +/*!**********************************!*\ + !*** ./src/mixins/comparable.ts ***! + \**********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../util/helpers */"./src/util/helpers.ts");e.default=s.a.extend({name:"comparable",props:{valueComparator:{type:Function,default:r.deepEqual}}})},"./src/mixins/data-iterable.js": +/*!*************************************!*\ + !*** ./src/mixins/data-iterable.js ***! + \*************************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../components/VBtn */"./src/components/VBtn/index.ts"),s=n(/*! ../components/VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../components/VSelect */"./src/components/VSelect/index.js"),o=n(/*! ./filterable */"./src/mixins/filterable.js"),a=n(/*! ./themeable */"./src/mixins/themeable.ts"),c=n(/*! ./loadable */"./src/mixins/loadable.ts"),l=n(/*! ../util/helpers */"./src/util/helpers.ts"),u=n(/*! ../util/console */"./src/util/console.ts"),h=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},d=function(){for(var t=[],e=0;e(a=r[1])?1:o0},hasSelectAll:function(){return void 0!==this.selectAll&&!1!==this.selectAll},itemsLength:function(){return this.hasSearch?this.searchLength:this.totalItems||this.items.length},indeterminate:function(){return this.hasSelectAll&&this.someItems&&!this.everyItem},everyItem:function(){var t=this;return this.filteredItems.length&&this.filteredItems.every(function(e){return t.isSelected(e)})},someItems:function(){var t=this;return this.filteredItems.some(function(e){return t.isSelected(e)})},getPage:function(){var t=this.computedPagination.rowsPerPage;return t===Object(t)?t.value:t},pageStart:function(){return-1===this.getPage?0:(this.computedPagination.page-1)*this.getPage},pageStop:function(){return-1===this.getPage?this.itemsLength:this.computedPagination.page*this.getPage},filteredItems:function(){return this.filteredItemsImpl()},selected:function(){for(var t={},e=0;e=this.itemsLength||this.pageStop<0;return this.$createElement(i.default,{props:{disabled:n,icon:!0,flat:!0},on:{click:function(){var e=t.computedPagination.page;t.updatePagination({page:e+1})}},attrs:{"aria-label":this.$vuetify.t("$vuetify.dataIterator.nextPage")}},[this.$createElement(s.default,this.$vuetify.rtl?this.prevIcon:this.nextIcon)])},genSelect:function(){var t=this;return this.$createElement("div",{class:this.actionsSelectClasses},[this.$vuetify.t(this.rowsPerPageText),this.$createElement(r.default,{attrs:{"aria-label":this.$vuetify.t(this.rowsPerPageText)},props:{items:this.computedRowsPerPageItems,value:this.computedPagination.rowsPerPage,hideDetails:!0,menuProps:{auto:!0,minWidth:"75px"}},on:{input:function(e){t.updatePagination({page:1,rowsPerPage:e})}}})])},genPagination:function(){var t="–";if(this.itemsLength){var e=this.itemsLength1?this.genSelect():null,t,this.$slots["actions-append"]?this.$createElement("div",{},this.$slots["actions-append"]):null])]}}}},"./src/mixins/delayable.ts": +/*!*********************************!*\ + !*** ./src/mixins/delayable.ts ***! + \*********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i);e.default=s.a.extend({name:"delayable",props:{openDelay:{type:[Number,String],default:0},closeDelay:{type:[Number,String],default:200}},data:function(){return{openTimeout:void 0,closeTimeout:void 0}},methods:{clearDelay:function(){clearTimeout(this.openTimeout),clearTimeout(this.closeTimeout)},runDelay:function(t,e){this.clearDelay();var n=parseInt(this[t+"Delay"],10);this[t+"Timeout"]=setTimeout(e,n)}}})},"./src/mixins/dependent.js": +/*!*********************************!*\ + !*** ./src/mixins/dependent.js ***! + \*********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,s,r=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},s=function(){for(var t=[],e=0;e0&&(t=n-i-(n>600?30:12)),t<0&&(t=12),t},calcYOverflow:function(t){var e=this.getInnerHeight(),n=this.pageYOffset+e,i=this.dimensions.activator,s=this.dimensions.content.height,r=ns?t=this.pageYOffset+(i.top-s):r&&!this.allowOverflow?t=n-s-12:t0?this.$refs.activator.children[0]:this.$refs.activator},getInnerHeight:function(){return this.hasWindow?window.innerHeight||document.documentElement.clientHeight:0},getInnerWidth:function(){return this.hasWindow?window.innerWidth:0},getOffsetTop:function(){return this.hasWindow?window.pageYOffset||document.documentElement.scrollTop:0},getRoundedBoundedClientRect:function(t){var e=t.getBoundingClientRect();return{top:Math.round(e.top),left:Math.round(e.left),bottom:Math.round(e.bottom),right:Math.round(e.right),width:Math.round(e.width),height:Math.round(e.height)}},measure:function(t,e){if(!(t=e?t.querySelector(e):t)||!this.hasWindow)return null;var n=this.getRoundedBoundedClientRect(t);if(this.isAttached){var i=window.getComputedStyle(t);n.left=parseInt(i.marginLeft),n.top=parseInt(i.marginTop)}return n},sneakPeek:function(t){var e=this;requestAnimationFrame(function(){var n=e.$refs.content;if(!n||e.isShown(n))return t();n.style.display="inline-block",t(),n.style.display="none"})},startTransition:function(){var t=this;requestAnimationFrame(function(){return t.isContentActive=!0})},isShown:function(t){return"none"!==t.style.display},updateDimensions:function(){var t=this;this.checkForWindow(),this.checkForPageYOffset();var e={};e.activator=!this.hasActivator||this.absolute?this.absolutePosition():this.measure(this.getActivator()),this.sneakPeek(function(){e.content=t.measure(t.$refs.content),t.dimensions=e})}}})},"./src/mixins/overlayable.js": +/*!***********************************!*\ + !*** ./src/mixins/overlayable.js ***! + \***********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../stylus/components/_overlay.styl */"./src/stylus/components/_overlay.styl");var i=n(/*! ../util/helpers */"./src/util/helpers.ts");e.default={name:"overlayable",props:{hideOverlay:Boolean},data:function(){return{overlay:null,overlayOffset:0,overlayTimeout:null,overlayTransitionDuration:650}},beforeDestroy:function(){this.removeOverlay()},methods:{genOverlay:function(){var t=this;if(!this.isActive||this.hideOverlay||this.isActive&&this.overlayTimeout||this.overlay)return clearTimeout(this.overlayTimeout),this.overlay&&this.overlay.classList.add("v-overlay--active");this.overlay=document.createElement("div"),this.overlay.className="v-overlay",this.absolute&&(this.overlay.className+=" v-overlay--absolute"),this.hideScroll();var e=this.absolute?this.$el.parentNode:document.querySelector("[data-app]");return e&&e.insertBefore(this.overlay,e.firstChild),this.overlay.clientHeight,requestAnimationFrame(function(){t.overlay&&(t.overlay.className+=" v-overlay--active",void 0!==t.activeZIndex&&(t.overlay.style.zIndex=t.activeZIndex-1))}),!0},removeOverlay:function(){var t=this;if(!this.overlay)return this.showScroll();this.overlay.classList.remove("v-overlay--active"),this.overlayTimeout=setTimeout(function(){try{t.overlay&&t.overlay.parentNode&&t.overlay.parentNode.removeChild(t.overlay),t.overlay=null,t.showScroll()}catch(t){console.log(t)}clearTimeout(t.overlayTimeout),t.overlayTimeout=null},this.overlayTransitionDuration)},scrollListener:function(t){if("keydown"===t.type){if(["INPUT","TEXTAREA","SELECT"].includes(t.target.tagName)||t.target.isContentEditable)return;var e=[i.keyCodes.up,i.keyCodes.pageup],n=[i.keyCodes.down,i.keyCodes.pagedown];if(e.includes(t.keyCode))t.deltaY=-1;else{if(!n.includes(t.keyCode))return;t.deltaY=1}}(t.target===this.overlay||"keydown"!==t.type&&t.target===document.body||this.checkPath(t))&&t.preventDefault()},hasScrollbar:function(t){if(!t||t.nodeType!==Node.ELEMENT_NODE)return!1;var e=window.getComputedStyle(t);return["auto","scroll"].includes(e["overflow-y"])&&t.scrollHeight>t.clientHeight},shouldScroll:function(t,e){return 0===t.scrollTop&&e<0||t.scrollTop+t.clientHeight===t.scrollHeight&&e>0},isInside:function(t,e){return t===e||null!==t&&t!==document.body&&this.isInside(t.parentNode,e)},checkPath:function(t){var e=t.path||this.composedPath(t),n=t.deltaY||-t.wheelDelta;if("keydown"===t.type&&e[0]===document.body){var i=this.$refs.dialog,s=window.getSelection().anchorNode;return!this.hasScrollbar(i)||!this.isInside(s,i)||this.shouldScroll(i,n)}for(var r=0;r0}}},methods:{genPickerTitle:function(){},genPickerBody:function(){},genPickerActionsSlot:function(){return this.$scopedSlots.default?this.$scopedSlots.default({save:this.save,cancel:this.cancel}):this.$slots.default},genPicker:function(t){return this.$createElement(i.default,{staticClass:t,class:this.fullWidth?["v-picker--full-width"]:[],props:{color:this.headerColor||this.color,dark:this.dark,fullWidth:this.fullWidth,landscape:this.landscape,light:this.light,width:this.width}},[this.noTitle?null:this.genPickerTitle(),this.genPickerBody(),this.$createElement("template",{slot:"actions"},[this.genPickerActionsSlot()])])}}}},"./src/mixins/positionable.ts": +/*!************************************!*\ + !*** ./src/mixins/positionable.ts ***! + \************************************/ +/*! exports provided: factory, default */function(t,e,n){"use strict";n.r(e),n.d(e,"factory",function(){return a});var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../util/helpers */"./src/util/helpers.ts"),o={absolute:Boolean,bottom:Boolean,fixed:Boolean,left:Boolean,right:Boolean,top:Boolean};function a(t){return void 0===t&&(t=[]),s.a.extend({name:"positionable",props:t.length?Object(r.filterObjectOnKeys)(o,t):o})}e.default=a()},"./src/mixins/registrable.ts": +/*!***********************************!*\ + !*** ./src/mixins/registrable.ts ***! + \***********************************/ +/*! exports provided: inject, provide */function(t,e,n){"use strict";n.r(e),n.d(e,"inject",function(){return a}),n.d(e,"provide",function(){return c});var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../util/console */"./src/util/console.ts");function o(t,e){return function(){return Object(r.consoleWarn)("The "+t+" component must be used inside a "+e)}}function a(t,e,n){var i,r=e&&n?{register:o(e,n),unregister:o(e,n)}:null;return s.a.extend({name:"registrable-inject",inject:(i={},i[t]={default:r},i)})}function c(t){return s.a.extend({name:"registrable-provide",methods:{register:null,unregister:null},provide:function(){var e;return(e={})[t]={register:this.register,unregister:this.unregister},e}})}},"./src/mixins/returnable.js": +/*!**********************************!*\ + !*** ./src/mixins/returnable.js ***! + \**********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={name:"returnable",props:{returnValue:null},data:function(){return{originalValue:null}},watch:{isActive:function(t){t?this.originalValue=this.returnValue:this.$emit("update:returnValue",this.originalValue)}},methods:{save:function(t){this.originalValue=t,this.isActive=!1}}}},"./src/mixins/rippleable.ts": +/*!**********************************!*\ + !*** ./src/mixins/rippleable.ts ***! + \**********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../directives/ripple */"./src/directives/ripple.ts"),s=n(/*! vue */"vue"),r=n.n(s);e.default=r.a.extend({name:"rippleable",directives:{Ripple:i.default},props:{ripple:{type:[Boolean,Object],default:!0}},methods:{genRipple:function(t){return void 0===t&&(t={}),this.ripple?(t.staticClass="v-input--selection-controls__ripple",t.directives=t.directives||[],t.directives.push({name:"ripple",value:{center:!0}}),t.on=Object.assign({click:this.onChange},this.$listeners),this.$createElement("div",t)):null},onChange:function(){}}})},"./src/mixins/routable.ts": +/*!********************************!*\ + !*** ./src/mixins/routable.ts ***! + \********************************/ +/*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),s=n.n(i),r=n(/*! ../directives/ripple */"./src/directives/ripple.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o},r=function(){for(var t=[],e=0;e0||this.errorBucket.length>0||this.error},externalError:function(){return this.internalErrorMessages.length>0||this.error},hasSuccess:function(){return this.successMessages.length>0||this.success},hasMessages:function(){return this.validations.length>0},hasState:function(){return this.hasSuccess||this.shouldValidate&&this.hasError},internalErrorMessages:function(){return this.errorMessages||""},shouldValidate:function(){return this.externalError||!this.isResetting&&(this.validateOnBlur?this.hasFocused&&!this.isFocused:this.hasInput||this.hasFocused)},validations:function(){return this.validationTarget.slice(0,this.errorCount)},validationState:function(){return this.hasError&&this.shouldValidate?"error":this.hasSuccess?"success":this.hasColor?this.color:null},validationTarget:function(){var t=this.internalErrorMessages.length>0?this.errorMessages:this.successMessages.length>0?this.successMessages:this.messages;return Array.isArray(t)?t.length>0?t:this.shouldValidate?this.errorBucket:[]:[t]}},watch:{rules:{handler:function(t,e){Object(i.deepEqual)(t,e)||this.validate()},deep:!0},internalValue:function(){this.hasInput=!0,this.validateOnBlur||this.$nextTick(this.validate)},isFocused:function(t){t||(this.hasFocused=!0,this.validateOnBlur&&this.validate())},isResetting:function(){var t=this;setTimeout(function(){t.hasInput=!1,t.hasFocused=!1,t.isResetting=!1},0)},hasError:function(t){this.shouldValidate&&this.$emit("update:error",t)}},beforeMount:function(){this.validate()},created:function(){this.form&&this.form.register(this)},beforeDestroy:function(){this.form&&this.form.unregister(this)},methods:{reset:function(){this.isResetting=!0,this.internalValue=Array.isArray(this.internalValue)?[]:void 0},resetValidation:function(){this.isResetting=!0},validate:function(t,e){void 0===t&&(t=!1),void 0===e&&(e=this.internalValue);var n=[];t&&(this.hasInput=this.hasFocused=!0);for(var i=0;iMath.pow(i,3)?Math.cbrt(t):t/(3*Math.pow(i,2))+4/29},r=function(t){return t>i?Math.pow(t,3):3*Math.pow(i,2)*(t-4/29)};function o(t){var e=s,n=e(t[1]);return[116*n-16,500*(e(t[0]/.95047)-n),200*(n-e(t[2]/1.08883))]}function a(t){var e=r,n=(t[0]+16)/116;return[.95047*e(n+t[1]/500),e(n),1.08883*e(n-t[2]/200)]}},"./src/util/color/transformSRGB.ts": +/*!*****************************************!*\ + !*** ./src/util/color/transformSRGB.ts ***! + \*****************************************/ +/*! exports provided: fromXYZ, toXYZ */function(t,e,n){"use strict";n.r(e),n.d(e,"fromXYZ",function(){return a}),n.d(e,"toXYZ",function(){return c});var i=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],s=function(t){return t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055},r=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],o=function(t){return t<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)};function a(t){for(var e,n=Array(3),r=s,o=i,a=0;a<3;++a)n[a]=Math.round(255*(e=r(o[a][0]*t[0]+o[a][1]*t[1]+o[a][2]*t[2]),Math.max(0,Math.min(1,e))));return(n[0]<<16)+(n[1]<<8)+(n[2]<<0)}function c(t){for(var e=[0,0,0],n=o,i=r,s=n((t>>16&255)/255),a=n((t>>8&255)/255),c=n((t>>0&255)/255),l=0;l<3;++l)e[l]=i[l][0]*s+i[l][1]*a+i[l][2]*c;return e}},"./src/util/colorUtils.ts": +/*!********************************!*\ + !*** ./src/util/colorUtils.ts ***! + \********************************/ +/*! exports provided: colorToInt, intToHex, colorToHex */function(t,e,n){"use strict";n.r(e),n.d(e,"colorToInt",function(){return s}),n.d(e,"intToHex",function(){return r}),n.d(e,"colorToHex",function(){return o});var i=n(/*! ./console */"./src/util/console.ts");function s(t){var e;if("number"==typeof t)e=t;else{if("string"!=typeof t)throw new TypeError("Colors can only be numbers or strings, recieved "+(null==t?t:t.constructor.name)+" instead");var n="#"===t[0]?t.substring(1):t;3===n.length&&(n=n.split("").map(function(t){return t+t}).join("")),6!==n.length&&Object(i.consoleWarn)("'"+t+"' is not a valid rgb color"),e=parseInt(n,16)}return e<0?(Object(i.consoleWarn)("Colors cannot be negative: '"+t+"'"),e=0):(e>16777215||isNaN(e))&&(Object(i.consoleWarn)("'"+t+"' is not a valid rgb color"),e=16777215),e}function r(t){var e=t.toString(16);return e.length<6&&(e="0".repeat(6-e.length)+e),"#"+e}function o(t){return r(s(t))}},"./src/util/console.ts": +/*!*****************************!*\ + !*** ./src/util/console.ts ***! + \*****************************/ +/*! exports provided: consoleInfo, consoleWarn, consoleError, deprecate */function(t,e,n){"use strict";function i(t,e,n){if(n&&(e={_isVue:!0,$parent:n,$options:e}),e){if(e.$_alreadyWarned=e.$_alreadyWarned||[],e.$_alreadyWarned.includes(t))return;e.$_alreadyWarned.push(t)}return"[Vuetify] "+t+(e?function(t){if(t._isVue&&t.$parent){for(var e=[],n=0;t;){if(e.length>0){var i=e[e.length-1];if(i.constructor===t.constructor){n++,t=t.$parent;continue}n>0&&(e[e.length-1]=[i,n],n=0)}e.push(t),t=t.$parent}return"\n\nfound in\n\n"+e.map(function(t,e){return""+(0===e?"---\x3e ":" ".repeat(5+2*e))+(Array.isArray(t)?u(t[0])+"... ("+t[1]+" recursive calls)":u(t))}).join("\n")}return"\n\n(found in "+u(t)+")"}(e):"")}function s(t,e,n){var s=i(t,e,n);null!=s&&console.info(s)}function r(t,e,n){var s=i(t,e,n);null!=s&&console.warn(s)}function o(t,e,n){var s=i(t,e,n);null!=s&&console.error(s)}function a(t,e,n,i){r("'"+t+"' is deprecated, use '"+e+"' instead",n,i)}n.r(e),n.d(e,"consoleInfo",function(){return s}),n.d(e,"consoleWarn",function(){return r}),n.d(e,"consoleError",function(){return o}),n.d(e,"deprecate",function(){return a});var c=/(?:^|[-_])(\w)/g,l=function(t){return t.replace(c,function(t){return t.toUpperCase()}).replace(/[-_]/g,"")};function u(t,e){if(t.$root===t)return"";var n="function"==typeof t&&null!=t.cid?t.options:t._isVue?t.$options||t.constructor.options:t||{},i=n.name||n._componentTag,s=n.__file;if(!i&&s){var r=s.match(/([^/\\]+)\.vue$/);i=r&&r[1]}return(i?"<"+l(i)+">":"")+(s&&!1!==e?" at "+s:"")}},"./src/util/dedupeModelListeners.ts": +/*!******************************************!*\ + !*** ./src/util/dedupeModelListeners.ts ***! + \******************************************/ +/*! exports provided: default */function(t,e,n){"use strict";function i(t){if(t.model&&t.on&&t.on.input)if(Array.isArray(t.on.input)){var e=t.on.input.indexOf(t.model.callback);e>-1&&t.on.input.splice(e,1)}else delete t.on.input}n.r(e),n.d(e,"default",function(){return i})},"./src/util/easing-patterns.js": +/*!*************************************!*\ + !*** ./src/util/easing-patterns.js ***! + \*************************************/ +/*! exports provided: linear, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeInQuart, easeOutQuart, easeInOutQuart, easeInQuint, easeOutQuint, easeInOutQuint */function(t,e,n){"use strict";n.r(e),n.d(e,"linear",function(){return i}),n.d(e,"easeInQuad",function(){return s}),n.d(e,"easeOutQuad",function(){return r}),n.d(e,"easeInOutQuad",function(){return o}),n.d(e,"easeInCubic",function(){return a}),n.d(e,"easeOutCubic",function(){return c}),n.d(e,"easeInOutCubic",function(){return l}),n.d(e,"easeInQuart",function(){return u}),n.d(e,"easeOutQuart",function(){return h}),n.d(e,"easeInOutQuart",function(){return d}),n.d(e,"easeInQuint",function(){return f}),n.d(e,"easeOutQuint",function(){return p}),n.d(e,"easeInOutQuint",function(){return m});var i=function(t){return t},s=function(t){return t*t},r=function(t){return t*(2-t)},o=function(t){return t<.5?2*t*t:(4-2*t)*t-1},a=function(t){return t*t*t},c=function(t){return--t*t*t+1},l=function(t){return t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},u=function(t){return t*t*t*t},h=function(t){return 1- --t*t*t*t},d=function(t){return t<.5?8*t*t*t*t:1-8*--t*t*t*t},f=function(t){return t*t*t*t*t},p=function(t){return 1+--t*t*t*t*t},m=function(t){return t<.5?16*t*t*t*t*t:1+16*--t*t*t*t*t}},"./src/util/helpers.ts": +/*!*****************************!*\ + !*** ./src/util/helpers.ts ***! + \*****************************/ +/*! exports provided: createSimpleFunctional, createSimpleTransition, createJavaScriptTransition, directiveConfig, addOnceEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, filterChildren, convertToUnit, kebabCase, isObject, keyCodes, remapInternalIcon, keys, camelize */function(t,e,n){"use strict";n.r(e),n.d(e,"createSimpleFunctional",function(){return r}),n.d(e,"createSimpleTransition",function(){return a}),n.d(e,"createJavaScriptTransition",function(){return c}),n.d(e,"directiveConfig",function(){return l}),n.d(e,"addOnceEventListener",function(){return u}),n.d(e,"getNestedValue",function(){return h}),n.d(e,"deepEqual",function(){return d}),n.d(e,"getObjectValueByPath",function(){return f}),n.d(e,"getPropertyFromItem",function(){return p}),n.d(e,"createRange",function(){return m}),n.d(e,"getZIndex",function(){return v}),n.d(e,"escapeHTML",function(){return y}),n.d(e,"filterObjectOnKeys",function(){return b}),n.d(e,"filterChildren",function(){return x}),n.d(e,"convertToUnit",function(){return _}),n.d(e,"kebabCase",function(){return V}),n.d(e,"isObject",function(){return w}),n.d(e,"keyCodes",function(){return S}),n.d(e,"remapInternalIcon",function(){return C}),n.d(e,"keys",function(){return T}),n.d(e,"camelize",function(){return $});var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n":">"};function y(t){return t.replace(/[&<>]/g,function(t){return g[t]||t})}function b(t,e){for(var n={},i=0;i?,./\\ ]/,s=function(t){return t&&i.test(t)},r={"#":{test:function(t){return t.match(/[0-9]/)}},A:{test:function(t){return t.match(/[A-Z]/i)},convert:function(t){return t.toUpperCase()}},a:{test:function(t){return t.match(/[a-z]/i)},convert:function(t){return t.toLowerCase()}},N:{test:function(t){return t.match(/[0-9A-Z]/i)},convert:function(t){return t.toUpperCase()}},n:{test:function(t){return t.match(/[0-9a-z]/i)},convert:function(t){return t.toLowerCase()}},X:{test:s}},o=function(t){return r.hasOwnProperty(t)},a=function(t,e){return r[t].convert?r[t].convert(e):e},c=function(t,e){return!(null==e||!o(t))&&r[t].test(e)},l=function(t,e,n){if(null==t)return"";if(t=String(t),!e.length||!t.length)return t;Array.isArray(e)||(e=e.split(""));for(var i=0,s=0,r="";s0)&&!(i=r.next()).done;)o.push(i.value)}catch(t){s={error:t}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return o};function c(t,e){void 0===e&&(e=!1);for(var n=Object.keys(t),s={},r=0;r0;--s)n["lighten"+s]=Object(i.intToHex)(m(e,s));for(s=1;s<=4;++s)n["darken"+s]=Object(i.intToHex)(v(e,s));return n}function m(t,e){var n=r.fromXYZ(s.toXYZ(t));return n[0]=n[0]+10*e,s.fromXYZ(r.toXYZ(n))}function v(t,e){var n=r.fromXYZ(s.toXYZ(t));return n[0]=n[0]-10*e,s.fromXYZ(r.toXYZ(n))}},vue: +/*!******************************************************************************!*\ + !*** external {"commonjs":"vue","commonjs2":"vue","amd":"vue","root":"Vue"} ***! + \******************************************************************************/ +/*! no static exports found */function(e,n){e.exports=t}}).default},t.exports=i(n("/5sW"))},"3Eo+":function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},"4mcu":function(t,e){t.exports=function(){}},"52gC":function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},"5QVw":function(t,e,n){t.exports={default:n("BwfY"),__esModule:!0}},"77Pl":function(t,e,n){var i=n("EqjI");t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},"7KvD":function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},"7UMu":function(t,e,n){var i=n("R9M2");t.exports=Array.isArray||function(t){return"Array"==i(t)}},"8+8L":function(t,e,n){"use strict"; +/*! + * vue-resource v1.5.1 + * https://github.com/pagekit/vue-resource + * Released under the MIT License. + */var i=2;function s(t){this.state=i,this.value=void 0,this.deferred=[];var e=this;try{t(function(t){e.resolve(t)},function(t){e.reject(t)})}catch(t){e.reject(t)}}s.reject=function(t){return new s(function(e,n){n(t)})},s.resolve=function(t){return new s(function(e,n){e(t)})},s.all=function(t){return new s(function(e,n){var i=0,r=[];function o(n){return function(s){r[n]=s,(i+=1)===t.length&&e(r)}}0===t.length&&e(r);for(var a=0;a=200&&s<300,this.status=s||0,this.statusText=r||"",this.headers=new L(i),this.body=t,v(t)?this.bodyText=t:"undefined"!=typeof Blob&&t instanceof Blob&&(this.bodyBlob=t,function(t){return 0===t.type.indexOf("text")||-1!==t.type.indexOf("json")}(t)&&(this.bodyText=function(t){return new o(function(e){var n=new FileReader;n.readAsText(t),n.onload=function(){e(n.result)}})}(t)))};F.prototype.blob=function(){return x(this.bodyBlob)},F.prototype.text=function(){return x(this.bodyText)},F.prototype.json=function(){return x(this.text(),function(t){return JSON.parse(t)})},Object.defineProperty(F.prototype,"data",{get:function(){return this.body},set:function(t){this.body=t}});var N=function(t){var e;this.body=null,this.params={},w(this,t,{method:(e=t.method||"GET",e?e.toUpperCase():"")}),this.headers instanceof L||(this.headers=new L(this.headers))};N.prototype.getUrl=function(){return I(this)},N.prototype.getBody=function(){return this.body},N.prototype.respondWith=function(t,e){return new F(t,w(e||{},{url:this.getUrl()}))};var H={"Content-Type":"application/json;charset=utf-8"};function z(t){var e=this||{},n=function(t){var e=[M],n=[];function i(i){for(;e.length;){var s=e.pop();if(g(s)){var r=void 0,a=void 0;if(y(r=s.call(t,i,function(t){return a=t})||a))return new o(function(e,i){n.forEach(function(e){r=x(r,function(n){return e.call(t,n)||n},i)}),x(r,e,i)},t);g(r)&&n.unshift(r)}else c="Invalid interceptor of type "+typeof s+", must be a function","undefined"!=typeof console&&h&&console.warn("[VueResource warn]: "+c)}var c}return y(t)||(t=null),i.use=function(t){e.push(t)},i}(e.$vm);return function(t){u.call(arguments,1).forEach(function(e){for(var n in e)void 0===t[n]&&(t[n]=e[n])})}(t||{},e.$options,z.options),z.interceptors.forEach(function(t){v(t)&&(t=z.interceptor[t]),g(t)&&n.use(t)}),n(new N(t)).then(function(t){return t.ok?t:o.reject(t)},function(t){var e;return t instanceof Error&&(e=t,"undefined"!=typeof console&&console.error(e)),o.reject(t)})}function W(t,e,n,i){var s=this||{},r={};return V(n=w({},W.actions,n),function(n,o){n=S({url:t,params:w({},e)},i,n),r[o]=function(){return(s.$http||z)(function(t,e){var n,i=w({},t),s={};switch(e.length){case 2:s=e[0],n=e[1];break;case 1:/^(POST|PUT|PATCH)$/i.test(i.method)?n=e[0]:s=e[0];break;case 0:break;default:throw"Expected up to 2 arguments [params, body], got "+e.length+" arguments"}return i.body=n,i.params=w({},i.params,s),i}(n,arguments))}}),r}function U(t){var e,n,i;U.installed||(n=(e=t).config,i=e.nextTick,c=i,h=n.debug||!n.silent,t.url=I,t.http=z,t.resource=W,t.Promise=o,Object.defineProperties(t.prototype,{$url:{get:function(){return _(t.url,this,this.$options.url)}},$http:{get:function(){return _(t.http,this,this.$options.http)}},$resource:{get:function(){return t.resource.bind(this)}},$promise:{get:function(){var e=this;return function(n){return new t.Promise(n,e)}}}}))}z.options={},z.headers={put:H,post:H,patch:H,delete:H,common:{Accept:"application/json, text/plain, */*"},custom:{}},z.interceptor={before:function(t){g(t.before)&&t.before.call(this,t)},method:function(t){t.emulateHTTP&&/^(PUT|PATCH|DELETE)$/i.test(t.method)&&(t.headers.set("X-HTTP-Method-Override",t.method),t.method="POST")},jsonp:function(t){"JSONP"==t.method&&(t.client=D)},json:function(t){var e=t.headers.get("Content-Type")||"";return y(t.body)&&0===e.indexOf("application/json")&&(t.body=JSON.stringify(t.body)),function(t){return t.bodyText?x(t.text(),function(e){var n,i;if(0===(t.headers.get("Content-Type")||"").indexOf("application/json")||(i=(n=e).match(/^\s*(\[|\{)/))&&{"[":/]\s*$/,"{":/}\s*$/}[i[1]].test(n))try{t.body=JSON.parse(e)}catch(e){t.body=null}else t.body=e;return t}):t}},form:function(t){var e;e=t.body,"undefined"!=typeof FormData&&e instanceof FormData?t.headers.delete("Content-Type"):y(t.body)&&t.emulateJSON&&(t.body=I.params(t.body),t.headers.set("Content-Type","application/x-www-form-urlencoded"))},header:function(t){V(w({},z.headers.common,t.crossOrigin?{}:z.headers.custom,z.headers[p(t.method)]),function(e,n){t.headers.has(n)||t.headers.set(n,e)})},cors:function(t){if(d){var e=I.parse(location.href),n=I.parse(t.getUrl());n.protocol===e.protocol&&n.host===e.host||(t.crossOrigin=!0,t.emulateHTTP=!1,P||(t.client=A))}}},z.interceptors=["before","method","jsonp","json","form","header","cors"],["get","delete","head","jsonp"].forEach(function(t){z[t]=function(e,n){return this(w(n||{},{url:e,method:t}))}}),["post","put","patch"].forEach(function(t){z[t]=function(e,n,i){return this(w(i||{},{url:e,method:t,body:n}))}}),W.actions={get:{method:"GET"},save:{method:"POST"},query:{method:"GET"},update:{method:"PUT"},remove:{method:"DELETE"},delete:{method:"DELETE"}},"undefined"!=typeof window&&window.Vue&&window.Vue.use(U),e.a=U},"880/":function(t,e,n){t.exports=n("hJx8")},"94VQ":function(t,e,n){"use strict";var i=n("Yobk"),s=n("X8DO"),r=n("e6n0"),o={};n("hJx8")(o,n("dSzd")("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(o,{next:s(1,n)}),r(t,e+" Iterator")}},BwfY:function(t,e,n){n("fWfb"),n("M6a0"),n("OYls"),n("QWe/"),t.exports=n("FeBl").Symbol},Cdx3:function(t,e,n){var i=n("sB3e"),s=n("lktj");n("uqUo")("keys",function(){return function(t){return s(i(t))}})},D2L2:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},DuR2:function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},EGZi:function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},EqjI:function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},FeBl:function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},Ibhu:function(t,e,n){var i=n("D2L2"),s=n("TcQ7"),r=n("vFc/")(!1),o=n("ax3d")("IE_PROTO");t.exports=function(t,e){var n,a=s(t),c=0,l=[];for(n in a)n!=o&&i(a,n)&&l.push(n);for(;e.length>c;)i(a,n=e[c++])&&(~r(l,n)||l.push(n));return l}},Kh4W:function(t,e,n){e.f=n("dSzd")},LKZe:function(t,e,n){var i=n("NpIQ"),s=n("X8DO"),r=n("TcQ7"),o=n("MmMw"),a=n("D2L2"),c=n("SfB7"),l=Object.getOwnPropertyDescriptor;e.f=n("+E39")?l:function(t,e){if(t=r(t),e=o(e,!0),c)try{return l(t,e)}catch(t){}if(a(t,e))return s(!i.f.call(t,e),t[e])}},M6a0:function(t,e){},MU5D:function(t,e,n){var i=n("R9M2");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},MmMw:function(t,e,n){var i=n("EqjI");t.exports=function(t,e){if(!i(t))return t;var n,s;if(e&&"function"==typeof(n=t.toString)&&!i(s=n.call(t)))return s;if("function"==typeof(n=t.valueOf)&&!i(s=n.call(t)))return s;if(!e&&"function"==typeof(n=t.toString)&&!i(s=n.call(t)))return s;throw TypeError("Can't convert object to primitive value")}},NpIQ:function(t,e){e.f={}.propertyIsEnumerable},O4g8:function(t,e){t.exports=!0},ON07:function(t,e,n){var i=n("EqjI"),s=n("7KvD").document,r=i(s)&&i(s.createElement);t.exports=function(t){return r?s.createElement(t):{}}},OYls:function(t,e,n){n("crlp")("asyncIterator")},PzxK:function(t,e,n){var i=n("D2L2"),s=n("sB3e"),r=n("ax3d")("IE_PROTO"),o=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=s(t),i(t,r)?t[r]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?o:null}},QRG4:function(t,e,n){var i=n("UuGF"),s=Math.min;t.exports=function(t){return t>0?s(i(t),9007199254740991):0}},"QWe/":function(t,e,n){n("crlp")("observable")},R9M2:function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},RPLV:function(t,e,n){var i=n("7KvD").document;t.exports=i&&i.documentElement},Rrel:function(t,e,n){var i=n("TcQ7"),s=n("n0T6").f,r={}.toString,o="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return o&&"[object Window]"==r.call(t)?function(t){try{return s(t)}catch(t){return o.slice()}}(t):s(i(t))}},S82l:function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},SfB7:function(t,e,n){t.exports=!n("+E39")&&!n("S82l")(function(){return 7!=Object.defineProperty(n("ON07")("div"),"a",{get:function(){return 7}}).a})},TcQ7:function(t,e,n){var i=n("MU5D"),s=n("52gC");t.exports=function(t){return i(s(t))}},UuGF:function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},"VU/8":function(t,e){t.exports=function(t,e,n,i,s,r){var o,a=t=t||{},c=typeof t.default;"object"!==c&&"function"!==c||(o=t,a=t.default);var l,u="function"==typeof a?a.options:a;if(e&&(u.render=e.render,u.staticRenderFns=e.staticRenderFns,u._compiled=!0),n&&(u.functional=!0),s&&(u._scopeId=s),r?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(r)},u._ssrRegister=l):i&&(l=i),l){var h=u.functional,d=h?u.render:u.beforeCreate;h?(u._injectStyles=l,u.render=function(t,e){return l.call(e),d(t,e)}):u.beforeCreate=d?[].concat(d,l):[l]}return{esModule:o,exports:a,options:u}}},X8DO:function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},Xc4G:function(t,e,n){var i=n("lktj"),s=n("1kS7"),r=n("NpIQ");t.exports=function(t){var e=i(t),n=s.f;if(n)for(var o,a=n(t),c=r.f,l=0;a.length>l;)c.call(t,o=a[l++])&&e.push(o);return e}},Yobk:function(t,e,n){var i=n("77Pl"),s=n("qio6"),r=n("xnc9"),o=n("ax3d")("IE_PROTO"),a=function(){},c=function(){var t,e=n("ON07")("iframe"),i=r.length;for(e.style.display="none",n("RPLV").appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/App.vue","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/form.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-card',[_c('v-card-text',[_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-text-field',{attrs:{\"label\":\"Url\",\"rules\":[_vm.rules.url],\"outline\":\"\"},on:{\"keypress\":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,\"enter\",13,$event.key,\"Enter\")){ return null; }return _vm.getUrl($event)}},model:{value:(_vm.url),callback:function ($$v) {_vm.url=$$v},expression:\"url\"}})],1),_vm._v(\" \"),_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-textarea',{attrs:{\"hint\":\"Paste your data or load CSV file\",\"persistent-hint\":\"\",\"outline\":\"\",\"label\":\"DatatSet\",\"rules\":[_vm.rules.json]},on:{\"keypress\":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,\"enter\",13,$event.key,\"Enter\")){ return null; }return _vm.getUrl($event)}},model:{value:(_vm.dataToProcess),callback:function ($$v) {_vm.dataToProcess=$$v},expression:\"dataToProcess\"}})],1),_vm._v(\" \"),_c('v-layout',[_c('v-flex',{attrs:{\"xs4\":\"\"}},[_c('v-text-field',{attrs:{\"outline\":\"\",\"single-line\":\"\",\"persistent-hint\":\"\"},model:{value:(_vm.future),callback:function ($$v) {_vm.future=$$v},expression:\"future\"}})],1),_vm._v(\" \"),_c('v-flex',{staticClass:\"mt-3\",attrs:{\"xs10\":\"\"}},[_vm._v(\"Steps in the future that you want to predict\")])],1)],1),_vm._v(\" \"),_c('v-card-actions',[_c('v-btn',{attrs:{\"outline\":\"\",\"color\":\"indigo\"},on:{\"click\":function($event){_vm.$refs.csvFile.click()}}},[_vm._v(\"csv\")]),_vm._v(\" \"),_c('input',{ref:\"csvFile\",attrs:{\"type\":\"file\",\"hidden\":\"\",\"accept\":\".csv, text/plain\"},on:{\"change\":_vm.loadCSVFile}}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"color\":\"success\"},on:{\"click\":_vm.getUrl}},[_vm._v(\"Submit \"),_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"send\")])],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"300\"},model:{value:(_vm.loading),callback:function ($$v) {_vm.loading=$$v},expression:\"loading\"}},[_c('v-card',{attrs:{\"max-width\":\"300\"}},[_c('v-card-text',[_vm._v(\"\\n Processing... this may take a while\\n \"),_c('v-progress-linear',{staticClass:\"mb-0\",attrs:{\"indeterminate\":\"\"}})],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"500\"},model:{value:(_vm.errorDialog.value),callback:function ($$v) {_vm.$set(_vm.errorDialog, \"value\", $$v)},expression:\"errorDialog.value\"}},[_c('v-card',{attrs:{\"color\":\"red\",\"dark\":\"\",\"max-width\":\"500\"}},[_c('v-card-text',[_c('pre',[_vm._v(_vm._s(_vm.errorDialog.text))])]),_vm._v(\" \"),_c('v-card-actions',[_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":function($event){_vm.errorDialog.value = false}}},[_vm._v(\"ok\")])],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"persistent\":\"\",\"width\":\"500\"},model:{value:(_vm.selectHeaderDialog.value),callback:function ($$v) {_vm.$set(_vm.selectHeaderDialog, \"value\", $$v)},expression:\"selectHeaderDialog.value\"}},[_c('v-card',{attrs:{\"dark\":\"\",\"max-width\":\"500\"}},[_c('v-card-title',[_c('div',[_c('h3',{staticClass:\"headline\"},[_vm._v(\"What column do you want to process?\")]),_vm._v(\" \"),(_vm.amountSelectedData > 0)?_c('small',[_vm._v(\"data type: \"+_vm._s(_vm.amountSelectedData > 1 ? 'Multivariate' : 'Univariate'))]):_vm._e()])]),_vm._v(\" \"),_c('v-card-text',[_c('v-list',_vm._l((_vm.selectHeaderDialog.data),function(data,i){return _c('v-list-tile',{key:i,on:{\"click\":function($event){!data || _vm.addToProcessList(data, i)}}},[(i === _vm.mainKey)?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"yellow\"}},[_vm._v(\"star\")])],1):_vm._e(),_vm._v(\" \"),_c('v-list-tile-content',[_c('v-list-tile-title',[_vm._v(_vm._s(i))]),_vm._v(\" \"),_c('v-list-tile-sub-title',{staticClass:\"blue--text text--lighten-2\"},[_vm._v(_vm._s(data || 'it is not a valid data, a number is needed'))])],1),_vm._v(\" \"),(_vm.selectHeaderDialog.selectedHeaders[i])?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"green\"}},[_vm._v(\"check_circle\")])],1):_vm._e()],1)}))],1),_vm._v(\" \"),_c('v-card-actions',[_c('small',[_c('v-icon',{attrs:{\"small\":\"\",\"color\":\"yellow\"}},[_vm._v(\"star\")]),_vm._v(\" data to forecast\")],1),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":function($event){_vm.selectHeaderDialog.value = false}}},[_vm._v(\"cancel\")]),_vm._v(\" \"),_c('v-btn',{attrs:{\"disabled\":_vm.amountSelectedData === 0,\"flat\":\"\"},on:{\"click\":_vm.dataFileToDataSet}},[_vm._v(\"process\")])],1)],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-749ab030\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/form.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-749ab030\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./form.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/form.vue\n// module id = null\n// module chunks = ","\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/jsonViewer.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},_vm._l((_vm.items),function(item,i){return _c('div',{key:i,style:({'margin-left': item.level * 10 + 'px', cursor: item.type === 'object' && item.data.length !== 0 ? 'pointer' : 'auto'}),on:{\"click\":function($event){item.type !== 'object' || _vm.toggle(item.data, i + 1, item.level + 1, item.open), item.open = !item.open}}},[_c('span',{class:{'font-weight-bold': item.type === 'object' && item.data.length !== 0}},[_vm._v(_vm._s(item.name)+\":\")]),_vm._v(\" \"),_c('span',{class:_vm.getColor(item.type)},[_vm._v(_vm._s(item.type === 'object' && item.data.length !== 0 ? '{...}' : item.data))])])}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-d44f50fe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-d44f50fe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./jsonViewer.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/graph.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{directives:[{name:\"resize\",rawName:\"v-resize\",value:(_vm.calculateSize),expression:\"calculateSize\"}],attrs:{\"xs12\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\"}},[_c('v-toolbar-items',_vm._l((_vm.toGraph),function(g,i){return _c('v-btn',{key:'btn' + i,class:{'graph-inactive-btn': !g.visible},attrs:{\"color\":g.color,\"disabled\":_vm.extendedArea.active,\"flat\":\"\"},on:{\"click\":function($event){g.visible = !g.visible}}},[_vm._v(\"\\n \"+_vm._s(g.name)+\"\\n \"),(g.name === _vm.dataSet.prediction.engine)?_c('span',{staticClass:\"winner\"},[_vm._v(\"♕\")]):_vm._e()])})),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.extendedArea.active,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":_vm.randomizeColors},slot:\"activator\"},[_c('v-icon',[_vm._v(\"brush\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"Randomize Colors\")])],1),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.total.length === 0,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":function($event){_vm.extendedArea.active = !_vm.extendedArea.active}},slot:\"activator\"},[_c('v-icon',[_vm._v(\"crop_free\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"extend area\")])],1)],1),_vm._v(\" \"),_c('svg',{ref:\"graph-container\",class:_vm.background,attrs:{\"width\":\"100%\",\"height\":_vm.height},on:{\"wheel\":function($event){$event.preventDefault();return _vm.zoom($event)},\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.panEnabled = true},\"mouseup\":function($event){_vm.panEnabled = false},\"mousemove\":_vm.pan}},[(_vm.total.length > 0)?_c('g',{attrs:{\"transform\":(\"translate(\" + _vm.marginLeft + \", \" + _vm.marginTop + \")\")}},[_c('defs',[_c('clipPath',{attrs:{\"id\":\"clip-rect\"}},[_c('rect',{attrs:{\"width\":_vm.chartWidth,\"height\":_vm.height,\"y\":-this.marginTop}})])]),_vm._v(\" \"),_c('g',{attrs:{\"clip-path\":\"url(#clip-rect)\"}},[_vm._l((_vm.toGraph),function(g,i){return (g.visible)?_c('g',{key:i},[_c('c-path',{attrs:{\"dasharray\":g.debug ? '5,5' : '',\"transform\":(\"translate(\" + (- _vm.offsetX) + \", 0)\"),\"color\":g.color,\"rangeX\":[_vm.zoomMin, _vm.zoomMax],\"rangeY\":[_vm.globalMin, _vm.globalMax],\"dataset\":g.data,\"y\":\"y\",\"x\":\"x\",\"height\":_vm.chartHeight,\"width\":_vm.chartWidth}})],1):_vm._e()}),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('line',{attrs:{\"x1\":_vm.markPos.pos,\"x2\":_vm.markPos.pos,\"y2\":_vm.chartHeight,\"stroke-width\":\"2\",\"stroke\":\"#0eff0e78\",\"fill\":\"none\"}}):_vm._e(),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('text',{attrs:{\"fill\":\"#0eff0e78\",\"text-anchor\":\"middle\",\"dy\":\"-5px\",\"transform\":(\"translate(\" + (_vm.markPos.pos) + \" 0)\")}},[_vm._v(\"\\n \"+_vm._s(_vm.markPos.val)+\"\\n \")]):_vm._e(),_vm._v(\" \"),_vm._l((_vm.anomalies),function(line,i){return _c('circle',{key:i,attrs:{\"cx\":line - _vm.offsetX,\"cy\":_vm.chartHeight,\"r\":\"7\",\"stroke\":\"white\",\"stroke-width\":\"1\",\"fill\":\"red\"}})}),_vm._v(\" \"),_c('c-axis-x',{attrs:{\"transform\":(\"translate(\" + (-_vm.offsetX) + \" \" + _vm.chartHeight + \")\"),\"range\":[_vm.zoomMin, _vm.zoomMax],\"dataset\":_vm.total,\"x\":\"x\",\"ticks\":25,\"fixed\":1,\"height\":_vm.chartHeight,\"width\":_vm.chartWidth,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],2),_vm._v(\" \"),_c('c-axis-y',{attrs:{\"transform\":(\"translate(\" + (_vm.chartWidth - _vm.marginLeft - _vm.marginRight) + \" 0)\"),\"range\":[_vm.globalMin, _vm.globalMax],\"ticks\":5,\"fixed\":3,\"height\":_vm.chartHeight,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],1):_vm._e(),_vm._v(\" \"),(_vm.extendedArea.active)?_c('g',{attrs:{\"transform\":(\"translate(\" + (_vm.extendedArea.el.x) + \", \" + (_vm.extendedArea.el.y) + \")\")}},[_c('rect',{attrs:{\"fill\":\"#ffffff17\",\"width\":_vm.extendedArea.el.w,\"height\":_vm.extendedArea.el.h},on:{\"mousemove\":_vm.moveExtendedArea,\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.extendedArea.el.draggable = true},\"mouseup\":function($event){_vm.extendedArea.el.draggable = false},\"mouseout\":function($event){_vm.extendedArea.el.draggable = false}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w,\"cy\":_vm.extendedArea.el.h / 2,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.w += $event.movementX}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w / 2,\"cy\":_vm.extendedArea.el.h,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.h += $event.movementY}}})]):_vm._e()]),_vm._v(\" \"),_c('svg',{class:_vm.background,attrs:{\"viewBox\":((_vm.extendedArea.el.x) + \" \" + (_vm.extendedArea.el.y) + \" \" + (_vm.extendedArea.el.w) + \" \" + (_vm.extendedArea.el.h)),\"width\":\"100%\",\"height\":\"300\",\"preserveAspectRatio\":\"xMidYMid slice\"},domProps:{\"innerHTML\":_vm._s(_vm.extendedArea.value)}})],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-dee54210\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/graph.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-dee54210\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./graph.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-dee54210\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./graph.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/graph.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/view/homeView.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-container',{attrs:{\"fluid\":\"\",\"grid-list-md\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\",\"app\":\"\"}},[_c('span',{staticClass:\"mt-3\"},[_c('v-switch',{on:{\"change\":function($event){_vm.$emit('toggleTheme', _vm.dark)}},model:{value:(_vm.dark),callback:function ($$v) {_vm.dark=$$v},expression:\"dark\"}})],1),_vm._v(\" \"),(!_vm.dark)?_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}):_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo_dark.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\",\"color\":\"blue\"},on:{\"click\":function($event){_vm.toggleDataVisibility = !_vm.toggleDataVisibility}}},[_vm._v(\"\\n data\\n \"),(_vm.toggleDataVisibility)?_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility\")]):_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility_off\")])],1)],1),_vm._v(\" \"),_c('v-layout',{attrs:{\"wrap\":\"\"}},[_c('v-flex',{class:_vm.toggleDataVisibility ? 'xs8' : 'xs12'},[_c('t-graph-2d',{attrs:{\"dataSet\":_vm.response,\"toggleSize\":_vm.toggleDataVisibility,\"height\":350,\"margin-left\":5,\"background\":_vm.dark ? 'grey darken-3': 'grey lighten-3'}})],1),_vm._v(\" \"),_c('v-flex',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.toggleDataVisibility),expression:\"toggleDataVisibility\"}],attrs:{\"xs4\":\"\"}},[_c('t-form',{staticClass:\"mb-4\",on:{\"response\":_vm.showResponse}}),_vm._v(\" \"),_c('t-json',{attrs:{\"json\":_vm.response.prediction}})],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-04efdfce\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/view/homeView.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./homeView.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./homeView.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/view/homeView.vue\n// module id = null\n// module chunks = ","import Vue from 'vue'\nimport Router from 'vue-router'\nimport home from '@/view/homeView'\n\nVue.use(Router)\n\nexport default new Router({\n routes: [\n {\n path: '/',\n name: 'home',\n component: home\n }\n ]\n})\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/index.js","import Vue from 'vue'\nimport App from './App'\nimport router from './router'\nimport Vuetify from 'vuetify'\nimport VueResource from 'vue-resource'\n// import chartConstructor from './constructor/2d_graph'\nimport chart2dConstructor from 'vue-chart2d-constructor'\nimport 'vuetify/dist/vuetify.min.css'\n\nVue.use(Vuetify)\n\nVue.config.productionTip = false\nVue.use(VueResource)\nVue.http.headers.common['content-type'] = 'application/json'\nVue.use(chart2dConstructor)\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n render: h => h(App)\n})\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.js","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-y.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"end\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\"}},[_c('line',{attrs:{\"y1\":_vm.height}}),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(0, \" + (i * (_vm.height/(_vm.ticksList.length - 1))) + \")\")}},[_c('line',{attrs:{\"x2\":\"-6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"x\":\"-9\",\"dy\":\"0.32em\"}},[_vm._v(_vm._s(tick))])])}),_vm._v(\" \"),_c('text',{attrs:{\"transform\":\"rotate(-90)\",\"y\":\"6\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-35c15ce6\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-35c15ce6\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-y.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cPath.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('path',{attrs:{\"fill\":\"none\",\"stroke\":_vm.color,\"stroke-linejoin\":\"round\",\"stroke-linecap\":\"round\",\"stroke-width\":_vm.strokeWidth,\"stroke-dasharray\":_vm.dasharray,\"d\":_vm.points}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-58b941c4\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-58b941c4\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cPath.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-x.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"middle\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\",\"transform\":(\"translate(0, \" + _vm.height + \")\")}},[(_vm.ticksList && _vm.ticksList.length > 0)?_c('line',{attrs:{\"x1\":_vm.ticksList[0].position,\"x2\":_vm.ticksList[_vm.ticksList.length - 1].position}}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(\" + (tick.position) + \", 0)\")}},[_c('line',{attrs:{\"y2\":\"6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"y\":\"9\",\"dy\":\"0.71em\"}},[_vm._v(_vm._s(tick.value))])])}),_vm._v(\" \"),_c('text',{attrs:{\"x\":_vm.ticksList[0].position,\"y\":\"-25\",\"dx\":\"-0.71em\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-69a54ebe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-69a54ebe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-x.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cBars.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',_vm._l((_vm.list),function(item,i){return _c('rect',{key:i,attrs:{\"x\":i * (_vm.width / _vm.list.length),\"y\":item.v,\"width\":30,\"height\":_vm.height - item.v,\"fill\":\"green\"}})}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-65db09f9\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-65db09f9\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cBars.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cCircle.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('circle',{attrs:{\"cx\":_vm.x,\"cy\":_vm.y,\"r\":_vm.r,\"stroke\":_vm.strokeColor,\"stroke-width\":_vm.strokeWidth,\"fill\":_vm.color}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-10fc018e\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-10fc018e\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cCircle.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = "],"sourceRoot":""} \ No newline at end of file diff --git a/web_test/web_test_dev/package-lock.json b/web_test/web_test_dev/package-lock.json index 45035c2..52c7717 100644 --- a/web_test/web_test_dev/package-lock.json +++ b/web_test/web_test_dev/package-lock.json @@ -4069,7 +4069,8 @@ "ansi-regex": { "version": "2.1.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "aproba": { "version": "1.2.0", @@ -4484,7 +4485,8 @@ "safe-buffer": { "version": "5.1.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "safer-buffer": { "version": "2.1.2", @@ -4540,6 +4542,7 @@ "version": "3.0.1", "bundled": true, "dev": true, + "optional": true, "requires": { "ansi-regex": "2.1.1" } @@ -4583,12 +4586,14 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "yallist": { "version": "3.0.2", "bundled": true, - "dev": true + "dev": true, + "optional": true } } }, diff --git a/web_test/web_test_dev/src/components/form.vue b/web_test/web_test_dev/src/components/form.vue index 64bfa7c..a4a3689 100644 --- a/web_test/web_test_dev/src/components/form.vue +++ b/web_test/web_test_dev/src/components/form.vue @@ -98,7 +98,7 @@ \ No newline at end of file diff --git a/web_test/web_test_dev/src/components/form.vue b/web_test/web_test_dev/src/components/form.vue index a4a3689..a5ab1b7 100644 --- a/web_test/web_test_dev/src/components/form.vue +++ b/web_test/web_test_dev/src/components/form.vue @@ -3,28 +3,50 @@ - + + outline label="DatatSet" v-model="dataToProcess" :rules="[rules.json]"> - - - - - Steps in the future that you want to predict - - csv - + Submit send + + + + Parameters + + + + + {{item.title}} + {{item.subtitle}} + + + + + + + + + + cancel + submit + + + + + - - - -
-

What column do you want to process?

- data type: {{amountSelectedData > 1 ? 'Multivariate' : 'Univariate'}} -
-
- - - - - star - - - {{i}} - {{data || 'it is not a valid data, a number is needed'}} - - - check_circle - - - - - - star data to forecast - - cancel - process - -
-
\ No newline at end of file +timecop
\ No newline at end of file diff --git a/web_test/production/static/js/app.1ad26df5b1044be50976.js b/web_test/production/static/js/app.1ad26df5b1044be50976.js new file mode 100644 index 0000000..d513ccf --- /dev/null +++ b/web_test/production/static/js/app.1ad26df5b1044be50976.js @@ -0,0 +1,2 @@ +webpackJsonp([1],{0:function(t,e){},"7zck":function(t,e){},"F/Vp":function(t,e){},NHnr:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=a("/5sW"),r={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-app",{attrs:{dark:t.dark}},[a("v-content",[a("router-view",{on:{toggleTheme:function(e){t.dark=e}}})],1)],1)},staticRenderFns:[]};var s=a("VU/8")({name:"App",data:function(){return{dark:!1}}},r,!1,function(t){a("F/Vp")},null,null).exports,n=a("/ocq"),o=a("fZjL"),l=a.n(o),d=a("mvHQ"),c=a.n(d),h={name:"csvLoader",data:function(){return{selectHeaderDialog:{selectedHeaders:{},value:!1,data:{}},mainKey:null}},methods:{loadCSVFile:function(t){var e=this,a=t.target.files[0],i=new FileReader,r={};i.onload=function(t){for(var a=t.target.result.split("\n"),i=a[0].split(","),s=0;s1&&this.$emit("serie",!0)}},computed:{amountSelectedData:function(){return l()(this.selectHeaderDialog.selectedHeaders).length}}},u={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("v-btn",{attrs:{outline:"",color:"blue"},on:{click:function(e){t.$refs.csvFile.click()}}},[t._v("load csv")]),t._v(" "),a("input",{ref:"csvFile",attrs:{type:"file",hidden:"",accept:".csv, text/plain"},on:{change:t.loadCSVFile}}),t._v(" "),a("v-dialog",{attrs:{persistent:"","max-width":"500"},model:{value:t.selectHeaderDialog.value,callback:function(e){t.$set(t.selectHeaderDialog,"value",e)},expression:"selectHeaderDialog.value"}},[a("v-card",{attrs:{dark:""}},[a("v-card-title",[a("div",[a("h3",{staticClass:"headline"},[t._v("What column do you want to process?")]),t._v(" "),t.amountSelectedData>0?a("small",[t._v("data type: "+t._s(t.amountSelectedData>1?"Multivariate":"Univariate"))]):t._e()])]),t._v(" "),a("v-card-text",[a("v-list",t._l(t.selectHeaderDialog.data,function(e,i){return a("v-list-tile",{key:i,on:{click:function(a){!e||t.addToProcessList(e,i)}}},[i===t.mainKey?a("v-list-tile-action",[a("v-icon",{attrs:{color:"yellow"}},[t._v("star")])],1):t._e(),t._v(" "),a("v-list-tile-content",[a("v-list-tile-title",[t._v(t._s(i))]),t._v(" "),a("v-list-tile-sub-title",{staticClass:"blue--text text--lighten-2"},[t._v(t._s(e||"it is not a valid data, a number is needed"))])],1),t._v(" "),t.selectHeaderDialog.selectedHeaders[i]?a("v-list-tile-action",[a("v-icon",{attrs:{color:"green"}},[t._v("check_circle")])],1):t._e()],1)}))],1),t._v(" "),a("v-card-actions",[a("small",[a("v-icon",{attrs:{small:"",color:"yellow"}},[t._v("star")]),t._v(" data to forecast")],1),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:""},on:{click:t.reset}},[t._v("cancel")]),t._v(" "),a("v-btn",{attrs:{disabled:0===t.amountSelectedData,flat:""},on:{click:t.dataFileToDataSet}},[t._v("process")])],1)],1)],1)],1)},staticRenderFns:[]},v={name:"Tform",components:{csvLoader:a("VU/8")(h,u,!1,null,null,null).exports},data:function(){return{url:"http://localhost:5000/univariate/get",dataToProcess:"",loading:!1,future:5,rules:{json:function(t){try{JSON.parse(t)}catch(t){return"Data is not a valid json"}return!0},url:function(t){return!!/(http|https):\/\/(\w+:{0,1}\w*)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%!\\/]))?/.test(t)||"Url is not a valid"}},errorDialog:{value:!1,text:""},parametersDialog:{active:!1,data:[]},parametersList:[{title:"Name",subtitle:"Stores the list of points sent with that name and concatenates them to the existing ones before starting the prediction",value:"",type:"s",key:"name"},{title:"Future",subtitle:"Steps in the future that you want to predict",value:5,type:"n",key:"num_future"},{title:"Deviation metric",subtitle:"Anomaly sensitivity number",value:2,type:"n",key:"desv_metric"}],selectHeaderDialog:{selectedHeaders:{},value:!1,data:{}},multivariateData:{timeseries:[],main:[]},mainKey:null}},methods:{formatData:function(){var t=this.parametersDialog.data,e={};t.length>0&&(1===t.length?e.data=t[0].data:(e.main=t[0].data,e.timeseries=[],t.map(function(t,a){a>1&&e.timeseries.push(t)})),this.parametersList.map(function(t){t.value&&(e[t.key]=t.value)}),this.dataToProcess=c()(e),this.resetParametersDialog(),this.getUrl())},processCSV:function(t){this.parametersDialog.active=!0,this.parametersDialog.data=t},getUrl:function(){var t=this;this.loading=!0,this.$http.post(this.url,this.dataSet).then(function(e){t.$emit("response",{dataToProcess:t.dataSet,result:e.body}),t.loading=!1}).catch(function(e){t.loading=!1,t.errorDialog.value=!0,t.errorDialog.text=e,console.log(e)})},changeUrl:function(t){this.url=t?this.url.replace(/univariate/gi,"multivariate"):this.url.replace(/multivariate/gi,"univariate")},resetParametersDialog:function(){this.parametersDialog.active=!1,this.parametersDialog.data=[]}},computed:{dataSet:function(){return JSON.parse(this.dataToProcess)},amountSelectedData:function(){return l()(this.selectHeaderDialog.selectedHeaders).length}}},g={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-flex",{attrs:{xs12:""}},[a("v-card",[a("v-card-text",[a("v-flex",{attrs:{xs12:""}},[a("v-text-field",{attrs:{label:"Url",rules:[t.rules.url],outline:""},model:{value:t.url,callback:function(e){t.url=e},expression:"url"}})],1),t._v(" "),a("v-flex",{attrs:{xs12:""}},[a("v-textarea",{attrs:{hint:"Paste your data or load CSV file","persistent-hint":"",outline:"",label:"DatatSet",rules:[t.rules.json]},model:{value:t.dataToProcess,callback:function(e){t.dataToProcess=e},expression:"dataToProcess"}})],1)],1),t._v(" "),a("v-card-actions",[a("v-spacer"),t._v(" "),a("csv-loader",{on:{loaded:t.processCSV,serie:t.changeUrl}})],1)],1),t._v(" "),a("v-dialog",{attrs:{persistent:"",width:"550"},model:{value:t.parametersDialog.active,callback:function(e){t.$set(t.parametersDialog,"active",e)},expression:"parametersDialog.active"}},[a("v-card",[a("v-card-title",{staticClass:"headline"},[t._v("Parameters")]),t._v(" "),a("v-card-text",[a("v-list",{attrs:{"three-line":""}},t._l(t.parametersList,function(e){return a("v-list-tile",{key:e.key},[a("v-list-tile-content",[a("v-list-tile-title",[t._v(t._s(e.title))]),t._v(" "),a("v-list-tile-sub-title",[t._v(t._s(e.subtitle))])],1),t._v(" "),a("v-list-tile-action",[a("v-text-field",{style:{width:"n"===e.type?"48px":"260px"},attrs:{"single-line":"","persistent-hint":"","full-width":"",outline:""},model:{value:e.value,callback:function(a){t.$set(e,"value",a)},expression:"item.value"}})],1)],1)}))],1),t._v(" "),a("v-card-actions",[a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:""},on:{click:t.resetParametersDialog}},[t._v("cancel")]),t._v(" "),a("v-btn",{attrs:{flat:"",color:"green"},on:{click:t.formatData}},[t._v("submit")])],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{"hide-overlay":"",persistent:"",width:"300"},model:{value:t.loading,callback:function(e){t.loading=e},expression:"loading"}},[a("v-card",{attrs:{"max-width":"300"}},[a("v-card-text",[t._v("\n Processing... this may take a while\n "),a("v-progress-linear",{staticClass:"mb-0",attrs:{indeterminate:""}})],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{"hide-overlay":"",persistent:"",width:"500"},model:{value:t.errorDialog.value,callback:function(e){t.$set(t.errorDialog,"value",e)},expression:"errorDialog.value"}},[a("v-card",{attrs:{color:"red",dark:"","max-width":"500"}},[a("v-card-text",[a("pre",[t._v(t._s(t.errorDialog.text))])]),t._v(" "),a("v-card-actions",[a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:""},on:{click:function(e){t.errorDialog.value=!1}}},[t._v("ok")])],1)],1)],1)],1)},staticRenderFns:[]},m=a("VU/8")(v,g,!1,null,null,null).exports,p=a("pFYg"),f=a.n(p),x={name:"jsonViewer",props:["json"],data:function(){return{items:[],hightLevel:0}},methods:{addItems:function(t,e,a){for(var i in t)this.items.splice(e,0,{name:i,type:f()(t[i]),data:t[i],level:a,open:!0});this.hightLevel=a},toggle:function(t,e,a,i){i?this.addItems(t,e,a):this.deleteItems(t,e,a)},deleteItems:function(t,e,a){this.hightLeve--;for(var i=this.items.filter(function(t){return t.level>=a}).length,r=l()(t).length,s=a!==this.hightLevel?i:r,n=0;n0)for(var e=t.offsetX-this.marginLeft,a=0;aa?t:a}return t},globalMin:function(){var t=1e11;for(var e in this.toGraph)if(this.toGraph[e].visible){var a=this.$utils.getMin(this.toGraph[e].data,"y");t=t0?a("g",{attrs:{transform:"translate("+t.marginLeft+", "+t.marginTop+")"}},[a("defs",[a("clipPath",{attrs:{id:"clip-rect"}},[a("rect",{attrs:{width:t.chartWidth,height:t.height,y:-this.marginTop}})])]),t._v(" "),a("g",{attrs:{"clip-path":"url(#clip-rect)"}},[t._l(t.toGraph,function(e,i){return e.visible?a("g",{key:i},[a("c-path",{attrs:{dasharray:e.debug?"5,5":"",transform:"translate("+-t.offsetX+", 0)",color:e.color,rangeX:[t.zoomMin,t.zoomMax],rangeY:[t.globalMin,t.globalMax],dataset:e.data,y:"y",x:"x",height:t.chartHeight,width:t.chartWidth}})],1):t._e()}),t._v(" "),t.markPos.pos>0?a("line",{attrs:{x1:t.markPos.pos,x2:t.markPos.pos,y2:t.chartHeight,"stroke-width":"2",stroke:"#0eff0e78",fill:"none"}}):t._e(),t._v(" "),t.markPos.pos>0?a("text",{attrs:{fill:"#0eff0e78","text-anchor":"middle",dy:"-5px",transform:"translate("+t.markPos.pos+" 0)"}},[t._v("\n "+t._s(t.markPos.val)+"\n ")]):t._e(),t._v(" "),t._l(t.anomalies,function(e,i){return a("circle",{key:i,attrs:{cx:e-t.offsetX,cy:t.chartHeight,r:"7",stroke:"white","stroke-width":"1",fill:"red"}})}),t._v(" "),a("c-axis-x",{attrs:{transform:"translate("+-t.offsetX+" "+t.chartHeight+")",range:[t.zoomMin,t.zoomMax],dataset:t.total,x:"x",ticks:25,fixed:1,height:t.chartHeight,width:t.chartWidth,strokeColor:this.$vuetify.dark?"white":"#6d6d6d"}})],2),t._v(" "),a("c-axis-y",{attrs:{transform:"translate("+(t.chartWidth-t.marginLeft-t.marginRight)+" 0)",range:[t.globalMin,t.globalMax],ticks:5,fixed:3,height:t.chartHeight,strokeColor:this.$vuetify.dark?"white":"#6d6d6d"}})],1):t._e(),t._v(" "),t.extendedArea.active?a("g",{attrs:{transform:"translate("+t.extendedArea.el.x+", "+t.extendedArea.el.y+")"}},[a("rect",{attrs:{fill:"#ffffff17",width:t.extendedArea.el.w,height:t.extendedArea.el.h},on:{mousemove:t.moveExtendedArea,mousedown:function(e){if(e.ctrlKey||e.shiftKey||e.altKey||e.metaKey)return null;t.extendedArea.el.draggable=!0},mouseup:function(e){t.extendedArea.el.draggable=!1},mouseout:function(e){t.extendedArea.el.draggable=!1}}}),t._v(" "),a("circle",{attrs:{cx:t.extendedArea.el.w,cy:t.extendedArea.el.h/2,r:"15",stroke:"black",fill:"grey"},on:{mousemove:function(e){t.extendedArea.el.w+=e.movementX}}}),t._v(" "),a("circle",{attrs:{cx:t.extendedArea.el.w/2,cy:t.extendedArea.el.h,r:"15",stroke:"black",fill:"grey"},on:{mousemove:function(e){t.extendedArea.el.h+=e.movementY}}})]):t._e()]),t._v(" "),a("svg",{class:t.background,attrs:{viewBox:t.extendedArea.el.x+" "+t.extendedArea.el.y+" "+t.extendedArea.el.w+" "+t.extendedArea.el.h,width:"100%",height:"300",preserveAspectRatio:"xMidYMid slice"},domProps:{innerHTML:t._s(t.extendedArea.value)}})],1)},staticRenderFns:[]};var w={name:"homeView",components:{tForm:m,tJson:_,tGraph2d:a("VU/8")(k,b,!1,function(t){a("P6lf")},null,null).exports},data:function(){return{response:{},toggleDataVisibility:!0,dark:!0}},mounted:function(){this.$emit("toggleTheme",this.dark)},methods:{toggleData:function(){this.toggleDataVisibility=!0},showResponse:function(t){this.response={toPredict:t.dataToProcess,prediction:t.result}}}},D={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-container",{attrs:{fluid:"","grid-list-md":""}},[a("v-toolbar",{attrs:{dense:"",app:""}},[a("span",{staticClass:"mt-3"},[a("v-switch",{on:{change:function(e){t.$emit("toggleTheme",t.dark)}},model:{value:t.dark,callback:function(e){t.dark=e},expression:"dark"}})],1),t._v(" "),t.dark?a("img",{staticClass:"pa-1",attrs:{src:"static/img/logo_dark.svg",height:"70%",alt:"Time Cop"}}):a("img",{staticClass:"pa-1",attrs:{src:"static/img/logo.svg",height:"70%",alt:"Time Cop"}}),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:"",color:"blue"},on:{click:function(e){t.toggleDataVisibility=!t.toggleDataVisibility}}},[t._v("\n data\n "),t.toggleDataVisibility?a("v-icon",{attrs:{right:""}},[t._v("visibility")]):a("v-icon",{attrs:{right:""}},[t._v("visibility_off")])],1)],1),t._v(" "),a("v-layout",{attrs:{wrap:""}},[a("v-flex",{class:t.toggleDataVisibility?"xs8":"xs12"},[a("t-graph-2d",{attrs:{dataSet:t.response,toggleSize:t.toggleDataVisibility,height:350,"margin-left":5,background:t.dark?"grey darken-3":"grey lighten-3"}})],1),t._v(" "),a("v-flex",{directives:[{name:"show",rawName:"v-show",value:t.toggleDataVisibility,expression:"toggleDataVisibility"}],attrs:{xs4:""}},[a("t-form",{staticClass:"mb-4",on:{response:t.showResponse}}),t._v(" "),a("t-json",{attrs:{json:t.response.prediction}})],1)],1)],1)},staticRenderFns:[]};var $=a("VU/8")(w,D,!1,function(t){a("R5Fh")},null,null).exports;i.default.use(n.a);var S=new n.a({routes:[{path:"/",name:"home",component:$}]}),A=a("3EgV"),H=a.n(A),M=a("8+8L"),P=a("wmFm");a("7zck");i.default.use(H.a),i.default.config.productionTip=!1,i.default.use(M.a),i.default.http.headers.common["content-type"]="application/json",i.default.use(P.a),new i.default({el:"#app",router:S,render:function(t){return t(s)}})},NvMd:function(t,e,a){"use strict";var i={name:"cAxisY",props:{range:{type:Array,required:!0},ticks:{type:Number},height:{type:Number,required:!0},label:{type:String},fixed:{type:Number},strokeColor:{type:String,default:"white"}},computed:{ticksList:function(){if(this.range&&this.range.length>0){var t=[],e=this.range[0],a=(this.range[1]-e)/(this.ticks-1),i=e;t.push(this.fixed?i.toFixed(this.fixed):i);for(var r=1;r0){for(var t=this.rangeY?this.rangeY[0]:this.$utils.getMin(this.dataset,this.y),e=this.rangeY?this.rangeY[1]:this.$utils.getMax(this.dataset,this.y),a=this.rangeX?this.rangeX[0]:this.$utils.getMin(this.dataset,this.x),i=this.rangeX?this.rangeX[1]:this.$utils.getMax(this.dataset,this.x),r=[],s=[],n=0;n0){for(var t=this.range?this.range[0]:this.$utils.getMin(this.dataset,this.x),e=this.range?this.range[1]:this.$utils.getMax(this.dataset,this.x),a=[],i=0;i0?a("line",{attrs:{x1:t.ticksList[0].position,x2:t.ticksList[t.ticksList.length-1].position}}):t._e(),t._v(" "),t._l(t.ticksList,function(e,i){return a("g",{key:"tick"+i,attrs:{transform:"translate("+e.position+", 0)"}},[a("line",{attrs:{y2:"6"}}),t._v(" "),a("text",{attrs:{"stroke-width":"0.1",y:"9",dy:"0.71em"}},[t._v(t._s(e.value))])])}),t._v(" "),a("text",{attrs:{x:t.ticksList[0].position,y:"-25",dx:"-0.71em",dy:"0.71em","stroke-width":"0.1"}},[t._v(t._s(t.label))])],2)},staticRenderFns:[]},s=a("VU/8")(i,r,!1,null,null,null);e.a=s.exports},o3Cr:function(t,e,a){"use strict";var i={name:"bars",props:{dataset:{type:Array,required:!0},column:{type:String,required:!0},height:{type:Number,required:!0},width:{type:Number,required:!0}},computed:{list:function(){for(var t=[],e=this.$utils.getMax(this.dataset,this.column),a=this.$utils.getMin(this.dataset,this.column),i=0;i\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/App.vue","\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/csvLoader.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('v-btn',{attrs:{\"outline\":\"\",\"color\":\"blue\"},on:{\"click\":function($event){_vm.$refs.csvFile.click()}}},[_vm._v(\"load csv\")]),_vm._v(\" \"),_c('input',{ref:\"csvFile\",attrs:{\"type\":\"file\",\"hidden\":\"\",\"accept\":\".csv, text/plain\"},on:{\"change\":_vm.loadCSVFile}}),_vm._v(\" \"),_c('v-dialog',{attrs:{\"persistent\":\"\",\"max-width\":\"500\"},model:{value:(_vm.selectHeaderDialog.value),callback:function ($$v) {_vm.$set(_vm.selectHeaderDialog, \"value\", $$v)},expression:\"selectHeaderDialog.value\"}},[_c('v-card',{attrs:{\"dark\":\"\"}},[_c('v-card-title',[_c('div',[_c('h3',{staticClass:\"headline\"},[_vm._v(\"What column do you want to process?\")]),_vm._v(\" \"),(_vm.amountSelectedData > 0)?_c('small',[_vm._v(\"data type: \"+_vm._s(_vm.amountSelectedData > 1 ? 'Multivariate' : 'Univariate'))]):_vm._e()])]),_vm._v(\" \"),_c('v-card-text',[_c('v-list',_vm._l((_vm.selectHeaderDialog.data),function(data,i){return _c('v-list-tile',{key:i,on:{\"click\":function($event){!data || _vm.addToProcessList(data, i)}}},[(i === _vm.mainKey)?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"yellow\"}},[_vm._v(\"star\")])],1):_vm._e(),_vm._v(\" \"),_c('v-list-tile-content',[_c('v-list-tile-title',[_vm._v(_vm._s(i))]),_vm._v(\" \"),_c('v-list-tile-sub-title',{staticClass:\"blue--text text--lighten-2\"},[_vm._v(_vm._s(data || 'it is not a valid data, a number is needed'))])],1),_vm._v(\" \"),(_vm.selectHeaderDialog.selectedHeaders[i])?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"green\"}},[_vm._v(\"check_circle\")])],1):_vm._e()],1)}))],1),_vm._v(\" \"),_c('v-card-actions',[_c('small',[_c('v-icon',{attrs:{\"small\":\"\",\"color\":\"yellow\"}},[_vm._v(\"star\")]),_vm._v(\" data to forecast\")],1),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":_vm.reset}},[_vm._v(\"cancel\")]),_vm._v(\" \"),_c('v-btn',{attrs:{\"disabled\":_vm.amountSelectedData === 0,\"flat\":\"\"},on:{\"click\":_vm.dataFileToDataSet}},[_vm._v(\"process\")])],1)],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-18598eb5\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/csvLoader.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/form.vue","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./csvLoader.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./csvLoader.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-18598eb5\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./csvLoader.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/csvLoader.vue\n// module id = null\n// module chunks = ","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-card',[_c('v-card-text',[_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-text-field',{attrs:{\"label\":\"Url\",\"rules\":[_vm.rules.url],\"outline\":\"\"},model:{value:(_vm.url),callback:function ($$v) {_vm.url=$$v},expression:\"url\"}})],1),_vm._v(\" \"),_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-textarea',{attrs:{\"hint\":\"Paste your data or load CSV file\",\"persistent-hint\":\"\",\"outline\":\"\",\"label\":\"DatatSet\",\"rules\":[_vm.rules.json]},model:{value:(_vm.dataToProcess),callback:function ($$v) {_vm.dataToProcess=$$v},expression:\"dataToProcess\"}})],1)],1),_vm._v(\" \"),_c('v-card-actions',[_c('v-spacer'),_vm._v(\" \"),_c('csv-loader',{on:{\"loaded\":_vm.processCSV,\"serie\":_vm.changeUrl}})],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"persistent\":\"\",\"width\":\"550\"},model:{value:(_vm.parametersDialog.active),callback:function ($$v) {_vm.$set(_vm.parametersDialog, \"active\", $$v)},expression:\"parametersDialog.active\"}},[_c('v-card',[_c('v-card-title',{staticClass:\"headline\"},[_vm._v(\"Parameters\")]),_vm._v(\" \"),_c('v-card-text',[_c('v-list',{attrs:{\"three-line\":\"\"}},_vm._l((_vm.parametersList),function(item){return _c('v-list-tile',{key:item.key},[_c('v-list-tile-content',[_c('v-list-tile-title',[_vm._v(_vm._s(item.title))]),_vm._v(\" \"),_c('v-list-tile-sub-title',[_vm._v(_vm._s(item.subtitle))])],1),_vm._v(\" \"),_c('v-list-tile-action',[_c('v-text-field',{style:({width: item.type === 'n' ? '48px' : '260px'}),attrs:{\"single-line\":\"\",\"persistent-hint\":\"\",\"full-width\":\"\",\"outline\":\"\"},model:{value:(item.value),callback:function ($$v) {_vm.$set(item, \"value\", $$v)},expression:\"item.value\"}})],1)],1)}))],1),_vm._v(\" \"),_c('v-card-actions',[_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":_vm.resetParametersDialog}},[_vm._v(\"cancel\")]),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\",\"color\":\"green\"},on:{\"click\":_vm.formatData}},[_vm._v(\"submit\")])],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"300\"},model:{value:(_vm.loading),callback:function ($$v) {_vm.loading=$$v},expression:\"loading\"}},[_c('v-card',{attrs:{\"max-width\":\"300\"}},[_c('v-card-text',[_vm._v(\"\\n Processing... this may take a while\\n \"),_c('v-progress-linear',{staticClass:\"mb-0\",attrs:{\"indeterminate\":\"\"}})],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"500\"},model:{value:(_vm.errorDialog.value),callback:function ($$v) {_vm.$set(_vm.errorDialog, \"value\", $$v)},expression:\"errorDialog.value\"}},[_c('v-card',{attrs:{\"color\":\"red\",\"dark\":\"\",\"max-width\":\"500\"}},[_c('v-card-text',[_c('pre',[_vm._v(_vm._s(_vm.errorDialog.text))])]),_vm._v(\" \"),_c('v-card-actions',[_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":function($event){_vm.errorDialog.value = false}}},[_vm._v(\"ok\")])],1)],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-139a7fb0\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/form.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-139a7fb0\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./form.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/form.vue\n// module id = null\n// module chunks = ","\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/jsonViewer.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},_vm._l((_vm.items),function(item,i){return _c('div',{key:i,style:({'margin-left': item.level * 10 + 'px', cursor: item.type === 'object' && item.data.length !== 0 ? 'pointer' : 'auto'}),on:{\"click\":function($event){item.type !== 'object' || _vm.toggle(item.data, i + 1, item.level + 1, item.open), item.open = !item.open}}},[_c('span',{class:{'font-weight-bold': item.type === 'object' && item.data.length !== 0}},[_vm._v(_vm._s(item.name)+\":\")]),_vm._v(\" \"),_c('span',{class:_vm.getColor(item.type)},[_vm._v(_vm._s(item.type === 'object' && item.data.length !== 0 ? '{...}' : item.data))])])}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-d44f50fe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-d44f50fe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./jsonViewer.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/graph.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{directives:[{name:\"resize\",rawName:\"v-resize\",value:(_vm.calculateSize),expression:\"calculateSize\"}],attrs:{\"xs12\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\"}},[_c('v-toolbar-items',_vm._l((_vm.toGraph),function(g,i){return _c('v-btn',{key:'btn' + i,class:{'graph-inactive-btn': !g.visible},attrs:{\"color\":g.color,\"disabled\":_vm.extendedArea.active,\"flat\":\"\"},on:{\"click\":function($event){g.visible = !g.visible}}},[_vm._v(\"\\n \"+_vm._s(g.name)+\"\\n \"),(g.name === _vm.dataSet.prediction.engine)?_c('span',{staticClass:\"winner\"},[_vm._v(\"♕\")]):_vm._e()])})),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.extendedArea.active,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":_vm.randomizeColors},slot:\"activator\"},[_c('v-icon',[_vm._v(\"brush\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"Randomize Colors\")])],1),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.total.length === 0,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":function($event){_vm.extendedArea.active = !_vm.extendedArea.active}},slot:\"activator\"},[_c('v-icon',[_vm._v(\"crop_free\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"extend area\")])],1)],1),_vm._v(\" \"),_c('svg',{ref:\"graph-container\",class:_vm.background,attrs:{\"width\":\"100%\",\"height\":_vm.height},on:{\"wheel\":function($event){$event.preventDefault();return _vm.zoom($event)},\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.panEnabled = true},\"mouseup\":function($event){_vm.panEnabled = false},\"mousemove\":_vm.pan}},[(_vm.total.length > 0)?_c('g',{attrs:{\"transform\":(\"translate(\" + _vm.marginLeft + \", \" + _vm.marginTop + \")\")}},[_c('defs',[_c('clipPath',{attrs:{\"id\":\"clip-rect\"}},[_c('rect',{attrs:{\"width\":_vm.chartWidth,\"height\":_vm.height,\"y\":-this.marginTop}})])]),_vm._v(\" \"),_c('g',{attrs:{\"clip-path\":\"url(#clip-rect)\"}},[_vm._l((_vm.toGraph),function(g,i){return (g.visible)?_c('g',{key:i},[_c('c-path',{attrs:{\"dasharray\":g.debug ? '5,5' : '',\"transform\":(\"translate(\" + (- _vm.offsetX) + \", 0)\"),\"color\":g.color,\"rangeX\":[_vm.zoomMin, _vm.zoomMax],\"rangeY\":[_vm.globalMin, _vm.globalMax],\"dataset\":g.data,\"y\":\"y\",\"x\":\"x\",\"height\":_vm.chartHeight,\"width\":_vm.chartWidth}})],1):_vm._e()}),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('line',{attrs:{\"x1\":_vm.markPos.pos,\"x2\":_vm.markPos.pos,\"y2\":_vm.chartHeight,\"stroke-width\":\"2\",\"stroke\":\"#0eff0e78\",\"fill\":\"none\"}}):_vm._e(),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('text',{attrs:{\"fill\":\"#0eff0e78\",\"text-anchor\":\"middle\",\"dy\":\"-5px\",\"transform\":(\"translate(\" + (_vm.markPos.pos) + \" 0)\")}},[_vm._v(\"\\n \"+_vm._s(_vm.markPos.val)+\"\\n \")]):_vm._e(),_vm._v(\" \"),_vm._l((_vm.anomalies),function(line,i){return _c('circle',{key:i,attrs:{\"cx\":line - _vm.offsetX,\"cy\":_vm.chartHeight,\"r\":\"7\",\"stroke\":\"white\",\"stroke-width\":\"1\",\"fill\":\"red\"}})}),_vm._v(\" \"),_c('c-axis-x',{attrs:{\"transform\":(\"translate(\" + (-_vm.offsetX) + \" \" + _vm.chartHeight + \")\"),\"range\":[_vm.zoomMin, _vm.zoomMax],\"dataset\":_vm.total,\"x\":\"x\",\"ticks\":25,\"fixed\":1,\"height\":_vm.chartHeight,\"width\":_vm.chartWidth,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],2),_vm._v(\" \"),_c('c-axis-y',{attrs:{\"transform\":(\"translate(\" + (_vm.chartWidth - _vm.marginLeft - _vm.marginRight) + \" 0)\"),\"range\":[_vm.globalMin, _vm.globalMax],\"ticks\":5,\"fixed\":3,\"height\":_vm.chartHeight,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],1):_vm._e(),_vm._v(\" \"),(_vm.extendedArea.active)?_c('g',{attrs:{\"transform\":(\"translate(\" + (_vm.extendedArea.el.x) + \", \" + (_vm.extendedArea.el.y) + \")\")}},[_c('rect',{attrs:{\"fill\":\"#ffffff17\",\"width\":_vm.extendedArea.el.w,\"height\":_vm.extendedArea.el.h},on:{\"mousemove\":_vm.moveExtendedArea,\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.extendedArea.el.draggable = true},\"mouseup\":function($event){_vm.extendedArea.el.draggable = false},\"mouseout\":function($event){_vm.extendedArea.el.draggable = false}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w,\"cy\":_vm.extendedArea.el.h / 2,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.w += $event.movementX}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w / 2,\"cy\":_vm.extendedArea.el.h,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.h += $event.movementY}}})]):_vm._e()]),_vm._v(\" \"),_c('svg',{class:_vm.background,attrs:{\"viewBox\":((_vm.extendedArea.el.x) + \" \" + (_vm.extendedArea.el.y) + \" \" + (_vm.extendedArea.el.w) + \" \" + (_vm.extendedArea.el.h)),\"width\":\"100%\",\"height\":\"300\",\"preserveAspectRatio\":\"xMidYMid slice\"},domProps:{\"innerHTML\":_vm._s(_vm.extendedArea.value)}})],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-58e2ba42\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/graph.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-58e2ba42\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./graph.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-58e2ba42\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./graph.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/graph.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/view/homeView.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-container',{attrs:{\"fluid\":\"\",\"grid-list-md\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\",\"app\":\"\"}},[_c('span',{staticClass:\"mt-3\"},[_c('v-switch',{on:{\"change\":function($event){_vm.$emit('toggleTheme', _vm.dark)}},model:{value:(_vm.dark),callback:function ($$v) {_vm.dark=$$v},expression:\"dark\"}})],1),_vm._v(\" \"),(!_vm.dark)?_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}):_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo_dark.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\",\"color\":\"blue\"},on:{\"click\":function($event){_vm.toggleDataVisibility = !_vm.toggleDataVisibility}}},[_vm._v(\"\\n data\\n \"),(_vm.toggleDataVisibility)?_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility\")]):_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility_off\")])],1)],1),_vm._v(\" \"),_c('v-layout',{attrs:{\"wrap\":\"\"}},[_c('v-flex',{class:_vm.toggleDataVisibility ? 'xs8' : 'xs12'},[_c('t-graph-2d',{attrs:{\"dataSet\":_vm.response,\"toggleSize\":_vm.toggleDataVisibility,\"height\":350,\"margin-left\":5,\"background\":_vm.dark ? 'grey darken-3': 'grey lighten-3'}})],1),_vm._v(\" \"),_c('v-flex',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.toggleDataVisibility),expression:\"toggleDataVisibility\"}],attrs:{\"xs4\":\"\"}},[_c('t-form',{staticClass:\"mb-4\",on:{\"response\":_vm.showResponse}}),_vm._v(\" \"),_c('t-json',{attrs:{\"json\":_vm.response.prediction}})],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-04efdfce\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/view/homeView.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./homeView.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./homeView.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/view/homeView.vue\n// module id = null\n// module chunks = ","import Vue from 'vue'\r\nimport Router from 'vue-router'\r\nimport home from '@/view/homeView'\r\n\r\nVue.use(Router)\r\n\r\nexport default new Router({\r\n routes: [\r\n {\r\n path: '/',\r\n name: 'home',\r\n component: home\r\n }\r\n ]\r\n})\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/index.js","import Vue from 'vue'\r\nimport App from './App'\r\nimport router from './router'\r\nimport Vuetify from 'vuetify'\r\nimport VueResource from 'vue-resource'\r\n// import chartConstructor from './constructor/2d_graph'\r\nimport chart2dConstructor from 'vue-chart2d-constructor'\r\nimport 'vuetify/dist/vuetify.min.css'\r\n\r\nVue.use(Vuetify)\r\n\r\nVue.config.productionTip = false\r\nVue.use(VueResource)\r\nVue.http.headers.common['content-type'] = 'application/json'\r\nVue.use(chart2dConstructor)\r\n/* eslint-disable no-new */\r\nnew Vue({\r\n el: '#app',\r\n router,\r\n render: h => h(App)\r\n})\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.js","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-y.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"end\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\"}},[_c('line',{attrs:{\"y1\":_vm.height}}),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(0, \" + (i * (_vm.height/(_vm.ticksList.length - 1))) + \")\")}},[_c('line',{attrs:{\"x2\":\"-6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"x\":\"-9\",\"dy\":\"0.32em\"}},[_vm._v(_vm._s(tick))])])}),_vm._v(\" \"),_c('text',{attrs:{\"transform\":\"rotate(-90)\",\"y\":\"6\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-35c15ce6\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-35c15ce6\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-y.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cPath.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('path',{attrs:{\"fill\":\"none\",\"stroke\":_vm.color,\"stroke-linejoin\":\"round\",\"stroke-linecap\":\"round\",\"stroke-width\":_vm.strokeWidth,\"stroke-dasharray\":_vm.dasharray,\"d\":_vm.points}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-58b941c4\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-58b941c4\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cPath.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-x.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"middle\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\",\"transform\":(\"translate(0, \" + _vm.height + \")\")}},[(_vm.ticksList && _vm.ticksList.length > 0)?_c('line',{attrs:{\"x1\":_vm.ticksList[0].position,\"x2\":_vm.ticksList[_vm.ticksList.length - 1].position}}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(\" + (tick.position) + \", 0)\")}},[_c('line',{attrs:{\"y2\":\"6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"y\":\"9\",\"dy\":\"0.71em\"}},[_vm._v(_vm._s(tick.value))])])}),_vm._v(\" \"),_c('text',{attrs:{\"x\":_vm.ticksList[0].position,\"y\":\"-25\",\"dx\":\"-0.71em\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-69a54ebe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-69a54ebe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-x.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cBars.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',_vm._l((_vm.list),function(item,i){return _c('rect',{key:i,attrs:{\"x\":i * (_vm.width / _vm.list.length),\"y\":item.v,\"width\":30,\"height\":_vm.height - item.v,\"fill\":\"green\"}})}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-65db09f9\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-65db09f9\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cBars.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cCircle.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('circle',{attrs:{\"cx\":_vm.x,\"cy\":_vm.y,\"r\":_vm.r,\"stroke\":_vm.strokeColor,\"stroke-width\":_vm.strokeWidth,\"fill\":_vm.color}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-10fc018e\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-10fc018e\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cCircle.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = "],"sourceRoot":""} \ No newline at end of file diff --git a/web_test/production/static/js/app.9bddbc1f5c768a018f59.js b/web_test/production/static/js/app.9bddbc1f5c768a018f59.js deleted file mode 100644 index 665df74..0000000 --- a/web_test/production/static/js/app.9bddbc1f5c768a018f59.js +++ /dev/null @@ -1,2 +0,0 @@ -webpackJsonp([1],{0:function(t,e){},"7zck":function(t,e){},NHnr:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=a("/5sW"),r={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-app",{attrs:{dark:t.dark}},[a("v-content",[a("router-view",{on:{toggleTheme:function(e){t.dark=e}}})],1)],1)},staticRenderFns:[]};var s=a("VU/8")({name:"App",data:function(){return{dark:!1}}},r,!1,function(t){a("etxH")},null,null).exports,n=a("/ocq"),o=a("mvHQ"),l=a.n(o),d=a("fZjL"),c=a.n(d),h={name:"Tform",data:function(){return{url:"http://localhost:5000/univariate/get",dataToProcess:"",loading:!1,future:5,rules:{json:function(t){try{JSON.parse(t)}catch(t){return"Data is not a valid json"}return!0},url:function(t){return!!/(http|https):\/\/(\w+:{0,1}\w*)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%!\\/]))?/.test(t)||"Url is not a valid"}},errorDialog:{value:!1,text:""},selectHeaderDialog:{selectedHeaders:{},value:!1,data:{}},multivariateData:{timeseries:[],main:[]},mainKey:null}},methods:{loadCSVFile:function(t){var e=this,a=t.target.files[0],i=new FileReader,r={};i.onload=function(t){for(var a=t.target.result.split("\n"),i=a[0].split(","),s=0;s0?this.multivariateData.timeseries.push({data:t[a]}):this.multivariateData.main=t[a];this.dataToProcess=l()(this.multivariateData)}this.multivariateData={timeseries:[],main:[]},this.mainKey="",this.selectHeaderDialog={selectedHeaders:{},value:!1,data:{}},this.$refs.csvFile.value=""},addToProcessList:function(t,e){this.selectHeaderDialog.selectedHeaders[e]?(this.mainKey===e&&(this.mainKey=null),this.$delete(this.selectHeaderDialog.selectedHeaders,e)):(this.mainKey||(this.mainKey=e),this.$set(this.selectHeaderDialog.selectedHeaders,e,t))},getUrl:function(){var t=this;this.loading=!0,this.$set(this.dataSet,"num_future",+this.future),this.$http.post(this.url,this.dataSet).then(function(e){t.$emit("response",{dataToProcess:t.dataSet,result:e.body}),t.loading=!1}).catch(function(e){t.loading=!1,t.errorDialog.value=!0,t.errorDialog.text=e,console.log(e)})}},computed:{dataSet:function(){return JSON.parse(this.dataToProcess)},amountSelectedData:function(){return c()(this.selectHeaderDialog.selectedHeaders).length}}},u={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-flex",{attrs:{xs12:""}},[a("v-card",[a("v-card-text",[a("v-flex",{attrs:{xs12:""}},[a("v-text-field",{attrs:{label:"Url",rules:[t.rules.url],outline:""},on:{keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getUrl(e):null}},model:{value:t.url,callback:function(e){t.url=e},expression:"url"}})],1),t._v(" "),a("v-flex",{attrs:{xs12:""}},[a("v-textarea",{attrs:{hint:"Paste your data or load CSV file","persistent-hint":"",outline:"",label:"DatatSet",rules:[t.rules.json]},on:{keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getUrl(e):null}},model:{value:t.dataToProcess,callback:function(e){t.dataToProcess=e},expression:"dataToProcess"}})],1),t._v(" "),a("v-layout",[a("v-flex",{attrs:{xs4:""}},[a("v-text-field",{attrs:{outline:"","single-line":"","persistent-hint":""},model:{value:t.future,callback:function(e){t.future=e},expression:"future"}})],1),t._v(" "),a("v-flex",{staticClass:"mt-3",attrs:{xs10:""}},[t._v("Steps in the future that you want to predict")])],1)],1),t._v(" "),a("v-card-actions",[a("v-btn",{attrs:{outline:"",color:"indigo"},on:{click:function(e){t.$refs.csvFile.click()}}},[t._v("csv")]),t._v(" "),a("input",{ref:"csvFile",attrs:{type:"file",hidden:"",accept:".csv, text/plain"},on:{change:t.loadCSVFile}}),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{color:"success"},on:{click:t.getUrl}},[t._v("Submit "),a("v-icon",{attrs:{right:""}},[t._v("send")])],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{"hide-overlay":"",persistent:"",width:"300"},model:{value:t.loading,callback:function(e){t.loading=e},expression:"loading"}},[a("v-card",{attrs:{"max-width":"300"}},[a("v-card-text",[t._v("\n Processing... this may take a while\n "),a("v-progress-linear",{staticClass:"mb-0",attrs:{indeterminate:""}})],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{"hide-overlay":"",persistent:"",width:"500"},model:{value:t.errorDialog.value,callback:function(e){t.$set(t.errorDialog,"value",e)},expression:"errorDialog.value"}},[a("v-card",{attrs:{color:"red",dark:"","max-width":"500"}},[a("v-card-text",[a("pre",[t._v(t._s(t.errorDialog.text))])]),t._v(" "),a("v-card-actions",[a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:""},on:{click:function(e){t.errorDialog.value=!1}}},[t._v("ok")])],1)],1)],1),t._v(" "),a("v-dialog",{attrs:{persistent:"",width:"500"},model:{value:t.selectHeaderDialog.value,callback:function(e){t.$set(t.selectHeaderDialog,"value",e)},expression:"selectHeaderDialog.value"}},[a("v-card",{attrs:{dark:"","max-width":"500"}},[a("v-card-title",[a("div",[a("h3",{staticClass:"headline"},[t._v("What column do you want to process?")]),t._v(" "),t.amountSelectedData>0?a("small",[t._v("data type: "+t._s(t.amountSelectedData>1?"Multivariate":"Univariate"))]):t._e()])]),t._v(" "),a("v-card-text",[a("v-list",t._l(t.selectHeaderDialog.data,function(e,i){return a("v-list-tile",{key:i,on:{click:function(a){!e||t.addToProcessList(e,i)}}},[i===t.mainKey?a("v-list-tile-action",[a("v-icon",{attrs:{color:"yellow"}},[t._v("star")])],1):t._e(),t._v(" "),a("v-list-tile-content",[a("v-list-tile-title",[t._v(t._s(i))]),t._v(" "),a("v-list-tile-sub-title",{staticClass:"blue--text text--lighten-2"},[t._v(t._s(e||"it is not a valid data, a number is needed"))])],1),t._v(" "),t.selectHeaderDialog.selectedHeaders[i]?a("v-list-tile-action",[a("v-icon",{attrs:{color:"green"}},[t._v("check_circle")])],1):t._e()],1)}))],1),t._v(" "),a("v-card-actions",[a("small",[a("v-icon",{attrs:{small:"",color:"yellow"}},[t._v("star")]),t._v(" data to forecast")],1),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:""},on:{click:function(e){t.selectHeaderDialog.value=!1}}},[t._v("cancel")]),t._v(" "),a("v-btn",{attrs:{disabled:0===t.amountSelectedData,flat:""},on:{click:t.dataFileToDataSet}},[t._v("process")])],1)],1)],1)],1)},staticRenderFns:[]},v=a("VU/8")(h,u,!1,null,null,null).exports,g=a("pFYg"),f=a.n(g),p={name:"jsonViewer",props:["json"],data:function(){return{items:[],hightLevel:0}},methods:{addItems:function(t,e,a){for(var i in t)this.items.splice(e,0,{name:i,type:f()(t[i]),data:t[i],level:a,open:!0});this.hightLevel=a},toggle:function(t,e,a,i){i?this.addItems(t,e,a):this.deleteItems(t,e,a)},deleteItems:function(t,e,a){this.hightLeve--;for(var i=this.items.filter(function(t){return t.level>=a}).length,r=c()(t).length,s=a!==this.hightLevel?i:r,n=0;n0)for(var e=t.offsetX-this.marginLeft,a=0;aa?t:a}return t},globalMin:function(){var t=1e11;for(var e in this.toGraph)if(this.toGraph[e].visible){var a=this.$utils.getMin(this.toGraph[e].data,"y");t=t0?a("g",{attrs:{transform:"translate("+t.marginLeft+", "+t.marginTop+")"}},[a("defs",[a("clipPath",{attrs:{id:"clip-rect"}},[a("rect",{attrs:{width:t.chartWidth,height:t.height,y:-this.marginTop}})])]),t._v(" "),a("g",{attrs:{"clip-path":"url(#clip-rect)"}},[t._l(t.toGraph,function(e,i){return e.visible?a("g",{key:i},[a("c-path",{attrs:{dasharray:e.debug?"5,5":"",transform:"translate("+-t.offsetX+", 0)",color:e.color,rangeX:[t.zoomMin,t.zoomMax],rangeY:[t.globalMin,t.globalMax],dataset:e.data,y:"y",x:"x",height:t.chartHeight,width:t.chartWidth}})],1):t._e()}),t._v(" "),t.markPos.pos>0?a("line",{attrs:{x1:t.markPos.pos,x2:t.markPos.pos,y2:t.chartHeight,"stroke-width":"2",stroke:"#0eff0e78",fill:"none"}}):t._e(),t._v(" "),t.markPos.pos>0?a("text",{attrs:{fill:"#0eff0e78","text-anchor":"middle",dy:"-5px",transform:"translate("+t.markPos.pos+" 0)"}},[t._v("\n "+t._s(t.markPos.val)+"\n ")]):t._e(),t._v(" "),t._l(t.anomalies,function(e,i){return a("circle",{key:i,attrs:{cx:e-t.offsetX,cy:t.chartHeight,r:"7",stroke:"white","stroke-width":"1",fill:"red"}})}),t._v(" "),a("c-axis-x",{attrs:{transform:"translate("+-t.offsetX+" "+t.chartHeight+")",range:[t.zoomMin,t.zoomMax],dataset:t.total,x:"x",ticks:25,fixed:1,height:t.chartHeight,width:t.chartWidth,strokeColor:this.$vuetify.dark?"white":"#6d6d6d"}})],2),t._v(" "),a("c-axis-y",{attrs:{transform:"translate("+(t.chartWidth-t.marginLeft-t.marginRight)+" 0)",range:[t.globalMin,t.globalMax],ticks:5,fixed:3,height:t.chartHeight,strokeColor:this.$vuetify.dark?"white":"#6d6d6d"}})],1):t._e(),t._v(" "),t.extendedArea.active?a("g",{attrs:{transform:"translate("+t.extendedArea.el.x+", "+t.extendedArea.el.y+")"}},[a("rect",{attrs:{fill:"#ffffff17",width:t.extendedArea.el.w,height:t.extendedArea.el.h},on:{mousemove:t.moveExtendedArea,mousedown:function(e){if(e.ctrlKey||e.shiftKey||e.altKey||e.metaKey)return null;t.extendedArea.el.draggable=!0},mouseup:function(e){t.extendedArea.el.draggable=!1},mouseout:function(e){t.extendedArea.el.draggable=!1}}}),t._v(" "),a("circle",{attrs:{cx:t.extendedArea.el.w,cy:t.extendedArea.el.h/2,r:"15",stroke:"black",fill:"grey"},on:{mousemove:function(e){t.extendedArea.el.w+=e.movementX}}}),t._v(" "),a("circle",{attrs:{cx:t.extendedArea.el.w/2,cy:t.extendedArea.el.h,r:"15",stroke:"black",fill:"grey"},on:{mousemove:function(e){t.extendedArea.el.h+=e.movementY}}})]):t._e()]),t._v(" "),a("svg",{class:t.background,attrs:{viewBox:t.extendedArea.el.x+" "+t.extendedArea.el.y+" "+t.extendedArea.el.w+" "+t.extendedArea.el.h,width:"100%",height:"300",preserveAspectRatio:"xMidYMid slice"},domProps:{innerHTML:t._s(t.extendedArea.value)}})],1)},staticRenderFns:[]};var k={name:"homeView",components:{tForm:v,tJson:x,tGraph2d:a("VU/8")(y,_,!1,function(t){a("P6lf")},null,null).exports},data:function(){return{response:{},toggleDataVisibility:!0,dark:!0}},mounted:function(){this.$emit("toggleTheme",this.dark)},methods:{toggleData:function(){this.toggleDataVisibility=!0},showResponse:function(t){this.response={toPredict:t.dataToProcess,prediction:t.result}}}},b={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-container",{attrs:{fluid:"","grid-list-md":""}},[a("v-toolbar",{attrs:{dense:"",app:""}},[a("span",{staticClass:"mt-3"},[a("v-switch",{on:{change:function(e){t.$emit("toggleTheme",t.dark)}},model:{value:t.dark,callback:function(e){t.dark=e},expression:"dark"}})],1),t._v(" "),t.dark?a("img",{staticClass:"pa-1",attrs:{src:"static/img/logo_dark.svg",height:"70%",alt:"Time Cop"}}):a("img",{staticClass:"pa-1",attrs:{src:"static/img/logo.svg",height:"70%",alt:"Time Cop"}}),t._v(" "),a("v-spacer"),t._v(" "),a("v-btn",{attrs:{flat:"",color:"blue"},on:{click:function(e){t.toggleDataVisibility=!t.toggleDataVisibility}}},[t._v("\n data\n "),t.toggleDataVisibility?a("v-icon",{attrs:{right:""}},[t._v("visibility")]):a("v-icon",{attrs:{right:""}},[t._v("visibility_off")])],1)],1),t._v(" "),a("v-layout",{attrs:{wrap:""}},[a("v-flex",{class:t.toggleDataVisibility?"xs8":"xs12"},[a("t-graph-2d",{attrs:{dataSet:t.response,toggleSize:t.toggleDataVisibility,height:350,"margin-left":5,background:t.dark?"grey darken-3":"grey lighten-3"}})],1),t._v(" "),a("v-flex",{directives:[{name:"show",rawName:"v-show",value:t.toggleDataVisibility,expression:"toggleDataVisibility"}],attrs:{xs4:""}},[a("t-form",{staticClass:"mb-4",on:{response:t.showResponse}}),t._v(" "),a("t-json",{attrs:{json:t.response.prediction}})],1)],1)],1)},staticRenderFns:[]};var w=a("VU/8")(k,b,!1,function(t){a("R5Fh")},null,null).exports;i.default.use(n.a);var $=new n.a({routes:[{path:"/",name:"home",component:w}]}),S=a("3EgV"),D=a.n(S),A=a("8+8L"),M=a("wmFm");a("7zck");i.default.use(D.a),i.default.config.productionTip=!1,i.default.use(A.a),i.default.http.headers.common["content-type"]="application/json",i.default.use(M.a),new i.default({el:"#app",router:$,render:function(t){return t(s)}})},NvMd:function(t,e,a){"use strict";var i={name:"cAxisY",props:{range:{type:Array,required:!0},ticks:{type:Number},height:{type:Number,required:!0},label:{type:String},fixed:{type:Number},strokeColor:{type:String,default:"white"}},computed:{ticksList:function(){if(this.range&&this.range.length>0){var t=[],e=this.range[0],a=(this.range[1]-e)/(this.ticks-1),i=e;t.push(this.fixed?i.toFixed(this.fixed):i);for(var r=1;r0){for(var t=this.rangeY?this.rangeY[0]:this.$utils.getMin(this.dataset,this.y),e=this.rangeY?this.rangeY[1]:this.$utils.getMax(this.dataset,this.y),a=this.rangeX?this.rangeX[0]:this.$utils.getMin(this.dataset,this.x),i=this.rangeX?this.rangeX[1]:this.$utils.getMax(this.dataset,this.x),r=[],s=[],n=0;n0){for(var t=this.range?this.range[0]:this.$utils.getMin(this.dataset,this.x),e=this.range?this.range[1]:this.$utils.getMax(this.dataset,this.x),a=[],i=0;i0?a("line",{attrs:{x1:t.ticksList[0].position,x2:t.ticksList[t.ticksList.length-1].position}}):t._e(),t._v(" "),t._l(t.ticksList,function(e,i){return a("g",{key:"tick"+i,attrs:{transform:"translate("+e.position+", 0)"}},[a("line",{attrs:{y2:"6"}}),t._v(" "),a("text",{attrs:{"stroke-width":"0.1",y:"9",dy:"0.71em"}},[t._v(t._s(e.value))])])}),t._v(" "),a("text",{attrs:{x:t.ticksList[0].position,y:"-25",dx:"-0.71em",dy:"0.71em","stroke-width":"0.1"}},[t._v(t._s(t.label))])],2)},staticRenderFns:[]},s=a("VU/8")(i,r,!1,null,null,null);e.a=s.exports},o3Cr:function(t,e,a){"use strict";var i={name:"bars",props:{dataset:{type:Array,required:!0},column:{type:String,required:!0},height:{type:Number,required:!0},width:{type:Number,required:!0}},computed:{list:function(){for(var t=[],e=this.$utils.getMax(this.dataset,this.column),a=this.$utils.getMin(this.dataset,this.column),i=0;i\n\n \n \n \n\n\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/App.vue","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/form.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-card',[_c('v-card-text',[_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-text-field',{attrs:{\"label\":\"Url\",\"rules\":[_vm.rules.url],\"outline\":\"\"},on:{\"keypress\":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,\"enter\",13,$event.key,\"Enter\")){ return null; }return _vm.getUrl($event)}},model:{value:(_vm.url),callback:function ($$v) {_vm.url=$$v},expression:\"url\"}})],1),_vm._v(\" \"),_c('v-flex',{attrs:{\"xs12\":\"\"}},[_c('v-textarea',{attrs:{\"hint\":\"Paste your data or load CSV file\",\"persistent-hint\":\"\",\"outline\":\"\",\"label\":\"DatatSet\",\"rules\":[_vm.rules.json]},on:{\"keypress\":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,\"enter\",13,$event.key,\"Enter\")){ return null; }return _vm.getUrl($event)}},model:{value:(_vm.dataToProcess),callback:function ($$v) {_vm.dataToProcess=$$v},expression:\"dataToProcess\"}})],1),_vm._v(\" \"),_c('v-layout',[_c('v-flex',{attrs:{\"xs4\":\"\"}},[_c('v-text-field',{attrs:{\"outline\":\"\",\"single-line\":\"\",\"persistent-hint\":\"\"},model:{value:(_vm.future),callback:function ($$v) {_vm.future=$$v},expression:\"future\"}})],1),_vm._v(\" \"),_c('v-flex',{staticClass:\"mt-3\",attrs:{\"xs10\":\"\"}},[_vm._v(\"Steps in the future that you want to predict\")])],1)],1),_vm._v(\" \"),_c('v-card-actions',[_c('v-btn',{attrs:{\"outline\":\"\",\"color\":\"indigo\"},on:{\"click\":function($event){_vm.$refs.csvFile.click()}}},[_vm._v(\"csv\")]),_vm._v(\" \"),_c('input',{ref:\"csvFile\",attrs:{\"type\":\"file\",\"hidden\":\"\",\"accept\":\".csv, text/plain\"},on:{\"change\":_vm.loadCSVFile}}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"color\":\"success\"},on:{\"click\":_vm.getUrl}},[_vm._v(\"Submit \"),_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"send\")])],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"300\"},model:{value:(_vm.loading),callback:function ($$v) {_vm.loading=$$v},expression:\"loading\"}},[_c('v-card',{attrs:{\"max-width\":\"300\"}},[_c('v-card-text',[_vm._v(\"\\n Processing... this may take a while\\n \"),_c('v-progress-linear',{staticClass:\"mb-0\",attrs:{\"indeterminate\":\"\"}})],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"hide-overlay\":\"\",\"persistent\":\"\",\"width\":\"500\"},model:{value:(_vm.errorDialog.value),callback:function ($$v) {_vm.$set(_vm.errorDialog, \"value\", $$v)},expression:\"errorDialog.value\"}},[_c('v-card',{attrs:{\"color\":\"red\",\"dark\":\"\",\"max-width\":\"500\"}},[_c('v-card-text',[_c('pre',[_vm._v(_vm._s(_vm.errorDialog.text))])]),_vm._v(\" \"),_c('v-card-actions',[_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":function($event){_vm.errorDialog.value = false}}},[_vm._v(\"ok\")])],1)],1)],1),_vm._v(\" \"),_c('v-dialog',{attrs:{\"persistent\":\"\",\"width\":\"500\"},model:{value:(_vm.selectHeaderDialog.value),callback:function ($$v) {_vm.$set(_vm.selectHeaderDialog, \"value\", $$v)},expression:\"selectHeaderDialog.value\"}},[_c('v-card',{attrs:{\"dark\":\"\",\"max-width\":\"500\"}},[_c('v-card-title',[_c('div',[_c('h3',{staticClass:\"headline\"},[_vm._v(\"What column do you want to process?\")]),_vm._v(\" \"),(_vm.amountSelectedData > 0)?_c('small',[_vm._v(\"data type: \"+_vm._s(_vm.amountSelectedData > 1 ? 'Multivariate' : 'Univariate'))]):_vm._e()])]),_vm._v(\" \"),_c('v-card-text',[_c('v-list',_vm._l((_vm.selectHeaderDialog.data),function(data,i){return _c('v-list-tile',{key:i,on:{\"click\":function($event){!data || _vm.addToProcessList(data, i)}}},[(i === _vm.mainKey)?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"yellow\"}},[_vm._v(\"star\")])],1):_vm._e(),_vm._v(\" \"),_c('v-list-tile-content',[_c('v-list-tile-title',[_vm._v(_vm._s(i))]),_vm._v(\" \"),_c('v-list-tile-sub-title',{staticClass:\"blue--text text--lighten-2\"},[_vm._v(_vm._s(data || 'it is not a valid data, a number is needed'))])],1),_vm._v(\" \"),(_vm.selectHeaderDialog.selectedHeaders[i])?_c('v-list-tile-action',[_c('v-icon',{attrs:{\"color\":\"green\"}},[_vm._v(\"check_circle\")])],1):_vm._e()],1)}))],1),_vm._v(\" \"),_c('v-card-actions',[_c('small',[_c('v-icon',{attrs:{\"small\":\"\",\"color\":\"yellow\"}},[_vm._v(\"star\")]),_vm._v(\" data to forecast\")],1),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\"},on:{\"click\":function($event){_vm.selectHeaderDialog.value = false}}},[_vm._v(\"cancel\")]),_vm._v(\" \"),_c('v-btn',{attrs:{\"disabled\":_vm.amountSelectedData === 0,\"flat\":\"\"},on:{\"click\":_vm.dataFileToDataSet}},[_vm._v(\"process\")])],1)],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-43e8a342\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/form.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./form.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-43e8a342\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./form.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/form.vue\n// module id = null\n// module chunks = ","\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/jsonViewer.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{attrs:{\"xs12\":\"\"}},_vm._l((_vm.items),function(item,i){return _c('div',{key:i,style:({'margin-left': item.level * 10 + 'px', cursor: item.type === 'object' && item.data.length !== 0 ? 'pointer' : 'auto'}),on:{\"click\":function($event){item.type !== 'object' || _vm.toggle(item.data, i + 1, item.level + 1, item.open), item.open = !item.open}}},[_c('span',{class:{'font-weight-bold': item.type === 'object' && item.data.length !== 0}},[_vm._v(_vm._s(item.name)+\":\")]),_vm._v(\" \"),_c('span',{class:_vm.getColor(item.type)},[_vm._v(_vm._s(item.type === 'object' && item.data.length !== 0 ? '{...}' : item.data))])])}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-d44f50fe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./jsonViewer.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-d44f50fe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./jsonViewer.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/jsonViewer.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/graph.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-flex',{directives:[{name:\"resize\",rawName:\"v-resize\",value:(_vm.calculateSize),expression:\"calculateSize\"}],attrs:{\"xs12\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\"}},[_c('v-toolbar-items',_vm._l((_vm.toGraph),function(g,i){return _c('v-btn',{key:'btn' + i,class:{'graph-inactive-btn': !g.visible},attrs:{\"color\":g.color,\"disabled\":_vm.extendedArea.active,\"flat\":\"\"},on:{\"click\":function($event){g.visible = !g.visible}}},[_vm._v(\"\\n \"+_vm._s(g.name)+\"\\n \"),(g.name === _vm.dataSet.prediction.engine)?_c('span',{staticClass:\"winner\"},[_vm._v(\"♕\")]):_vm._e()])})),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.extendedArea.active,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":_vm.randomizeColors},slot:\"activator\"},[_c('v-icon',[_vm._v(\"brush\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"Randomize Colors\")])],1),_vm._v(\" \"),_c('v-tooltip',{attrs:{\"bottom\":\"\"}},[_c('v-btn',{attrs:{\"slot\":\"activator\",\"disabled\":_vm.total.length === 0,\"flat\":\"\",\"icon\":\"\"},on:{\"click\":function($event){_vm.extendedArea.active = !_vm.extendedArea.active}},slot:\"activator\"},[_c('v-icon',[_vm._v(\"crop_free\")])],1),_vm._v(\" \"),_c('span',[_vm._v(\"extend area\")])],1)],1),_vm._v(\" \"),_c('svg',{ref:\"graph-container\",class:_vm.background,attrs:{\"width\":\"100%\",\"height\":_vm.height},on:{\"wheel\":function($event){$event.preventDefault();return _vm.zoom($event)},\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.panEnabled = true},\"mouseup\":function($event){_vm.panEnabled = false},\"mousemove\":_vm.pan}},[(_vm.total.length > 0)?_c('g',{attrs:{\"transform\":(\"translate(\" + _vm.marginLeft + \", \" + _vm.marginTop + \")\")}},[_c('defs',[_c('clipPath',{attrs:{\"id\":\"clip-rect\"}},[_c('rect',{attrs:{\"width\":_vm.chartWidth,\"height\":_vm.height,\"y\":-this.marginTop}})])]),_vm._v(\" \"),_c('g',{attrs:{\"clip-path\":\"url(#clip-rect)\"}},[_vm._l((_vm.toGraph),function(g,i){return (g.visible)?_c('g',{key:i},[_c('c-path',{attrs:{\"dasharray\":g.debug ? '5,5' : '',\"transform\":(\"translate(\" + (- _vm.offsetX) + \", 0)\"),\"color\":g.color,\"rangeX\":[_vm.zoomMin, _vm.zoomMax],\"rangeY\":[_vm.globalMin, _vm.globalMax],\"dataset\":g.data,\"y\":\"y\",\"x\":\"x\",\"height\":_vm.chartHeight,\"width\":_vm.chartWidth}})],1):_vm._e()}),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('line',{attrs:{\"x1\":_vm.markPos.pos,\"x2\":_vm.markPos.pos,\"y2\":_vm.chartHeight,\"stroke-width\":\"2\",\"stroke\":\"#0eff0e78\",\"fill\":\"none\"}}):_vm._e(),_vm._v(\" \"),(_vm.markPos.pos > 0)?_c('text',{attrs:{\"fill\":\"#0eff0e78\",\"text-anchor\":\"middle\",\"dy\":\"-5px\",\"transform\":(\"translate(\" + (_vm.markPos.pos) + \" 0)\")}},[_vm._v(\"\\n \"+_vm._s(_vm.markPos.val)+\"\\n \")]):_vm._e(),_vm._v(\" \"),_vm._l((_vm.anomalies),function(line,i){return _c('circle',{key:i,attrs:{\"cx\":line - _vm.offsetX,\"cy\":_vm.chartHeight,\"r\":\"7\",\"stroke\":\"white\",\"stroke-width\":\"1\",\"fill\":\"red\"}})}),_vm._v(\" \"),_c('c-axis-x',{attrs:{\"transform\":(\"translate(\" + (-_vm.offsetX) + \" \" + _vm.chartHeight + \")\"),\"range\":[_vm.zoomMin, _vm.zoomMax],\"dataset\":_vm.total,\"x\":\"x\",\"ticks\":25,\"fixed\":1,\"height\":_vm.chartHeight,\"width\":_vm.chartWidth,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],2),_vm._v(\" \"),_c('c-axis-y',{attrs:{\"transform\":(\"translate(\" + (_vm.chartWidth - _vm.marginLeft - _vm.marginRight) + \" 0)\"),\"range\":[_vm.globalMin, _vm.globalMax],\"ticks\":5,\"fixed\":3,\"height\":_vm.chartHeight,\"strokeColor\":this.$vuetify.dark ? 'white' : '#6d6d6d'}})],1):_vm._e(),_vm._v(\" \"),(_vm.extendedArea.active)?_c('g',{attrs:{\"transform\":(\"translate(\" + (_vm.extendedArea.el.x) + \", \" + (_vm.extendedArea.el.y) + \")\")}},[_c('rect',{attrs:{\"fill\":\"#ffffff17\",\"width\":_vm.extendedArea.el.w,\"height\":_vm.extendedArea.el.h},on:{\"mousemove\":_vm.moveExtendedArea,\"mousedown\":function($event){if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }_vm.extendedArea.el.draggable = true},\"mouseup\":function($event){_vm.extendedArea.el.draggable = false},\"mouseout\":function($event){_vm.extendedArea.el.draggable = false}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w,\"cy\":_vm.extendedArea.el.h / 2,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.w += $event.movementX}}}),_vm._v(\" \"),_c('circle',{attrs:{\"cx\":_vm.extendedArea.el.w / 2,\"cy\":_vm.extendedArea.el.h,\"r\":\"15\",\"stroke\":\"black\",\"fill\":\"grey\"},on:{\"mousemove\":function($event){_vm.extendedArea.el.h += $event.movementY}}})]):_vm._e()]),_vm._v(\" \"),_c('svg',{class:_vm.background,attrs:{\"viewBox\":((_vm.extendedArea.el.x) + \" \" + (_vm.extendedArea.el.y) + \" \" + (_vm.extendedArea.el.w) + \" \" + (_vm.extendedArea.el.h)),\"width\":\"100%\",\"height\":\"300\",\"preserveAspectRatio\":\"xMidYMid slice\"},domProps:{\"innerHTML\":_vm._s(_vm.extendedArea.value)}})],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-58e2ba42\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/graph.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-58e2ba42\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./graph.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./graph.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-58e2ba42\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./graph.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/graph.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// src/view/homeView.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-container',{attrs:{\"fluid\":\"\",\"grid-list-md\":\"\"}},[_c('v-toolbar',{attrs:{\"dense\":\"\",\"app\":\"\"}},[_c('span',{staticClass:\"mt-3\"},[_c('v-switch',{on:{\"change\":function($event){_vm.$emit('toggleTheme', _vm.dark)}},model:{value:(_vm.dark),callback:function ($$v) {_vm.dark=$$v},expression:\"dark\"}})],1),_vm._v(\" \"),(!_vm.dark)?_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}):_c('img',{staticClass:\"pa-1\",attrs:{\"src\":\"static/img/logo_dark.svg\",\"height\":\"70%\",\"alt\":\"Time Cop\"}}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-btn',{attrs:{\"flat\":\"\",\"color\":\"blue\"},on:{\"click\":function($event){_vm.toggleDataVisibility = !_vm.toggleDataVisibility}}},[_vm._v(\"\\n data\\n \"),(_vm.toggleDataVisibility)?_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility\")]):_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\"visibility_off\")])],1)],1),_vm._v(\" \"),_c('v-layout',{attrs:{\"wrap\":\"\"}},[_c('v-flex',{class:_vm.toggleDataVisibility ? 'xs8' : 'xs12'},[_c('t-graph-2d',{attrs:{\"dataSet\":_vm.response,\"toggleSize\":_vm.toggleDataVisibility,\"height\":350,\"margin-left\":5,\"background\":_vm.dark ? 'grey darken-3': 'grey lighten-3'}})],1),_vm._v(\" \"),_c('v-flex',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.toggleDataVisibility),expression:\"toggleDataVisibility\"}],attrs:{\"xs4\":\"\"}},[_c('t-form',{staticClass:\"mb-4\",on:{\"response\":_vm.showResponse}}),_vm._v(\" \"),_c('t-json',{attrs:{\"json\":_vm.response.prediction}})],1)],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-04efdfce\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/view/homeView.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./homeView.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./homeView.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-04efdfce\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./homeView.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/view/homeView.vue\n// module id = null\n// module chunks = ","import Vue from 'vue'\nimport Router from 'vue-router'\nimport home from '@/view/homeView'\n\nVue.use(Router)\n\nexport default new Router({\n routes: [\n {\n path: '/',\n name: 'home',\n component: home\n }\n ]\n})\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/index.js","import Vue from 'vue'\nimport App from './App'\nimport router from './router'\nimport Vuetify from 'vuetify'\nimport VueResource from 'vue-resource'\n// import chartConstructor from './constructor/2d_graph'\nimport chart2dConstructor from 'vue-chart2d-constructor'\nimport 'vuetify/dist/vuetify.min.css'\n\nVue.use(Vuetify)\n\nVue.config.productionTip = false\nVue.use(VueResource)\nVue.http.headers.common['content-type'] = 'application/json'\nVue.use(chart2dConstructor)\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n render: h => h(App)\n})\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.js","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-y.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"end\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\"}},[_c('line',{attrs:{\"y1\":_vm.height}}),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(0, \" + (i * (_vm.height/(_vm.ticksList.length - 1))) + \")\")}},[_c('line',{attrs:{\"x2\":\"-6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"x\":\"-9\",\"dy\":\"0.32em\"}},[_vm._v(_vm._s(tick))])])}),_vm._v(\" \"),_c('text',{attrs:{\"transform\":\"rotate(-90)\",\"y\":\"6\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-35c15ce6\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-y.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-35c15ce6\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-y.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-y.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cPath.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('path',{attrs:{\"fill\":\"none\",\"stroke\":_vm.color,\"stroke-linejoin\":\"round\",\"stroke-linecap\":\"round\",\"stroke-width\":_vm.strokeWidth,\"stroke-dasharray\":_vm.dasharray,\"d\":_vm.points}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-58b941c4\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cPath.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-58b941c4\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cPath.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cPath.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cAxis-x.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',{attrs:{\"text-anchor\":\"middle\",\"fill\":_vm.strokeColor,\"stroke\":_vm.strokeColor,\"stroke-width\":\"1\",\"transform\":(\"translate(0, \" + _vm.height + \")\")}},[(_vm.ticksList && _vm.ticksList.length > 0)?_c('line',{attrs:{\"x1\":_vm.ticksList[0].position,\"x2\":_vm.ticksList[_vm.ticksList.length - 1].position}}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.ticksList),function(tick,i){return _c('g',{key:'tick' + i,attrs:{\"transform\":(\"translate(\" + (tick.position) + \", 0)\")}},[_c('line',{attrs:{\"y2\":\"6\"}}),_vm._v(\" \"),_c('text',{attrs:{\"stroke-width\":\"0.1\",\"y\":\"9\",\"dy\":\"0.71em\"}},[_vm._v(_vm._s(tick.value))])])}),_vm._v(\" \"),_c('text',{attrs:{\"x\":_vm.ticksList[0].position,\"y\":\"-25\",\"dx\":\"-0.71em\",\"dy\":\"0.71em\",\"stroke-width\":\"0.1\"}},[_vm._v(_vm._s(_vm.label))])],2)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-69a54ebe\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cAxis-x.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-69a54ebe\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cAxis-x.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cAxis-x.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cBars.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('g',_vm._l((_vm.list),function(item,i){return _c('rect',{key:i,attrs:{\"x\":i * (_vm.width / _vm.list.length),\"y\":item.v,\"width\":30,\"height\":_vm.height - item.v,\"fill\":\"green\"}})}))}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-65db09f9\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cBars.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-65db09f9\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cBars.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cBars.vue\n// module id = null\n// module chunks = ","\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// node_modules/vue-chart2d-constructor/components/cCircle.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('circle',{attrs:{\"cx\":_vm.x,\"cy\":_vm.y,\"r\":_vm.r,\"stroke\":_vm.strokeColor,\"stroke-width\":_vm.strokeWidth,\"fill\":_vm.color}})}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-10fc018e\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = ","var normalizeComponent = require(\"!../../vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\nimport __vue_script__ from \"!!babel-loader!../../vue-loader/lib/selector?type=script&index=0!./cCircle.vue\"\n/* template */\nimport __vue_template__ from \"!!../../vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-10fc018e\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../vue-loader/lib/selector?type=template&index=0!./cCircle.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = null\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-chart2d-constructor/components/cCircle.vue\n// module id = null\n// module chunks = "],"sourceRoot":""} \ No newline at end of file diff --git a/web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js.map b/web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js.map index bd64582..4468ba7 100644 --- a/web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js.map +++ b/web_test/production/static/js/manifest.3ad1d5771e9b13dbdad2.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap 295af5a631e0716cb486"],"names":["parentJsonpFunction","window","chunkIds","moreModules","executeModules","moduleId","chunkId","result","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","shift","__webpack_require__","s","installedModules","2","exports","module","l","m","c","d","name","getter","o","defineProperty","configurable","enumerable","get","n","__esModule","object","property","p","oe","err","console","error"],"mappings":"aACA,IAAAA,EAAAC,OAAA,aACAA,OAAA,sBAAAC,EAAAC,EAAAC,GAIA,IADA,IAAAC,EAAAC,EAAAC,EAAAC,EAAA,EAAAC,KACQD,EAAAN,EAAAQ,OAAoBF,IAC5BF,EAAAJ,EAAAM,GACAG,EAAAL,IACAG,EAAAG,KAAAD,EAAAL,GAAA,IAEAK,EAAAL,GAAA,EAEA,IAAAD,KAAAF,EACAU,OAAAC,UAAAC,eAAAC,KAAAb,EAAAE,KACAY,EAAAZ,GAAAF,EAAAE,IAIA,IADAL,KAAAE,EAAAC,EAAAC,GACAK,EAAAC,QACAD,EAAAS,OAAAT,GAEA,GAAAL,EACA,IAAAI,EAAA,EAAYA,EAAAJ,EAAAM,OAA2BF,IACvCD,EAAAY,IAAAC,EAAAhB,EAAAI,IAGA,OAAAD,GAIA,IAAAc,KAGAV,GACAW,EAAA,GAIA,SAAAH,EAAAd,GAGA,GAAAgB,EAAAhB,GACA,OAAAgB,EAAAhB,GAAAkB,QAGA,IAAAC,EAAAH,EAAAhB,IACAG,EAAAH,EACAoB,GAAA,EACAF,YAUA,OANAN,EAAAZ,GAAAW,KAAAQ,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAAT,EAGAE,EAAAQ,EAAAN,EAGAF,EAAAS,EAAA,SAAAL,EAAAM,EAAAC,GACAX,EAAAY,EAAAR,EAAAM,IACAhB,OAAAmB,eAAAT,EAAAM,GACAI,cAAA,EACAC,YAAA,EACAC,IAAAL,KAMAX,EAAAiB,EAAA,SAAAZ,GACA,IAAAM,EAAAN,KAAAa,WACA,WAA2B,OAAAb,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAS,EAAAE,EAAA,IAAAA,GACAA,GAIAX,EAAAY,EAAA,SAAAO,EAAAC,GAAsD,OAAA1B,OAAAC,UAAAC,eAAAC,KAAAsB,EAAAC,IAGtDpB,EAAAqB,EAAA,KAGArB,EAAAsB,GAAA,SAAAC,GAA8D,MAApBC,QAAAC,MAAAF,GAAoBA","file":"static/js/manifest.3ad1d5771e9b13dbdad2.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tvar parentJsonpFunction = window[\"webpackJsonp\"];\n \twindow[\"webpackJsonp\"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [], result;\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n \t\tif(executeModules) {\n \t\t\tfor(i=0; i < executeModules.length; i++) {\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = executeModules[i]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t};\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// objects to store loaded and loading chunks\n \tvar installedChunks = {\n \t\t2: 0\n \t};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"./\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 295af5a631e0716cb486"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap c35f6bb453dcfce10b29"],"names":["parentJsonpFunction","window","chunkIds","moreModules","executeModules","moduleId","chunkId","result","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","shift","__webpack_require__","s","installedModules","2","exports","module","l","m","c","d","name","getter","o","defineProperty","configurable","enumerable","get","n","__esModule","object","property","p","oe","err","console","error"],"mappings":"aACA,IAAAA,EAAAC,OAAA,aACAA,OAAA,sBAAAC,EAAAC,EAAAC,GAIA,IADA,IAAAC,EAAAC,EAAAC,EAAAC,EAAA,EAAAC,KACQD,EAAAN,EAAAQ,OAAoBF,IAC5BF,EAAAJ,EAAAM,GACAG,EAAAL,IACAG,EAAAG,KAAAD,EAAAL,GAAA,IAEAK,EAAAL,GAAA,EAEA,IAAAD,KAAAF,EACAU,OAAAC,UAAAC,eAAAC,KAAAb,EAAAE,KACAY,EAAAZ,GAAAF,EAAAE,IAIA,IADAL,KAAAE,EAAAC,EAAAC,GACAK,EAAAC,QACAD,EAAAS,OAAAT,GAEA,GAAAL,EACA,IAAAI,EAAA,EAAYA,EAAAJ,EAAAM,OAA2BF,IACvCD,EAAAY,IAAAC,EAAAhB,EAAAI,IAGA,OAAAD,GAIA,IAAAc,KAGAV,GACAW,EAAA,GAIA,SAAAH,EAAAd,GAGA,GAAAgB,EAAAhB,GACA,OAAAgB,EAAAhB,GAAAkB,QAGA,IAAAC,EAAAH,EAAAhB,IACAG,EAAAH,EACAoB,GAAA,EACAF,YAUA,OANAN,EAAAZ,GAAAW,KAAAQ,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAAT,EAGAE,EAAAQ,EAAAN,EAGAF,EAAAS,EAAA,SAAAL,EAAAM,EAAAC,GACAX,EAAAY,EAAAR,EAAAM,IACAhB,OAAAmB,eAAAT,EAAAM,GACAI,cAAA,EACAC,YAAA,EACAC,IAAAL,KAMAX,EAAAiB,EAAA,SAAAZ,GACA,IAAAM,EAAAN,KAAAa,WACA,WAA2B,OAAAb,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAS,EAAAE,EAAA,IAAAA,GACAA,GAIAX,EAAAY,EAAA,SAAAO,EAAAC,GAAsD,OAAA1B,OAAAC,UAAAC,eAAAC,KAAAsB,EAAAC,IAGtDpB,EAAAqB,EAAA,KAGArB,EAAAsB,GAAA,SAAAC,GAA8D,MAApBC,QAAAC,MAAAF,GAAoBA","file":"static/js/manifest.3ad1d5771e9b13dbdad2.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tvar parentJsonpFunction = window[\"webpackJsonp\"];\n \twindow[\"webpackJsonp\"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [], result;\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n \t\tif(executeModules) {\n \t\t\tfor(i=0; i < executeModules.length; i++) {\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = executeModules[i]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t};\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// objects to store loaded and loading chunks\n \tvar installedChunks = {\n \t\t2: 0\n \t};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"./\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap c35f6bb453dcfce10b29"],"sourceRoot":""} \ No newline at end of file