From 5f9939ebfb7e4b81240c19f0b1beb6d6a9cf116e Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Mon, 30 Nov 2020 21:16:32 +0000 Subject: [PATCH 01/16] [web-src] use smartpl to retrieve recently added albums --- web-src/src/pages/PageBrowseRecentlyAdded.vue | 104 +++++++++++++++++- 1 file changed, 98 insertions(+), 6 deletions(-) diff --git a/web-src/src/pages/PageBrowseRecentlyAdded.vue b/web-src/src/pages/PageBrowseRecentlyAdded.vue index 78442793..bc43b838 100644 --- a/web-src/src/pages/PageBrowseRecentlyAdded.vue +++ b/web-src/src/pages/PageBrowseRecentlyAdded.vue @@ -5,10 +5,47 @@ + + + + + + + + + + + + + + + + + + + @@ -25,13 +62,13 @@ const browseData = { load: function (to) { return webapi.search({ type: 'album', - expression: 'media_kind is music having track_count > 3 order by time_added desc', - limit: 500 + expression: 'time_added after today and media_kind is music order by time_added desc', + limit: 100 }) }, set: function (vm, response) { - vm.recently_added = response.data.albums + vm.recently_added_today = response.data.albums } } @@ -42,7 +79,62 @@ export default { data () { return { - recently_added: {} + recently_added_today: { items: [] }, + recently_added_week: { items: [] }, + recently_added_month: { items: [] }, + recently_added_older: { items: [] }, + + limit: 100 + } + }, + + created () { + if (this.recently_added < this.limit) { + webapi.search({ + type: 'album', + expression: 'time_added after this week and media_kind is music order by time_added desc', + limit: this.limit - this.recently_added + }).then(({ data }) => { + this.recently_added_week = data.albums + + if (this.recently_added < this.limit) { + webapi.search({ + type: 'album', + expression: 'time_added after last month and media_kind is music order by time_added desc', + limit: this.limit - this.recently_added + }).then(({ data }) => { + this.recently_added_month = data.albums + + if (this.recently_added < this.limit) { + webapi.search({ + type: 'album', + expression: 'time_added before last month and media_kind is music order by time_added desc', + limit: this.limit - this.recently_added + }).then(({ data }) => { + this.recently_added_older = data.albums + }) + } + }) + } + }) + } + }, + + computed: { + show_recent_today () { + return this.recently_added_today.items.length > 0 + }, + show_recent_week () { + return this.recently_added_week.items.length > 0 + }, + show_recent_month () { + return this.recently_added_month.items.length > 0 + }, + show_recent_older () { + return this.recently_added_older.items.length > 0 + }, + recently_added () { + return this.recently_added_today.items.length + this.recently_added_week.items.length + this.recently_added_month.items.length + this.recently_added_older.items.length } } } From a9e365eb3e9999edda23a41c791de6af4d9fc943 Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Tue, 1 Dec 2020 11:39:28 +0000 Subject: [PATCH 02/16] [web-src] modal for multiple albums --- web-src/src/components/ModalDialogAlbums.vue | 86 ++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 web-src/src/components/ModalDialogAlbums.vue diff --git a/web-src/src/components/ModalDialogAlbums.vue b/web-src/src/components/ModalDialogAlbums.vue new file mode 100644 index 00000000..20d6083d --- /dev/null +++ b/web-src/src/components/ModalDialogAlbums.vue @@ -0,0 +1,86 @@ + + + + + From 7145db33692c3d0bd474ef953005c1a26eb0cd9a Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Tue, 1 Dec 2020 12:07:48 +0000 Subject: [PATCH 03/16] [web-src] recently added - add modal play/add/add next for sections --- web-src/src/pages/PageBrowseRecentlyAdded.vue | 42 +++++++++++++++++-- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/web-src/src/pages/PageBrowseRecentlyAdded.vue b/web-src/src/pages/PageBrowseRecentlyAdded.vue index bc43b838..e7c1d32f 100644 --- a/web-src/src/pages/PageBrowseRecentlyAdded.vue +++ b/web-src/src/pages/PageBrowseRecentlyAdded.vue @@ -14,8 +14,16 @@

Today

{{ recently_added_today.items.length }} albums

+ @@ -24,8 +32,16 @@

This Week

{{ recently_added_week.items.length }} albums

+ @@ -34,8 +50,16 @@

This Month

{{ recently_added_month.items.length }} albums

+ @@ -44,8 +68,16 @@

Older

{{ recently_added_older.items.length }} albums

+ @@ -56,6 +88,7 @@ import { LoadDataBeforeEnterMixin } from './mixin' import ContentWithHeading from '@/templates/ContentWithHeading' import TabsMusic from '@/components/TabsMusic' import ListAlbums from '@/components/ListAlbums' +import ModalDialogAlbums from '@/components/ModalDialogAlbums' import webapi from '@/webapi' const browseData = { @@ -75,16 +108,19 @@ const browseData = { export default { name: 'PageBrowseType', mixins: [LoadDataBeforeEnterMixin(browseData)], - components: { ContentWithHeading, TabsMusic, ListAlbums }, - + components: { ContentWithHeading, TabsMusic, ListAlbums, ModalDialogAlbums }, data () { return { recently_added_today: { items: [] }, recently_added_week: { items: [] }, recently_added_month: { items: [] }, recently_added_older: { items: [] }, + limit: 100, - limit: 100 + show_modal_today: false, + show_modal_week: false, + show_modal_month: false, + show_modal_older: false } }, From eacb6a17eb12fd29d0d98fd11599d9fc089c1b37 Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Tue, 1 Dec 2020 19:37:30 +0000 Subject: [PATCH 04/16] [web-src] Settings int field hanlder --- web-src/src/components/SettingsIntfield.vue | 116 ++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 web-src/src/components/SettingsIntfield.vue diff --git a/web-src/src/components/SettingsIntfield.vue b/web-src/src/components/SettingsIntfield.vue new file mode 100644 index 00000000..7d8aef04 --- /dev/null +++ b/web-src/src/components/SettingsIntfield.vue @@ -0,0 +1,116 @@ + + + + + From 5eeadd3f1b47acd36b01c540ab1098a3c6998394 Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Tue, 1 Dec 2020 15:58:40 +0000 Subject: [PATCH 05/16] [settings] add webinterface.recently_added_limit --- src/settings.c | 1 + web-src/src/pages/SettingsPageWebinterface.vue | 15 ++++++++++++++- web-src/src/store/index.js | 10 ++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/src/settings.c b/src/settings.c index 3b667e7e..c2649d42 100644 --- a/src/settings.c +++ b/src/settings.c @@ -37,6 +37,7 @@ static struct settings_option webinterface_options[] = { "show_menu_item_radio", SETTINGS_TYPE_BOOL, { false } }, { "show_menu_item_files", SETTINGS_TYPE_BOOL, { true } }, { "show_menu_item_search", SETTINGS_TYPE_BOOL, { true } }, + { "recently_added_limit", SETTINGS_TYPE_INT, { 100 } }, }; static struct settings_option artwork_options[] = diff --git a/web-src/src/pages/SettingsPageWebinterface.vue b/web-src/src/pages/SettingsPageWebinterface.vue index 5cb99cc2..5df5fd11 100644 --- a/web-src/src/pages/SettingsPageWebinterface.vue +++ b/web-src/src/pages/SettingsPageWebinterface.vue @@ -80,6 +80,18 @@ + + + + + + @@ -88,10 +100,11 @@ import ContentWithHeading from '@/templates/ContentWithHeading' import TabsSettings from '@/components/TabsSettings' import SettingsCheckbox from '@/components/SettingsCheckbox' import SettingsTextfield from '@/components/SettingsTextfield' +import SettingsIntfield from '@/components/SettingsIntfield' export default { name: 'SettingsPageWebinterface', - components: { ContentWithHeading, TabsSettings, SettingsCheckbox, SettingsTextfield }, + components: { ContentWithHeading, TabsSettings, SettingsCheckbox, SettingsTextfield, SettingsIntfield }, computed: { settings_option_show_composer_now_playing () { diff --git a/web-src/src/store/index.js b/web-src/src/store/index.js index f46fb444..65c631c0 100644 --- a/web-src/src/store/index.js +++ b/web-src/src/store/index.js @@ -77,6 +77,16 @@ export default new Vuex.Store({ return null }, + settings_option_recently_added_limit: (state, getters) => { + if (getters.settings_webinterface) { + const option = getters.settings_webinterface.options.find(elem => elem.name === 'recently_added_limit') + if (option) { + return option.value + } + } + return 100 + }, + settings_option_show_composer_now_playing: (state, getters) => { if (getters.settings_webinterface) { const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_now_playing') From 08397058f176e794e78a8f3f5e691087ddda841b Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Tue, 1 Dec 2020 16:50:13 +0000 Subject: [PATCH 06/16] [web-src] recently added - retreive all data in one async go --- web-src/src/pages/PageBrowseRecentlyAdded.vue | 67 ++++++++----------- 1 file changed, 28 insertions(+), 39 deletions(-) diff --git a/web-src/src/pages/PageBrowseRecentlyAdded.vue b/web-src/src/pages/PageBrowseRecentlyAdded.vue index e7c1d32f..4d3c8f1e 100644 --- a/web-src/src/pages/PageBrowseRecentlyAdded.vue +++ b/web-src/src/pages/PageBrowseRecentlyAdded.vue @@ -93,15 +93,36 @@ import webapi from '@/webapi' const browseData = { load: function (to) { - return webapi.search({ - type: 'album', - expression: 'time_added after today and media_kind is music order by time_added desc', - limit: 100 - }) + const recentlyAddedLimit = 100 + return Promise.all([ + webapi.search({ + type: 'album', + expression: 'time_added after today and media_kind is music order by time_added desc', + limit: recentlyAddedLimit + }), + webapi.search({ + type: 'album', + expression: 'time_added after this week and media_kind is music order by time_added desc', + limit: recentlyAddedLimit + }), + webapi.search({ + type: 'album', + expression: 'time_added after last month and media_kind is music order by time_added desc', + limit: recentlyAddedLimit + }), + webapi.search({ + type: 'album', + expression: 'time_added before last month and media_kind is music order by time_added desc', + limit: recentlyAddedLimit + }) + ]) }, set: function (vm, response) { - vm.recently_added_today = response.data.albums + vm.recently_added_today = response[0].data.albums + vm.recently_added_week = response[1].data.albums + vm.recently_added_month = response[2].data.albums + vm.recently_added_older = response[3].data.albums } } @@ -109,13 +130,13 @@ export default { name: 'PageBrowseType', mixins: [LoadDataBeforeEnterMixin(browseData)], components: { ContentWithHeading, TabsMusic, ListAlbums, ModalDialogAlbums }, + data () { return { recently_added_today: { items: [] }, recently_added_week: { items: [] }, recently_added_month: { items: [] }, recently_added_older: { items: [] }, - limit: 100, show_modal_today: false, show_modal_week: false, @@ -124,38 +145,6 @@ export default { } }, - created () { - if (this.recently_added < this.limit) { - webapi.search({ - type: 'album', - expression: 'time_added after this week and media_kind is music order by time_added desc', - limit: this.limit - this.recently_added - }).then(({ data }) => { - this.recently_added_week = data.albums - - if (this.recently_added < this.limit) { - webapi.search({ - type: 'album', - expression: 'time_added after last month and media_kind is music order by time_added desc', - limit: this.limit - this.recently_added - }).then(({ data }) => { - this.recently_added_month = data.albums - - if (this.recently_added < this.limit) { - webapi.search({ - type: 'album', - expression: 'time_added before last month and media_kind is music order by time_added desc', - limit: this.limit - this.recently_added - }).then(({ data }) => { - this.recently_added_older = data.albums - }) - } - }) - } - }) - } - }, - computed: { show_recent_today () { return this.recently_added_today.items.length > 0 From 5fa2955bff9232a788a54656473f15a2f23046ab Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Tue, 1 Dec 2020 16:50:58 +0000 Subject: [PATCH 07/16] [web-src] use settings to determine the number of albums to retreive on recently added page --- web-src/src/pages/PageBrowseRecentlyAdded.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web-src/src/pages/PageBrowseRecentlyAdded.vue b/web-src/src/pages/PageBrowseRecentlyAdded.vue index 4d3c8f1e..5c5b6a7e 100644 --- a/web-src/src/pages/PageBrowseRecentlyAdded.vue +++ b/web-src/src/pages/PageBrowseRecentlyAdded.vue @@ -90,10 +90,11 @@ import TabsMusic from '@/components/TabsMusic' import ListAlbums from '@/components/ListAlbums' import ModalDialogAlbums from '@/components/ModalDialogAlbums' import webapi from '@/webapi' +import store from '@/store' const browseData = { load: function (to) { - const recentlyAddedLimit = 100 + const recentlyAddedLimit = store.getters.settings_option_recently_added_limit return Promise.all([ webapi.search({ type: 'album', From 52d765900c69a58a5313959bec155fad64620d22 Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Tue, 1 Dec 2020 17:49:09 +0000 Subject: [PATCH 08/16] [web-src] recently added - only show up to requested limit on albums --- web-src/src/pages/PageBrowseRecentlyAdded.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/web-src/src/pages/PageBrowseRecentlyAdded.vue b/web-src/src/pages/PageBrowseRecentlyAdded.vue index 5c5b6a7e..7459313a 100644 --- a/web-src/src/pages/PageBrowseRecentlyAdded.vue +++ b/web-src/src/pages/PageBrowseRecentlyAdded.vue @@ -124,6 +124,12 @@ const browseData = { vm.recently_added_week = response[1].data.albums vm.recently_added_month = response[2].data.albums vm.recently_added_older = response[3].data.albums + + if (vm.recently_added_older.items.length) { + const keep = vm.recently_added_older.items.length - store.getters.settings_option_recently_added_limit - vm.recently_added_month.items.length + vm.recently_added_older.items.splice(keep) + vm.recently_added_older.total = keep + } } } @@ -160,7 +166,7 @@ export default { return this.recently_added_older.items.length > 0 }, recently_added () { - return this.recently_added_today.items.length + this.recently_added_week.items.length + this.recently_added_month.items.length + this.recently_added_older.items.length + return this.recently_added_older.items.length + this.recently_added_month.items.length } } } From b985634924464beb88b9361a64b6875527691326 Mon Sep 17 00:00:00 2001 From: whatdoineed2do/Ray Date: Fri, 18 Dec 2020 21:15:27 +0000 Subject: [PATCH 09/16] [web-src] recently added - optimise fetch of 'older' albums in mounted() when mixin async data known --- web-src/src/pages/PageBrowseRecentlyAdded.vue | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/web-src/src/pages/PageBrowseRecentlyAdded.vue b/web-src/src/pages/PageBrowseRecentlyAdded.vue index 7459313a..ca9ec77e 100644 --- a/web-src/src/pages/PageBrowseRecentlyAdded.vue +++ b/web-src/src/pages/PageBrowseRecentlyAdded.vue @@ -110,11 +110,6 @@ const browseData = { type: 'album', expression: 'time_added after last month and media_kind is music order by time_added desc', limit: recentlyAddedLimit - }), - webapi.search({ - type: 'album', - expression: 'time_added before last month and media_kind is music order by time_added desc', - limit: recentlyAddedLimit }) ]) }, @@ -123,13 +118,6 @@ const browseData = { vm.recently_added_today = response[0].data.albums vm.recently_added_week = response[1].data.albums vm.recently_added_month = response[2].data.albums - vm.recently_added_older = response[3].data.albums - - if (vm.recently_added_older.items.length) { - const keep = vm.recently_added_older.items.length - store.getters.settings_option_recently_added_limit - vm.recently_added_month.items.length - vm.recently_added_older.items.splice(keep) - vm.recently_added_older.total = keep - } } } @@ -152,6 +140,19 @@ export default { } }, + mounted () { + const more = store.getters.settings_option_recently_added_limit - this.recently_added_month.items.length + if (more) { + webapi.search({ + type: 'album', + expression: 'time_added before last month and media_kind is music order by time_added desc', + limit: more + }).then(({ data }) => { + this.recently_added_older = data.albums + }) + } + }, + computed: { show_recent_today () { return this.recently_added_today.items.length > 0 From 4f5e736b6b696b66c588f1450d0f1bb91ce0f5e0 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 10 Jan 2021 07:46:12 +0100 Subject: [PATCH 10/16] [web-src] Update dependencies --- web-src/package-lock.json | 2302 +++++++++++++++++++------------------ web-src/package.json | 26 +- 2 files changed, 1176 insertions(+), 1152 deletions(-) diff --git a/web-src/package-lock.json b/web-src/package-lock.json index 4c525e55..6b349d0c 100644 --- a/web-src/package-lock.json +++ b/web-src/package-lock.json @@ -20,82 +20,81 @@ "dev": true }, "@babel/core": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.7.tgz", - "integrity": "sha512-tRKx9B53kJe8NCGGIxEQb2Bkr0riUIEuN7Sc1fxhs5H8lKlCWUvQCSNMVIB0Meva7hcbCRJ76de15KoLltdoqw==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz", + "integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==", "dev": true, "requires": { "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", + "@babel/generator": "^7.12.10", "@babel/helper-module-transforms": "^7.12.1", "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.7", + "@babel/parser": "^7.12.10", "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.7", - "@babel/types": "^7.12.7", + "@babel/traverse": "^7.12.10", + "@babel/types": "^7.12.10", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.1", "json5": "^2.1.2", "lodash": "^4.17.19", - "resolve": "^1.3.2", "semver": "^5.4.1", "source-map": "^0.5.0" }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/generator": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz", - "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", "dev": true, "requires": { - "@babel/types": "^7.12.5", + "@babel/types": "^7.12.11", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -110,9 +109,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -127,29 +126,29 @@ } }, "@babel/traverse": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.7.tgz", - "integrity": "sha512-nMWaqsQEeSvMNypswUDzjqQ+0rR6pqCtoQpsqGJC4/Khm9cISwPTSpai57F6/jDaOoEGz8yE/WxcO3PV6tKSmQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", + "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7", + "@babel/code-frame": "^7.12.11", + "@babel/generator": "^7.12.11", + "@babel/helper-function-name": "^7.12.11", + "@babel/helper-split-export-declaration": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/types": "^7.12.12", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.19" } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -182,27 +181,27 @@ } }, "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz", + "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -220,18 +219,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -264,47 +263,47 @@ }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -319,9 +318,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -336,12 +335,12 @@ } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -370,38 +369,38 @@ }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -416,9 +415,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -433,12 +432,12 @@ } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -455,18 +454,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -529,18 +528,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -557,18 +556,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -585,18 +584,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -621,58 +620,58 @@ }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/generator": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz", - "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", "dev": true, "requires": { - "@babel/types": "^7.12.5", + "@babel/types": "^7.12.11", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -687,9 +686,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -704,29 +703,29 @@ } }, "@babel/traverse": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.7.tgz", - "integrity": "sha512-nMWaqsQEeSvMNypswUDzjqQ+0rR6pqCtoQpsqGJC4/Khm9cISwPTSpai57F6/jDaOoEGz8yE/WxcO3PV6tKSmQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", + "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7", + "@babel/code-frame": "^7.12.11", + "@babel/generator": "^7.12.11", + "@babel/helper-function-name": "^7.12.11", + "@babel/helper-split-export-declaration": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/types": "^7.12.12", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.19" } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -734,27 +733,27 @@ } }, "@babel/helper-optimise-call-expression": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz", - "integrity": "sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz", + "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==", "dev": true, "requires": { - "@babel/types": "^7.12.7" + "@babel/types": "^7.12.10" }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -779,18 +778,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -798,70 +797,70 @@ } }, "@babel/helper-replace-supers": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz", - "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz", + "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==", "dev": true, "requires": { - "@babel/helper-member-expression-to-functions": "^7.12.1", - "@babel/helper-optimise-call-expression": "^7.10.4", - "@babel/traverse": "^7.12.5", - "@babel/types": "^7.12.5" + "@babel/helper-member-expression-to-functions": "^7.12.7", + "@babel/helper-optimise-call-expression": "^7.12.10", + "@babel/traverse": "^7.12.10", + "@babel/types": "^7.12.11" }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/generator": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz", - "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", "dev": true, "requires": { - "@babel/types": "^7.12.5", + "@babel/types": "^7.12.11", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -876,9 +875,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -893,29 +892,29 @@ } }, "@babel/traverse": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.7.tgz", - "integrity": "sha512-nMWaqsQEeSvMNypswUDzjqQ+0rR6pqCtoQpsqGJC4/Khm9cISwPTSpai57F6/jDaOoEGz8yE/WxcO3PV6tKSmQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", + "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7", + "@babel/code-frame": "^7.12.11", + "@babel/generator": "^7.12.11", + "@babel/helper-function-name": "^7.12.11", + "@babel/helper-split-export-declaration": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/types": "^7.12.12", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.19" } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -932,18 +931,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -960,18 +959,18 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -1007,9 +1006,9 @@ "dev": true }, "@babel/helper-validator-option": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz", - "integrity": "sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz", + "integrity": "sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==", "dev": true }, "@babel/helper-wrap-function": { @@ -1025,58 +1024,58 @@ }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/generator": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz", - "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", "dev": true, "requires": { - "@babel/types": "^7.12.5", + "@babel/types": "^7.12.11", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -1091,9 +1090,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -1108,29 +1107,29 @@ } }, "@babel/traverse": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.7.tgz", - "integrity": "sha512-nMWaqsQEeSvMNypswUDzjqQ+0rR6pqCtoQpsqGJC4/Khm9cISwPTSpai57F6/jDaOoEGz8yE/WxcO3PV6tKSmQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", + "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7", + "@babel/code-frame": "^7.12.11", + "@babel/generator": "^7.12.11", + "@babel/helper-function-name": "^7.12.11", + "@babel/helper-split-export-declaration": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/types": "^7.12.12", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.19" } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -1149,58 +1148,58 @@ }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/generator": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz", - "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", "dev": true, "requires": { - "@babel/types": "^7.12.5", + "@babel/types": "^7.12.11", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -1215,9 +1214,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -1232,29 +1231,29 @@ } }, "@babel/traverse": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.7.tgz", - "integrity": "sha512-nMWaqsQEeSvMNypswUDzjqQ+0rR6pqCtoQpsqGJC4/Khm9cISwPTSpai57F6/jDaOoEGz8yE/WxcO3PV6tKSmQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", + "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7", + "@babel/code-frame": "^7.12.11", + "@babel/generator": "^7.12.11", + "@babel/helper-function-name": "^7.12.11", + "@babel/helper-split-export-declaration": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/types": "^7.12.12", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.19" } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -1279,9 +1278,9 @@ "dev": true }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz", - "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz", + "integrity": "sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1300,9 +1299,9 @@ } }, "@babel/plugin-proposal-decorators": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", - "integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.12.tgz", + "integrity": "sha512-fhkE9lJYpw2mjHelBpM2zCbaA11aov2GJs7q4cFaXNrWx0H3bW58H9Esy2rdtYOghFBEYUDRIpvlgi+ZD+AvvQ==", "dev": true, "requires": { "@babel/helper-create-class-features-plugin": "^7.12.1", @@ -1578,9 +1577,9 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz", - "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz", + "integrity": "sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -1603,47 +1602,47 @@ }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -1658,9 +1657,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -1675,12 +1674,12 @@ } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -1754,38 +1753,38 @@ }, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.10" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/highlight": { @@ -1800,9 +1799,9 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/template": { @@ -1817,12 +1816,12 @@ } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -1884,9 +1883,9 @@ }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true } } @@ -1966,14 +1965,13 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", - "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.10.tgz", + "integrity": "sha512-xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-module-imports": "^7.12.5", "@babel/helper-plugin-utils": "^7.10.4", - "resolve": "^1.8.1", "semver": "^5.5.1" } }, @@ -2015,9 +2013,9 @@ } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz", - "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz", + "integrity": "sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -2043,16 +2041,16 @@ } }, "@babel/preset-env": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.7.tgz", - "integrity": "sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.11.tgz", + "integrity": "sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==", "dev": true, "requires": { "@babel/compat-data": "^7.12.7", "@babel/helper-compilation-targets": "^7.12.5", "@babel/helper-module-imports": "^7.12.5", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-validator-option": "^7.12.1", + "@babel/helper-validator-option": "^7.12.11", "@babel/plugin-proposal-async-generator-functions": "^7.12.1", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/plugin-proposal-dynamic-import": "^7.12.1", @@ -2081,7 +2079,7 @@ "@babel/plugin-transform-arrow-functions": "^7.12.1", "@babel/plugin-transform-async-to-generator": "^7.12.1", "@babel/plugin-transform-block-scoped-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.11", "@babel/plugin-transform-classes": "^7.12.1", "@babel/plugin-transform-computed-properties": "^7.12.1", "@babel/plugin-transform-destructuring": "^7.12.1", @@ -2107,28 +2105,28 @@ "@babel/plugin-transform-spread": "^7.12.1", "@babel/plugin-transform-sticky-regex": "^7.12.7", "@babel/plugin-transform-template-literals": "^7.12.1", - "@babel/plugin-transform-typeof-symbol": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.10", "@babel/plugin-transform-unicode-escapes": "^7.12.1", "@babel/plugin-transform-unicode-regex": "^7.12.1", "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.12.7", - "core-js-compat": "^3.7.0", + "@babel/types": "^7.12.11", + "core-js-compat": "^3.8.0", "semver": "^5.5.0" }, "dependencies": { "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.12.12", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", + "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -2263,9 +2261,9 @@ } }, "@eslint/eslintrc": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz", - "integrity": "sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", + "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", "dev": true, "requires": { "ajv": "^6.12.4", @@ -2290,9 +2288,9 @@ } }, "import-fresh": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz", - "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { "parent-module": "^1.0.0", @@ -2380,41 +2378,23 @@ "dev": true }, "@soda/friendly-errors-webpack-plugin": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.1.tgz", - "integrity": "sha512-cWKrGaFX+rfbMrAxVv56DzhPNqOJPZuNIS2HGMELtgGzb+vsMzyig9mml5gZ/hr2BGtSLV+dP2LUEuAL8aG2mQ==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.0.tgz", + "integrity": "sha512-RLotfx6k1+nfLacwNCenj7VnTMPxVwYKoGOcffMFoJDKM8tXzBiCN0hMHFJNnoAojduYAsxuiMm0EOMixgiRow==", "dev": true, "requires": { - "chalk": "^1.1.3", - "error-stack-parser": "^2.0.0", - "string-width": "^2.0.0" + "chalk": "^2.4.2", + "error-stack-parser": "^2.0.2", + "string-width": "^2.0.0", + "strip-ansi": "^5" }, "dependencies": { "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", "dev": true }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", @@ -2431,12 +2411,6 @@ "strip-ansi": "^4.0.0" }, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", @@ -2449,19 +2423,21 @@ } }, "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + } } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true } } }, @@ -2488,9 +2464,9 @@ } }, "@types/connect": { - "version": "3.4.33", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz", - "integrity": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==", + "version": "3.4.34", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz", + "integrity": "sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==", "dev": true, "requires": { "@types/node": "*" @@ -2519,9 +2495,9 @@ } }, "@types/express-serve-static-core": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.13.tgz", - "integrity": "sha512-RgDi5a4nuzam073lRGKTUIaL3eF2+H7LJvJ8eUnCI0wA6SNjXc44DCmWNiTLs/AZ7QlsFWZiw/gTG3nSQGL0fA==", + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.17.tgz", + "integrity": "sha512-YYlVaCni5dnHc+bLZfY908IG1+x5xuibKZMGv8srKkvtul3wUuanYvpIj9GXXoWkQbaAdR+kgX46IETKUALWNQ==", "dev": true, "requires": { "@types/node": "*", @@ -2590,9 +2566,9 @@ "dev": true }, "@types/node": { - "version": "14.14.9", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.9.tgz", - "integrity": "sha512-JsoLXFppG62tWTklIoO4knA+oDTYsmqWxHRvd4lpmfQRNhX6osheUOWETP2jMoV/2bEHuMra8Pp3Dmo/stBFcw==", + "version": "14.14.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz", + "integrity": "sha512-Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A==", "dev": true }, "@types/normalize-package-data": { @@ -2694,9 +2670,9 @@ } }, "@types/webpack-sources": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.0.0.tgz", - "integrity": "sha512-a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", + "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", "dev": true, "requires": { "@types/node": "*", @@ -2719,22 +2695,23 @@ "dev": true }, "@vue/babel-helper-vue-transform-on": { - "version": "1.0.0-rc.2", - "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0-rc.2.tgz", - "integrity": "sha512-1+7CwjQ0Kasml6rHoNQUmbISwqLNNfFVBUcZl6QBremUl296ZmLrVQPqJP5pyAAWjZke5bpI1hlj+LVVuT7Jcg==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0.tgz", + "integrity": "sha512-svFuKPoXP92TJ76ztENOglOsLjcMGUXkdeQhYDxl6KBnZCpqFjqx6RodUPWFg1bj4zsUVsfoIh1RibLO86fUUQ==", "dev": true }, "@vue/babel-plugin-jsx": { - "version": "1.0.0-rc.3", - "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.0-rc.3.tgz", - "integrity": "sha512-/Ibq0hoKsidnHWPhgRpjcjYhYcHpqEm2fiKVAPO88OXZNHGwaGgS4yXkC6TDEvlZep4mBDo+2S5T81wpbVh90Q==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.1.tgz", + "integrity": "sha512-pE1YlINZBzqaLeSNfrvo0nNvYjtWTBU+sXUrx65sLW7DL+nDCZcAVeVkMFDcpT1jIahx4hI3EzOcGZE6oLPLoA==", "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", "@babel/traverse": "^7.0.0", "@babel/types": "^7.0.0", - "@vue/babel-helper-vue-transform-on": "^1.0.0-rc.2", + "@vue/babel-helper-vue-transform-on": "^1.0.0", "camelcase": "^6.0.0", "html-tags": "^3.1.0", "svg-tags": "^1.0.0" @@ -2763,9 +2740,9 @@ } }, "@vue/babel-preset-app": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.9.tgz", - "integrity": "sha512-d2H4hFnJsGnZtJAAZIbo1dmQJ2SI1MYix1Tc9/etlnJtCDPRHeCNodCSeuLgDwnoAyT3unzyHmTtaO56KRDuOQ==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.10.tgz", + "integrity": "sha512-IHOyfWqgNNM863NjGmX6s2MIF+ILkJZardHcr7bGrxu5mNBT+p0GOGRQU4sN/adDkEQ9cyAxokm/GIeeoRrnOg==", "dev": true, "requires": { "@babel/core": "^7.11.0", @@ -2894,20 +2871,20 @@ } }, "@vue/cli-overlay": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-4.5.9.tgz", - "integrity": "sha512-E2PWv6tCdUz+eEDj2Th2oxiKmzMe02qi0PcxiNaO7oaqggmEOrp1rLgop7DWpiLDBiqUZk2x0vjK/q2Tz8z/eg==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-4.5.10.tgz", + "integrity": "sha512-BydPsWJTXHTzH8wBcN1rinwLe5QRee52sf/Tceixpn4VVZCio2k8VkNG/o6hRTA+MeGuetXOhmAz0UQfIxfX8w==", "dev": true }, "@vue/cli-plugin-babel": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.9.tgz", - "integrity": "sha512-2tzaJU5yqAfXVhg1aYyd/Yfif6brv+tDZ49D1aOk7ZgMIwH5YUa0yo5HPcPOcmfpoVoNYcpqVYRfyT4EXIYSpg==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.10.tgz", + "integrity": "sha512-vWEGj3w9mbV27WBJslCmQP1l+hmdOiCHn0hmmHOrCdELm/WK/2/iXQEsPSXujtVd7TQgiaFgvvHmHurBlC/+3w==", "dev": true, "requires": { "@babel/core": "^7.11.0", - "@vue/babel-preset-app": "^4.5.9", - "@vue/cli-shared-utils": "^4.5.9", + "@vue/babel-preset-app": "^4.5.10", + "@vue/cli-shared-utils": "^4.5.10", "babel-loader": "^8.1.0", "cache-loader": "^4.1.0", "thread-loader": "^2.1.3", @@ -2915,12 +2892,12 @@ } }, "@vue/cli-plugin-eslint": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.5.9.tgz", - "integrity": "sha512-wTsWRiRWPW5ik4bgtlh4P4h63Zgjsyvqx2FY0kcj+bSAnQGPJ3bKUOMU9KQP5EyNH6pAXMVGh2LEXK9WwJMf1w==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.5.10.tgz", + "integrity": "sha512-2ud8lurlMJCtcErjhYBcTWhu5eN79sCBGz5dHBAmtLP0k7p7xZq7/1mo2ahnZioUskYrfz94Vo9i+D3pOUMuMQ==", "dev": true, "requires": { - "@vue/cli-shared-utils": "^4.5.9", + "@vue/cli-shared-utils": "^4.5.10", "eslint-loader": "^2.2.1", "globby": "^9.2.0", "inquirer": "^7.1.0", @@ -2929,24 +2906,24 @@ } }, "@vue/cli-plugin-router": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-4.5.9.tgz", - "integrity": "sha512-eBBfbZpQ1sJrdlx8i7iReFxSnuzwmrv+s2OCT3kjBd6uWRqGnD4VihpS4srC7vZLzDQrDplumSn0a93L9Qf3wQ==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-4.5.10.tgz", + "integrity": "sha512-roiZTx2W59kTRaqNzHEnjnakP89MS+pVf3zWBlwsNXZpQuvqwFvoNfH/nBSJjqGRgZTRtCUe6vGgVPUEFYi/cg==", "dev": true, "requires": { - "@vue/cli-shared-utils": "^4.5.9" + "@vue/cli-shared-utils": "^4.5.10" } }, "@vue/cli-plugin-vuex": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.9.tgz", - "integrity": "sha512-mFNIJhYiJjzCgytkDHX00ROy5Yzl7prkZpUbeDE0biwcLteMf2s3qZVbESOQl6GcviqcfEt2f3tHQQtLNa+OLg==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.10.tgz", + "integrity": "sha512-Z5pnL3Eg2uwkKqP09NoM46/rwQCJ1j/1cZMgO4JF817O9n5AsFgV456UE6lK2cVCvIfvt7+S3HLrSPZUsYNQjQ==", "dev": true }, "@vue/cli-service": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-4.5.9.tgz", - "integrity": "sha512-E3XlfM0q+UnnjbC9rwLIWNo2umZCRwnlMJY0KOhY1hFvqisGIYzFmQQ4o01KGyTx2BZNMuQg7Kw+BZ5gyM1Wig==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-4.5.10.tgz", + "integrity": "sha512-HnVkbc+Zb6J1lu0ojuKC6aQ4PjCW2fqlJE0G9Zqg+7VsUZ2e15UVRoIXj2hcIWtQiFF6n2FDxEkvZLslht9rkg==", "dev": true, "requires": { "@intervolga/optimize-cssnano-plugin": "^1.0.5", @@ -2955,10 +2932,10 @@ "@types/minimist": "^1.2.0", "@types/webpack": "^4.0.0", "@types/webpack-dev-server": "^3.11.0", - "@vue/cli-overlay": "^4.5.9", - "@vue/cli-plugin-router": "^4.5.9", - "@vue/cli-plugin-vuex": "^4.5.9", - "@vue/cli-shared-utils": "^4.5.9", + "@vue/cli-overlay": "^4.5.10", + "@vue/cli-plugin-router": "^4.5.10", + "@vue/cli-plugin-vuex": "^4.5.10", + "@vue/cli-shared-utils": "^4.5.10", "@vue/component-compiler-utils": "^3.1.2", "@vue/preload-webpack-plugin": "^1.1.0", "@vue/web-component-wrapper": "^1.2.0", @@ -2998,7 +2975,7 @@ "thread-loader": "^2.1.3", "url-loader": "^2.2.0", "vue-loader": "^15.9.2", - "vue-loader-v16": "npm:vue-loader@^16.0.0-beta.7", + "vue-loader-v16": "npm:vue-loader@^16.1.0", "vue-style-loader": "^4.1.2", "webpack": "^4.0.0", "webpack-bundle-analyzer": "^3.8.0", @@ -3039,81 +3016,12 @@ "unique-filename": "^1.1.1" } }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, "graceful-fs": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", "dev": true }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -3150,9 +3058,9 @@ } }, "@vue/cli-shared-utils": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.9.tgz", - "integrity": "sha512-anvsrv+rkQC+hgxaT2nQQxnSWSsIzyysZ36LO7qPjXvDRBvcvKLAAviFlUkYbZ+ntbV8puzJ3zw+gUhQw4SEVA==", + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.10.tgz", + "integrity": "sha512-Lid6FflDqcvo/JBIBjUriAQ1RkQaKbBpzXSLEK/JmoKkQRHW/rRhDLGI1dEVyOLYnDEiL1m8o1xPJaplUUiXpA==", "dev": true, "requires": { "@hapi/joi": "^15.0.1", @@ -3225,14 +3133,14 @@ } }, "@vue/eslint-config-standard": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@vue/eslint-config-standard/-/eslint-config-standard-5.1.2.tgz", - "integrity": "sha512-FTz0k77dIrj9r3xskt9jsZyL/YprrLiPRf4m3k7G6dZ5PKuD6OPqYrHR9eduUmHDFpTlRgFpTVQrq+1el9k3QQ==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@vue/eslint-config-standard/-/eslint-config-standard-6.0.0.tgz", + "integrity": "sha512-1hIkQDMkZBxqlVITckUpcBvRMiWC/Bupc1qh8JkMSgP5vvB7fpGXprblj3ivXrKK9TCpKpy5pqnBKEFKTNfoow==", "dev": true, "requires": { - "eslint-config-standard": "^14.1.0", - "eslint-import-resolver-node": "^0.3.3", - "eslint-import-resolver-webpack": "^0.12.1" + "eslint-config-standard": "^16.0.0", + "eslint-import-resolver-node": "^0.3.4", + "eslint-import-resolver-webpack": "^0.13.0" } }, "@vue/preload-webpack-plugin": { @@ -3763,9 +3671,9 @@ "dev": true }, "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true }, "async": { @@ -3862,15 +3770,14 @@ } }, "babel-loader": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.1.tgz", - "integrity": "sha512-dMF8sb2KQ8kJl21GUjkW1HWmcsL39GOV5vnzjqrCzEPNY0S0UfMLnumidiwIajDSBmKhYf5iRW+HXaM4cvCKBw==", + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", + "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", "dev": true, "requires": { - "find-cache-dir": "^2.1.0", + "find-cache-dir": "^3.3.1", "loader-utils": "^1.4.0", - "make-dir": "^2.1.0", - "pify": "^4.0.1", + "make-dir": "^3.1.0", "schema-utils": "^2.6.5" } }, @@ -4192,16 +4099,16 @@ } }, "browserslist": { - "version": "4.14.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.7.tgz", - "integrity": "sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ==", + "version": "4.16.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz", + "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001157", + "caniuse-lite": "^1.0.30001173", "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.591", + "electron-to-chromium": "^1.3.634", "escalade": "^3.1.1", - "node-releases": "^1.1.66" + "node-releases": "^1.1.69" } }, "buffer": { @@ -4321,77 +4228,16 @@ "mkdirp": "^0.5.1", "neo-async": "^2.6.1", "schema-utils": "^2.0.0" - }, - "dependencies": { - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + } + }, + "call-bind": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.1.tgz", + "integrity": "sha512-tvAvUwNcRikl3RVF20X9lsYmmepsovzTWeJiXjO0PkJp15uy/6xKFZOQtuiSULwYW+6ToZBprphCgWXC2dSgcQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" } }, "call-me-maybe": { @@ -4453,9 +4299,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001159", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001159.tgz", - "integrity": "sha512-w9Ph56jOsS8RL20K9cLND3u/+5WASWdhC/PPrf+V3/HsM3uHOavWOR1Xzakbv4Puo/srmPHudkmCRWM7Aq+/UA==", + "version": "1.0.30001173", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001173.tgz", + "integrity": "sha512-R3aqmjrICdGCTAnSXtNyvWYMK3YtV5jwudbq0T7nN9k4kmE4CBuwPqyJ+KBzepSTh0huivV2gLbSMEzTTmfeYw==", "dev": true }, "case-sensitive-paths-webpack-plugin": { @@ -4494,14 +4340,14 @@ "dev": true }, "chokidar": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", - "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.0.tgz", + "integrity": "sha512-JgQM9JS92ZbFR4P90EvmzNpSGhpPBGBSj10PILeDyYFwp4h2/D9OM03wsJ4zW1fEp4ka2DGrnUeD7FuvQ2aZ2Q==", "dev": true, "requires": { "anymatch": "~3.1.1", "braces": "~3.0.2", - "fsevents": "~2.1.2", + "fsevents": "~2.3.1", "glob-parent": "~5.1.0", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", @@ -4631,17 +4477,17 @@ } }, "cli-highlight": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.6.tgz", - "integrity": "sha512-aCR6YOVKfjzsW6lRJ/mnTVNekU3QbQrMuLjse0OygY8ZVor9xahoEF9FX2ygTVsgizEBby0Ehi8ooqnALiSeCg==", + "version": "2.1.10", + "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.10.tgz", + "integrity": "sha512-CcPFD3JwdQ2oSzy+AMG6j3LRTkNjM82kzcSKzoVw6cLanDCJNlsLjeqVTOTfOfucnWv5F0rmBemVf1m9JiIasw==", "dev": true, "requires": { - "chalk": "^3.0.0", + "chalk": "^4.0.0", "highlight.js": "^10.0.0", "mz": "^2.4.0", "parse5": "^5.1.1", - "parse5-htmlparser2-tree-adapter": "^5.1.1", - "yargs": "^15.0.0" + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" }, "dependencies": { "ansi-styles": { @@ -4654,9 +4500,9 @@ } }, "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", "dev": true, "requires": { "ansi-styles": "^4.1.0", @@ -4738,6 +4584,43 @@ "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } } }, "clone": { @@ -5014,6 +4897,26 @@ "webpack-log": "^2.0.0" }, "dependencies": { + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, "glob-parent": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", @@ -5047,6 +4950,14 @@ "ignore": "^3.3.5", "pify": "^3.0.0", "slash": "^1.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } } }, "ignore": { @@ -5055,11 +4966,43 @@ "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", "dev": true }, - "pify": { + "locate-path": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } }, "schema-utils": { "version": "1.0.0", @@ -5081,17 +5024,17 @@ } }, "core-js": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.7.0.tgz", - "integrity": "sha512-NwS7fI5M5B85EwpWuIwJN4i/fbisQUwLwiSNUWeXlkAZ0sbBjLEvLvFLf1uzAUV66PcEPt4xCGCmOZSxVf3xzA==" + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.2.tgz", + "integrity": "sha512-FfApuSRgrR6G5s58casCBd9M2k+4ikuu4wbW6pJyYU7bd9zvFc9qf7vr5xmrZOhT9nn+8uwlH1oRR9jTnFoA3A==" }, "core-js-compat": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.7.0.tgz", - "integrity": "sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg==", + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.2.tgz", + "integrity": "sha512-LO8uL9lOIyRRrQmZxHZFl1RV+ZbcsAkFWTktn5SmH40WgLtSNYN4m4W2v9ONT147PxBY/XrRhrWq8TlvObyUjQ==", "dev": true, "requires": { - "browserslist": "^4.14.6", + "browserslist": "^4.16.0", "semver": "7.0.0" }, "dependencies": { @@ -5379,18 +5322,18 @@ "dev": true }, "csso": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.1.1.tgz", - "integrity": "sha512-Rvq+e1e0TFB8E8X+8MQjHSY6vtol45s5gxtLI/018UsAn2IBMmwNEZRM/h+HVnAJRHjasLIKKUO3uvoMM28LvA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, "requires": { - "css-tree": "^1.0.0" + "css-tree": "^1.1.2" }, "dependencies": { "css-tree": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.1.tgz", - "integrity": "sha512-NVN42M2fjszcUNpDbdkvutgQSlFYsr1z7kqeuCagHnNLBfYor6uP1WL1KrkmdYZ5Y1vTBCIOI/C/+8T98fJ71w==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", "dev": true, "requires": { "mdn-data": "2.0.14", @@ -5805,9 +5748,9 @@ }, "dependencies": { "domelementtype": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.2.tgz", - "integrity": "sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", "dev": true } } @@ -5911,9 +5854,9 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.603", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.603.tgz", - "integrity": "sha512-J8OHxOeJkoSLgBXfV9BHgKccgfLMHh+CoeRo6wJsi6m0k3otaxS/5vrHpMNSEYY4MISwewqanPOuhAtuE8riQQ==", + "version": "1.3.635", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.635.tgz", + "integrity": "sha512-RRriZOLs9CpW6KTLmgBqyUdnY0QNqqWs0HOtuQGGEMizOTNNn1P7sGRBxARnUeLejOsgwjDyRqT3E/CSst02ZQ==", "dev": true }, "elliptic": { @@ -6005,9 +5948,9 @@ "dev": true }, "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, "requires": { "prr": "~1.0.1" @@ -6081,13 +6024,13 @@ "dev": true }, "eslint": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.14.0.tgz", - "integrity": "sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz", + "integrity": "sha512-zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@eslint/eslintrc": "^0.2.1", + "@eslint/eslintrc": "^0.2.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -6097,10 +6040,10 @@ "eslint-scope": "^5.1.1", "eslint-utils": "^2.1.0", "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.0", + "espree": "^7.3.1", "esquery": "^1.2.0", "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", + "file-entry-cache": "^6.0.0", "functional-red-black-tree": "^1.0.1", "glob-parent": "^5.0.0", "globals": "^12.1.0", @@ -6120,7 +6063,7 @@ "semver": "^7.2.1", "strip-ansi": "^6.0.0", "strip-json-comments": "^3.1.0", - "table": "^5.2.3", + "table": "^6.0.4", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, @@ -6202,15 +6145,24 @@ "dev": true }, "import-fresh": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz", - "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -6224,10 +6176,13 @@ "dev": true }, "semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", - "dev": true + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } }, "shebang-command": { "version": "2.0.0", @@ -6267,19 +6222,25 @@ "requires": { "isexe": "^2.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, "eslint-config-standard": { - "version": "14.1.1", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz", - "integrity": "sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==", + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.2.tgz", + "integrity": "sha512-fx3f1rJDsl9bY7qzyX8SAtP8GBSk6MfXFaTfaGgk12aAYW4gJSyRm7dM790L6cbXv63fvjY4XeSzXnb4WM+SKw==", "dev": true }, "eslint-import-resolver-node": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz", - "integrity": "sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg==", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", "dev": true, "requires": { "debug": "^2.6.9", @@ -6300,22 +6261,13 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true - }, - "resolve": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz", - "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } } } }, "eslint-import-resolver-webpack": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.12.1.tgz", - "integrity": "sha512-O/sUAXk6GWrICiN8JUkkjdt9uZpqZHP+FVnTxtEILL6EZMaPSrnP4lGPSFwcKsv7O211maqq4Nz60+dh236hVg==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.13.0.tgz", + "integrity": "sha512-hZWGcmjaJZK/WSCYGI/y4+FMGQZT+cwW/1E/P4rDwFj2PbanlQHISViw4ccDJ+2wxAqjgwBfxwy3seABbVKDEw==", "dev": true, "requires": { "array-find": "^1.0.0", @@ -6362,21 +6314,6 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, - "resolve": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz", - "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, "tapable": { "version": "0.1.10", "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz", @@ -6615,27 +6552,45 @@ "dev": true }, "eslint-plugin-standard": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.1.0.tgz", - "integrity": "sha512-ZL7+QRixjTR6/528YNGyDotyffm5OQst/sGxKDwGb9Uqs4In5Egi4+jbobhqJoyoCM6/7v/1A5fhQ7ScMtDjaQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-5.0.0.tgz", + "integrity": "sha512-eSIXPc9wBM4BrniMzJRBm2uoVuXz2EPa+NXPk2+itrVt+r5SbKFERx/IgrK/HmfjddyKVz2f+j+7gBRvu19xLg==", "dev": true }, "eslint-plugin-vue": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.1.0.tgz", - "integrity": "sha512-9dW7kj8/d2IkDdgNpvIhJdJ3XzU3x4PThXYMzWt49taktYnGyrTY6/bXCYZ/VtQKU9kXPntPrZ41+8Pw0Nxblg==", + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.4.1.tgz", + "integrity": "sha512-W/xPNHYIkGJphLUM2UIYYGKbRw3BcDoMIPY9lu1TTa2YLiZoxurddfnmOP+UOVywxb5vi438ejzwvKdZqydtIw==", "dev": true, "requires": { "eslint-utils": "^2.1.0", "natural-compare": "^1.4.0", "semver": "^7.3.2", - "vue-eslint-parser": "^7.1.1" + "vue-eslint-parser": "^7.3.0" }, "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true } } @@ -6666,13 +6621,13 @@ "dev": true }, "espree": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz", - "integrity": "sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", "dev": true, "requires": { "acorn": "^7.4.0", - "acorn-jsx": "^5.2.0", + "acorn-jsx": "^5.3.1", "eslint-visitor-keys": "^1.3.0" }, "dependencies": { @@ -7076,9 +7031,9 @@ "dev": true }, "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", "dev": true, "requires": { "websocket-driver": ">=0.5.1" @@ -7100,12 +7055,12 @@ } }, "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz", + "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==", "dev": true, "requires": { - "flat-cache": "^2.0.1" + "flat-cache": "^3.0.4" } }, "file-loader": { @@ -7180,14 +7135,14 @@ } }, "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", "dev": true, "requires": { "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" } }, "find-root": { @@ -7197,29 +7152,37 @@ "dev": true }, "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { - "locate-path": "^3.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": { + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } } }, "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" }, "dependencies": { "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { "glob": "^7.1.3" @@ -7228,9 +7191,9 @@ } }, "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz", + "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==", "dev": true }, "flush-write-stream": { @@ -7244,9 +7207,9 @@ } }, "follow-redirects": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz", - "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==" + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz", + "integrity": "sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==" }, "for-in": { "version": "1.0.2", @@ -7341,9 +7304,9 @@ "dev": true }, "fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz", + "integrity": "sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==", "dev": true, "optional": true }, @@ -7371,6 +7334,17 @@ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, + "get-intrinsic": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz", + "integrity": "sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -7493,23 +7467,6 @@ "function-bind": "^1.1.1" } }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - } - } - }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -7598,9 +7555,9 @@ "integrity": "sha512-n7xsIfyBkFChITGPh6FLtxNzAt2HxZLcQIY9hYH4gm2gmMQJHMguMH3E+jnmvUbSTF5QrmFnGab5Ippi+D7e/g==" }, "highlight.js": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.4.0.tgz", - "integrity": "sha512-EfrUGcQ63oLJbj0J0RI9ebX6TAITbsDBLbsjr881L/X5fMO9+oadKzEF21C7R3ULKG6Gv3uoab2HiqVJa/4+oA==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.5.0.tgz", + "integrity": "sha512-xTmvd9HiIHR6L53TMC7TKolEj65zG1XU+Onr8oi86mYa+nLcIbxTTWkpW7CsEwv/vK7u1zb8alZIMLDqqN6KTw==", "dev": true }, "hmac-drbg": { @@ -7657,9 +7614,9 @@ "dev": true }, "html-entities": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz", - "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", "dev": true }, "html-minifier": { @@ -7808,6 +7765,12 @@ } } }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", + "dev": true + }, "http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", @@ -7926,6 +7889,45 @@ "requires": { "pkg-dir": "^3.0.0", "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + } } }, "imurmurhash": { @@ -8097,9 +8099,9 @@ } }, "interpret": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz", - "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true }, "intersection-observer": { @@ -8152,10 +8154,13 @@ } }, "is-arguments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", - "dev": true + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } }, "is-arrayish": { "version": "0.2.1", @@ -8504,9 +8509,9 @@ "dev": true }, "js-yaml": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", - "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { "argparse": "^1.0.7", @@ -8759,13 +8764,12 @@ } }, "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "p-locate": "^4.1.0" } }, "lodash": { @@ -8835,9 +8839,9 @@ } }, "loglevel": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.0.tgz", - "integrity": "sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ==", + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", "dev": true }, "lower-case": { @@ -8856,13 +8860,20 @@ } }, "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "map-cache": { @@ -8991,24 +9002,24 @@ } }, "mime": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", - "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.7.tgz", + "integrity": "sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==", "dev": true }, "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", + "version": "1.45.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz", + "integrity": "sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==", "dev": true }, "mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "version": "2.1.28", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz", + "integrity": "sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==", "dev": true, "requires": { - "mime-db": "1.44.0" + "mime-db": "1.45.0" } }, "mimic-fn": { @@ -9345,9 +9356,9 @@ } }, "node-releases": { - "version": "1.1.67", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz", - "integrity": "sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==", + "version": "1.1.69", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.69.tgz", + "integrity": "sha512-DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA==", "dev": true }, "normalize-package-data": { @@ -9381,9 +9392,9 @@ "dev": true }, "npm": { - "version": "6.14.9", - "resolved": "https://registry.npmjs.org/npm/-/npm-6.14.9.tgz", - "integrity": "sha512-yHi1+i9LyAZF1gAmgyYtVk+HdABlLy94PMIDoK1TRKWvmFQAt5z3bodqVwKvzY0s6dLqQPVsRLiwhJfNtiHeCg==", + "version": "6.14.11", + "resolved": "https://registry.npmjs.org/npm/-/npm-6.14.11.tgz", + "integrity": "sha512-1Zh7LjuIoEhIyjkBflSSGzfjuPQwDlghNloppjruOH5bmj9midT9qcNT0tRUZRR04shU9ekrxNy9+UTBrqeBpQ==", "requires": { "JSONStream": "^1.3.5", "abbrev": "~1.1.1", @@ -9422,7 +9433,7 @@ "infer-owner": "^1.0.4", "inflight": "~1.0.6", "inherits": "^2.0.4", - "ini": "^1.3.5", + "ini": "^1.3.8", "init-package-json": "^1.10.3", "is-cidr": "^3.0.0", "json-parse-better-errors": "^1.0.2", @@ -9468,7 +9479,7 @@ "npm-user-validate": "^1.0.1", "npmlog": "~4.1.2", "once": "~1.4.0", - "opener": "^1.5.1", + "opener": "^1.5.2", "osenv": "^0.1.5", "pacote": "^9.5.12", "path-is-inside": "~1.0.2", @@ -10622,7 +10633,7 @@ "bundled": true }, "ini": { - "version": "1.3.5", + "version": "1.3.8", "bundled": true }, "init-package-json": { @@ -11375,7 +11386,7 @@ } }, "opener": { - "version": "1.5.1", + "version": "1.5.2", "bundled": true }, "os-homedir": { @@ -12554,13 +12565,13 @@ "dev": true }, "object-is": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.3.tgz", - "integrity": "sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.4.tgz", + "integrity": "sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==", "dev": true, "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" } }, "object-keys": { @@ -12591,34 +12602,14 @@ } }, "object.getownpropertydescriptors": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", - "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz", + "integrity": "sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - }, - "dependencies": { - "es-abstract": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", - "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", - "dev": true, - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - } + "es-abstract": "^1.18.0-next.1" } }, "object.pick": { @@ -12802,12 +12793,12 @@ } }, "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { - "p-limit": "^2.0.0" + "p-limit": "^2.2.0" } }, "p-map": { @@ -12910,12 +12901,20 @@ "dev": true }, "parse5-htmlparser2-tree-adapter": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-5.1.1.tgz", - "integrity": "sha512-CF+TKjXqoqyDwHqBhFQ+3l5t83xYi6fVT1tQNg+Ye0JRLnTxWvIroCjEp1A0k4lneHNBGnICUf0cfYVYGEazqw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "dev": true, "requires": { - "parse5": "^5.1.1" + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + } } }, "parseurl": { @@ -13042,12 +13041,12 @@ } }, "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { - "find-up": "^3.0.0" + "find-up": "^4.0.0" } }, "pnp-webpack-plugin": { @@ -14140,14 +14139,14 @@ "dev": true }, "renderkid": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.4.tgz", - "integrity": "sha512-K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz", + "integrity": "sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==", "dev": true, "requires": { - "css-select": "^1.1.0", + "css-select": "^2.0.2", "dom-converter": "^0.2", - "htmlparser2": "^3.3.0", + "htmlparser2": "^3.10.1", "lodash": "^4.17.20", "strip-ansi": "^3.0.0" }, @@ -14158,34 +14157,6 @@ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "dev": true, - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", - "dev": true - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "dev": true, - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, "lodash": { "version": "4.17.20", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", @@ -14249,6 +14220,12 @@ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, "require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", @@ -14395,9 +14372,9 @@ "dev": true }, "sass": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.29.0.tgz", - "integrity": "sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA==", + "version": "1.32.2", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.32.2.tgz", + "integrity": "sha512-u1pUuzqwz3SAgvHSWp1k0mRhX82b2DdlVnP6UIetQPZtYbuJUDaPQhZE12jyjB7vYeOScfz9WPsZJB6Rpk7heA==", "dev": true, "requires": { "chokidar": ">=2.0.0 <4.0.0" @@ -14715,20 +14692,38 @@ "dev": true }, "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "dependencies": { - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true } } @@ -14856,28 +14851,28 @@ } }, "sockjs": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz", - "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==", + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", "dev": true, "requires": { - "faye-websocket": "^0.10.0", + "faye-websocket": "^0.11.3", "uuid": "^3.4.0", - "websocket-driver": "0.6.5" + "websocket-driver": "^0.7.4" } }, "sockjs-client": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", - "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz", + "integrity": "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==", "dev": true, "requires": { - "debug": "^3.2.5", + "debug": "^3.2.6", "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.4.7" }, "dependencies": { "debug": { @@ -14888,15 +14883,6 @@ "requires": { "ms": "^2.1.1" } - }, - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } } } }, @@ -15368,48 +15354,40 @@ } }, "table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.7.tgz", + "integrity": "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==", "dev": true, "requires": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" + "ajv": "^7.0.2", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" }, "dependencies": { - "emoji-regex": { + "ajv": { "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz", + "integrity": "sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ==", "dev": true, "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true } } }, @@ -15455,6 +15433,64 @@ "worker-farm": "^1.7.0" }, "dependencies": { + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, "schema-utils": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", @@ -16078,9 +16114,9 @@ "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==" }, "vue-eslint-parser": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz", - "integrity": "sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.3.0.tgz", + "integrity": "sha512-n5PJKZbyspD0+8LnaZgpEvNCrjQx1DyDHw8JdWwoxhhC+yRip4TAvSDpXGf9SWX6b0umeB5aR61gwUo6NVvFxw==", "dev": true, "requires": { "debug": "^4.1.1", @@ -16137,9 +16173,9 @@ "integrity": "sha512-xhq95Mxun060bRnsOoLE2Be6BR7jYwuC89kDe18+GmCLVrRA/dU0jrGb12Xu6NjmKs+iTW0AA6saSEmEW4cR7g==" }, "vue-loader": { - "version": "15.9.5", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.5.tgz", - "integrity": "sha512-oeMOs2b5o5gRqkxfds10bCx6JeXYTwivRgbb8hzOrcThD2z1+GqEKE3EX9A2SGbsYDf4rXwRg6D5n1w0jO5SwA==", + "version": "15.9.6", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.6.tgz", + "integrity": "sha512-j0cqiLzwbeImIC6nVIby2o/ABAWhlppyL/m5oJ67R5MloP0hj/DtFgb0Zmq3J9CG7AJ+AXIvHVnJAPBvrLyuDg==", "dev": true, "requires": { "@vue/component-compiler-utils": "^3.1.0", @@ -16231,9 +16267,9 @@ } }, "vue-observe-visibility": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/vue-observe-visibility/-/vue-observe-visibility-0.4.6.tgz", - "integrity": "sha512-xo0CEVdkjSjhJoDdLSvoZoQrw/H2BlzB5jrCBKGZNXN2zdZgMuZ9BKrxXDjNP2AxlcCoKc8OahI3F3r3JGLv2Q==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/vue-observe-visibility/-/vue-observe-visibility-1.0.0.tgz", + "integrity": "sha512-s5TFh3s3h3Mhd3jaz3zGzkVHKHnc/0C/gNr30olO99+yw2hl3WBhK3ng3/f9OF+qkW4+l7GkmwfAzDAcY3lCFg==" }, "vue-progressbar": { "version": "0.7.5", @@ -16311,9 +16347,9 @@ } }, "vuex": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.5.1.tgz", - "integrity": "sha512-w7oJzmHQs0FM9LXodfskhw9wgKBiaB+totOdb8sNzbTB2KDCEEwEs29NzBZFh/lmEK1t5tDmM1vtsO7ubG1DFw==" + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.6.0.tgz", + "integrity": "sha512-W74OO2vCJPs9/YjNjW8lLbj+jzT24waTo2KShI8jLvJW8OaIkgb3wuAMA7D+ZiUxDOx3ubwSZTaJBip9G8a3aQ==" }, "watchpack": { "version": "1.7.5", @@ -16461,9 +16497,9 @@ } }, "webpack": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", - "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.45.0.tgz", + "integrity": "sha512-JhDaVi4CbRcwLLAoqC7eugMSMJnZbIfE2AyjaZ19pnOIh/R2O/lXOiXA2tQFN0iXEcxgpPJsPJHW2wOWqiTLcw==", "dev": true, "requires": { "@webassemblyjs/ast": "1.9.0", @@ -16544,9 +16580,9 @@ } }, "webpack-dev-middleware": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", - "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", "dev": true, "requires": { "memory-fs": "^0.4.1", @@ -16557,9 +16593,9 @@ } }, "webpack-dev-server": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", - "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==", + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", + "integrity": "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==", "dev": true, "requires": { "ansi-html": "0.0.7", @@ -16582,11 +16618,11 @@ "p-retry": "^3.0.1", "portfinder": "^1.0.26", "schema-utils": "^1.0.0", - "selfsigned": "^1.10.7", + "selfsigned": "^1.10.8", "semver": "^6.3.0", "serve-index": "^1.9.1", - "sockjs": "0.3.20", - "sockjs-client": "1.4.0", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", "spdy": "^4.0.2", "strip-ansi": "^3.0.1", "supports-color": "^6.1.0", @@ -16690,6 +16726,15 @@ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, "fsevents": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", @@ -16739,6 +16784,25 @@ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, "readdirp": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", @@ -16909,11 +16973,13 @@ } }, "websocket-driver": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", - "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" } }, @@ -16954,9 +17020,9 @@ } }, "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "requires": { "ansi-styles": "^4.0.0", @@ -16996,15 +17062,6 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", - "dev": true, - "requires": { - "mkdirp": "^0.5.1" - } - }, "ws": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", @@ -17021,9 +17078,9 @@ "dev": true }, "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", "dev": true }, "yallist": { @@ -17033,77 +17090,44 @@ "dev": true }, "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "y18n": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", + "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", "dev": true } } }, "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - } - } + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true }, "yorkie": { "version": "2.0.0", diff --git a/web-src/package.json b/web-src/package.json index e6517e2f..024accbb 100644 --- a/web-src/package.json +++ b/web-src/package.json @@ -1,6 +1,6 @@ { "name": "forked-daapd-web", - "version": "0.8.3", + "version": "0.8.4", "private": true, "description": "forked-daapd web interface", "author": "chme ", @@ -14,39 +14,39 @@ "axios": "^0.21.1", "bulma": "^0.9.1", "bulma-switch": "^2.0.0", - "core-js": "^3.7.0", + "core-js": "^3.8.2", "mdi": "^2.2.43", "moment": "^2.29.1", "moment-duration-format": "^2.3.2", - "npm": "^6.14.9", + "npm": "^6.14.11", "reconnectingwebsocket": "^1.0.0", "spotify-web-api-js": "^1.5.1", "string-to-color": "^2.2.2", "v-click-outside": "^3.1.2", "vue": "^2.6.12", "vue-infinite-loading": "^2.4.5", - "vue-observe-visibility": "^0.4.6", + "vue-observe-visibility": "^1.0.0", "vue-progressbar": "^0.7.5", "vue-range-slider": "^0.6.0", "vue-router": "^3.4.9", "vue-scrollto": "^2.20.0", "vue-tiny-lazyload-img": "^0.1.0", "vuedraggable": "^2.24.3", - "vuex": "^3.5.1" + "vuex": "^3.6.0" }, "devDependencies": { - "@vue/cli-plugin-babel": "^4.5.9", - "@vue/cli-plugin-eslint": "^4.5.9", - "@vue/cli-service": "^4.5.9", - "@vue/eslint-config-standard": "^5.1.2", + "@vue/cli-plugin-babel": "^4.5.10", + "@vue/cli-plugin-eslint": "^4.5.10", + "@vue/cli-service": "^4.5.10", + "@vue/eslint-config-standard": "^6.0.0", "babel-eslint": "^10.1.0", - "eslint": "^7.14.0", + "eslint": "^7.17.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", - "eslint-plugin-standard": "^4.1.0", - "eslint-plugin-vue": "^7.1.0", - "sass": "^1.29.0", + "eslint-plugin-standard": "^5.0.0", + "eslint-plugin-vue": "^7.4.1", + "sass": "^1.32.2", "sass-loader": "^10.1.0", "vue-template-compiler": "^2.6.12" }, From cdc7d7a1daea85a829eb40922436cd02400a05d6 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 10 Jan 2021 07:51:50 +0100 Subject: [PATCH 11/16] [web-src] Fix linting errors --- web-src/src/App.vue | 8 +++---- web-src/src/audio.js | 2 +- web-src/src/lib/Albums.js | 2 +- web-src/src/lib/Artists.js | 2 +- web-src/src/pages/PageFiles.vue | 2 +- web-src/src/pages/PageQueue.vue | 6 +++--- web-src/src/pages/PageSearch.vue | 6 +++--- web-src/src/pages/SpotifyPageSearch.vue | 4 ++-- web-src/src/store/index.js | 6 +++--- web-src/src/webapi/index.js | 28 ++++++++++++------------- web-src/vue.config.js | 2 +- 11 files changed, 34 insertions(+), 34 deletions(-) diff --git a/web-src/src/App.vue b/web-src/src/App.vue index b341086b..33486be6 100644 --- a/web-src/src/App.vue +++ b/web-src/src/App.vue @@ -107,18 +107,18 @@ export default { const vm = this - var protocol = 'ws://' + let protocol = 'ws://' if (window.location.protocol === 'https:') { protocol = 'wss://' } - var wsUrl = protocol + window.location.hostname + ':' + vm.$store.state.config.websocket_port + let wsUrl = protocol + window.location.hostname + ':' + vm.$store.state.config.websocket_port if (process.env.NODE_ENV === 'development' && process.env.VUE_APP_WEBSOCKET_SERVER) { // If we are running in the development server, use the websocket url configured in .env.development wsUrl = process.env.VUE_APP_WEBSOCKET_SERVER } - var socket = new ReconnectingWebSocket( + const socket = new ReconnectingWebSocket( wsUrl, 'notify', { reconnectInterval: 3000 } @@ -146,7 +146,7 @@ export default { vm.$store.dispatch('add_notification', { text: 'Connection lost. Reconnecting ... (' + vm.reconnect_attempts + ')', type: 'danger', topic: 'connection' }) } socket.onmessage = function (response) { - var data = JSON.parse(response.data) + const data = JSON.parse(response.data) if (data.notify.includes('update') || data.notify.includes('database')) { vm.update_library_stats() } diff --git a/web-src/src/audio.js b/web-src/src/audio.js index f88a9e2f..102402b0 100644 --- a/web-src/src/audio.js +++ b/web-src/src/audio.js @@ -10,7 +10,7 @@ export default { // setup audio routing setupAudio () { - var AudioContext = window.AudioContext || window.webkitAudioContext + const AudioContext = window.AudioContext || window.webkitAudioContext this._context = new AudioContext() this._source = this._context.createMediaElementSource(this._audio) this._gain = this._context.createGain() diff --git a/web-src/src/lib/Albums.js b/web-src/src/lib/Albums.js index 006fa4d7..f0bdd5e7 100644 --- a/web-src/src/lib/Albums.js +++ b/web-src/src/lib/Albums.js @@ -43,7 +43,7 @@ export default class Albums { } createSortedAndFilteredList () { - var albumsSorted = this.items + let albumsSorted = this.items if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) { albumsSorted = albumsSorted.filter(album => this.isAlbumVisible(album)) } diff --git a/web-src/src/lib/Artists.js b/web-src/src/lib/Artists.js index ba4a7bd5..5d94e3b4 100644 --- a/web-src/src/lib/Artists.js +++ b/web-src/src/lib/Artists.js @@ -39,7 +39,7 @@ export default class Artists { } createSortedAndFilteredList () { - var artistsSorted = this.items + let artistsSorted = this.items if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) { artistsSorted = artistsSorted.filter(artist => this.isArtistVisible(artist)) } diff --git a/web-src/src/pages/PageFiles.vue b/web-src/src/pages/PageFiles.vue index efe16241..22718988 100644 --- a/web-src/src/pages/PageFiles.vue +++ b/web-src/src/pages/PageFiles.vue @@ -135,7 +135,7 @@ export default { methods: { open_parent_directory: function () { - var parent = this.current_directory.slice(0, this.current_directory.lastIndexOf('/')) + const parent = this.current_directory.slice(0, this.current_directory.lastIndexOf('/')) if (parent === '' || this.$store.state.config.directories.includes(this.current_directory)) { this.$router.push({ path: '/files' }) } else { diff --git a/web-src/src/pages/PageQueue.vue b/web-src/src/pages/PageQueue.vue index d422db00..2b8057bc 100644 --- a/web-src/src/pages/PageQueue.vue +++ b/web-src/src/pages/PageQueue.vue @@ -124,9 +124,9 @@ export default { }, move_item: function (e) { - var oldPosition = !this.show_only_next_items ? e.oldIndex : e.oldIndex + this.current_position - var item = this.queue_items[oldPosition] - var newPosition = item.position + (e.newIndex - e.oldIndex) + const oldPosition = !this.show_only_next_items ? e.oldIndex : e.oldIndex + this.current_position + const item = this.queue_items[oldPosition] + const newPosition = item.position + (e.newIndex - e.oldIndex) if (newPosition !== oldPosition) { webapi.queue_move(item.id, newPosition) } diff --git a/web-src/src/pages/PageSearch.vue b/web-src/src/pages/PageSearch.vue index c4d86215..4fd33dfe 100644 --- a/web-src/src/pages/PageSearch.vue +++ b/web-src/src/pages/PageSearch.vue @@ -262,7 +262,7 @@ export default { return } - var searchParams = { + const searchParams = { type: query.type, media_kind: 'music' } @@ -291,7 +291,7 @@ export default { return } - var searchParams = { + const searchParams = { type: 'album', media_kind: 'audiobook' } @@ -317,7 +317,7 @@ export default { return } - var searchParams = { + const searchParams = { type: 'album', media_kind: 'podcast' } diff --git a/web-src/src/pages/SpotifyPageSearch.vue b/web-src/src/pages/SpotifyPageSearch.vue index 7eaff41b..47524302 100644 --- a/web-src/src/pages/SpotifyPageSearch.vue +++ b/web-src/src/pages/SpotifyPageSearch.vue @@ -278,10 +278,10 @@ export default { return webapi.spotify().then(({ data }) => { this.search_param.market = data.webapi_country - var spotifyApi = new SpotifyWebApi() + const spotifyApi = new SpotifyWebApi() spotifyApi.setAccessToken(data.webapi_token) - var types = this.query.type.split(',').filter(type => this.validSearchTypes.includes(type)) + const types = this.query.type.split(',').filter(type => this.validSearchTypes.includes(type)) return spotifyApi.search(this.query.query, types, this.search_param) }) }, diff --git a/web-src/src/store/index.js b/web-src/src/store/index.js index 65c631c0..e3162006 100644 --- a/web-src/src/store/index.js +++ b/web-src/src/store/index.js @@ -64,7 +64,7 @@ export default new Vuex.Store({ getters: { now_playing: state => { - var item = state.queue.items.find(function (item) { + const item = state.queue.items.find(function (item) { return item.id === state.player.item_id }) return (item === undefined) ? {} : item @@ -167,7 +167,7 @@ export default new Vuex.Store({ }, [types.ADD_NOTIFICATION] (state, notification) { if (notification.topic) { - var index = state.notifications.list.findIndex(elem => elem.topic === notification.topic) + const index = state.notifications.list.findIndex(elem => elem.topic === notification.topic) if (index >= 0) { state.notifications.list.splice(index, 1, notification) return @@ -183,7 +183,7 @@ export default new Vuex.Store({ } }, [types.ADD_RECENT_SEARCH] (state, query) { - var index = state.recent_searches.findIndex(elem => elem === query) + const index = state.recent_searches.findIndex(elem => elem === query) if (index >= 0) { state.recent_searches.splice(index, 1) } diff --git a/web-src/src/webapi/index.js b/web-src/src/webapi/index.js index 36829a74..3ee2a98d 100644 --- a/web-src/src/webapi/index.js +++ b/web-src/src/webapi/index.js @@ -63,7 +63,7 @@ export default { }, queue_add_next (uri) { - var position = 0 + let position = 0 if (store.getters.now_playing && store.getters.now_playing.id) { position = store.getters.now_playing.position + 1 } @@ -74,7 +74,7 @@ export default { }, queue_expression_add (expression) { - var options = {} + const options = {} options.expression = expression return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => { @@ -84,7 +84,7 @@ export default { }, queue_expression_add_next (expression) { - var options = {} + const options = {} options.expression = expression options.position = 0 if (store.getters.now_playing && store.getters.now_playing.id) { @@ -109,7 +109,7 @@ export default { }, player_play_uri (uris, shuffle, position = undefined) { - var options = {} + const options = {} options.uris = uris options.shuffle = shuffle ? 'true' : 'false' options.clear = 'true' @@ -120,7 +120,7 @@ export default { }, player_play_expression (expression, shuffle, position = undefined) { - var options = {} + const options = {} options.expression = expression options.shuffle = shuffle ? 'true' : 'false' options.clear = 'true' @@ -159,12 +159,12 @@ export default { }, player_shuffle (newState) { - var shuffle = newState ? 'true' : 'false' + const shuffle = newState ? 'true' : 'false' return axios.put('./api/player/shuffle?state=' + shuffle) }, player_consume (newState) { - var consume = newState ? 'true' : 'false' + const consume = newState ? 'true' : 'false' return axios.put('./api/player/consume?state=' + consume) }, @@ -235,7 +235,7 @@ export default { }, library_genre (genre) { - var genreParams = { + const genreParams = { type: 'albums', media_kind: 'music', expression: 'genre is "' + genre + '"' @@ -246,7 +246,7 @@ export default { }, library_genre_tracks (genre) { - var genreParams = { + const genreParams = { type: 'tracks', media_kind: 'music', expression: 'genre is "' + genre + '"' @@ -257,7 +257,7 @@ export default { }, library_radio_streams () { - var params = { + const params = { type: 'tracks', media_kind: 'music', expression: 'data_kind is url and song_length = 0' @@ -269,7 +269,7 @@ export default { library_artist_tracks (artist) { if (artist) { - var artistParams = { + const artistParams = { type: 'tracks', expression: 'songartistid is "' + artist + '"' } @@ -280,7 +280,7 @@ export default { }, library_podcasts_new_episodes () { - var episodesParams = { + const episodesParams = { type: 'tracks', expression: 'media_kind is podcast and play_count = 0 ORDER BY time_added DESC' } @@ -290,7 +290,7 @@ export default { }, library_podcast_episodes (albumId) { - var episodesParams = { + const episodesParams = { type: 'tracks', expression: 'media_kind is podcast and songalbumid is "' + albumId + '" ORDER BY date_released DESC' } @@ -336,7 +336,7 @@ export default { }, library_files (directory = undefined) { - var filesParams = { directory: directory } + const filesParams = { directory: directory } return axios.get('./api/library/files', { params: filesParams }) diff --git a/web-src/vue.config.js b/web-src/vue.config.js index 76d82b11..4c24a66c 100644 --- a/web-src/vue.config.js +++ b/web-src/vue.config.js @@ -10,7 +10,7 @@ module.exports = { assetsDir: 'player', - // Relative public path + // Relative public path publicPath: './', // Do not add hashes to the generated js/css filenames, would otherwise From 1a6c76d9903b6e60c545dbc264484b9a6107c0a0 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 10 Jan 2021 11:36:31 +0100 Subject: [PATCH 12/16] [web-src] Refactor "recently added" - group in JS instead of doing 3 queries against the back end --- web-src/src/components/SettingsIntfield.vue | 6 +- web-src/src/lib/Albums.js | 21 ++- web-src/src/pages/PageBrowseRecentlyAdded.vue | 149 +++--------------- .../src/pages/SettingsPageWebinterface.vue | 4 +- 4 files changed, 46 insertions(+), 134 deletions(-) diff --git a/web-src/src/components/SettingsIntfield.vue b/web-src/src/components/SettingsIntfield.vue index 7d8aef04..7080d8ad 100644 --- a/web-src/src/components/SettingsIntfield.vue +++ b/web-src/src/components/SettingsIntfield.vue @@ -10,7 +10,11 @@ }"> {{ info }}
- diff --git a/web-src/src/lib/Albums.js b/web-src/src/lib/Albums.js index f0bdd5e7..26ec05ae 100644 --- a/web-src/src/lib/Albums.js +++ b/web-src/src/lib/Albums.js @@ -19,6 +19,8 @@ export default class Albums { getAlbumIndex (album) { if (this.options.sort === 'Recently added') { return album.time_added.substring(0, 4) + } else if (this.options.sort === 'Recently added (browse)') { + return this.getRecentlyAddedBrowseIndex(album.time_added) } else if (this.options.sort === 'Recently released') { return album.date_released ? album.date_released.substring(0, 4) : '0000' } else if (this.options.sort === 'Release date') { @@ -27,6 +29,23 @@ export default class Albums { return album.name_sort.charAt(0).toUpperCase() } + getRecentlyAddedBrowseIndex (recentlyAdded) { + if (!recentlyAdded) { + return '0000' + } + + const diff = new Date().getTime() - new Date(recentlyAdded).getTime() + + if (diff < 86400000) { // 24h + return 'Today' + } else if (diff < 604800000) { // 7 days + return 'Last week' + } else if (diff < 2592000000) { // 30 days + return 'Last month' + } + return recentlyAdded.substring(0, 4) + } + isAlbumVisible (album) { if (this.options.hideSingles && album.track_count <= 2) { return false @@ -47,7 +66,7 @@ export default class Albums { if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) { albumsSorted = albumsSorted.filter(album => this.isAlbumVisible(album)) } - if (this.options.sort === 'Recently added') { + if (this.options.sort === 'Recently added' || this.options.sort === 'Recently added (browse)') { albumsSorted = [...albumsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added)) } else if (this.options.sort === 'Recently released') { albumsSorted = [...albumsSorted].sort((a, b) => { diff --git a/web-src/src/pages/PageBrowseRecentlyAdded.vue b/web-src/src/pages/PageBrowseRecentlyAdded.vue index ca9ec77e..cdd990af 100644 --- a/web-src/src/pages/PageBrowseRecentlyAdded.vue +++ b/web-src/src/pages/PageBrowseRecentlyAdded.vue @@ -5,79 +5,10 @@ - - - - - - - - - - - - - - - - - - - - - - -
@@ -88,86 +19,44 @@ import { LoadDataBeforeEnterMixin } from './mixin' import ContentWithHeading from '@/templates/ContentWithHeading' import TabsMusic from '@/components/TabsMusic' import ListAlbums from '@/components/ListAlbums' -import ModalDialogAlbums from '@/components/ModalDialogAlbums' import webapi from '@/webapi' import store from '@/store' +import Albums from '@/lib/Albums' const browseData = { load: function (to) { - const recentlyAddedLimit = store.getters.settings_option_recently_added_limit - return Promise.all([ - webapi.search({ - type: 'album', - expression: 'time_added after today and media_kind is music order by time_added desc', - limit: recentlyAddedLimit - }), - webapi.search({ - type: 'album', - expression: 'time_added after this week and media_kind is music order by time_added desc', - limit: recentlyAddedLimit - }), - webapi.search({ - type: 'album', - expression: 'time_added after last month and media_kind is music order by time_added desc', - limit: recentlyAddedLimit - }) - ]) + const limit = store.getters.settings_option_recently_added_limit + return webapi.search({ + type: 'album', + expression: 'media_kind is music having track_count > 3 order by time_added desc', + limit: limit + }) }, set: function (vm, response) { - vm.recently_added_today = response[0].data.albums - vm.recently_added_week = response[1].data.albums - vm.recently_added_month = response[2].data.albums + vm.recently_added = response.data.albums } } export default { name: 'PageBrowseType', mixins: [LoadDataBeforeEnterMixin(browseData)], - components: { ContentWithHeading, TabsMusic, ListAlbums, ModalDialogAlbums }, + components: { ContentWithHeading, TabsMusic, ListAlbums }, data () { return { - recently_added_today: { items: [] }, - recently_added_week: { items: [] }, - recently_added_month: { items: [] }, - recently_added_older: { items: [] }, - - show_modal_today: false, - show_modal_week: false, - show_modal_month: false, - show_modal_older: false - } - }, - - mounted () { - const more = store.getters.settings_option_recently_added_limit - this.recently_added_month.items.length - if (more) { - webapi.search({ - type: 'album', - expression: 'time_added before last month and media_kind is music order by time_added desc', - limit: more - }).then(({ data }) => { - this.recently_added_older = data.albums - }) + recently_added: { items: [] } } }, computed: { - show_recent_today () { - return this.recently_added_today.items.length > 0 - }, - show_recent_week () { - return this.recently_added_week.items.length > 0 - }, - show_recent_month () { - return this.recently_added_month.items.length > 0 - }, - show_recent_older () { - return this.recently_added_older.items.length > 0 - }, - recently_added () { - return this.recently_added_older.items.length + this.recently_added_month.items.length + albums_list () { + return new Albums(this.recently_added.items, { + hideSingles: false, + hideSpotify: false, + sort: 'Recently added (browse)', + group: true + }) } } } diff --git a/web-src/src/pages/SettingsPageWebinterface.vue b/web-src/src/pages/SettingsPageWebinterface.vue index 5df5fd11..db942622 100644 --- a/web-src/src/pages/SettingsPageWebinterface.vue +++ b/web-src/src/pages/SettingsPageWebinterface.vue @@ -83,12 +83,12 @@ From bda1e096cfc65ce073ed26a325e3af57df88e9b9 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 10 Jan 2021 11:38:02 +0100 Subject: [PATCH 13/16] squash! [web-src] Update dependencies --- web-src/package-lock.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-src/package-lock.json b/web-src/package-lock.json index 6b349d0c..a03624b1 100644 --- a/web-src/package-lock.json +++ b/web-src/package-lock.json @@ -1,6 +1,6 @@ { "name": "forked-daapd-web", - "version": "0.8.3", + "version": "0.8.4", "lockfileVersion": 1, "requires": true, "dependencies": { From e168918b95adbaf0d4e442f055f9befb764d9a53 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 10 Jan 2021 11:40:03 +0100 Subject: [PATCH 14/16] [web-src] Remove now unused ModalDialogAlbums --- web-src/src/components/ModalDialogAlbums.vue | 86 -------------------- 1 file changed, 86 deletions(-) delete mode 100644 web-src/src/components/ModalDialogAlbums.vue diff --git a/web-src/src/components/ModalDialogAlbums.vue b/web-src/src/components/ModalDialogAlbums.vue deleted file mode 100644 index 20d6083d..00000000 --- a/web-src/src/components/ModalDialogAlbums.vue +++ /dev/null @@ -1,86 +0,0 @@ - - - - - From d5f8129b71602e66a6c8efebd99ee7f5f656e85e Mon Sep 17 00:00:00 2001 From: chme Date: Mon, 11 Jan 2021 19:47:27 +0100 Subject: [PATCH 15/16] [web-src] Fix for wrong AirPlay output icon --- web-src/src/components/NavbarItemOutput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-src/src/components/NavbarItemOutput.vue b/web-src/src/components/NavbarItemOutput.vue index 7af0f22e..3218a03b 100644 --- a/web-src/src/components/NavbarItemOutput.vue +++ b/web-src/src/components/NavbarItemOutput.vue @@ -7,7 +7,7 @@ - + @@ -42,7 +42,7 @@ export default { computed: { type_class () { - if (this.output.type === 'AirPlay') { + if (this.output.type.startsWith('AirPlay')) { return 'mdi-airplay' } else if (this.output.type === 'Chromecast') { return 'mdi-cast' From cfef26127a449391f60a2179b3ba356521e68b80 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 10 Jan 2021 11:41:45 +0100 Subject: [PATCH 16/16] [htdocs] Build web interface v0.8.4 --- htdocs/player/css/app.css | 2 +- htdocs/player/css/app.css.map | 2 +- htdocs/player/js/app-legacy.js | 2 +- htdocs/player/js/app-legacy.js.map | 2 +- htdocs/player/js/app.js | 2 +- htdocs/player/js/app.js.map | 2 +- htdocs/player/js/chunk-vendors-legacy.js | 24 ++-- htdocs/player/js/chunk-vendors-legacy.js.map | 2 +- htdocs/player/js/chunk-vendors.js | 126 +++++++++---------- htdocs/player/js/chunk-vendors.js.map | 2 +- 10 files changed, 83 insertions(+), 83 deletions(-) diff --git a/htdocs/player/css/app.css b/htdocs/player/css/app.css index 4b2a5bd0..fd5a5658 100644 --- a/htdocs/player/css/app.css +++ b/htdocs/player/css/app.css @@ -1,4 +1,4 @@ .fd-notifications{position:fixed;bottom:60px;z-index:20000;width:100%}.fd-notifications .notification{margin-bottom:10px;margin-left:24px;margin-right:24px;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)} -/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */.breadcrumb,.button,.delete,.file,.is-unselectable,.modal-close,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.tabs{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless):after,.select:not(.is-multiple):not(.is-loading):after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.block:not(:last-child),.box:not(:last-child),.breadcrumb:not(:last-child),.content:not(:last-child),.highlight:not(:last-child),.level:not(:last-child),.message:not(:last-child),.notification:not(:last-child),.pagination:not(:last-child),.progress:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.tabs:not(:last-child),.title:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.delete:after,.delete:before,.modal-close:after,.modal-close:before{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete:before,.modal-close:before{height:2px;width:50%}.delete:after,.modal-close:after{height:50%;width:2px}.delete:focus,.delete:hover,.modal-close:focus,.modal-close:hover{background-color:rgba(10,10,10,.3)}.delete:active,.modal-close:active{background-color:rgba(10,10,10,.4)}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete,.is-large.modal-close{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.button.is-loading:after,.control.is-loading:after,.loader,.select.is-loading:after{animation:spinAround .5s linear infinite;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.fd-overlay-fullscreen,.hero-video,.image.is-1by1 .has-ratio,.image.is-1by1 img,.image.is-1by2 .has-ratio,.image.is-1by2 img,.image.is-1by3 .has-ratio,.image.is-1by3 img,.image.is-2by1 .has-ratio,.image.is-2by1 img,.image.is-2by3 .has-ratio,.image.is-2by3 img,.image.is-3by1 .has-ratio,.image.is-3by1 img,.image.is-3by2 .has-ratio,.image.is-3by2 img,.image.is-3by4 .has-ratio,.image.is-3by4 img,.image.is-3by5 .has-ratio,.image.is-3by5 img,.image.is-4by3 .has-ratio,.image.is-4by3 img,.image.is-4by5 .has-ratio,.image.is-4by5 img,.image.is-5by3 .has-ratio,.image.is-5by3 img,.image.is-5by4 .has-ratio,.image.is-5by4 img,.image.is-9by16 .has-ratio,.image.is-9by16 img,.image.is-16by9 .has-ratio,.image.is-16by9 img,.image.is-square .has-ratio,.image.is-square img,.is-overlay,.modal,.modal-background{bottom:0;left:0;position:absolute;right:0;top:0}.button,.file-cta,.file-name,.input,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.select select,.textarea{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.button:active,.button:focus,.file-cta:active,.file-cta:focus,.file-name:active,.file-name:focus,.input:active,.input:focus,.is-active.button,.is-active.file-cta,.is-active.file-name,.is-active.input,.is-active.pagination-ellipsis,.is-active.pagination-link,.is-active.pagination-next,.is-active.pagination-previous,.is-active.textarea,.is-focused.button,.is-focused.file-cta,.is-focused.file-name,.is-focused.input,.is-focused.pagination-ellipsis,.is-focused.pagination-link,.is-focused.pagination-next,.is-focused.pagination-previous,.is-focused.textarea,.pagination-ellipsis:active,.pagination-ellipsis:focus,.pagination-link:active,.pagination-link:focus,.pagination-next:active,.pagination-next:focus,.pagination-previous:active,.pagination-previous:focus,.select select.is-active,.select select.is-focused,.select select:active,.select select:focus,.textarea:active,.textarea:focus{outline:none}.select fieldset[disabled] select,.select select[disabled],[disabled].button,[disabled].file-cta,[disabled].file-name,[disabled].input,[disabled].pagination-ellipsis,[disabled].pagination-link,[disabled].pagination-next,[disabled].pagination-previous,[disabled].textarea,fieldset[disabled] .button,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .input,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-previous,fieldset[disabled] .select select,fieldset[disabled] .textarea{cursor:not-allowed}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */blockquote,body,dd,dl,dt,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,html,iframe,legend,li,ol,p,pre,textarea,ul{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1em;font-weight:400;line-height:1.5}a{color:#3273dc;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{color:#da1039;font-size:.875em;font-weight:400;padding:.25em .5em .25em}code,hr{background-color:#f5f5f5}hr{border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}.box{background-color:#fff;border-radius:6px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);color:#4a4a4a;display:block;padding:1.25rem}a.box:focus,a.box:hover{box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px #3273dc}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-large,.button .icon.is-medium,.button .icon.is-small{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button.is-hovered,.button:hover{border-color:#b5b5b5;color:#363636}.button.is-focused,.button:focus{border-color:#3273dc;color:#363636}.button.is-focused:not(:active),.button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-active,.button:active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text.is-focused,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text:hover{background-color:#f5f5f5;color:#363636}.button.is-text.is-active,.button.is-text:active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white.is-hovered,.button.is-white:hover{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white.is-focused,.button.is-white:focus{border-color:transparent;color:#0a0a0a}.button.is-white.is-focused:not(:active),.button.is-white:focus:not(:active){box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.button.is-white.is-active,.button.is-white:active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-hovered,.button.is-white.is-inverted:hover{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined.is-focused,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-white.is-outlined.is-loading.is-focused:after,.button.is-white.is-outlined.is-loading.is-hovered:after,.button.is-white.is-outlined.is-loading:focus:after,.button.is-white.is-outlined.is-loading:hover:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined.is-focused,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined:hover{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-white.is-inverted.is-outlined.is-loading:focus:after,.button.is-white.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black.is-hovered,.button.is-black:hover{background-color:#040404;border-color:transparent;color:#fff}.button.is-black.is-focused,.button.is-black:focus{border-color:transparent;color:#fff}.button.is-black.is-focused:not(:active),.button.is-black:focus:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black.is-active,.button.is-black:active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-hovered,.button.is-black.is-inverted:hover{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined.is-focused,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-outlined.is-loading.is-focused:after,.button.is-black.is-outlined.is-loading.is-hovered:after,.button.is-black.is-outlined.is-loading:focus:after,.button.is-black.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined.is-focused,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined:hover{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-black.is-inverted.is-outlined.is-loading:focus:after,.button.is-black.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light.is-hovered,.button.is-light:hover{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light.is-focused,.button.is-light:focus{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light.is-focused:not(:active),.button.is-light:focus:not(:active){box-shadow:0 0 0 .125em hsla(0,0%,96.1%,.25)}.button.is-light.is-active,.button.is-light:active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{color:#f5f5f5}.button.is-light.is-inverted,.button.is-light.is-inverted.is-hovered,.button.is-light.is-inverted:hover{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined.is-focused,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined:hover{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading:after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-light.is-outlined.is-loading.is-focused:after,.button.is-light.is-outlined.is-loading.is-hovered:after,.button.is-light.is-outlined.is-loading:focus:after,.button.is-light.is-outlined.is-loading:hover:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined.is-focused,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined:hover{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-light.is-inverted.is-outlined.is-loading:focus:after,.button.is-light.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark.is-hovered,.button.is-dark:hover{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark.is-focused,.button.is-dark:focus{border-color:transparent;color:#fff}.button.is-dark.is-focused:not(:active),.button.is-dark:focus:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark.is-active,.button.is-dark:active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-hovered,.button.is-dark.is-inverted:hover{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined.is-focused,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined:hover{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-outlined.is-loading.is-focused:after,.button.is-dark.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-outlined.is-loading:focus:after,.button.is-dark.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined.is-focused,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined:hover{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-inverted.is-outlined.is-loading:focus:after,.button.is-dark.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary.is-hovered,.button.is-primary:hover{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary.is-focused,.button.is-primary:focus{border-color:transparent;color:#fff}.button.is-primary.is-focused:not(:active),.button.is-primary:focus:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary.is-active,.button.is-primary:active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-hovered,.button.is-primary.is-inverted:hover{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined.is-focused,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined:hover{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-outlined.is-loading.is-focused:after,.button.is-primary.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-outlined.is-loading:focus:after,.button.is-primary.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined.is-focused,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined:hover{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-inverted.is-outlined.is-loading:focus:after,.button.is-primary.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light.is-hovered,.button.is-primary.is-light:hover{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light.is-active,.button.is-primary.is-light:active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#3273dc;border-color:transparent;color:#fff}.button.is-link.is-hovered,.button.is-link:hover{background-color:#276cda;border-color:transparent;color:#fff}.button.is-link.is-focused,.button.is-link:focus{border-color:transparent;color:#fff}.button.is-link.is-focused:not(:active),.button.is-link:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-link.is-active,.button.is-link:active{background-color:#2366d1;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#3273dc;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-hovered,.button.is-link.is-inverted:hover{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3273dc}.button.is-link.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;color:#3273dc}.button.is-link.is-outlined.is-focused,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined:hover{background-color:#3273dc;border-color:#3273dc;color:#fff}.button.is-link.is-outlined.is-loading:after{border-color:transparent transparent #3273dc #3273dc!important}.button.is-link.is-outlined.is-loading.is-focused:after,.button.is-link.is-outlined.is-loading.is-hovered:after,.button.is-link.is-outlined.is-loading:focus:after,.button.is-link.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;box-shadow:none;color:#3273dc}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined.is-focused,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined:hover{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-link.is-inverted.is-outlined.is-loading:focus:after,.button.is-link.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #3273dc #3273dc!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eef3fc;color:#2160c4}.button.is-link.is-light.is-hovered,.button.is-link.is-light:hover{background-color:#e3ecfa;border-color:transparent;color:#2160c4}.button.is-link.is-light.is-active,.button.is-link.is-light:active{background-color:#d8e4f8;border-color:transparent;color:#2160c4}.button.is-info{background-color:#3298dc;border-color:transparent;color:#fff}.button.is-info.is-hovered,.button.is-info:hover{background-color:#2793da;border-color:transparent;color:#fff}.button.is-info.is-focused,.button.is-info:focus{border-color:transparent;color:#fff}.button.is-info.is-focused:not(:active),.button.is-info:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.button.is-info.is-active,.button.is-info:active{background-color:#238cd1;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3298dc;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3298dc}.button.is-info.is-inverted.is-hovered,.button.is-info.is-inverted:hover{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3298dc}.button.is-info.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;color:#3298dc}.button.is-info.is-outlined.is-focused,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined:hover{background-color:#3298dc;border-color:#3298dc;color:#fff}.button.is-info.is-outlined.is-loading:after{border-color:transparent transparent #3298dc #3298dc!important}.button.is-info.is-outlined.is-loading.is-focused:after,.button.is-info.is-outlined.is-loading.is-hovered:after,.button.is-info.is-outlined.is-loading:focus:after,.button.is-info.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;box-shadow:none;color:#3298dc}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined.is-focused,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined:hover{background-color:#fff;color:#3298dc}.button.is-info.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-info.is-inverted.is-outlined.is-loading:focus:after,.button.is-info.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #3298dc #3298dc!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.button.is-info.is-light.is-hovered,.button.is-info.is-light:hover{background-color:#e3f1fa;border-color:transparent;color:#1d72aa}.button.is-info.is-light.is-active,.button.is-info.is-light:active{background-color:#d8ebf8;border-color:transparent;color:#1d72aa}.button.is-success{background-color:#48c774;border-color:transparent;color:#fff}.button.is-success.is-hovered,.button.is-success:hover{background-color:#3ec46d;border-color:transparent;color:#fff}.button.is-success.is-focused,.button.is-success:focus{border-color:transparent;color:#fff}.button.is-success.is-focused:not(:active),.button.is-success:focus:not(:active){box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.button.is-success.is-active,.button.is-success:active{background-color:#3abb67;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c774;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c774}.button.is-success.is-inverted.is-hovered,.button.is-success.is-inverted:hover{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c774}.button.is-success.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c774;color:#48c774}.button.is-success.is-outlined.is-focused,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined:hover{background-color:#48c774;border-color:#48c774;color:#fff}.button.is-success.is-outlined.is-loading:after{border-color:transparent transparent #48c774 #48c774!important}.button.is-success.is-outlined.is-loading.is-focused:after,.button.is-success.is-outlined.is-loading.is-hovered:after,.button.is-success.is-outlined.is-loading:focus:after,.button.is-success.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c774;box-shadow:none;color:#48c774}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined.is-focused,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined:hover{background-color:#fff;color:#48c774}.button.is-success.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-success.is-inverted.is-outlined.is-loading:focus:after,.button.is-success.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #48c774 #48c774!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf3;color:#257942}.button.is-success.is-light.is-hovered,.button.is-success.is-light:hover{background-color:#e6f7ec;border-color:transparent;color:#257942}.button.is-success.is-light.is-active,.button.is-success.is-light:active{background-color:#dcf4e4;border-color:transparent;color:#257942}.button.is-warning{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-hovered,.button.is-warning:hover{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused,.button.is-warning:focus{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused:not(:active),.button.is-warning:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.button.is-warning.is-active,.button.is-warning:active{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffdd57;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{color:#ffdd57}.button.is-warning.is-inverted,.button.is-warning.is-inverted.is-hovered,.button.is-warning.is-inverted:hover{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#ffdd57}.button.is-warning.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;color:#ffdd57}.button.is-warning.is-outlined.is-focused,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined:hover{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading:after{border-color:transparent transparent #ffdd57 #ffdd57!important}.button.is-warning.is-outlined.is-loading.is-focused:after,.button.is-warning.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-outlined.is-loading:focus:after,.button.is-warning.is-outlined.is-loading:hover:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;box-shadow:none;color:#ffdd57}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-warning.is-inverted.is-outlined.is-focused,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined:hover{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-inverted.is-outlined.is-loading:focus:after,.button.is-warning.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #ffdd57 #ffdd57!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffbeb;color:#947600}.button.is-warning.is-light.is-hovered,.button.is-warning.is-light:hover{background-color:#fff8de;border-color:transparent;color:#947600}.button.is-warning.is-light.is-active,.button.is-warning.is-light:active{background-color:#fff6d1;border-color:transparent;color:#947600}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger.is-hovered,.button.is-danger:hover{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger.is-focused,.button.is-danger:focus{border-color:transparent;color:#fff}.button.is-danger.is-focused:not(:active),.button.is-danger:focus:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger.is-active,.button.is-danger:active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-hovered,.button.is-danger.is-inverted:hover{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined.is-focused,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined:hover{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-outlined.is-loading.is-focused:after,.button.is-danger.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-outlined.is-loading:focus:after,.button.is-danger.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined.is-focused,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined:hover{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-inverted.is-outlined.is-loading:focus:after,.button.is-danger.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light.is-hovered,.button.is-danger.is-light:hover{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light.is-active,.button.is-danger.is-light:active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{border-radius:2px;font-size:.75rem}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent!important;pointer-events:none}.button.is-loading:after{position:absolute;left:calc(50% - .5em);top:calc(50% - .5em);position:absolute!important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:290486px;padding-left:1.25em;padding-right:1.25em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){border-radius:2px;font-size:.75rem}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button.is-hovered,.buttons.has-addons .button:hover{z-index:2}.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-focused,.buttons.has-addons .button.is-selected,.buttons.has-addons .button:active,.buttons.has-addons .button:focus{z-index:3}.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button.is-selected:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button:focus:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none!important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width:1024px){.container{max-width:960px}}@media screen and (max-width:1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width:1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width:1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width:1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:.25em}.content blockquote:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content p:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child),.content ul:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sub,.content sup{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:290486px}.image.is-fullwidth{width:100%}.image.is-1by1 .has-ratio,.image.is-1by1 img,.image.is-1by2 .has-ratio,.image.is-1by2 img,.image.is-1by3 .has-ratio,.image.is-1by3 img,.image.is-2by1 .has-ratio,.image.is-2by1 img,.image.is-2by3 .has-ratio,.image.is-2by3 img,.image.is-3by1 .has-ratio,.image.is-3by1 img,.image.is-3by2 .has-ratio,.image.is-3by2 img,.image.is-3by4 .has-ratio,.image.is-3by4 img,.image.is-3by5 .has-ratio,.image.is-3by5 img,.image.is-4by3 .has-ratio,.image.is-4by3 img,.image.is-4by5 .has-ratio,.image.is-4by5 img,.image.is-5by3 .has-ratio,.image.is-5by3 img,.image.is-5by4 .has-ratio,.image.is-5by4 img,.image.is-9by16 .has-ratio,.image.is-9by16 img,.image.is-16by9 .has-ratio,.image.is-16by9 img,.image.is-square .has-ratio,.image.is-square img{height:100%;width:100%}.image.is-1by1,.image.is-square{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .content,.notification .subtitle,.notification .title{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:#3273dc;color:#fff}.notification.is-link.is-light{background-color:#eef3fc;color:#2160c4}.notification.is-info{background-color:#3298dc;color:#fff}.notification.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.notification.is-success{background-color:#48c774;color:#fff}.notification.is-success.is-light{background-color:#effaf3;color:#257942}.notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.notification.is-warning.is-light{background-color:#fffbeb;color:#947600}.notification.is-danger{background-color:#f14668;color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(90deg,#fff 30%,#ededed 0)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(90deg,#0a0a0a 30%,#ededed 0)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(90deg,#f5f5f5 30%,#ededed 0)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(90deg,#363636 30%,#ededed 0)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(90deg,#00d1b2 30%,#ededed 0)}.progress.is-link::-webkit-progress-value{background-color:#3273dc}.progress.is-link::-moz-progress-bar{background-color:#3273dc}.progress.is-link::-ms-fill{background-color:#3273dc}.progress.is-link:indeterminate{background-image:linear-gradient(90deg,#3273dc 30%,#ededed 0)}.progress.is-info::-webkit-progress-value{background-color:#3298dc}.progress.is-info::-moz-progress-bar{background-color:#3298dc}.progress.is-info::-ms-fill{background-color:#3298dc}.progress.is-info:indeterminate{background-image:linear-gradient(90deg,#3298dc 30%,#ededed 0)}.progress.is-success::-webkit-progress-value{background-color:#48c774}.progress.is-success::-moz-progress-bar{background-color:#48c774}.progress.is-success::-ms-fill{background-color:#48c774}.progress.is-success:indeterminate{background-image:linear-gradient(90deg,#48c774 30%,#ededed 0)}.progress.is-warning::-webkit-progress-value{background-color:#ffdd57}.progress.is-warning::-moz-progress-bar{background-color:#ffdd57}.progress.is-warning::-ms-fill{background-color:#ffdd57}.progress.is-warning:indeterminate{background-image:linear-gradient(90deg,#ffdd57 30%,#ededed 0)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(90deg,#f14668 30%,#ededed 0)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(90deg,#4a4a4a 30%,#ededed 0);background-position:0 0;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#3273dc;border-color:#3273dc;color:#fff}.table td.is-info,.table th.is-info{background-color:#3298dc;border-color:#3298dc;color:#fff}.table td.is-success,.table th.is-success{background-color:#48c774;border-color:#48c774;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.table td.is-danger,.table th.is-danger{background-color:#f14668;border-color:#f14668;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:inherit}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:transparent}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:transparent}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:transparent}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover,.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(2n){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(2n){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.has-addons .tag,.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#3273dc;color:#fff}.tag:not(body).is-link.is-light{background-color:#eef3fc;color:#2160c4}.tag:not(body).is-info{background-color:#3298dc;color:#fff}.tag:not(body).is-info.is-light{background-color:#eef6fc;color:#1d72aa}.tag:not(body).is-success{background-color:#48c774;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf3;color:#257942}.tag:not(body).is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffbeb;color:#947600}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete:after,.tag:not(body).is-delete:before{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete:before{height:1px;width:50%}.tag:not(body).is-delete:after{height:50%;width:1px}.tag:not(body).is-delete:focus,.tag:not(body).is-delete:hover{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:290486px}a.tag:hover{text-decoration:underline}.subtitle,.title{word-break:break-word}.subtitle em,.subtitle span,.title em,.title span{font-weight:inherit}.subtitle sub,.subtitle sup,.title sub,.title sup{font-size:.75em}.subtitle .tag,.title .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title+.highlight{margin-top:-.75rem}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}.highlight pre{overflow:auto;max-width:100%}.number{align-items:center;background-color:#f5f5f5;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.input,.select select,.textarea{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.input::-moz-placeholder,.select select::-moz-placeholder,.textarea::-moz-placeholder{color:rgba(54,54,54,.3)}.input::-webkit-input-placeholder,.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.input:-moz-placeholder,.select select:-moz-placeholder,.textarea:-moz-placeholder{color:rgba(54,54,54,.3)}.input:-ms-input-placeholder,.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder{color:rgba(54,54,54,.3)}.input:hover,.is-hovered.input,.is-hovered.textarea,.select select.is-hovered,.select select:hover,.textarea:hover{border-color:#b5b5b5}.input:active,.input:focus,.is-active.input,.is-active.textarea,.is-focused.input,.is-focused.textarea,.select select.is-active,.select select.is-focused,.select select:active,.select select:focus,.textarea:active,.textarea:focus{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select fieldset[disabled] select,.select select[disabled],[disabled].input,[disabled].textarea,fieldset[disabled] .input,fieldset[disabled] .select select,fieldset[disabled] .textarea{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.select fieldset[disabled] select::-moz-placeholder,.select select[disabled]::-moz-placeholder,[disabled].input::-moz-placeholder,[disabled].textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder{color:hsla(0,0%,47.8%,.3)}.select fieldset[disabled] select::-webkit-input-placeholder,.select select[disabled]::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder{color:hsla(0,0%,47.8%,.3)}.select fieldset[disabled] select:-moz-placeholder,.select select[disabled]:-moz-placeholder,[disabled].input:-moz-placeholder,[disabled].textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder{color:hsla(0,0%,47.8%,.3)}.select fieldset[disabled] select:-ms-input-placeholder,.select select[disabled]:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder{color:hsla(0,0%,47.8%,.3)}.input,.textarea{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}[readonly].input,[readonly].textarea{box-shadow:none}.is-white.input,.is-white.textarea{border-color:#fff}.is-white.input:active,.is-white.input:focus,.is-white.is-active.input,.is-white.is-active.textarea,.is-white.is-focused.input,.is-white.is-focused.textarea,.is-white.textarea:active,.is-white.textarea:focus{box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.is-black.input,.is-black.textarea{border-color:#0a0a0a}.is-black.input:active,.is-black.input:focus,.is-black.is-active.input,.is-black.is-active.textarea,.is-black.is-focused.input,.is-black.is-focused.textarea,.is-black.textarea:active,.is-black.textarea:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.input,.is-light.textarea{border-color:#f5f5f5}.is-light.input:active,.is-light.input:focus,.is-light.is-active.input,.is-light.is-active.textarea,.is-light.is-focused.input,.is-light.is-focused.textarea,.is-light.textarea:active,.is-light.textarea:focus{box-shadow:0 0 0 .125em hsla(0,0%,96.1%,.25)}.is-dark.input,.is-dark.textarea{border-color:#363636}.is-dark.input:active,.is-dark.input:focus,.is-dark.is-active.input,.is-dark.is-active.textarea,.is-dark.is-focused.input,.is-dark.is-focused.textarea,.is-dark.textarea:active,.is-dark.textarea:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.input,.is-primary.textarea{border-color:#00d1b2}.is-primary.input:active,.is-primary.input:focus,.is-primary.is-active.input,.is-primary.is-active.textarea,.is-primary.is-focused.input,.is-primary.is-focused.textarea,.is-primary.textarea:active,.is-primary.textarea:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.input,.is-link.textarea{border-color:#3273dc}.is-link.input:active,.is-link.input:focus,.is-link.is-active.input,.is-link.is-active.textarea,.is-link.is-focused.input,.is-link.is-focused.textarea,.is-link.textarea:active,.is-link.textarea:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.is-info.input,.is-info.textarea{border-color:#3298dc}.is-info.input:active,.is-info.input:focus,.is-info.is-active.input,.is-info.is-active.textarea,.is-info.is-focused.input,.is-info.is-focused.textarea,.is-info.textarea:active,.is-info.textarea:focus{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.is-success.input,.is-success.textarea{border-color:#48c774}.is-success.input:active,.is-success.input:focus,.is-success.is-active.input,.is-success.is-active.textarea,.is-success.is-focused.input,.is-success.is-focused.textarea,.is-success.textarea:active,.is-success.textarea:focus{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.is-warning.input,.is-warning.textarea{border-color:#ffdd57}.is-warning.input:active,.is-warning.input:focus,.is-warning.is-active.input,.is-warning.is-active.textarea,.is-warning.is-focused.input,.is-warning.is-focused.textarea,.is-warning.textarea:active,.is-warning.textarea:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.is-danger.input,.is-danger.textarea{border-color:#f14668}.is-danger.input:active,.is-danger.input:focus,.is-danger.is-active.input,.is-danger.is-active.textarea,.is-danger.is-focused.input,.is-danger.is-focused.textarea,.is-danger.textarea:active,.is-danger.textarea:focus{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.input,.is-small.textarea{border-radius:2px;font-size:.75rem}.is-medium.input,.is-medium.textarea{font-size:1.25rem}.is-large.input,.is-large.textarea{font-size:1.5rem}.is-fullwidth.input,.is-fullwidth.textarea{display:block;width:100%}.is-inline.input,.is-inline.textarea{display:inline;width:auto}.input.is-rounded{border-radius:290486px;padding-left:calc(1.125em - 1px);padding-right:calc(1.125em - 1px)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:auto}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox input[disabled],.radio input[disabled],[disabled].checkbox,[disabled].radio,fieldset[disabled] .checkbox,fieldset[disabled] .radio{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading):after{border-color:#3273dc;right:1.125em;z-index:4}.select.is-rounded select{border-radius:290486px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover:after{border-color:#363636}.select.is-white:not(:hover):after,.select.is-white select{border-color:#fff}.select.is-white select.is-hovered,.select.is-white select:hover{border-color:#f2f2f2}.select.is-white select.is-active,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select:focus{box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.select.is-black:not(:hover):after,.select.is-black select{border-color:#0a0a0a}.select.is-black select.is-hovered,.select.is-black select:hover{border-color:#000}.select.is-black select.is-active,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover):after,.select.is-light select{border-color:#f5f5f5}.select.is-light select.is-hovered,.select.is-light select:hover{border-color:#e8e8e8}.select.is-light select.is-active,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select:focus{box-shadow:0 0 0 .125em hsla(0,0%,96.1%,.25)}.select.is-dark:not(:hover):after,.select.is-dark select{border-color:#363636}.select.is-dark select.is-hovered,.select.is-dark select:hover{border-color:#292929}.select.is-dark select.is-active,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover):after,.select.is-primary select{border-color:#00d1b2}.select.is-primary select.is-hovered,.select.is-primary select:hover{border-color:#00b89c}.select.is-primary select.is-active,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover):after,.select.is-link select{border-color:#3273dc}.select.is-link select.is-hovered,.select.is-link select:hover{border-color:#2366d1}.select.is-link select.is-active,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select.is-info:not(:hover):after,.select.is-info select{border-color:#3298dc}.select.is-info select.is-hovered,.select.is-info select:hover{border-color:#238cd1}.select.is-info select.is-active,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select:focus{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.select.is-success:not(:hover):after,.select.is-success select{border-color:#48c774}.select.is-success select.is-hovered,.select.is-success select:hover{border-color:#3abb67}.select.is-success select.is-active,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select:focus{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.select.is-warning:not(:hover):after,.select.is-warning select{border-color:#ffdd57}.select.is-warning select.is-hovered,.select.is-warning select:hover{border-color:#ffd83d}.select.is-warning select.is-active,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.select.is-danger:not(:hover):after,.select.is-danger select{border-color:#f14668}.select.is-danger select.is-hovered,.select.is-danger select:hover{border-color:#ef2e55}.select.is-danger select.is-active,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select:focus{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled:after{border-color:#7a7a7a}.select.is-fullwidth,.select.is-fullwidth select{width:100%}.select.is-loading:after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white.is-hovered .file-cta,.file.is-white:hover .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white.is-focused .file-cta,.file.is-white:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em hsla(0,0%,100%,.25);color:#0a0a0a}.file.is-white.is-active .file-cta,.file.is-white:active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black.is-hovered .file-cta,.file.is-black:hover .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black.is-focused .file-cta,.file.is-black:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:#fff}.file.is-black.is-active .file-cta,.file.is-black:active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light.is-hovered .file-cta,.file.is-light:hover .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light.is-focused .file-cta,.file.is-light:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em hsla(0,0%,96.1%,.25);color:rgba(0,0,0,.7)}.file.is-light.is-active .file-cta,.file.is-light:active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark.is-hovered .file-cta,.file.is-dark:hover .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark.is-focused .file-cta,.file.is-dark:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark.is-active .file-cta,.file.is-dark:active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary.is-hovered .file-cta,.file.is-primary:hover .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary.is-focused .file-cta,.file.is-primary:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary.is-active .file-cta,.file.is-primary:active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#3273dc;border-color:transparent;color:#fff}.file.is-link.is-hovered .file-cta,.file.is-link:hover .file-cta{background-color:#276cda;border-color:transparent;color:#fff}.file.is-link.is-focused .file-cta,.file.is-link:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,115,220,.25);color:#fff}.file.is-link.is-active .file-cta,.file.is-link:active .file-cta{background-color:#2366d1;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3298dc;border-color:transparent;color:#fff}.file.is-info.is-hovered .file-cta,.file.is-info:hover .file-cta{background-color:#2793da;border-color:transparent;color:#fff}.file.is-info.is-focused .file-cta,.file.is-info:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,152,220,.25);color:#fff}.file.is-info.is-active .file-cta,.file.is-info:active .file-cta{background-color:#238cd1;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c774;border-color:transparent;color:#fff}.file.is-success.is-hovered .file-cta,.file.is-success:hover .file-cta{background-color:#3ec46d;border-color:transparent;color:#fff}.file.is-success.is-focused .file-cta,.file.is-success:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,116,.25);color:#fff}.file.is-success.is-active .file-cta,.file.is-success:active .file-cta{background-color:#3abb67;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-hovered .file-cta,.file.is-warning:hover .file-cta{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-focused .file-cta,.file.is-warning:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,221,87,.25);color:rgba(0,0,0,.7)}.file.is-warning.is-active .file-cta,.file.is-warning:active .file-cta{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger.is-hovered .file-cta,.file.is-danger:hover .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger.is-focused .file-cta,.file.is-danger:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger.is-active .file-cta,.file.is-danger:active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#3273dc}.help.is-info{color:#3298dc}.help.is-success{color:#48c774}.help.is-warning{color:#ffdd57}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover{z-index:2}.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]):focus{z-index:3}.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media print,screen and (min-width:769px){.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width:768px){.field-label{margin-bottom:.5rem}}@media print,screen and (min-width:769px){.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media print,screen and (min-width:769px){.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading:after{position:absolute!important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#3273dc;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li:before{color:#b5b5b5;content:"/"}.breadcrumb ol,.breadcrumb ul{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li:before{content:"→"}.breadcrumb.has-bullet-separator li+li:before{content:"•"}.breadcrumb.has-dot-separator li+li:before{content:"·"}.breadcrumb.has-succeeds-separator li+li:before{content:"≻"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);color:#4a4a4a;max-width:100%;overflow:hidden;position:relative}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 .125em .25em rgba(10,10,10,.1);display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem 1rem}.card-header-icon,.card-header-title.is-centered{justify-content:center}.card-header-icon{align-items:center;cursor:pointer;display:flex;padding:.75rem 1rem}.card-image{display:block;position:relative}.card-content{padding:1.5rem}.card-content,.card-footer{background-color:transparent}.card-footer{border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:0;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#3273dc;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile,.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media print,screen and (min-width:769px){.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .subtitle,.level-item .title{margin-bottom:0}@media screen and (max-width:768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media print,screen and (min-width:769px){.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width:768px){.level-left+.level-right{margin-top:1.5rem}}@media print,screen and (min-width:769px){.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media print,screen and (min-width:769px){.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid hsla(0,0%,85.9%,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid hsla(0,0%,85.9%,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width:768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#3273dc;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#00947e}.message.is-link{background-color:#eef3fc}.message.is-link .message-header{background-color:#3273dc;color:#fff}.message.is-link .message-body{border-color:#3273dc;color:#2160c4}.message.is-info{background-color:#eef6fc}.message.is-info .message-header{background-color:#3298dc;color:#fff}.message.is-info .message-body{border-color:#3298dc;color:#1d72aa}.message.is-success{background-color:#effaf3}.message.is-success .message-header{background-color:#48c774;color:#fff}.message.is-success .message-body{border-color:#48c774;color:#257942}.message.is-warning{background-color:#fffbeb}.message.is-warning .message-header{background-color:#ffdd57;color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:#ffdd57;color:#947600}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:#f14668;color:#fff}.message.is-danger .message-body{border-color:#f14668;color:#cc0f35}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,.86)}.modal-card,.modal-content{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width:769px){.modal-card,.modal-content{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-foot,.modal-card-head{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link,.navbar.is-white .navbar-brand>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width:1024px){.navbar.is-white .navbar-end .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-start>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link:after,.navbar.is-white .navbar-start .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand .navbar-link,.navbar.is-black .navbar-brand>.navbar-item{color:#fff}.navbar.is-black .navbar-brand .navbar-link.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-black .navbar-end .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-start>.navbar-item{color:#fff}.navbar.is-black .navbar-end .navbar-link.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-end .navbar-link:after,.navbar.is-black .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5}.navbar.is-light,.navbar.is-light .navbar-brand .navbar-link,.navbar.is-light .navbar-brand>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand .navbar-link.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width:1024px){.navbar.is-light .navbar-end .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-start>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-end .navbar-link.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-end .navbar-link:after,.navbar.is-light .navbar-start .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,.7)}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand .navbar-link,.navbar.is-dark .navbar-brand>.navbar-item{color:#fff}.navbar.is-dark .navbar-brand .navbar-link.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-dark .navbar-end .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-start>.navbar-item{color:#fff}.navbar.is-dark .navbar-end .navbar-link.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover{background-color:#292929;color:#fff}.navbar.is-dark .navbar-end .navbar-link:after,.navbar.is-dark .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand .navbar-link,.navbar.is-primary .navbar-brand>.navbar-item{color:#fff}.navbar.is-primary .navbar-brand .navbar-link.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-primary .navbar-end .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-start>.navbar-item{color:#fff}.navbar.is-primary .navbar-end .navbar-link.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-end .navbar-link:after,.navbar.is-primary .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#3273dc;color:#fff}.navbar.is-link .navbar-brand .navbar-link,.navbar.is-link .navbar-brand>.navbar-item{color:#fff}.navbar.is-link .navbar-brand .navbar-link.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-link .navbar-end .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-start>.navbar-item{color:#fff}.navbar.is-link .navbar-end .navbar-link.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-end .navbar-link:after,.navbar.is-link .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#3273dc;color:#fff}}.navbar.is-info{background-color:#3298dc;color:#fff}.navbar.is-info .navbar-brand .navbar-link,.navbar.is-info .navbar-brand>.navbar-item{color:#fff}.navbar.is-info .navbar-brand .navbar-link.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-info .navbar-end .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-start>.navbar-item{color:#fff}.navbar.is-info .navbar-end .navbar-link.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-end .navbar-link:after,.navbar.is-info .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3298dc;color:#fff}}.navbar.is-success{background-color:#48c774;color:#fff}.navbar.is-success .navbar-brand .navbar-link,.navbar.is-success .navbar-brand>.navbar-item{color:#fff}.navbar.is-success .navbar-brand .navbar-link.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-success .navbar-end .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-start>.navbar-item{color:#fff}.navbar.is-success .navbar-end .navbar-link.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-end .navbar-link:after,.navbar.is-success .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#48c774;color:#fff}}.navbar.is-warning{background-color:#ffdd57}.navbar.is-warning,.navbar.is-warning .navbar-brand .navbar-link,.navbar.is-warning .navbar-brand>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width:1024px){.navbar.is-warning .navbar-end .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-start>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link:after,.navbar.is-warning .navbar-start .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffdd57;color:rgba(0,0,0,.7)}}.navbar.is-danger{background-color:#f14668;color:#fff}.navbar.is-danger .navbar-brand .navbar-link,.navbar.is-danger .navbar-brand>.navbar-item{color:#fff}.navbar.is-danger .navbar-brand .navbar-link.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-danger .navbar-end .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-start>.navbar-item{color:#fff}.navbar.is-danger .navbar-end .navbar-link.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-end .navbar-link:after,.navbar.is-danger .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f14668;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}body.has-navbar-fixed-top,html.has-navbar-fixed-top{padding-top:3.25rem}body.has-navbar-fixed-bottom,html.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:first-child{top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,.05)}.navbar-burger.is-active span:first-child{transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-.25rem;margin-right:-.25rem}.navbar-link,a.navbar-item{cursor:pointer}.navbar-link.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,a.navbar-item.is-active,a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover{background-color:#fafafa;color:#3273dc}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(.5rem - 1px)}.navbar-item.is-tab.is-active,.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#3273dc}.navbar-item.is-tab.is-active{border-bottom-style:solid;border-bottom-width:3px;color:#3273dc;padding-bottom:calc(.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless):after{border-color:#3273dc;margin-top:-.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width:1023px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link:after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,.1);padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top-touch .navbar-menu,.navbar.is-fixed-top .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}body.has-navbar-fixed-top-touch,html.has-navbar-fixed-top-touch{padding-top:3.25rem}body.has-navbar-fixed-bottom-touch,html.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width:1024px){.navbar,.navbar-end,.navbar-menu,.navbar-start{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-end,.navbar.is-spaced .navbar-start{align-items:center}.navbar.is-spaced .navbar-link,.navbar.is-spaced a.navbar-item{border-radius:4px}.navbar.is-transparent .navbar-link.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover{background-color:transparent!important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent!important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link:after{transform:rotate(135deg) translate(.25em,-.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,.1);display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-dropdown{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);display:block;opacity:0;pointer-events:none;top:calc(100% - 4px);transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.container>.navbar .navbar-brand,.navbar>.container .navbar-brand{margin-left:-.75rem}.container>.navbar .navbar-menu,.navbar>.container .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-desktop{top:0}body.has-navbar-fixed-top-desktop,html.has-navbar-fixed-top-desktop{padding-top:3.25rem}body.has-navbar-fixed-bottom-desktop,html.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}body.has-spaced-navbar-fixed-top,html.has-spaced-navbar-fixed-top{padding-top:5.25rem}body.has-spaced-navbar-fixed-bottom,html.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}.navbar-link.is-active,a.navbar-item.is-active{color:#0a0a0a}.navbar-link.is-active:not(:focus):not(:hover),a.navbar-item.is-active:not(:focus):not(:hover){background-color:transparent}.navbar-item.has-dropdown.is-active .navbar-link,.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-next,.pagination.is-rounded .pagination-previous{padding-left:1em;padding-right:1em;border-radius:290486px}.pagination.is-rounded .pagination-link{border-radius:290486px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-link,.pagination-next,.pagination-previous{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-link:hover,.pagination-next:hover,.pagination-previous:hover{border-color:#b5b5b5;color:#363636}.pagination-link:focus,.pagination-next:focus,.pagination-previous:focus{border-color:#3273dc}.pagination-link:active,.pagination-next:active,.pagination-previous:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-link[disabled],.pagination-next[disabled],.pagination-previous[disabled]{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-next,.pagination-previous{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#3273dc;border-color:#3273dc;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}@media screen and (max-width:768px){.pagination{flex-wrap:wrap}.pagination-list li,.pagination-next,.pagination-previous{flex-grow:1;flex-shrink:1}}@media print,screen and (min-width:769px){.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#00d1b2;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#00d1b2}.panel.is-primary .panel-block.is-active .panel-icon{color:#00d1b2}.panel.is-link .panel-heading{background-color:#3273dc;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#3273dc}.panel.is-link .panel-block.is-active .panel-icon{color:#3273dc}.panel.is-info .panel-heading{background-color:#3298dc;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3298dc}.panel.is-info .panel-block.is-active .panel-icon{color:#3298dc}.panel.is-success .panel-heading{background-color:#48c774;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#48c774}.panel.is-success .panel-block.is-active .panel-icon{color:#48c774}.panel.is-warning .panel-heading{background-color:#ffdd57;color:rgba(0,0,0,.7)}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffdd57}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffdd57}.panel.is-danger .panel-heading{background-color:#f14668;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f14668}.panel.is-danger .panel-block.is-active .panel-icon{color:#f14668}.panel-block:not(:last-child),.panel-tabs:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#3273dc}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#3273dc;color:#363636}.panel-block.is-active .panel-icon{color:#3273dc}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#3273dc;color:#3273dc}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-center,.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent!important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#3273dc;border-color:#3273dc;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0}.columns.is-mobile>.column.is-offset-0{margin-left:0}.columns.is-mobile>.column.is-1{flex:none;width:8.3333333333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.3333333333%}.columns.is-mobile>.column.is-2{flex:none;width:16.6666666667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.6666666667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.3333333333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.3333333333%}.columns.is-mobile>.column.is-5{flex:none;width:41.6666666667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.6666666667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.3333333333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.3333333333%}.columns.is-mobile>.column.is-8{flex:none;width:66.6666666667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.6666666667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.3333333333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.3333333333%}.columns.is-mobile>.column.is-11{flex:none;width:91.6666666667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.6666666667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width:768px){.column.is-narrow-mobile{flex:none}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0}.column.is-offset-0-mobile{margin-left:0}.column.is-1-mobile{flex:none;width:8.3333333333%}.column.is-offset-1-mobile{margin-left:8.3333333333%}.column.is-2-mobile{flex:none;width:16.6666666667%}.column.is-offset-2-mobile{margin-left:16.6666666667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.3333333333%}.column.is-offset-4-mobile{margin-left:33.3333333333%}.column.is-5-mobile{flex:none;width:41.6666666667%}.column.is-offset-5-mobile{margin-left:41.6666666667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.3333333333%}.column.is-offset-7-mobile{margin-left:58.3333333333%}.column.is-8-mobile{flex:none;width:66.6666666667%}.column.is-offset-8-mobile{margin-left:66.6666666667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.3333333333%}.column.is-offset-10-mobile{margin-left:83.3333333333%}.column.is-11-mobile{flex:none;width:91.6666666667%}.column.is-offset-11-mobile{margin-left:91.6666666667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media print,screen and (min-width:769px){.column.is-narrow,.column.is-narrow-tablet{flex:none}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0}.column.is-1,.column.is-1-tablet{flex:none;width:8.3333333333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.3333333333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.6666666667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.6666666667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.3333333333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.3333333333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.6666666667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.6666666667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.3333333333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.3333333333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.6666666667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.6666666667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.3333333333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.3333333333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.6666666667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.6666666667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width:1023px){.column.is-narrow-touch{flex:none}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0}.column.is-offset-0-touch{margin-left:0}.column.is-1-touch{flex:none;width:8.3333333333%}.column.is-offset-1-touch{margin-left:8.3333333333%}.column.is-2-touch{flex:none;width:16.6666666667%}.column.is-offset-2-touch{margin-left:16.6666666667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.3333333333%}.column.is-offset-4-touch{margin-left:33.3333333333%}.column.is-5-touch{flex:none;width:41.6666666667%}.column.is-offset-5-touch{margin-left:41.6666666667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.3333333333%}.column.is-offset-7-touch{margin-left:58.3333333333%}.column.is-8-touch{flex:none;width:66.6666666667%}.column.is-offset-8-touch{margin-left:66.6666666667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.3333333333%}.column.is-offset-10-touch{margin-left:83.3333333333%}.column.is-11-touch{flex:none;width:91.6666666667%}.column.is-offset-11-touch{margin-left:91.6666666667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width:1024px){.column.is-narrow-desktop{flex:none}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0}.column.is-offset-0-desktop{margin-left:0}.column.is-1-desktop{flex:none;width:8.3333333333%}.column.is-offset-1-desktop{margin-left:8.3333333333%}.column.is-2-desktop{flex:none;width:16.6666666667%}.column.is-offset-2-desktop{margin-left:16.6666666667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.3333333333%}.column.is-offset-4-desktop{margin-left:33.3333333333%}.column.is-5-desktop{flex:none;width:41.6666666667%}.column.is-offset-5-desktop{margin-left:41.6666666667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.3333333333%}.column.is-offset-7-desktop{margin-left:58.3333333333%}.column.is-8-desktop{flex:none;width:66.6666666667%}.column.is-offset-8-desktop{margin-left:66.6666666667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.3333333333%}.column.is-offset-10-desktop{margin-left:83.3333333333%}.column.is-11-desktop{flex:none;width:91.6666666667%}.column.is-offset-11-desktop{margin-left:91.6666666667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width:1216px){.column.is-narrow-widescreen{flex:none}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0}.column.is-offset-0-widescreen{margin-left:0}.column.is-1-widescreen{flex:none;width:8.3333333333%}.column.is-offset-1-widescreen{margin-left:8.3333333333%}.column.is-2-widescreen{flex:none;width:16.6666666667%}.column.is-offset-2-widescreen{margin-left:16.6666666667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.3333333333%}.column.is-offset-4-widescreen{margin-left:33.3333333333%}.column.is-5-widescreen{flex:none;width:41.6666666667%}.column.is-offset-5-widescreen{margin-left:41.6666666667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.3333333333%}.column.is-offset-7-widescreen{margin-left:58.3333333333%}.column.is-8-widescreen{flex:none;width:66.6666666667%}.column.is-offset-8-widescreen{margin-left:66.6666666667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.3333333333%}.column.is-offset-10-widescreen{margin-left:83.3333333333%}.column.is-11-widescreen{flex:none;width:91.6666666667%}.column.is-offset-11-widescreen{margin-left:91.6666666667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width:1408px){.column.is-narrow-fullhd{flex:none}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0}.column.is-offset-0-fullhd{margin-left:0}.column.is-1-fullhd{flex:none;width:8.3333333333%}.column.is-offset-1-fullhd{margin-left:8.3333333333%}.column.is-2-fullhd{flex:none;width:16.6666666667%}.column.is-offset-2-fullhd{margin-left:16.6666666667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.3333333333%}.column.is-offset-4-fullhd{margin-left:33.3333333333%}.column.is-5-fullhd{flex:none;width:41.6666666667%}.column.is-offset-5-fullhd{margin-left:41.6666666667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.3333333333%}.column.is-offset-7-fullhd{margin-left:58.3333333333%}.column.is-8-fullhd{flex:none;width:66.6666666667%}.column.is-offset-8-fullhd{margin-left:66.6666666667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.3333333333%}.column.is-offset-10-fullhd{margin-left:83.3333333333%}.column.is-11-fullhd{flex:none;width:91.6666666667%}.column.is-offset-11-fullhd{margin-left:91.6666666667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:.75rem}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0!important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media print,screen and (min-width:769px){.columns:not(.is-desktop){display:flex}}@media screen and (min-width:1024px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap:0.75rem;margin-left:calc(var(--columnGap)*-1);margin-right:calc(var(--columnGap)*-1)}.columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap:0rem}@media screen and (max-width:768px){.columns.is-variable.is-0-mobile{--columnGap:0rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-0-tablet{--columnGap:0rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-0-tablet-only{--columnGap:0rem}}@media screen and (max-width:1023px){.columns.is-variable.is-0-touch{--columnGap:0rem}}@media screen and (min-width:1024px){.columns.is-variable.is-0-desktop{--columnGap:0rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-0-desktop-only{--columnGap:0rem}}@media screen and (min-width:1216px){.columns.is-variable.is-0-widescreen{--columnGap:0rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-0-widescreen-only{--columnGap:0rem}}@media screen and (min-width:1408px){.columns.is-variable.is-0-fullhd{--columnGap:0rem}}.columns.is-variable.is-1{--columnGap:0.25rem}@media screen and (max-width:768px){.columns.is-variable.is-1-mobile{--columnGap:0.25rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-1-tablet{--columnGap:0.25rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-1-tablet-only{--columnGap:0.25rem}}@media screen and (max-width:1023px){.columns.is-variable.is-1-touch{--columnGap:0.25rem}}@media screen and (min-width:1024px){.columns.is-variable.is-1-desktop{--columnGap:0.25rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-1-desktop-only{--columnGap:0.25rem}}@media screen and (min-width:1216px){.columns.is-variable.is-1-widescreen{--columnGap:0.25rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-1-widescreen-only{--columnGap:0.25rem}}@media screen and (min-width:1408px){.columns.is-variable.is-1-fullhd{--columnGap:0.25rem}}.columns.is-variable.is-2{--columnGap:0.5rem}@media screen and (max-width:768px){.columns.is-variable.is-2-mobile{--columnGap:0.5rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-2-tablet{--columnGap:0.5rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-2-tablet-only{--columnGap:0.5rem}}@media screen and (max-width:1023px){.columns.is-variable.is-2-touch{--columnGap:0.5rem}}@media screen and (min-width:1024px){.columns.is-variable.is-2-desktop{--columnGap:0.5rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-2-desktop-only{--columnGap:0.5rem}}@media screen and (min-width:1216px){.columns.is-variable.is-2-widescreen{--columnGap:0.5rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-2-widescreen-only{--columnGap:0.5rem}}@media screen and (min-width:1408px){.columns.is-variable.is-2-fullhd{--columnGap:0.5rem}}.columns.is-variable.is-3{--columnGap:0.75rem}@media screen and (max-width:768px){.columns.is-variable.is-3-mobile{--columnGap:0.75rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-3-tablet{--columnGap:0.75rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-3-tablet-only{--columnGap:0.75rem}}@media screen and (max-width:1023px){.columns.is-variable.is-3-touch{--columnGap:0.75rem}}@media screen and (min-width:1024px){.columns.is-variable.is-3-desktop{--columnGap:0.75rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-3-desktop-only{--columnGap:0.75rem}}@media screen and (min-width:1216px){.columns.is-variable.is-3-widescreen{--columnGap:0.75rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-3-widescreen-only{--columnGap:0.75rem}}@media screen and (min-width:1408px){.columns.is-variable.is-3-fullhd{--columnGap:0.75rem}}.columns.is-variable.is-4{--columnGap:1rem}@media screen and (max-width:768px){.columns.is-variable.is-4-mobile{--columnGap:1rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-4-tablet{--columnGap:1rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-4-tablet-only{--columnGap:1rem}}@media screen and (max-width:1023px){.columns.is-variable.is-4-touch{--columnGap:1rem}}@media screen and (min-width:1024px){.columns.is-variable.is-4-desktop{--columnGap:1rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-4-desktop-only{--columnGap:1rem}}@media screen and (min-width:1216px){.columns.is-variable.is-4-widescreen{--columnGap:1rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-4-widescreen-only{--columnGap:1rem}}@media screen and (min-width:1408px){.columns.is-variable.is-4-fullhd{--columnGap:1rem}}.columns.is-variable.is-5{--columnGap:1.25rem}@media screen and (max-width:768px){.columns.is-variable.is-5-mobile{--columnGap:1.25rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-5-tablet{--columnGap:1.25rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-5-tablet-only{--columnGap:1.25rem}}@media screen and (max-width:1023px){.columns.is-variable.is-5-touch{--columnGap:1.25rem}}@media screen and (min-width:1024px){.columns.is-variable.is-5-desktop{--columnGap:1.25rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-5-desktop-only{--columnGap:1.25rem}}@media screen and (min-width:1216px){.columns.is-variable.is-5-widescreen{--columnGap:1.25rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-5-widescreen-only{--columnGap:1.25rem}}@media screen and (min-width:1408px){.columns.is-variable.is-5-fullhd{--columnGap:1.25rem}}.columns.is-variable.is-6{--columnGap:1.5rem}@media screen and (max-width:768px){.columns.is-variable.is-6-mobile{--columnGap:1.5rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-6-tablet{--columnGap:1.5rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-6-tablet-only{--columnGap:1.5rem}}@media screen and (max-width:1023px){.columns.is-variable.is-6-touch{--columnGap:1.5rem}}@media screen and (min-width:1024px){.columns.is-variable.is-6-desktop{--columnGap:1.5rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-6-desktop-only{--columnGap:1.5rem}}@media screen and (min-width:1216px){.columns.is-variable.is-6-widescreen{--columnGap:1.5rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-6-widescreen-only{--columnGap:1.5rem}}@media screen and (min-width:1408px){.columns.is-variable.is-6-fullhd{--columnGap:1.5rem}}.columns.is-variable.is-7{--columnGap:1.75rem}@media screen and (max-width:768px){.columns.is-variable.is-7-mobile{--columnGap:1.75rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-7-tablet{--columnGap:1.75rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-7-tablet-only{--columnGap:1.75rem}}@media screen and (max-width:1023px){.columns.is-variable.is-7-touch{--columnGap:1.75rem}}@media screen and (min-width:1024px){.columns.is-variable.is-7-desktop{--columnGap:1.75rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-7-desktop-only{--columnGap:1.75rem}}@media screen and (min-width:1216px){.columns.is-variable.is-7-widescreen{--columnGap:1.75rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-7-widescreen-only{--columnGap:1.75rem}}@media screen and (min-width:1408px){.columns.is-variable.is-7-fullhd{--columnGap:1.75rem}}.columns.is-variable.is-8{--columnGap:2rem}@media screen and (max-width:768px){.columns.is-variable.is-8-mobile{--columnGap:2rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-8-tablet{--columnGap:2rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-8-tablet-only{--columnGap:2rem}}@media screen and (max-width:1023px){.columns.is-variable.is-8-touch{--columnGap:2rem}}@media screen and (min-width:1024px){.columns.is-variable.is-8-desktop{--columnGap:2rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-8-desktop-only{--columnGap:2rem}}@media screen and (min-width:1216px){.columns.is-variable.is-8-widescreen{--columnGap:2rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-8-widescreen-only{--columnGap:2rem}}@media screen and (min-width:1408px){.columns.is-variable.is-8-fullhd{--columnGap:2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:-webkit-min-content;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0!important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem!important}@media print,screen and (min-width:769px){.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.3333333333%}.tile.is-2{flex:none;width:16.6666666667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.3333333333%}.tile.is-5{flex:none;width:41.6666666667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.3333333333%}.tile.is-8{flex:none;width:66.6666666667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.3333333333%}.tile.is-11{flex:none;width:91.6666666667%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff!important}a.has-text-white:focus,a.has-text-white:hover{color:#e6e6e6!important}.has-background-white{background-color:#fff!important}.has-text-black{color:#0a0a0a!important}a.has-text-black:focus,a.has-text-black:hover{color:#000!important}.has-background-black{background-color:#0a0a0a!important}.has-text-light{color:#f5f5f5!important}a.has-text-light:focus,a.has-text-light:hover{color:#dbdbdb!important}.has-background-light{background-color:#f5f5f5!important}.has-text-dark{color:#363636!important}a.has-text-dark:focus,a.has-text-dark:hover{color:#1c1c1c!important}.has-background-dark{background-color:#363636!important}.has-text-primary{color:#00d1b2!important}a.has-text-primary:focus,a.has-text-primary:hover{color:#009e86!important}.has-background-primary{background-color:#00d1b2!important}.has-text-primary-light{color:#ebfffc!important}a.has-text-primary-light:focus,a.has-text-primary-light:hover{color:#b8fff4!important}.has-background-primary-light{background-color:#ebfffc!important}.has-text-primary-dark{color:#00947e!important}a.has-text-primary-dark:focus,a.has-text-primary-dark:hover{color:#00c7a9!important}.has-background-primary-dark{background-color:#00947e!important}.has-text-link{color:#3273dc!important}a.has-text-link:focus,a.has-text-link:hover{color:#205bbc!important}.has-background-link{background-color:#3273dc!important}.has-text-link-light{color:#eef3fc!important}a.has-text-link-light:focus,a.has-text-link-light:hover{color:#c2d5f5!important}.has-background-link-light{background-color:#eef3fc!important}.has-text-link-dark{color:#2160c4!important}a.has-text-link-dark:focus,a.has-text-link-dark:hover{color:#3b79de!important}.has-background-link-dark{background-color:#2160c4!important}.has-text-info{color:#3298dc!important}a.has-text-info:focus,a.has-text-info:hover{color:#207dbc!important}.has-background-info{background-color:#3298dc!important}.has-text-info-light{color:#eef6fc!important}a.has-text-info-light:focus,a.has-text-info-light:hover{color:#c2e0f5!important}.has-background-info-light{background-color:#eef6fc!important}.has-text-info-dark{color:#1d72aa!important}a.has-text-info-dark:focus,a.has-text-info-dark:hover{color:#248fd6!important}.has-background-info-dark{background-color:#1d72aa!important}.has-text-success{color:#48c774!important}a.has-text-success:focus,a.has-text-success:hover{color:#34a85c!important}.has-background-success{background-color:#48c774!important}.has-text-success-light{color:#effaf3!important}a.has-text-success-light:focus,a.has-text-success-light:hover{color:#c8eed6!important}.has-background-success-light{background-color:#effaf3!important}.has-text-success-dark{color:#257942!important}a.has-text-success-dark:focus,a.has-text-success-dark:hover{color:#31a058!important}.has-background-success-dark{background-color:#257942!important}.has-text-warning{color:#ffdd57!important}a.has-text-warning:focus,a.has-text-warning:hover{color:#ffd324!important}.has-background-warning{background-color:#ffdd57!important}.has-text-warning-light{color:#fffbeb!important}a.has-text-warning-light:focus,a.has-text-warning-light:hover{color:#fff1b8!important}.has-background-warning-light{background-color:#fffbeb!important}.has-text-warning-dark{color:#947600!important}a.has-text-warning-dark:focus,a.has-text-warning-dark:hover{color:#c79f00!important}.has-background-warning-dark{background-color:#947600!important}.has-text-danger{color:#f14668!important}a.has-text-danger:focus,a.has-text-danger:hover{color:#ee1742!important}.has-background-danger{background-color:#f14668!important}.has-text-danger-light{color:#feecf0!important}a.has-text-danger-light:focus,a.has-text-danger-light:hover{color:#fabdc9!important}.has-background-danger-light{background-color:#feecf0!important}.has-text-danger-dark{color:#cc0f35!important}a.has-text-danger-dark:focus,a.has-text-danger-dark:hover{color:#ee2049!important}.has-background-danger-dark{background-color:#cc0f35!important}.has-text-black-bis{color:#121212!important}.has-background-black-bis{background-color:#121212!important}.has-text-black-ter{color:#242424!important}.has-background-black-ter{background-color:#242424!important}.has-text-grey-darker{color:#363636!important}.has-background-grey-darker{background-color:#363636!important}.has-text-grey-dark{color:#4a4a4a!important}.has-background-grey-dark{background-color:#4a4a4a!important}.has-text-grey{color:#7a7a7a!important}.has-background-grey{background-color:#7a7a7a!important}.has-text-grey-light{color:#b5b5b5!important}.has-background-grey-light{background-color:#b5b5b5!important}.has-text-grey-lighter{color:#dbdbdb!important}.has-background-grey-lighter{background-color:#dbdbdb!important}.has-text-white-ter{color:#f5f5f5!important}.has-background-white-ter{background-color:#f5f5f5!important}.has-text-white-bis{color:#fafafa!important}.has-background-white-bis{background-color:#fafafa!important}.is-flex-direction-row{flex-direction:row!important}.is-flex-direction-row-reverse{flex-direction:row-reverse!important}.is-flex-direction-column{flex-direction:column!important}.is-flex-direction-column-reverse{flex-direction:column-reverse!important}.is-flex-wrap-nowrap{flex-wrap:nowrap!important}.is-flex-wrap-wrap{flex-wrap:wrap!important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse!important}.is-justify-content-flex-start{justify-content:flex-start!important}.is-justify-content-flex-end{justify-content:flex-end!important}.is-justify-content-center{justify-content:center!important}.is-justify-content-space-between{justify-content:space-between!important}.is-justify-content-space-around{justify-content:space-around!important}.is-justify-content-space-evenly{justify-content:space-evenly!important}.is-justify-content-start{justify-content:start!important}.is-justify-content-end{justify-content:end!important}.is-justify-content-left{justify-content:left!important}.is-justify-content-right{justify-content:right!important}.is-align-content-flex-start{align-content:flex-start!important}.is-align-content-flex-end{align-content:flex-end!important}.is-align-content-center{align-content:center!important}.is-align-content-space-between{align-content:space-between!important}.is-align-content-space-around{align-content:space-around!important}.is-align-content-space-evenly{align-content:space-evenly!important}.is-align-content-stretch{align-content:stretch!important}.is-align-content-start{align-content:start!important}.is-align-content-end{align-content:end!important}.is-align-content-baseline{align-content:baseline!important}.is-align-items-stretch{align-items:stretch!important}.is-align-items-flex-start{align-items:flex-start!important}.is-align-items-flex-end{align-items:flex-end!important}.is-align-items-center{align-items:center!important}.is-align-items-baseline{align-items:baseline!important}.is-align-items-start{align-items:start!important}.is-align-items-end{align-items:end!important}.is-align-items-self-start{align-items:self-start!important}.is-align-items-self-end{align-items:self-end!important}.is-align-self-auto{align-self:auto!important}.is-align-self-flex-start{align-self:flex-start!important}.is-align-self-flex-end{align-self:flex-end!important}.is-align-self-center{align-self:center!important}.is-align-self-baseline{align-self:baseline!important}.is-align-self-stretch{align-self:stretch!important}.is-flex-grow-0{flex-grow:0!important}.is-flex-grow-1{flex-grow:1!important}.is-flex-grow-2{flex-grow:2!important}.is-flex-grow-3{flex-grow:3!important}.is-flex-grow-4{flex-grow:4!important}.is-flex-grow-5{flex-grow:5!important}.is-flex-shrink-0{flex-shrink:0!important}.is-flex-shrink-1{flex-shrink:1!important}.is-flex-shrink-2{flex-shrink:2!important}.is-flex-shrink-3{flex-shrink:3!important}.is-flex-shrink-4{flex-shrink:4!important}.is-flex-shrink-5{flex-shrink:5!important}.is-clearfix:after{clear:both;content:" ";display:table}.is-pulled-left{float:left!important}.is-pulled-right{float:right!important}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.is-clickable{cursor:pointer!important}.is-clipped{overflow:hidden!important}.is-relative{position:relative!important}.is-marginless{margin:0!important}.is-paddingless{padding:0!important}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.mx-0{margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:.25rem!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.mx-1{margin-right:.25rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-2{margin:.5rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.mx-2{margin-right:.5rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-3{margin:.75rem!important}.mt-3{margin-top:.75rem!important}.mr-3{margin-right:.75rem!important}.mb-3{margin-bottom:.75rem!important}.ml-3,.mx-3{margin-left:.75rem!important}.mx-3{margin-right:.75rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.m-4{margin:1rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4,.mx-4{margin-left:1rem!important}.mx-4{margin-right:1rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.m-5{margin:1.5rem!important}.mt-5{margin-top:1.5rem!important}.mr-5{margin-right:1.5rem!important}.mb-5{margin-bottom:1.5rem!important}.ml-5,.mx-5{margin-left:1.5rem!important}.mx-5{margin-right:1.5rem!important}.my-5{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-6{margin:3rem!important}.mt-6{margin-top:3rem!important}.mr-6{margin-right:3rem!important}.mb-6{margin-bottom:3rem!important}.ml-6,.mx-6{margin-left:3rem!important}.mx-6{margin-right:3rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.px-0{padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:.25rem!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.px-1{padding-right:.25rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-2{padding:.5rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.px-2{padding-right:.5rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-3{padding:.75rem!important}.pt-3{padding-top:.75rem!important}.pr-3{padding-right:.75rem!important}.pb-3{padding-bottom:.75rem!important}.pl-3,.px-3{padding-left:.75rem!important}.px-3{padding-right:.75rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.p-4{padding:1rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4,.px-4{padding-left:1rem!important}.px-4{padding-right:1rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.p-5{padding:1.5rem!important}.pt-5{padding-top:1.5rem!important}.pr-5{padding-right:1.5rem!important}.pb-5{padding-bottom:1.5rem!important}.pl-5,.px-5{padding-left:1.5rem!important}.px-5{padding-right:1.5rem!important}.py-5{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-6{padding:3rem!important}.pt-6{padding-top:3rem!important}.pr-6{padding-right:3rem!important}.pb-6{padding-bottom:3rem!important}.pl-6,.px-6{padding-left:3rem!important}.px-6{padding-right:3rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.is-size-1{font-size:3rem!important}.is-size-2{font-size:2.5rem!important}.is-size-3{font-size:2rem!important}.is-size-4{font-size:1.5rem!important}.is-size-5{font-size:1.25rem!important}.is-size-6{font-size:1rem!important}.is-size-7{font-size:.75rem!important}@media screen and (max-width:768px){.is-size-1-mobile{font-size:3rem!important}.is-size-2-mobile{font-size:2.5rem!important}.is-size-3-mobile{font-size:2rem!important}.is-size-4-mobile{font-size:1.5rem!important}.is-size-5-mobile{font-size:1.25rem!important}.is-size-6-mobile{font-size:1rem!important}.is-size-7-mobile{font-size:.75rem!important}}@media print,screen and (min-width:769px){.is-size-1-tablet{font-size:3rem!important}.is-size-2-tablet{font-size:2.5rem!important}.is-size-3-tablet{font-size:2rem!important}.is-size-4-tablet{font-size:1.5rem!important}.is-size-5-tablet{font-size:1.25rem!important}.is-size-6-tablet{font-size:1rem!important}.is-size-7-tablet{font-size:.75rem!important}}@media screen and (max-width:1023px){.is-size-1-touch{font-size:3rem!important}.is-size-2-touch{font-size:2.5rem!important}.is-size-3-touch{font-size:2rem!important}.is-size-4-touch{font-size:1.5rem!important}.is-size-5-touch{font-size:1.25rem!important}.is-size-6-touch{font-size:1rem!important}.is-size-7-touch{font-size:.75rem!important}}@media screen and (min-width:1024px){.is-size-1-desktop{font-size:3rem!important}.is-size-2-desktop{font-size:2.5rem!important}.is-size-3-desktop{font-size:2rem!important}.is-size-4-desktop{font-size:1.5rem!important}.is-size-5-desktop{font-size:1.25rem!important}.is-size-6-desktop{font-size:1rem!important}.is-size-7-desktop{font-size:.75rem!important}}@media screen and (min-width:1216px){.is-size-1-widescreen{font-size:3rem!important}.is-size-2-widescreen{font-size:2.5rem!important}.is-size-3-widescreen{font-size:2rem!important}.is-size-4-widescreen{font-size:1.5rem!important}.is-size-5-widescreen{font-size:1.25rem!important}.is-size-6-widescreen{font-size:1rem!important}.is-size-7-widescreen{font-size:.75rem!important}}@media screen and (min-width:1408px){.is-size-1-fullhd{font-size:3rem!important}.is-size-2-fullhd{font-size:2.5rem!important}.is-size-3-fullhd{font-size:2rem!important}.is-size-4-fullhd{font-size:1.5rem!important}.is-size-5-fullhd{font-size:1.25rem!important}.is-size-6-fullhd{font-size:1rem!important}.is-size-7-fullhd{font-size:.75rem!important}}.has-text-centered{text-align:center!important}.has-text-justified{text-align:justify!important}.has-text-left{text-align:left!important}.has-text-right{text-align:right!important}@media screen and (max-width:768px){.has-text-centered-mobile{text-align:center!important}}@media print,screen and (min-width:769px){.has-text-centered-tablet{text-align:center!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-centered-tablet-only{text-align:center!important}}@media screen and (max-width:1023px){.has-text-centered-touch{text-align:center!important}}@media screen and (min-width:1024px){.has-text-centered-desktop{text-align:center!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-centered-desktop-only{text-align:center!important}}@media screen and (min-width:1216px){.has-text-centered-widescreen{text-align:center!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-centered-widescreen-only{text-align:center!important}}@media screen and (min-width:1408px){.has-text-centered-fullhd{text-align:center!important}}@media screen and (max-width:768px){.has-text-justified-mobile{text-align:justify!important}}@media print,screen and (min-width:769px){.has-text-justified-tablet{text-align:justify!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-justified-tablet-only{text-align:justify!important}}@media screen and (max-width:1023px){.has-text-justified-touch{text-align:justify!important}}@media screen and (min-width:1024px){.has-text-justified-desktop{text-align:justify!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-justified-desktop-only{text-align:justify!important}}@media screen and (min-width:1216px){.has-text-justified-widescreen{text-align:justify!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-justified-widescreen-only{text-align:justify!important}}@media screen and (min-width:1408px){.has-text-justified-fullhd{text-align:justify!important}}@media screen and (max-width:768px){.has-text-left-mobile{text-align:left!important}}@media print,screen and (min-width:769px){.has-text-left-tablet{text-align:left!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-left-tablet-only{text-align:left!important}}@media screen and (max-width:1023px){.has-text-left-touch{text-align:left!important}}@media screen and (min-width:1024px){.has-text-left-desktop{text-align:left!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-left-desktop-only{text-align:left!important}}@media screen and (min-width:1216px){.has-text-left-widescreen{text-align:left!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-left-widescreen-only{text-align:left!important}}@media screen and (min-width:1408px){.has-text-left-fullhd{text-align:left!important}}@media screen and (max-width:768px){.has-text-right-mobile{text-align:right!important}}@media print,screen and (min-width:769px){.has-text-right-tablet{text-align:right!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-right-tablet-only{text-align:right!important}}@media screen and (max-width:1023px){.has-text-right-touch{text-align:right!important}}@media screen and (min-width:1024px){.has-text-right-desktop{text-align:right!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-right-desktop-only{text-align:right!important}}@media screen and (min-width:1216px){.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-right-widescreen-only{text-align:right!important}}@media screen and (min-width:1408px){.has-text-right-fullhd{text-align:right!important}}.is-capitalized{text-transform:capitalize!important}.is-lowercase{text-transform:lowercase!important}.is-uppercase{text-transform:uppercase!important}.is-italic{font-style:italic!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-medium{font-weight:500!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-family-primary,.is-family-sans-serif,.is-family-secondary{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif!important}.is-family-code,.is-family-monospace{font-family:monospace!important}.is-block{display:block!important}@media screen and (max-width:768px){.is-block-mobile{display:block!important}}@media print,screen and (min-width:769px){.is-block-tablet{display:block!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-block-tablet-only{display:block!important}}@media screen and (max-width:1023px){.is-block-touch{display:block!important}}@media screen and (min-width:1024px){.is-block-desktop{display:block!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-block-desktop-only{display:block!important}}@media screen and (min-width:1216px){.is-block-widescreen{display:block!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-block-widescreen-only{display:block!important}}@media screen and (min-width:1408px){.is-block-fullhd{display:block!important}}.is-flex{display:flex!important}@media screen and (max-width:768px){.is-flex-mobile{display:flex!important}}@media print,screen and (min-width:769px){.is-flex-tablet{display:flex!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-flex-tablet-only{display:flex!important}}@media screen and (max-width:1023px){.is-flex-touch{display:flex!important}}@media screen and (min-width:1024px){.is-flex-desktop{display:flex!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-flex-desktop-only{display:flex!important}}@media screen and (min-width:1216px){.is-flex-widescreen{display:flex!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-flex-widescreen-only{display:flex!important}}@media screen and (min-width:1408px){.is-flex-fullhd{display:flex!important}}.is-inline{display:inline!important}@media screen and (max-width:768px){.is-inline-mobile{display:inline!important}}@media print,screen and (min-width:769px){.is-inline-tablet{display:inline!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-inline-tablet-only{display:inline!important}}@media screen and (max-width:1023px){.is-inline-touch{display:inline!important}}@media screen and (min-width:1024px){.is-inline-desktop{display:inline!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-inline-desktop-only{display:inline!important}}@media screen and (min-width:1216px){.is-inline-widescreen{display:inline!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-inline-widescreen-only{display:inline!important}}@media screen and (min-width:1408px){.is-inline-fullhd{display:inline!important}}.is-inline-block{display:inline-block!important}@media screen and (max-width:768px){.is-inline-block-mobile{display:inline-block!important}}@media print,screen and (min-width:769px){.is-inline-block-tablet{display:inline-block!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-inline-block-tablet-only{display:inline-block!important}}@media screen and (max-width:1023px){.is-inline-block-touch{display:inline-block!important}}@media screen and (min-width:1024px){.is-inline-block-desktop{display:inline-block!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-inline-block-desktop-only{display:inline-block!important}}@media screen and (min-width:1216px){.is-inline-block-widescreen{display:inline-block!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-inline-block-widescreen-only{display:inline-block!important}}@media screen and (min-width:1408px){.is-inline-block-fullhd{display:inline-block!important}}.is-inline-flex{display:inline-flex!important}@media screen and (max-width:768px){.is-inline-flex-mobile{display:inline-flex!important}}@media print,screen and (min-width:769px){.is-inline-flex-tablet{display:inline-flex!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-inline-flex-tablet-only{display:inline-flex!important}}@media screen and (max-width:1023px){.is-inline-flex-touch{display:inline-flex!important}}@media screen and (min-width:1024px){.is-inline-flex-desktop{display:inline-flex!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-inline-flex-desktop-only{display:inline-flex!important}}@media screen and (min-width:1216px){.is-inline-flex-widescreen{display:inline-flex!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-inline-flex-widescreen-only{display:inline-flex!important}}@media screen and (min-width:1408px){.is-inline-flex-fullhd{display:inline-flex!important}}.is-hidden{display:none!important}.is-sr-only{border:none!important;clip:rect(0,0,0,0)!important;height:.01em!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:.01em!important}@media screen and (max-width:768px){.is-hidden-mobile{display:none!important}}@media print,screen and (min-width:769px){.is-hidden-tablet{display:none!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-hidden-tablet-only{display:none!important}}@media screen and (max-width:1023px){.is-hidden-touch{display:none!important}}@media screen and (min-width:1024px){.is-hidden-desktop{display:none!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-hidden-desktop-only{display:none!important}}@media screen and (min-width:1216px){.is-hidden-widescreen{display:none!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-hidden-widescreen-only{display:none!important}}@media screen and (min-width:1408px){.is-hidden-fullhd{display:none!important}}.is-invisible{visibility:hidden!important}@media screen and (max-width:768px){.is-invisible-mobile{visibility:hidden!important}}@media print,screen and (min-width:769px){.is-invisible-tablet{visibility:hidden!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-invisible-tablet-only{visibility:hidden!important}}@media screen and (max-width:1023px){.is-invisible-touch{visibility:hidden!important}}@media screen and (min-width:1024px){.is-invisible-desktop{visibility:hidden!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-invisible-desktop-only{visibility:hidden!important}}@media screen and (min-width:1216px){.is-invisible-widescreen{visibility:hidden!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-invisible-widescreen-only{visibility:hidden!important}}@media screen and (min-width:1408px){.is-invisible-fullhd{visibility:hidden!important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width:1023px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,.7)}.hero.is-white .navbar-link.is-active,.hero.is-white .navbar-link:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover,.hero.is-white .tabs li.is-active a{opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg,#e8e3e4,#fff 71%,#fff)}@media screen and (max-width:768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg,#e8e3e4,#fff 71%,#fff)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-black .navbar-link.is-active,.hero.is-black .navbar-link:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black a.navbar-item:hover{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover,.hero.is-black .tabs li.is-active a{opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg,#000,#0a0a0a 71%,#181616)}@media screen and (max-width:768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg,#000,#0a0a0a 71%,#181616)}}.hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:rgba(0,0,0,.7)}.hero.is-light .subtitle{color:rgba(0,0,0,.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width:1023px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(0,0,0,.7)}.hero.is-light .navbar-link.is-active,.hero.is-light .navbar-link:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light a.navbar-item:hover{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.hero.is-light .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-light .tabs a:hover,.hero.is-light .tabs li.is-active a{opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg,#dfd8d9,#f5f5f5 71%,#fff)}@media screen and (max-width:768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg,#dfd8d9,#f5f5f5 71%,#fff)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-dark .navbar-link.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark a.navbar-item:hover{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:.9}.hero.is-dark .tabs a:hover,.hero.is-dark .tabs li.is-active a{opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg,#1f191a,#363636 71%,#46403f)}@media screen and (max-width:768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1f191a,#363636 71%,#46403f)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-primary .navbar-link.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary a.navbar-item:hover{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover,.hero.is-primary .tabs li.is-active a{opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg,#009e6c,#00d1b2 71%,#00e7eb)}@media screen and (max-width:768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg,#009e6c,#00d1b2 71%,#00e7eb)}}.hero.is-link{background-color:#3273dc;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-link .navbar-menu{background-color:#3273dc}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-link .navbar-link.is-active,.hero.is-link .navbar-link:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link a.navbar-item:hover{background-color:#2366d1;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover,.hero.is-link .tabs li.is-active a{opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3273dc}.hero.is-link.is-bold{background-image:linear-gradient(141deg,#1577c6,#3273dc 71%,#4366e5)}@media screen and (max-width:768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1577c6,#3273dc 71%,#4366e5)}}.hero.is-info{background-color:#3298dc;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-info .navbar-menu{background-color:#3298dc}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-info .navbar-link.is-active,.hero.is-info .navbar-link:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info a.navbar-item:hover{background-color:#238cd1;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover,.hero.is-info .tabs li.is-active a{opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3298dc}.hero.is-info.is-bold{background-image:linear-gradient(141deg,#159dc6,#3298dc 71%,#4389e5)}@media screen and (max-width:768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg,#159dc6,#3298dc 71%,#4389e5)}}.hero.is-success{background-color:#48c774;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-success .navbar-menu{background-color:#48c774}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-success .navbar-link.is-active,.hero.is-success .navbar-link:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success a.navbar-item:hover{background-color:#3abb67;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover,.hero.is-success .tabs li.is-active a{opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#48c774}.hero.is-success.is-bold{background-image:linear-gradient(141deg,#29b342,#48c774 71%,#56d296)}@media screen and (max-width:768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg,#29b342,#48c774 71%,#56d296)}}.hero.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width:1023px){.hero.is-warning .navbar-menu{background-color:#ffdd57}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,.7)}.hero.is-warning .navbar-link.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-warning .tabs a:hover,.hero.is-warning .tabs li.is-active a{opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#ffdd57}.hero.is-warning.is-bold{background-image:linear-gradient(141deg,#ffaf24,#ffdd57 71%,#fffa70)}@media screen and (max-width:768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ffaf24,#ffdd57 71%,#fffa70)}}.hero.is-danger{background-color:#f14668;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-danger .navbar-menu{background-color:#f14668}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-danger .navbar-link.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger a.navbar-item:hover{background-color:#ef2e55;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover,.hero.is-danger .tabs li.is-active a{opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f14668}.hero.is-danger.is-bold{background-image:linear-gradient(141deg,#fa0a62,#f14668 71%,#f7595f)}@media screen and (max-width:768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg,#fa0a62,#f14668 71%,#f7595f)}}.hero.is-small .hero-body{padding:1.5rem}@media print,screen and (min-width:769px){.hero.is-medium .hero-body{padding:9rem 1.5rem}}@media print,screen and (min-width:769px){.hero.is-large .hero-body{padding:18rem 1.5rem}}.hero.is-fullheight-with-navbar .hero-body,.hero.is-fullheight .hero-body,.hero.is-halfheight .hero-body{align-items:center;display:flex}.hero.is-fullheight-with-navbar .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-halfheight .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width:768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width:768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media print,screen and (min-width:769px){.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-foot,.hero-head{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0}.hero-body,.section{padding:3rem 1.5rem}@media screen and (min-width:1024px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}@keyframes spinAround{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.switch[type=checkbox]{outline:0;-webkit-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:absolute;opacity:0}.switch[type=checkbox]:focus+label:after,.switch[type=checkbox]:focus+label:before{outline:1px dotted #b5b5b5}.switch[type=checkbox][disabled]{cursor:not-allowed}.switch[type=checkbox][disabled]+label,.switch[type=checkbox][disabled]+label:after,.switch[type=checkbox][disabled]+label:before{opacity:.5}.switch[type=checkbox][disabled]+label:hover{cursor:not-allowed}.switch[type=checkbox]+label{position:relative;display:initial;font-size:1rem;line-height:normal;padding-left:3.5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox]+label:before{position:absolute;display:block;top:0;left:0;width:3rem;height:1.5rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox]+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1rem;height:1rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-rtl+label{padding-left:0;padding-right:3.5rem}.switch[type=checkbox].is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox]:checked+label:before{background:#00d1b2}.switch[type=checkbox]:checked+label:after{left:1.625rem}.switch[type=checkbox]:checked.is-rtl+label:after{left:auto;right:1.625rem}.switch[type=checkbox].is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-thin+label:before{top:.54545rem;height:.375rem}.switch[type=checkbox].is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-small+label{position:relative;display:initial;font-size:.75rem;line-height:normal;padding-left:2.75rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-small+label:before{position:absolute;display:block;top:0;left:0;width:2.25rem;height:1.125rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox].is-small+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:.625rem;height:.625rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-small.is-rtl+label{padding-left:0;padding-right:2.75rem}.switch[type=checkbox].is-small.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-small.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-small:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-small:checked+label:after{left:1.25rem}.switch[type=checkbox].is-small:checked.is-rtl+label:after{left:auto;right:1.25rem}.switch[type=checkbox].is-small.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-small.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-small.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-small.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-small.is-thin+label:before{top:.40909rem;height:.28125rem}.switch[type=checkbox].is-small.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-small.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-small.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-medium+label{position:relative;display:initial;font-size:1.25rem;line-height:normal;padding-left:4.25rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-medium+label:before{position:absolute;display:block;top:0;left:0;width:3.75rem;height:1.875rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox].is-medium+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.375rem;height:1.375rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-medium.is-rtl+label{padding-left:0;padding-right:4.25rem}.switch[type=checkbox].is-medium.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-medium.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-medium:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-medium:checked+label:after{left:2rem}.switch[type=checkbox].is-medium:checked.is-rtl+label:after{left:auto;right:2rem}.switch[type=checkbox].is-medium.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-medium.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-medium.is-thin+label:before{top:.68182rem;height:.46875rem}.switch[type=checkbox].is-medium.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-medium.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-medium.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-large+label{position:relative;display:initial;font-size:1.5rem;line-height:normal;padding-left:5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-large+label:before{position:absolute;display:block;top:0;left:0;width:4.5rem;height:2.25rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox].is-large+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.75rem;height:1.75rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-large.is-rtl+label{padding-left:0;padding-right:5rem}.switch[type=checkbox].is-large.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-large.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-large:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-large:checked+label:after{left:2.375rem}.switch[type=checkbox].is-large:checked.is-rtl+label:after{left:auto;right:2.375rem}.switch[type=checkbox].is-large.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-large.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-large.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-large.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-large.is-thin+label:before{top:.81818rem;height:.5625rem}.switch[type=checkbox].is-large.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-large.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-large.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-white:checked+label:before{background:#fff}.switch[type=checkbox].is-white.is-outlined:checked+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-white.is-outlined:checked+label:after{background:#fff}.switch[type=checkbox].is-white.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-white+label:before{background:#fff}.switch[type=checkbox].is-unchecked-white.is-outlined+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-unchecked-white.is-outlined+label:after{background:#fff}.switch[type=checkbox].is-black:checked+label:before{background:#0a0a0a}.switch[type=checkbox].is-black.is-outlined:checked+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-black.is-outlined:checked+label:after{background:#0a0a0a}.switch[type=checkbox].is-black.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-black+label:before{background:#0a0a0a}.switch[type=checkbox].is-unchecked-black.is-outlined+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-unchecked-black.is-outlined+label:after{background:#0a0a0a}.switch[type=checkbox].is-light:checked+label:before{background:#f5f5f5}.switch[type=checkbox].is-light.is-outlined:checked+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-light.is-outlined:checked+label:after{background:#f5f5f5}.switch[type=checkbox].is-light.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-light+label:before{background:#f5f5f5}.switch[type=checkbox].is-unchecked-light.is-outlined+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-unchecked-light.is-outlined+label:after{background:#f5f5f5}.switch[type=checkbox].is-dark:checked+label:before{background:#363636}.switch[type=checkbox].is-dark.is-outlined:checked+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-dark.is-outlined:checked+label:after{background:#363636}.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-dark+label:before{background:#363636}.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after{background:#363636}.switch[type=checkbox].is-primary:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-primary.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-primary.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-primary+label:before{background:#00d1b2}.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after{background:#00d1b2}.switch[type=checkbox].is-link:checked+label:before{background:#3273dc}.switch[type=checkbox].is-link.is-outlined:checked+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-link.is-outlined:checked+label:after{background:#3273dc}.switch[type=checkbox].is-link.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-link+label:before{background:#3273dc}.switch[type=checkbox].is-unchecked-link.is-outlined+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-unchecked-link.is-outlined+label:after{background:#3273dc}.switch[type=checkbox].is-info:checked+label:before{background:#209cee}.switch[type=checkbox].is-info.is-outlined:checked+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-info.is-outlined:checked+label:after{background:#209cee}.switch[type=checkbox].is-info.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-info+label:before{background:#209cee}.switch[type=checkbox].is-unchecked-info.is-outlined+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-unchecked-info.is-outlined+label:after{background:#209cee}.switch[type=checkbox].is-success:checked+label:before{background:#23d160}.switch[type=checkbox].is-success.is-outlined:checked+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-success.is-outlined:checked+label:after{background:#23d160}.switch[type=checkbox].is-success.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-success+label:before{background:#23d160}.switch[type=checkbox].is-unchecked-success.is-outlined+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-unchecked-success.is-outlined+label:after{background:#23d160}.switch[type=checkbox].is-warning:checked+label:before{background:#ffdd57}.switch[type=checkbox].is-warning.is-outlined:checked+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-warning.is-outlined:checked+label:after{background:#ffdd57}.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-warning+label:before{background:#ffdd57}.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after{background:#ffdd57}.switch[type=checkbox].is-danger:checked+label:before{background:#ff3860}.switch[type=checkbox].is-danger.is-outlined:checked+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-danger.is-outlined:checked+label:after{background:#ff3860}.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-danger+label:before{background:#ff3860}.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after{background:#ff3860}.slider{min-width:250px;width:100%}.range-slider-fill{background-color:#363636}.track-progress{margin:0;padding:0;min-width:250px;width:100%}.track-progress .range-slider-knob{visibility:hidden}.track-progress .range-slider-fill{background-color:#3273dc;height:2px}.track-progress .range-slider-rail{background-color:#fff}.media.with-progress h2:last-of-type{margin-bottom:6px}.media.with-progress{margin-top:0}a.navbar-item{outline:0;line-height:1.5;padding:.5rem 1rem}.fd-expanded{flex-grow:1;flex-shrink:1}.fd-margin-left-auto{margin-left:auto}.fd-has-action{cursor:pointer}.fd-is-movable{cursor:move}.fd-has-margin-top{margin-top:24px}.fd-has-margin-bottom{margin-bottom:24px}.fd-remove-padding-bottom{padding-bottom:0}.fd-has-padding-left-right{padding-left:24px;padding-right:24px}.fd-is-square .button{height:27px;min-width:27px;padding-left:.25rem;padding-right:.25rem}.fd-is-text-clipped{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.fd-tabs-section{padding-bottom:3px;padding-top:3px;background:#fff;top:3.25rem;z-index:20;position:fixed;width:100%}section.fd-tabs-section+section.fd-content{margin-top:24px}section.hero+section.fd-content{padding-top:0}.fd-progress-bar{top:52px!important}.fd-has-shadow{box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.fd-content-with-option{min-height:calc(100vh - 11.5rem)}.fd-is-fullheight{height:calc(100vh - 6.5rem);display:flex;flex-direction:column;justify-content:center}.fd-is-fullheight .fd-is-expanded{max-height:calc(100vh - 25rem);padding:1.5rem}.fd-cover-image,.fd-is-fullheight .fd-is-expanded{overflow:hidden;flex-grow:1;flex-shrink:1;display:flex}.fd-cover-image{min-width:0;min-height:0;padding:10px}.fd-cover-image img{object-fit:contain;object-position:center bottom;filter:drop-shadow(0 0 1px rgba(0,0,0,.3)) drop-shadow(0 0 10px rgba(0,0,0,.3));flex-grow:1;flex-shrink:1;height:unset;width:unset;max-width:unset;max-height:unset;min-width:0;min-height:0;overflow:hidden}.sortable-chosen .media-right{visibility:hidden}.sortable-ghost h1,.sortable-ghost h2{color:#ff3860!important}.media:first-of-type{padding-top:17px;margin-top:16px}.fade-enter-active,.fade-leave-active{transition:opacity .4s}.fade-enter,.fade-leave-to{opacity:0}.seek-slider{min-width:250px;max-width:500px;width:100%!important}.seek-slider .range-slider-fill{background-color:#00d1b2;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.seek-slider .range-slider-knob{width:10px;height:10px;background-color:#00d1b2;border-color:#00d1b2}.title:not(.is-spaced)+.subtitle,.title:not(.is-spaced)+.subtitle+.subtitle{margin-top:-1.3rem!important}.fd-modal-card{overflow:visible}.fd-modal-card .card-content{max-height:calc(100vh - 200px);overflow:auto}.fd-modal-card .card{margin-left:16px;margin-right:16px}.dropdown-item a{display:block}.dropdown-item:hover{background-color:#f5f5f5}.navbar-item .fd-navbar-item-level2{padding-left:1.5rem}hr.fd-navbar-divider{margin:12px 0}@media only screen and (min-width:1024px){.navbar-dropdown{max-height:calc(100vh - 8.5rem);overflow:auto}}.fd-bottom-navbar .navbar-menu{max-height:calc(100vh - 7.5rem);overflow:scroll}@media screen and (max-width:768px){.buttons.fd-is-centered-mobile{justify-content:center}.buttons.fd-is-centered-mobile:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}}.column.fd-has-cover{max-height:150px;max-width:150px}@media screen and (max-width:768px){.column.fd-has-cover{margin:auto}}@media screen and (min-width:769px){.column.fd-has-cover{margin:auto 0 auto auto}}.fd-overlay-fullscreen{z-index:25;background-color:rgba(10,10,10,.2);position:fixed}.hero-body{padding:1.5rem!important} +/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */.breadcrumb,.button,.delete,.file,.is-unselectable,.modal-close,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.tabs{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless):after,.select:not(.is-multiple):not(.is-loading):after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.block:not(:last-child),.box:not(:last-child),.breadcrumb:not(:last-child),.content:not(:last-child),.highlight:not(:last-child),.level:not(:last-child),.message:not(:last-child),.notification:not(:last-child),.pagination:not(:last-child),.progress:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.tabs:not(:last-child),.title:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.delete:after,.delete:before,.modal-close:after,.modal-close:before{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete:before,.modal-close:before{height:2px;width:50%}.delete:after,.modal-close:after{height:50%;width:2px}.delete:focus,.delete:hover,.modal-close:focus,.modal-close:hover{background-color:rgba(10,10,10,.3)}.delete:active,.modal-close:active{background-color:rgba(10,10,10,.4)}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete,.is-large.modal-close{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.button.is-loading:after,.control.is-loading:after,.loader,.select.is-loading:after{animation:spinAround .5s linear infinite;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.fd-overlay-fullscreen,.hero-video,.image.is-1by1 .has-ratio,.image.is-1by1 img,.image.is-1by2 .has-ratio,.image.is-1by2 img,.image.is-1by3 .has-ratio,.image.is-1by3 img,.image.is-2by1 .has-ratio,.image.is-2by1 img,.image.is-2by3 .has-ratio,.image.is-2by3 img,.image.is-3by1 .has-ratio,.image.is-3by1 img,.image.is-3by2 .has-ratio,.image.is-3by2 img,.image.is-3by4 .has-ratio,.image.is-3by4 img,.image.is-3by5 .has-ratio,.image.is-3by5 img,.image.is-4by3 .has-ratio,.image.is-4by3 img,.image.is-4by5 .has-ratio,.image.is-4by5 img,.image.is-5by3 .has-ratio,.image.is-5by3 img,.image.is-5by4 .has-ratio,.image.is-5by4 img,.image.is-9by16 .has-ratio,.image.is-9by16 img,.image.is-16by9 .has-ratio,.image.is-16by9 img,.image.is-square .has-ratio,.image.is-square img,.is-overlay,.modal,.modal-background{bottom:0;left:0;position:absolute;right:0;top:0}.button,.file-cta,.file-name,.input,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.select select,.textarea{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.button:active,.button:focus,.file-cta:active,.file-cta:focus,.file-name:active,.file-name:focus,.input:active,.input:focus,.is-active.button,.is-active.file-cta,.is-active.file-name,.is-active.input,.is-active.pagination-ellipsis,.is-active.pagination-link,.is-active.pagination-next,.is-active.pagination-previous,.is-active.textarea,.is-focused.button,.is-focused.file-cta,.is-focused.file-name,.is-focused.input,.is-focused.pagination-ellipsis,.is-focused.pagination-link,.is-focused.pagination-next,.is-focused.pagination-previous,.is-focused.textarea,.pagination-ellipsis:active,.pagination-ellipsis:focus,.pagination-link:active,.pagination-link:focus,.pagination-next:active,.pagination-next:focus,.pagination-previous:active,.pagination-previous:focus,.select select.is-active,.select select.is-focused,.select select:active,.select select:focus,.textarea:active,.textarea:focus{outline:none}.select fieldset[disabled] select,.select select[disabled],[disabled].button,[disabled].file-cta,[disabled].file-name,[disabled].input,[disabled].pagination-ellipsis,[disabled].pagination-link,[disabled].pagination-next,[disabled].pagination-previous,[disabled].textarea,fieldset[disabled] .button,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .input,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-previous,fieldset[disabled] .select select,fieldset[disabled] .textarea{cursor:not-allowed}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */blockquote,body,dd,dl,dt,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,html,iframe,legend,li,ol,p,pre,textarea,ul{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1em;font-weight:400;line-height:1.5}a{color:#3273dc;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{color:#da1039;font-size:.875em;font-weight:400;padding:.25em .5em .25em}code,hr{background-color:#f5f5f5}hr{border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}.box{background-color:#fff;border-radius:6px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);color:#4a4a4a;display:block;padding:1.25rem}a.box:focus,a.box:hover{box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px #3273dc}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-large,.button .icon.is-medium,.button .icon.is-small{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button.is-hovered,.button:hover{border-color:#b5b5b5;color:#363636}.button.is-focused,.button:focus{border-color:#3273dc;color:#363636}.button.is-focused:not(:active),.button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-active,.button:active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text.is-focused,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text:hover{background-color:#f5f5f5;color:#363636}.button.is-text.is-active,.button.is-text:active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white.is-hovered,.button.is-white:hover{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white.is-focused,.button.is-white:focus{border-color:transparent;color:#0a0a0a}.button.is-white.is-focused:not(:active),.button.is-white:focus:not(:active){box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.button.is-white.is-active,.button.is-white:active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-hovered,.button.is-white.is-inverted:hover{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined.is-focused,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-white.is-outlined.is-loading.is-focused:after,.button.is-white.is-outlined.is-loading.is-hovered:after,.button.is-white.is-outlined.is-loading:focus:after,.button.is-white.is-outlined.is-loading:hover:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined.is-focused,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined:hover{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-white.is-inverted.is-outlined.is-loading:focus:after,.button.is-white.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black.is-hovered,.button.is-black:hover{background-color:#040404;border-color:transparent;color:#fff}.button.is-black.is-focused,.button.is-black:focus{border-color:transparent;color:#fff}.button.is-black.is-focused:not(:active),.button.is-black:focus:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black.is-active,.button.is-black:active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-hovered,.button.is-black.is-inverted:hover{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined.is-focused,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-outlined.is-loading.is-focused:after,.button.is-black.is-outlined.is-loading.is-hovered:after,.button.is-black.is-outlined.is-loading:focus:after,.button.is-black.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined.is-focused,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined:hover{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-black.is-inverted.is-outlined.is-loading:focus:after,.button.is-black.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light.is-hovered,.button.is-light:hover{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light.is-focused,.button.is-light:focus{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light.is-focused:not(:active),.button.is-light:focus:not(:active){box-shadow:0 0 0 .125em hsla(0,0%,96.1%,.25)}.button.is-light.is-active,.button.is-light:active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{color:#f5f5f5}.button.is-light.is-inverted,.button.is-light.is-inverted.is-hovered,.button.is-light.is-inverted:hover{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined.is-focused,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined:hover{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading:after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-light.is-outlined.is-loading.is-focused:after,.button.is-light.is-outlined.is-loading.is-hovered:after,.button.is-light.is-outlined.is-loading:focus:after,.button.is-light.is-outlined.is-loading:hover:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined.is-focused,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined:hover{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-light.is-inverted.is-outlined.is-loading:focus:after,.button.is-light.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark.is-hovered,.button.is-dark:hover{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark.is-focused,.button.is-dark:focus{border-color:transparent;color:#fff}.button.is-dark.is-focused:not(:active),.button.is-dark:focus:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark.is-active,.button.is-dark:active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-hovered,.button.is-dark.is-inverted:hover{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined.is-focused,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined:hover{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-outlined.is-loading.is-focused:after,.button.is-dark.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-outlined.is-loading:focus:after,.button.is-dark.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined.is-focused,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined:hover{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-inverted.is-outlined.is-loading:focus:after,.button.is-dark.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary.is-hovered,.button.is-primary:hover{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary.is-focused,.button.is-primary:focus{border-color:transparent;color:#fff}.button.is-primary.is-focused:not(:active),.button.is-primary:focus:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary.is-active,.button.is-primary:active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-hovered,.button.is-primary.is-inverted:hover{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined.is-focused,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined:hover{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-outlined.is-loading.is-focused:after,.button.is-primary.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-outlined.is-loading:focus:after,.button.is-primary.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined.is-focused,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined:hover{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-inverted.is-outlined.is-loading:focus:after,.button.is-primary.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light.is-hovered,.button.is-primary.is-light:hover{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light.is-active,.button.is-primary.is-light:active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#3273dc;border-color:transparent;color:#fff}.button.is-link.is-hovered,.button.is-link:hover{background-color:#276cda;border-color:transparent;color:#fff}.button.is-link.is-focused,.button.is-link:focus{border-color:transparent;color:#fff}.button.is-link.is-focused:not(:active),.button.is-link:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-link.is-active,.button.is-link:active{background-color:#2366d1;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#3273dc;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-hovered,.button.is-link.is-inverted:hover{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3273dc}.button.is-link.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;color:#3273dc}.button.is-link.is-outlined.is-focused,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined:hover{background-color:#3273dc;border-color:#3273dc;color:#fff}.button.is-link.is-outlined.is-loading:after{border-color:transparent transparent #3273dc #3273dc!important}.button.is-link.is-outlined.is-loading.is-focused:after,.button.is-link.is-outlined.is-loading.is-hovered:after,.button.is-link.is-outlined.is-loading:focus:after,.button.is-link.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;box-shadow:none;color:#3273dc}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined.is-focused,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined:hover{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-link.is-inverted.is-outlined.is-loading:focus:after,.button.is-link.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #3273dc #3273dc!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eef3fc;color:#2160c4}.button.is-link.is-light.is-hovered,.button.is-link.is-light:hover{background-color:#e3ecfa;border-color:transparent;color:#2160c4}.button.is-link.is-light.is-active,.button.is-link.is-light:active{background-color:#d8e4f8;border-color:transparent;color:#2160c4}.button.is-info{background-color:#3298dc;border-color:transparent;color:#fff}.button.is-info.is-hovered,.button.is-info:hover{background-color:#2793da;border-color:transparent;color:#fff}.button.is-info.is-focused,.button.is-info:focus{border-color:transparent;color:#fff}.button.is-info.is-focused:not(:active),.button.is-info:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.button.is-info.is-active,.button.is-info:active{background-color:#238cd1;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3298dc;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3298dc}.button.is-info.is-inverted.is-hovered,.button.is-info.is-inverted:hover{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3298dc}.button.is-info.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;color:#3298dc}.button.is-info.is-outlined.is-focused,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined:hover{background-color:#3298dc;border-color:#3298dc;color:#fff}.button.is-info.is-outlined.is-loading:after{border-color:transparent transparent #3298dc #3298dc!important}.button.is-info.is-outlined.is-loading.is-focused:after,.button.is-info.is-outlined.is-loading.is-hovered:after,.button.is-info.is-outlined.is-loading:focus:after,.button.is-info.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;box-shadow:none;color:#3298dc}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined.is-focused,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined:hover{background-color:#fff;color:#3298dc}.button.is-info.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-info.is-inverted.is-outlined.is-loading:focus:after,.button.is-info.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #3298dc #3298dc!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.button.is-info.is-light.is-hovered,.button.is-info.is-light:hover{background-color:#e3f1fa;border-color:transparent;color:#1d72aa}.button.is-info.is-light.is-active,.button.is-info.is-light:active{background-color:#d8ebf8;border-color:transparent;color:#1d72aa}.button.is-success{background-color:#48c774;border-color:transparent;color:#fff}.button.is-success.is-hovered,.button.is-success:hover{background-color:#3ec46d;border-color:transparent;color:#fff}.button.is-success.is-focused,.button.is-success:focus{border-color:transparent;color:#fff}.button.is-success.is-focused:not(:active),.button.is-success:focus:not(:active){box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.button.is-success.is-active,.button.is-success:active{background-color:#3abb67;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c774;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c774}.button.is-success.is-inverted.is-hovered,.button.is-success.is-inverted:hover{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c774}.button.is-success.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c774;color:#48c774}.button.is-success.is-outlined.is-focused,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined:hover{background-color:#48c774;border-color:#48c774;color:#fff}.button.is-success.is-outlined.is-loading:after{border-color:transparent transparent #48c774 #48c774!important}.button.is-success.is-outlined.is-loading.is-focused:after,.button.is-success.is-outlined.is-loading.is-hovered:after,.button.is-success.is-outlined.is-loading:focus:after,.button.is-success.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c774;box-shadow:none;color:#48c774}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined.is-focused,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined:hover{background-color:#fff;color:#48c774}.button.is-success.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-success.is-inverted.is-outlined.is-loading:focus:after,.button.is-success.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #48c774 #48c774!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf3;color:#257942}.button.is-success.is-light.is-hovered,.button.is-success.is-light:hover{background-color:#e6f7ec;border-color:transparent;color:#257942}.button.is-success.is-light.is-active,.button.is-success.is-light:active{background-color:#dcf4e4;border-color:transparent;color:#257942}.button.is-warning{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-hovered,.button.is-warning:hover{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused,.button.is-warning:focus{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused:not(:active),.button.is-warning:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.button.is-warning.is-active,.button.is-warning:active{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffdd57;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{color:#ffdd57}.button.is-warning.is-inverted,.button.is-warning.is-inverted.is-hovered,.button.is-warning.is-inverted:hover{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#ffdd57}.button.is-warning.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;color:#ffdd57}.button.is-warning.is-outlined.is-focused,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined:hover{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading:after{border-color:transparent transparent #ffdd57 #ffdd57!important}.button.is-warning.is-outlined.is-loading.is-focused:after,.button.is-warning.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-outlined.is-loading:focus:after,.button.is-warning.is-outlined.is-loading:hover:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;box-shadow:none;color:#ffdd57}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-warning.is-inverted.is-outlined.is-focused,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined:hover{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-inverted.is-outlined.is-loading:focus:after,.button.is-warning.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #ffdd57 #ffdd57!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffbeb;color:#947600}.button.is-warning.is-light.is-hovered,.button.is-warning.is-light:hover{background-color:#fff8de;border-color:transparent;color:#947600}.button.is-warning.is-light.is-active,.button.is-warning.is-light:active{background-color:#fff6d1;border-color:transparent;color:#947600}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger.is-hovered,.button.is-danger:hover{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger.is-focused,.button.is-danger:focus{border-color:transparent;color:#fff}.button.is-danger.is-focused:not(:active),.button.is-danger:focus:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger.is-active,.button.is-danger:active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-hovered,.button.is-danger.is-inverted:hover{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined.is-focused,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined:hover{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-outlined.is-loading.is-focused:after,.button.is-danger.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-outlined.is-loading:focus:after,.button.is-danger.is-outlined.is-loading:hover:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined.is-focused,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined:hover{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading.is-focused:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-inverted.is-outlined.is-loading:focus:after,.button.is-danger.is-inverted.is-outlined.is-loading:hover:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light.is-hovered,.button.is-danger.is-light:hover{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light.is-active,.button.is-danger.is-light:active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{border-radius:2px;font-size:.75rem}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent!important;pointer-events:none}.button.is-loading:after{position:absolute;left:calc(50% - .5em);top:calc(50% - .5em);position:absolute!important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:290486px;padding-left:1.25em;padding-right:1.25em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){border-radius:2px;font-size:.75rem}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button.is-hovered,.buttons.has-addons .button:hover{z-index:2}.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-focused,.buttons.has-addons .button.is-selected,.buttons.has-addons .button:active,.buttons.has-addons .button:focus{z-index:3}.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button.is-selected:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button:focus:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none!important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width:1024px){.container{max-width:960px}}@media screen and (max-width:1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width:1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width:1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width:1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:.25em}.content blockquote:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content p:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child),.content ul:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sub,.content sup{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:290486px}.image.is-fullwidth{width:100%}.image.is-1by1 .has-ratio,.image.is-1by1 img,.image.is-1by2 .has-ratio,.image.is-1by2 img,.image.is-1by3 .has-ratio,.image.is-1by3 img,.image.is-2by1 .has-ratio,.image.is-2by1 img,.image.is-2by3 .has-ratio,.image.is-2by3 img,.image.is-3by1 .has-ratio,.image.is-3by1 img,.image.is-3by2 .has-ratio,.image.is-3by2 img,.image.is-3by4 .has-ratio,.image.is-3by4 img,.image.is-3by5 .has-ratio,.image.is-3by5 img,.image.is-4by3 .has-ratio,.image.is-4by3 img,.image.is-4by5 .has-ratio,.image.is-4by5 img,.image.is-5by3 .has-ratio,.image.is-5by3 img,.image.is-5by4 .has-ratio,.image.is-5by4 img,.image.is-9by16 .has-ratio,.image.is-9by16 img,.image.is-16by9 .has-ratio,.image.is-16by9 img,.image.is-square .has-ratio,.image.is-square img{height:100%;width:100%}.image.is-1by1,.image.is-square{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .content,.notification .subtitle,.notification .title{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:#3273dc;color:#fff}.notification.is-link.is-light{background-color:#eef3fc;color:#2160c4}.notification.is-info{background-color:#3298dc;color:#fff}.notification.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.notification.is-success{background-color:#48c774;color:#fff}.notification.is-success.is-light{background-color:#effaf3;color:#257942}.notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.notification.is-warning.is-light{background-color:#fffbeb;color:#947600}.notification.is-danger{background-color:#f14668;color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(90deg,#fff 30%,#ededed 0)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(90deg,#0a0a0a 30%,#ededed 0)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(90deg,#f5f5f5 30%,#ededed 0)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(90deg,#363636 30%,#ededed 0)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(90deg,#00d1b2 30%,#ededed 0)}.progress.is-link::-webkit-progress-value{background-color:#3273dc}.progress.is-link::-moz-progress-bar{background-color:#3273dc}.progress.is-link::-ms-fill{background-color:#3273dc}.progress.is-link:indeterminate{background-image:linear-gradient(90deg,#3273dc 30%,#ededed 0)}.progress.is-info::-webkit-progress-value{background-color:#3298dc}.progress.is-info::-moz-progress-bar{background-color:#3298dc}.progress.is-info::-ms-fill{background-color:#3298dc}.progress.is-info:indeterminate{background-image:linear-gradient(90deg,#3298dc 30%,#ededed 0)}.progress.is-success::-webkit-progress-value{background-color:#48c774}.progress.is-success::-moz-progress-bar{background-color:#48c774}.progress.is-success::-ms-fill{background-color:#48c774}.progress.is-success:indeterminate{background-image:linear-gradient(90deg,#48c774 30%,#ededed 0)}.progress.is-warning::-webkit-progress-value{background-color:#ffdd57}.progress.is-warning::-moz-progress-bar{background-color:#ffdd57}.progress.is-warning::-ms-fill{background-color:#ffdd57}.progress.is-warning:indeterminate{background-image:linear-gradient(90deg,#ffdd57 30%,#ededed 0)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(90deg,#f14668 30%,#ededed 0)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(90deg,#4a4a4a 30%,#ededed 0);background-position:0 0;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#3273dc;border-color:#3273dc;color:#fff}.table td.is-info,.table th.is-info{background-color:#3298dc;border-color:#3298dc;color:#fff}.table td.is-success,.table th.is-success{background-color:#48c774;border-color:#48c774;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.table td.is-danger,.table th.is-danger{background-color:#f14668;border-color:#f14668;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:inherit}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:transparent}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:transparent}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:transparent}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover,.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(2n){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(2n){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.has-addons .tag,.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#3273dc;color:#fff}.tag:not(body).is-link.is-light{background-color:#eef3fc;color:#2160c4}.tag:not(body).is-info{background-color:#3298dc;color:#fff}.tag:not(body).is-info.is-light{background-color:#eef6fc;color:#1d72aa}.tag:not(body).is-success{background-color:#48c774;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf3;color:#257942}.tag:not(body).is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffbeb;color:#947600}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete:after,.tag:not(body).is-delete:before{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete:before{height:1px;width:50%}.tag:not(body).is-delete:after{height:50%;width:1px}.tag:not(body).is-delete:focus,.tag:not(body).is-delete:hover{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:290486px}a.tag:hover{text-decoration:underline}.subtitle,.title{word-break:break-word}.subtitle em,.subtitle span,.title em,.title span{font-weight:inherit}.subtitle sub,.subtitle sup,.title sub,.title sup{font-size:.75em}.subtitle .tag,.title .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title+.highlight{margin-top:-.75rem}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}.highlight pre{overflow:auto;max-width:100%}.number{align-items:center;background-color:#f5f5f5;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.input,.select select,.textarea{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.input::-moz-placeholder,.select select::-moz-placeholder,.textarea::-moz-placeholder{color:rgba(54,54,54,.3)}.input::-webkit-input-placeholder,.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.input:-moz-placeholder,.select select:-moz-placeholder,.textarea:-moz-placeholder{color:rgba(54,54,54,.3)}.input:-ms-input-placeholder,.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder{color:rgba(54,54,54,.3)}.input:hover,.is-hovered.input,.is-hovered.textarea,.select select.is-hovered,.select select:hover,.textarea:hover{border-color:#b5b5b5}.input:active,.input:focus,.is-active.input,.is-active.textarea,.is-focused.input,.is-focused.textarea,.select select.is-active,.select select.is-focused,.select select:active,.select select:focus,.textarea:active,.textarea:focus{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select fieldset[disabled] select,.select select[disabled],[disabled].input,[disabled].textarea,fieldset[disabled] .input,fieldset[disabled] .select select,fieldset[disabled] .textarea{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.select fieldset[disabled] select::-moz-placeholder,.select select[disabled]::-moz-placeholder,[disabled].input::-moz-placeholder,[disabled].textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder{color:hsla(0,0%,47.8%,.3)}.select fieldset[disabled] select::-webkit-input-placeholder,.select select[disabled]::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder{color:hsla(0,0%,47.8%,.3)}.select fieldset[disabled] select:-moz-placeholder,.select select[disabled]:-moz-placeholder,[disabled].input:-moz-placeholder,[disabled].textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder{color:hsla(0,0%,47.8%,.3)}.select fieldset[disabled] select:-ms-input-placeholder,.select select[disabled]:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder{color:hsla(0,0%,47.8%,.3)}.input,.textarea{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}[readonly].input,[readonly].textarea{box-shadow:none}.is-white.input,.is-white.textarea{border-color:#fff}.is-white.input:active,.is-white.input:focus,.is-white.is-active.input,.is-white.is-active.textarea,.is-white.is-focused.input,.is-white.is-focused.textarea,.is-white.textarea:active,.is-white.textarea:focus{box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.is-black.input,.is-black.textarea{border-color:#0a0a0a}.is-black.input:active,.is-black.input:focus,.is-black.is-active.input,.is-black.is-active.textarea,.is-black.is-focused.input,.is-black.is-focused.textarea,.is-black.textarea:active,.is-black.textarea:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.input,.is-light.textarea{border-color:#f5f5f5}.is-light.input:active,.is-light.input:focus,.is-light.is-active.input,.is-light.is-active.textarea,.is-light.is-focused.input,.is-light.is-focused.textarea,.is-light.textarea:active,.is-light.textarea:focus{box-shadow:0 0 0 .125em hsla(0,0%,96.1%,.25)}.is-dark.input,.is-dark.textarea{border-color:#363636}.is-dark.input:active,.is-dark.input:focus,.is-dark.is-active.input,.is-dark.is-active.textarea,.is-dark.is-focused.input,.is-dark.is-focused.textarea,.is-dark.textarea:active,.is-dark.textarea:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.input,.is-primary.textarea{border-color:#00d1b2}.is-primary.input:active,.is-primary.input:focus,.is-primary.is-active.input,.is-primary.is-active.textarea,.is-primary.is-focused.input,.is-primary.is-focused.textarea,.is-primary.textarea:active,.is-primary.textarea:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.input,.is-link.textarea{border-color:#3273dc}.is-link.input:active,.is-link.input:focus,.is-link.is-active.input,.is-link.is-active.textarea,.is-link.is-focused.input,.is-link.is-focused.textarea,.is-link.textarea:active,.is-link.textarea:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.is-info.input,.is-info.textarea{border-color:#3298dc}.is-info.input:active,.is-info.input:focus,.is-info.is-active.input,.is-info.is-active.textarea,.is-info.is-focused.input,.is-info.is-focused.textarea,.is-info.textarea:active,.is-info.textarea:focus{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.is-success.input,.is-success.textarea{border-color:#48c774}.is-success.input:active,.is-success.input:focus,.is-success.is-active.input,.is-success.is-active.textarea,.is-success.is-focused.input,.is-success.is-focused.textarea,.is-success.textarea:active,.is-success.textarea:focus{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.is-warning.input,.is-warning.textarea{border-color:#ffdd57}.is-warning.input:active,.is-warning.input:focus,.is-warning.is-active.input,.is-warning.is-active.textarea,.is-warning.is-focused.input,.is-warning.is-focused.textarea,.is-warning.textarea:active,.is-warning.textarea:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.is-danger.input,.is-danger.textarea{border-color:#f14668}.is-danger.input:active,.is-danger.input:focus,.is-danger.is-active.input,.is-danger.is-active.textarea,.is-danger.is-focused.input,.is-danger.is-focused.textarea,.is-danger.textarea:active,.is-danger.textarea:focus{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.input,.is-small.textarea{border-radius:2px;font-size:.75rem}.is-medium.input,.is-medium.textarea{font-size:1.25rem}.is-large.input,.is-large.textarea{font-size:1.5rem}.is-fullwidth.input,.is-fullwidth.textarea{display:block;width:100%}.is-inline.input,.is-inline.textarea{display:inline;width:auto}.input.is-rounded{border-radius:290486px;padding-left:calc(1.125em - 1px);padding-right:calc(1.125em - 1px)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:auto}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox input[disabled],.radio input[disabled],[disabled].checkbox,[disabled].radio,fieldset[disabled] .checkbox,fieldset[disabled] .radio{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading):after{border-color:#3273dc;right:1.125em;z-index:4}.select.is-rounded select{border-radius:290486px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover:after{border-color:#363636}.select.is-white:not(:hover):after,.select.is-white select{border-color:#fff}.select.is-white select.is-hovered,.select.is-white select:hover{border-color:#f2f2f2}.select.is-white select.is-active,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select:focus{box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.select.is-black:not(:hover):after,.select.is-black select{border-color:#0a0a0a}.select.is-black select.is-hovered,.select.is-black select:hover{border-color:#000}.select.is-black select.is-active,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover):after,.select.is-light select{border-color:#f5f5f5}.select.is-light select.is-hovered,.select.is-light select:hover{border-color:#e8e8e8}.select.is-light select.is-active,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select:focus{box-shadow:0 0 0 .125em hsla(0,0%,96.1%,.25)}.select.is-dark:not(:hover):after,.select.is-dark select{border-color:#363636}.select.is-dark select.is-hovered,.select.is-dark select:hover{border-color:#292929}.select.is-dark select.is-active,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover):after,.select.is-primary select{border-color:#00d1b2}.select.is-primary select.is-hovered,.select.is-primary select:hover{border-color:#00b89c}.select.is-primary select.is-active,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover):after,.select.is-link select{border-color:#3273dc}.select.is-link select.is-hovered,.select.is-link select:hover{border-color:#2366d1}.select.is-link select.is-active,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select.is-info:not(:hover):after,.select.is-info select{border-color:#3298dc}.select.is-info select.is-hovered,.select.is-info select:hover{border-color:#238cd1}.select.is-info select.is-active,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select:focus{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.select.is-success:not(:hover):after,.select.is-success select{border-color:#48c774}.select.is-success select.is-hovered,.select.is-success select:hover{border-color:#3abb67}.select.is-success select.is-active,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select:focus{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.select.is-warning:not(:hover):after,.select.is-warning select{border-color:#ffdd57}.select.is-warning select.is-hovered,.select.is-warning select:hover{border-color:#ffd83d}.select.is-warning select.is-active,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.select.is-danger:not(:hover):after,.select.is-danger select{border-color:#f14668}.select.is-danger select.is-hovered,.select.is-danger select:hover{border-color:#ef2e55}.select.is-danger select.is-active,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select:focus{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled:after{border-color:#7a7a7a}.select.is-fullwidth,.select.is-fullwidth select{width:100%}.select.is-loading:after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white.is-hovered .file-cta,.file.is-white:hover .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white.is-focused .file-cta,.file.is-white:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em hsla(0,0%,100%,.25);color:#0a0a0a}.file.is-white.is-active .file-cta,.file.is-white:active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black.is-hovered .file-cta,.file.is-black:hover .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black.is-focused .file-cta,.file.is-black:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:#fff}.file.is-black.is-active .file-cta,.file.is-black:active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light.is-hovered .file-cta,.file.is-light:hover .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light.is-focused .file-cta,.file.is-light:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em hsla(0,0%,96.1%,.25);color:rgba(0,0,0,.7)}.file.is-light.is-active .file-cta,.file.is-light:active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark.is-hovered .file-cta,.file.is-dark:hover .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark.is-focused .file-cta,.file.is-dark:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark.is-active .file-cta,.file.is-dark:active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary.is-hovered .file-cta,.file.is-primary:hover .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary.is-focused .file-cta,.file.is-primary:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary.is-active .file-cta,.file.is-primary:active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#3273dc;border-color:transparent;color:#fff}.file.is-link.is-hovered .file-cta,.file.is-link:hover .file-cta{background-color:#276cda;border-color:transparent;color:#fff}.file.is-link.is-focused .file-cta,.file.is-link:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,115,220,.25);color:#fff}.file.is-link.is-active .file-cta,.file.is-link:active .file-cta{background-color:#2366d1;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3298dc;border-color:transparent;color:#fff}.file.is-info.is-hovered .file-cta,.file.is-info:hover .file-cta{background-color:#2793da;border-color:transparent;color:#fff}.file.is-info.is-focused .file-cta,.file.is-info:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,152,220,.25);color:#fff}.file.is-info.is-active .file-cta,.file.is-info:active .file-cta{background-color:#238cd1;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c774;border-color:transparent;color:#fff}.file.is-success.is-hovered .file-cta,.file.is-success:hover .file-cta{background-color:#3ec46d;border-color:transparent;color:#fff}.file.is-success.is-focused .file-cta,.file.is-success:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,116,.25);color:#fff}.file.is-success.is-active .file-cta,.file.is-success:active .file-cta{background-color:#3abb67;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-hovered .file-cta,.file.is-warning:hover .file-cta{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-focused .file-cta,.file.is-warning:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,221,87,.25);color:rgba(0,0,0,.7)}.file.is-warning.is-active .file-cta,.file.is-warning:active .file-cta{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger.is-hovered .file-cta,.file.is-danger:hover .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger.is-focused .file-cta,.file.is-danger:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger.is-active .file-cta,.file.is-danger:active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#3273dc}.help.is-info{color:#3298dc}.help.is-success{color:#48c774}.help.is-warning{color:#ffdd57}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover{z-index:2}.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]):focus{z-index:3}.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media print,screen and (min-width:769px){.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width:768px){.field-label{margin-bottom:.5rem}}@media print,screen and (min-width:769px){.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media print,screen and (min-width:769px){.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading:after{position:absolute!important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#3273dc;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li:before{color:#b5b5b5;content:"/"}.breadcrumb ol,.breadcrumb ul{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li:before{content:"→"}.breadcrumb.has-bullet-separator li+li:before{content:"•"}.breadcrumb.has-dot-separator li+li:before{content:"·"}.breadcrumb.has-succeeds-separator li+li:before{content:"≻"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);color:#4a4a4a;max-width:100%;overflow:hidden;position:relative}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 .125em .25em rgba(10,10,10,.1);display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem 1rem}.card-header-icon,.card-header-title.is-centered{justify-content:center}.card-header-icon{align-items:center;cursor:pointer;display:flex;padding:.75rem 1rem}.card-image{display:block;position:relative}.card-content{padding:1.5rem}.card-content,.card-footer{background-color:transparent}.card-footer{border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:0;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#3273dc;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile,.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media print,screen and (min-width:769px){.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .subtitle,.level-item .title{margin-bottom:0}@media screen and (max-width:768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media print,screen and (min-width:769px){.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width:768px){.level-left+.level-right{margin-top:1.5rem}}@media print,screen and (min-width:769px){.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media print,screen and (min-width:769px){.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid hsla(0,0%,85.9%,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid hsla(0,0%,85.9%,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width:768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#3273dc;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#00947e}.message.is-link{background-color:#eef3fc}.message.is-link .message-header{background-color:#3273dc;color:#fff}.message.is-link .message-body{border-color:#3273dc;color:#2160c4}.message.is-info{background-color:#eef6fc}.message.is-info .message-header{background-color:#3298dc;color:#fff}.message.is-info .message-body{border-color:#3298dc;color:#1d72aa}.message.is-success{background-color:#effaf3}.message.is-success .message-header{background-color:#48c774;color:#fff}.message.is-success .message-body{border-color:#48c774;color:#257942}.message.is-warning{background-color:#fffbeb}.message.is-warning .message-header{background-color:#ffdd57;color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:#ffdd57;color:#947600}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:#f14668;color:#fff}.message.is-danger .message-body{border-color:#f14668;color:#cc0f35}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,.86)}.modal-card,.modal-content{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width:769px){.modal-card,.modal-content{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-foot,.modal-card-head{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link,.navbar.is-white .navbar-brand>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width:1024px){.navbar.is-white .navbar-end .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-start>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link:after,.navbar.is-white .navbar-start .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand .navbar-link,.navbar.is-black .navbar-brand>.navbar-item{color:#fff}.navbar.is-black .navbar-brand .navbar-link.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-black .navbar-end .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-start>.navbar-item{color:#fff}.navbar.is-black .navbar-end .navbar-link.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-end .navbar-link:after,.navbar.is-black .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5}.navbar.is-light,.navbar.is-light .navbar-brand .navbar-link,.navbar.is-light .navbar-brand>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand .navbar-link.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width:1024px){.navbar.is-light .navbar-end .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-start>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-end .navbar-link.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-end .navbar-link:after,.navbar.is-light .navbar-start .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,.7)}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand .navbar-link,.navbar.is-dark .navbar-brand>.navbar-item{color:#fff}.navbar.is-dark .navbar-brand .navbar-link.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-dark .navbar-end .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-start>.navbar-item{color:#fff}.navbar.is-dark .navbar-end .navbar-link.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover{background-color:#292929;color:#fff}.navbar.is-dark .navbar-end .navbar-link:after,.navbar.is-dark .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand .navbar-link,.navbar.is-primary .navbar-brand>.navbar-item{color:#fff}.navbar.is-primary .navbar-brand .navbar-link.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-primary .navbar-end .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-start>.navbar-item{color:#fff}.navbar.is-primary .navbar-end .navbar-link.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-end .navbar-link:after,.navbar.is-primary .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#3273dc;color:#fff}.navbar.is-link .navbar-brand .navbar-link,.navbar.is-link .navbar-brand>.navbar-item{color:#fff}.navbar.is-link .navbar-brand .navbar-link.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-link .navbar-end .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-start>.navbar-item{color:#fff}.navbar.is-link .navbar-end .navbar-link.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-end .navbar-link:after,.navbar.is-link .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#3273dc;color:#fff}}.navbar.is-info{background-color:#3298dc;color:#fff}.navbar.is-info .navbar-brand .navbar-link,.navbar.is-info .navbar-brand>.navbar-item{color:#fff}.navbar.is-info .navbar-brand .navbar-link.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-info .navbar-end .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-start>.navbar-item{color:#fff}.navbar.is-info .navbar-end .navbar-link.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-end .navbar-link:after,.navbar.is-info .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3298dc;color:#fff}}.navbar.is-success{background-color:#48c774;color:#fff}.navbar.is-success .navbar-brand .navbar-link,.navbar.is-success .navbar-brand>.navbar-item{color:#fff}.navbar.is-success .navbar-brand .navbar-link.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-success .navbar-end .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-start>.navbar-item{color:#fff}.navbar.is-success .navbar-end .navbar-link.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-end .navbar-link:after,.navbar.is-success .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#48c774;color:#fff}}.navbar.is-warning{background-color:#ffdd57}.navbar.is-warning,.navbar.is-warning .navbar-brand .navbar-link,.navbar.is-warning .navbar-brand>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width:1024px){.navbar.is-warning .navbar-end .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-start>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link:after,.navbar.is-warning .navbar-start .navbar-link:after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffdd57;color:rgba(0,0,0,.7)}}.navbar.is-danger{background-color:#f14668;color:#fff}.navbar.is-danger .navbar-brand .navbar-link,.navbar.is-danger .navbar-brand>.navbar-item{color:#fff}.navbar.is-danger .navbar-brand .navbar-link.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width:1024px){.navbar.is-danger .navbar-end .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-start>.navbar-item{color:#fff}.navbar.is-danger .navbar-end .navbar-link.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-end .navbar-link:after,.navbar.is-danger .navbar-start .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f14668;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}body.has-navbar-fixed-top,html.has-navbar-fixed-top{padding-top:3.25rem}body.has-navbar-fixed-bottom,html.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:first-child{top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,.05)}.navbar-burger.is-active span:first-child{transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-.25rem;margin-right:-.25rem}.navbar-link,a.navbar-item{cursor:pointer}.navbar-link.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,a.navbar-item.is-active,a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover{background-color:#fafafa;color:#3273dc}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(.5rem - 1px)}.navbar-item.is-tab.is-active,.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#3273dc}.navbar-item.is-tab.is-active{border-bottom-style:solid;border-bottom-width:3px;color:#3273dc;padding-bottom:calc(.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless):after{border-color:#3273dc;margin-top:-.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width:1023px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link:after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,.1);padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top-touch .navbar-menu,.navbar.is-fixed-top .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}body.has-navbar-fixed-top-touch,html.has-navbar-fixed-top-touch{padding-top:3.25rem}body.has-navbar-fixed-bottom-touch,html.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width:1024px){.navbar,.navbar-end,.navbar-menu,.navbar-start{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-end,.navbar.is-spaced .navbar-start{align-items:center}.navbar.is-spaced .navbar-link,.navbar.is-spaced a.navbar-item{border-radius:4px}.navbar.is-transparent .navbar-link.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover{background-color:transparent!important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent!important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link:after{transform:rotate(135deg) translate(.25em,-.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,.1);display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-dropdown{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);display:block;opacity:0;pointer-events:none;top:calc(100% - 4px);transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.container>.navbar .navbar-brand,.navbar>.container .navbar-brand{margin-left:-.75rem}.container>.navbar .navbar-menu,.navbar>.container .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-desktop{top:0}body.has-navbar-fixed-top-desktop,html.has-navbar-fixed-top-desktop{padding-top:3.25rem}body.has-navbar-fixed-bottom-desktop,html.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}body.has-spaced-navbar-fixed-top,html.has-spaced-navbar-fixed-top{padding-top:5.25rem}body.has-spaced-navbar-fixed-bottom,html.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}.navbar-link.is-active,a.navbar-item.is-active{color:#0a0a0a}.navbar-link.is-active:not(:focus):not(:hover),a.navbar-item.is-active:not(:focus):not(:hover){background-color:transparent}.navbar-item.has-dropdown.is-active .navbar-link,.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-next,.pagination.is-rounded .pagination-previous{padding-left:1em;padding-right:1em;border-radius:290486px}.pagination.is-rounded .pagination-link{border-radius:290486px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-link,.pagination-next,.pagination-previous{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-link:hover,.pagination-next:hover,.pagination-previous:hover{border-color:#b5b5b5;color:#363636}.pagination-link:focus,.pagination-next:focus,.pagination-previous:focus{border-color:#3273dc}.pagination-link:active,.pagination-next:active,.pagination-previous:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-link[disabled],.pagination-next[disabled],.pagination-previous[disabled]{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-next,.pagination-previous{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#3273dc;border-color:#3273dc;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}@media screen and (max-width:768px){.pagination{flex-wrap:wrap}.pagination-list li,.pagination-next,.pagination-previous{flex-grow:1;flex-shrink:1}}@media print,screen and (min-width:769px){.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#00d1b2;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#00d1b2}.panel.is-primary .panel-block.is-active .panel-icon{color:#00d1b2}.panel.is-link .panel-heading{background-color:#3273dc;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#3273dc}.panel.is-link .panel-block.is-active .panel-icon{color:#3273dc}.panel.is-info .panel-heading{background-color:#3298dc;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3298dc}.panel.is-info .panel-block.is-active .panel-icon{color:#3298dc}.panel.is-success .panel-heading{background-color:#48c774;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#48c774}.panel.is-success .panel-block.is-active .panel-icon{color:#48c774}.panel.is-warning .panel-heading{background-color:#ffdd57;color:rgba(0,0,0,.7)}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffdd57}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffdd57}.panel.is-danger .panel-heading{background-color:#f14668;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f14668}.panel.is-danger .panel-block.is-active .panel-icon{color:#f14668}.panel-block:not(:last-child),.panel-tabs:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#3273dc}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#3273dc;color:#363636}.panel-block.is-active .panel-icon{color:#3273dc}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#3273dc;color:#3273dc}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-center,.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent!important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#3273dc;border-color:#3273dc;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0}.columns.is-mobile>.column.is-offset-0{margin-left:0}.columns.is-mobile>.column.is-1{flex:none;width:8.3333333333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.3333333333%}.columns.is-mobile>.column.is-2{flex:none;width:16.6666666667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.6666666667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.3333333333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.3333333333%}.columns.is-mobile>.column.is-5{flex:none;width:41.6666666667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.6666666667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.3333333333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.3333333333%}.columns.is-mobile>.column.is-8{flex:none;width:66.6666666667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.6666666667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.3333333333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.3333333333%}.columns.is-mobile>.column.is-11{flex:none;width:91.6666666667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.6666666667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width:768px){.column.is-narrow-mobile{flex:none}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0}.column.is-offset-0-mobile{margin-left:0}.column.is-1-mobile{flex:none;width:8.3333333333%}.column.is-offset-1-mobile{margin-left:8.3333333333%}.column.is-2-mobile{flex:none;width:16.6666666667%}.column.is-offset-2-mobile{margin-left:16.6666666667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.3333333333%}.column.is-offset-4-mobile{margin-left:33.3333333333%}.column.is-5-mobile{flex:none;width:41.6666666667%}.column.is-offset-5-mobile{margin-left:41.6666666667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.3333333333%}.column.is-offset-7-mobile{margin-left:58.3333333333%}.column.is-8-mobile{flex:none;width:66.6666666667%}.column.is-offset-8-mobile{margin-left:66.6666666667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.3333333333%}.column.is-offset-10-mobile{margin-left:83.3333333333%}.column.is-11-mobile{flex:none;width:91.6666666667%}.column.is-offset-11-mobile{margin-left:91.6666666667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media print,screen and (min-width:769px){.column.is-narrow,.column.is-narrow-tablet{flex:none}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0}.column.is-1,.column.is-1-tablet{flex:none;width:8.3333333333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.3333333333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.6666666667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.6666666667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.3333333333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.3333333333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.6666666667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.6666666667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.3333333333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.3333333333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.6666666667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.6666666667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.3333333333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.3333333333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.6666666667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.6666666667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width:1023px){.column.is-narrow-touch{flex:none}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0}.column.is-offset-0-touch{margin-left:0}.column.is-1-touch{flex:none;width:8.3333333333%}.column.is-offset-1-touch{margin-left:8.3333333333%}.column.is-2-touch{flex:none;width:16.6666666667%}.column.is-offset-2-touch{margin-left:16.6666666667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.3333333333%}.column.is-offset-4-touch{margin-left:33.3333333333%}.column.is-5-touch{flex:none;width:41.6666666667%}.column.is-offset-5-touch{margin-left:41.6666666667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.3333333333%}.column.is-offset-7-touch{margin-left:58.3333333333%}.column.is-8-touch{flex:none;width:66.6666666667%}.column.is-offset-8-touch{margin-left:66.6666666667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.3333333333%}.column.is-offset-10-touch{margin-left:83.3333333333%}.column.is-11-touch{flex:none;width:91.6666666667%}.column.is-offset-11-touch{margin-left:91.6666666667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width:1024px){.column.is-narrow-desktop{flex:none}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0}.column.is-offset-0-desktop{margin-left:0}.column.is-1-desktop{flex:none;width:8.3333333333%}.column.is-offset-1-desktop{margin-left:8.3333333333%}.column.is-2-desktop{flex:none;width:16.6666666667%}.column.is-offset-2-desktop{margin-left:16.6666666667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.3333333333%}.column.is-offset-4-desktop{margin-left:33.3333333333%}.column.is-5-desktop{flex:none;width:41.6666666667%}.column.is-offset-5-desktop{margin-left:41.6666666667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.3333333333%}.column.is-offset-7-desktop{margin-left:58.3333333333%}.column.is-8-desktop{flex:none;width:66.6666666667%}.column.is-offset-8-desktop{margin-left:66.6666666667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.3333333333%}.column.is-offset-10-desktop{margin-left:83.3333333333%}.column.is-11-desktop{flex:none;width:91.6666666667%}.column.is-offset-11-desktop{margin-left:91.6666666667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width:1216px){.column.is-narrow-widescreen{flex:none}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0}.column.is-offset-0-widescreen{margin-left:0}.column.is-1-widescreen{flex:none;width:8.3333333333%}.column.is-offset-1-widescreen{margin-left:8.3333333333%}.column.is-2-widescreen{flex:none;width:16.6666666667%}.column.is-offset-2-widescreen{margin-left:16.6666666667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.3333333333%}.column.is-offset-4-widescreen{margin-left:33.3333333333%}.column.is-5-widescreen{flex:none;width:41.6666666667%}.column.is-offset-5-widescreen{margin-left:41.6666666667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.3333333333%}.column.is-offset-7-widescreen{margin-left:58.3333333333%}.column.is-8-widescreen{flex:none;width:66.6666666667%}.column.is-offset-8-widescreen{margin-left:66.6666666667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.3333333333%}.column.is-offset-10-widescreen{margin-left:83.3333333333%}.column.is-11-widescreen{flex:none;width:91.6666666667%}.column.is-offset-11-widescreen{margin-left:91.6666666667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width:1408px){.column.is-narrow-fullhd{flex:none}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0}.column.is-offset-0-fullhd{margin-left:0}.column.is-1-fullhd{flex:none;width:8.3333333333%}.column.is-offset-1-fullhd{margin-left:8.3333333333%}.column.is-2-fullhd{flex:none;width:16.6666666667%}.column.is-offset-2-fullhd{margin-left:16.6666666667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.3333333333%}.column.is-offset-4-fullhd{margin-left:33.3333333333%}.column.is-5-fullhd{flex:none;width:41.6666666667%}.column.is-offset-5-fullhd{margin-left:41.6666666667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.3333333333%}.column.is-offset-7-fullhd{margin-left:58.3333333333%}.column.is-8-fullhd{flex:none;width:66.6666666667%}.column.is-offset-8-fullhd{margin-left:66.6666666667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.3333333333%}.column.is-offset-10-fullhd{margin-left:83.3333333333%}.column.is-11-fullhd{flex:none;width:91.6666666667%}.column.is-offset-11-fullhd{margin-left:91.6666666667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:.75rem}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0!important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media print,screen and (min-width:769px){.columns:not(.is-desktop){display:flex}}@media screen and (min-width:1024px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap:0.75rem;margin-left:calc(var(--columnGap)*-1);margin-right:calc(var(--columnGap)*-1)}.columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap:0rem}@media screen and (max-width:768px){.columns.is-variable.is-0-mobile{--columnGap:0rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-0-tablet{--columnGap:0rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-0-tablet-only{--columnGap:0rem}}@media screen and (max-width:1023px){.columns.is-variable.is-0-touch{--columnGap:0rem}}@media screen and (min-width:1024px){.columns.is-variable.is-0-desktop{--columnGap:0rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-0-desktop-only{--columnGap:0rem}}@media screen and (min-width:1216px){.columns.is-variable.is-0-widescreen{--columnGap:0rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-0-widescreen-only{--columnGap:0rem}}@media screen and (min-width:1408px){.columns.is-variable.is-0-fullhd{--columnGap:0rem}}.columns.is-variable.is-1{--columnGap:0.25rem}@media screen and (max-width:768px){.columns.is-variable.is-1-mobile{--columnGap:0.25rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-1-tablet{--columnGap:0.25rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-1-tablet-only{--columnGap:0.25rem}}@media screen and (max-width:1023px){.columns.is-variable.is-1-touch{--columnGap:0.25rem}}@media screen and (min-width:1024px){.columns.is-variable.is-1-desktop{--columnGap:0.25rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-1-desktop-only{--columnGap:0.25rem}}@media screen and (min-width:1216px){.columns.is-variable.is-1-widescreen{--columnGap:0.25rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-1-widescreen-only{--columnGap:0.25rem}}@media screen and (min-width:1408px){.columns.is-variable.is-1-fullhd{--columnGap:0.25rem}}.columns.is-variable.is-2{--columnGap:0.5rem}@media screen and (max-width:768px){.columns.is-variable.is-2-mobile{--columnGap:0.5rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-2-tablet{--columnGap:0.5rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-2-tablet-only{--columnGap:0.5rem}}@media screen and (max-width:1023px){.columns.is-variable.is-2-touch{--columnGap:0.5rem}}@media screen and (min-width:1024px){.columns.is-variable.is-2-desktop{--columnGap:0.5rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-2-desktop-only{--columnGap:0.5rem}}@media screen and (min-width:1216px){.columns.is-variable.is-2-widescreen{--columnGap:0.5rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-2-widescreen-only{--columnGap:0.5rem}}@media screen and (min-width:1408px){.columns.is-variable.is-2-fullhd{--columnGap:0.5rem}}.columns.is-variable.is-3{--columnGap:0.75rem}@media screen and (max-width:768px){.columns.is-variable.is-3-mobile{--columnGap:0.75rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-3-tablet{--columnGap:0.75rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-3-tablet-only{--columnGap:0.75rem}}@media screen and (max-width:1023px){.columns.is-variable.is-3-touch{--columnGap:0.75rem}}@media screen and (min-width:1024px){.columns.is-variable.is-3-desktop{--columnGap:0.75rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-3-desktop-only{--columnGap:0.75rem}}@media screen and (min-width:1216px){.columns.is-variable.is-3-widescreen{--columnGap:0.75rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-3-widescreen-only{--columnGap:0.75rem}}@media screen and (min-width:1408px){.columns.is-variable.is-3-fullhd{--columnGap:0.75rem}}.columns.is-variable.is-4{--columnGap:1rem}@media screen and (max-width:768px){.columns.is-variable.is-4-mobile{--columnGap:1rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-4-tablet{--columnGap:1rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-4-tablet-only{--columnGap:1rem}}@media screen and (max-width:1023px){.columns.is-variable.is-4-touch{--columnGap:1rem}}@media screen and (min-width:1024px){.columns.is-variable.is-4-desktop{--columnGap:1rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-4-desktop-only{--columnGap:1rem}}@media screen and (min-width:1216px){.columns.is-variable.is-4-widescreen{--columnGap:1rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-4-widescreen-only{--columnGap:1rem}}@media screen and (min-width:1408px){.columns.is-variable.is-4-fullhd{--columnGap:1rem}}.columns.is-variable.is-5{--columnGap:1.25rem}@media screen and (max-width:768px){.columns.is-variable.is-5-mobile{--columnGap:1.25rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-5-tablet{--columnGap:1.25rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-5-tablet-only{--columnGap:1.25rem}}@media screen and (max-width:1023px){.columns.is-variable.is-5-touch{--columnGap:1.25rem}}@media screen and (min-width:1024px){.columns.is-variable.is-5-desktop{--columnGap:1.25rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-5-desktop-only{--columnGap:1.25rem}}@media screen and (min-width:1216px){.columns.is-variable.is-5-widescreen{--columnGap:1.25rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-5-widescreen-only{--columnGap:1.25rem}}@media screen and (min-width:1408px){.columns.is-variable.is-5-fullhd{--columnGap:1.25rem}}.columns.is-variable.is-6{--columnGap:1.5rem}@media screen and (max-width:768px){.columns.is-variable.is-6-mobile{--columnGap:1.5rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-6-tablet{--columnGap:1.5rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-6-tablet-only{--columnGap:1.5rem}}@media screen and (max-width:1023px){.columns.is-variable.is-6-touch{--columnGap:1.5rem}}@media screen and (min-width:1024px){.columns.is-variable.is-6-desktop{--columnGap:1.5rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-6-desktop-only{--columnGap:1.5rem}}@media screen and (min-width:1216px){.columns.is-variable.is-6-widescreen{--columnGap:1.5rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-6-widescreen-only{--columnGap:1.5rem}}@media screen and (min-width:1408px){.columns.is-variable.is-6-fullhd{--columnGap:1.5rem}}.columns.is-variable.is-7{--columnGap:1.75rem}@media screen and (max-width:768px){.columns.is-variable.is-7-mobile{--columnGap:1.75rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-7-tablet{--columnGap:1.75rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-7-tablet-only{--columnGap:1.75rem}}@media screen and (max-width:1023px){.columns.is-variable.is-7-touch{--columnGap:1.75rem}}@media screen and (min-width:1024px){.columns.is-variable.is-7-desktop{--columnGap:1.75rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-7-desktop-only{--columnGap:1.75rem}}@media screen and (min-width:1216px){.columns.is-variable.is-7-widescreen{--columnGap:1.75rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-7-widescreen-only{--columnGap:1.75rem}}@media screen and (min-width:1408px){.columns.is-variable.is-7-fullhd{--columnGap:1.75rem}}.columns.is-variable.is-8{--columnGap:2rem}@media screen and (max-width:768px){.columns.is-variable.is-8-mobile{--columnGap:2rem}}@media print,screen and (min-width:769px){.columns.is-variable.is-8-tablet{--columnGap:2rem}}@media screen and (min-width:769px)and (max-width:1023px){.columns.is-variable.is-8-tablet-only{--columnGap:2rem}}@media screen and (max-width:1023px){.columns.is-variable.is-8-touch{--columnGap:2rem}}@media screen and (min-width:1024px){.columns.is-variable.is-8-desktop{--columnGap:2rem}}@media screen and (min-width:1024px)and (max-width:1215px){.columns.is-variable.is-8-desktop-only{--columnGap:2rem}}@media screen and (min-width:1216px){.columns.is-variable.is-8-widescreen{--columnGap:2rem}}@media screen and (min-width:1216px)and (max-width:1407px){.columns.is-variable.is-8-widescreen-only{--columnGap:2rem}}@media screen and (min-width:1408px){.columns.is-variable.is-8-fullhd{--columnGap:2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0!important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem!important}@media print,screen and (min-width:769px){.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.3333333333%}.tile.is-2{flex:none;width:16.6666666667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.3333333333%}.tile.is-5{flex:none;width:41.6666666667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.3333333333%}.tile.is-8{flex:none;width:66.6666666667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.3333333333%}.tile.is-11{flex:none;width:91.6666666667%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff!important}a.has-text-white:focus,a.has-text-white:hover{color:#e6e6e6!important}.has-background-white{background-color:#fff!important}.has-text-black{color:#0a0a0a!important}a.has-text-black:focus,a.has-text-black:hover{color:#000!important}.has-background-black{background-color:#0a0a0a!important}.has-text-light{color:#f5f5f5!important}a.has-text-light:focus,a.has-text-light:hover{color:#dbdbdb!important}.has-background-light{background-color:#f5f5f5!important}.has-text-dark{color:#363636!important}a.has-text-dark:focus,a.has-text-dark:hover{color:#1c1c1c!important}.has-background-dark{background-color:#363636!important}.has-text-primary{color:#00d1b2!important}a.has-text-primary:focus,a.has-text-primary:hover{color:#009e86!important}.has-background-primary{background-color:#00d1b2!important}.has-text-primary-light{color:#ebfffc!important}a.has-text-primary-light:focus,a.has-text-primary-light:hover{color:#b8fff4!important}.has-background-primary-light{background-color:#ebfffc!important}.has-text-primary-dark{color:#00947e!important}a.has-text-primary-dark:focus,a.has-text-primary-dark:hover{color:#00c7a9!important}.has-background-primary-dark{background-color:#00947e!important}.has-text-link{color:#3273dc!important}a.has-text-link:focus,a.has-text-link:hover{color:#205bbc!important}.has-background-link{background-color:#3273dc!important}.has-text-link-light{color:#eef3fc!important}a.has-text-link-light:focus,a.has-text-link-light:hover{color:#c2d5f5!important}.has-background-link-light{background-color:#eef3fc!important}.has-text-link-dark{color:#2160c4!important}a.has-text-link-dark:focus,a.has-text-link-dark:hover{color:#3b79de!important}.has-background-link-dark{background-color:#2160c4!important}.has-text-info{color:#3298dc!important}a.has-text-info:focus,a.has-text-info:hover{color:#207dbc!important}.has-background-info{background-color:#3298dc!important}.has-text-info-light{color:#eef6fc!important}a.has-text-info-light:focus,a.has-text-info-light:hover{color:#c2e0f5!important}.has-background-info-light{background-color:#eef6fc!important}.has-text-info-dark{color:#1d72aa!important}a.has-text-info-dark:focus,a.has-text-info-dark:hover{color:#248fd6!important}.has-background-info-dark{background-color:#1d72aa!important}.has-text-success{color:#48c774!important}a.has-text-success:focus,a.has-text-success:hover{color:#34a85c!important}.has-background-success{background-color:#48c774!important}.has-text-success-light{color:#effaf3!important}a.has-text-success-light:focus,a.has-text-success-light:hover{color:#c8eed6!important}.has-background-success-light{background-color:#effaf3!important}.has-text-success-dark{color:#257942!important}a.has-text-success-dark:focus,a.has-text-success-dark:hover{color:#31a058!important}.has-background-success-dark{background-color:#257942!important}.has-text-warning{color:#ffdd57!important}a.has-text-warning:focus,a.has-text-warning:hover{color:#ffd324!important}.has-background-warning{background-color:#ffdd57!important}.has-text-warning-light{color:#fffbeb!important}a.has-text-warning-light:focus,a.has-text-warning-light:hover{color:#fff1b8!important}.has-background-warning-light{background-color:#fffbeb!important}.has-text-warning-dark{color:#947600!important}a.has-text-warning-dark:focus,a.has-text-warning-dark:hover{color:#c79f00!important}.has-background-warning-dark{background-color:#947600!important}.has-text-danger{color:#f14668!important}a.has-text-danger:focus,a.has-text-danger:hover{color:#ee1742!important}.has-background-danger{background-color:#f14668!important}.has-text-danger-light{color:#feecf0!important}a.has-text-danger-light:focus,a.has-text-danger-light:hover{color:#fabdc9!important}.has-background-danger-light{background-color:#feecf0!important}.has-text-danger-dark{color:#cc0f35!important}a.has-text-danger-dark:focus,a.has-text-danger-dark:hover{color:#ee2049!important}.has-background-danger-dark{background-color:#cc0f35!important}.has-text-black-bis{color:#121212!important}.has-background-black-bis{background-color:#121212!important}.has-text-black-ter{color:#242424!important}.has-background-black-ter{background-color:#242424!important}.has-text-grey-darker{color:#363636!important}.has-background-grey-darker{background-color:#363636!important}.has-text-grey-dark{color:#4a4a4a!important}.has-background-grey-dark{background-color:#4a4a4a!important}.has-text-grey{color:#7a7a7a!important}.has-background-grey{background-color:#7a7a7a!important}.has-text-grey-light{color:#b5b5b5!important}.has-background-grey-light{background-color:#b5b5b5!important}.has-text-grey-lighter{color:#dbdbdb!important}.has-background-grey-lighter{background-color:#dbdbdb!important}.has-text-white-ter{color:#f5f5f5!important}.has-background-white-ter{background-color:#f5f5f5!important}.has-text-white-bis{color:#fafafa!important}.has-background-white-bis{background-color:#fafafa!important}.is-flex-direction-row{flex-direction:row!important}.is-flex-direction-row-reverse{flex-direction:row-reverse!important}.is-flex-direction-column{flex-direction:column!important}.is-flex-direction-column-reverse{flex-direction:column-reverse!important}.is-flex-wrap-nowrap{flex-wrap:nowrap!important}.is-flex-wrap-wrap{flex-wrap:wrap!important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse!important}.is-justify-content-flex-start{justify-content:flex-start!important}.is-justify-content-flex-end{justify-content:flex-end!important}.is-justify-content-center{justify-content:center!important}.is-justify-content-space-between{justify-content:space-between!important}.is-justify-content-space-around{justify-content:space-around!important}.is-justify-content-space-evenly{justify-content:space-evenly!important}.is-justify-content-start{justify-content:start!important}.is-justify-content-end{justify-content:end!important}.is-justify-content-left{justify-content:left!important}.is-justify-content-right{justify-content:right!important}.is-align-content-flex-start{align-content:flex-start!important}.is-align-content-flex-end{align-content:flex-end!important}.is-align-content-center{align-content:center!important}.is-align-content-space-between{align-content:space-between!important}.is-align-content-space-around{align-content:space-around!important}.is-align-content-space-evenly{align-content:space-evenly!important}.is-align-content-stretch{align-content:stretch!important}.is-align-content-start{align-content:start!important}.is-align-content-end{align-content:end!important}.is-align-content-baseline{align-content:baseline!important}.is-align-items-stretch{align-items:stretch!important}.is-align-items-flex-start{align-items:flex-start!important}.is-align-items-flex-end{align-items:flex-end!important}.is-align-items-center{align-items:center!important}.is-align-items-baseline{align-items:baseline!important}.is-align-items-start{align-items:start!important}.is-align-items-end{align-items:end!important}.is-align-items-self-start{align-items:self-start!important}.is-align-items-self-end{align-items:self-end!important}.is-align-self-auto{align-self:auto!important}.is-align-self-flex-start{align-self:flex-start!important}.is-align-self-flex-end{align-self:flex-end!important}.is-align-self-center{align-self:center!important}.is-align-self-baseline{align-self:baseline!important}.is-align-self-stretch{align-self:stretch!important}.is-flex-grow-0{flex-grow:0!important}.is-flex-grow-1{flex-grow:1!important}.is-flex-grow-2{flex-grow:2!important}.is-flex-grow-3{flex-grow:3!important}.is-flex-grow-4{flex-grow:4!important}.is-flex-grow-5{flex-grow:5!important}.is-flex-shrink-0{flex-shrink:0!important}.is-flex-shrink-1{flex-shrink:1!important}.is-flex-shrink-2{flex-shrink:2!important}.is-flex-shrink-3{flex-shrink:3!important}.is-flex-shrink-4{flex-shrink:4!important}.is-flex-shrink-5{flex-shrink:5!important}.is-clearfix:after{clear:both;content:" ";display:table}.is-pulled-left{float:left!important}.is-pulled-right{float:right!important}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.is-clickable{cursor:pointer!important}.is-clipped{overflow:hidden!important}.is-relative{position:relative!important}.is-marginless{margin:0!important}.is-paddingless{padding:0!important}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.mx-0{margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:.25rem!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.mx-1{margin-right:.25rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-2{margin:.5rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.mx-2{margin-right:.5rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-3{margin:.75rem!important}.mt-3{margin-top:.75rem!important}.mr-3{margin-right:.75rem!important}.mb-3{margin-bottom:.75rem!important}.ml-3,.mx-3{margin-left:.75rem!important}.mx-3{margin-right:.75rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.m-4{margin:1rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4,.mx-4{margin-left:1rem!important}.mx-4{margin-right:1rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.m-5{margin:1.5rem!important}.mt-5{margin-top:1.5rem!important}.mr-5{margin-right:1.5rem!important}.mb-5{margin-bottom:1.5rem!important}.ml-5,.mx-5{margin-left:1.5rem!important}.mx-5{margin-right:1.5rem!important}.my-5{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-6{margin:3rem!important}.mt-6{margin-top:3rem!important}.mr-6{margin-right:3rem!important}.mb-6{margin-bottom:3rem!important}.ml-6,.mx-6{margin-left:3rem!important}.mx-6{margin-right:3rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.px-0{padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:.25rem!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.px-1{padding-right:.25rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-2{padding:.5rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.px-2{padding-right:.5rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-3{padding:.75rem!important}.pt-3{padding-top:.75rem!important}.pr-3{padding-right:.75rem!important}.pb-3{padding-bottom:.75rem!important}.pl-3,.px-3{padding-left:.75rem!important}.px-3{padding-right:.75rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.p-4{padding:1rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4,.px-4{padding-left:1rem!important}.px-4{padding-right:1rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.p-5{padding:1.5rem!important}.pt-5{padding-top:1.5rem!important}.pr-5{padding-right:1.5rem!important}.pb-5{padding-bottom:1.5rem!important}.pl-5,.px-5{padding-left:1.5rem!important}.px-5{padding-right:1.5rem!important}.py-5{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-6{padding:3rem!important}.pt-6{padding-top:3rem!important}.pr-6{padding-right:3rem!important}.pb-6{padding-bottom:3rem!important}.pl-6,.px-6{padding-left:3rem!important}.px-6{padding-right:3rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.is-size-1{font-size:3rem!important}.is-size-2{font-size:2.5rem!important}.is-size-3{font-size:2rem!important}.is-size-4{font-size:1.5rem!important}.is-size-5{font-size:1.25rem!important}.is-size-6{font-size:1rem!important}.is-size-7{font-size:.75rem!important}@media screen and (max-width:768px){.is-size-1-mobile{font-size:3rem!important}.is-size-2-mobile{font-size:2.5rem!important}.is-size-3-mobile{font-size:2rem!important}.is-size-4-mobile{font-size:1.5rem!important}.is-size-5-mobile{font-size:1.25rem!important}.is-size-6-mobile{font-size:1rem!important}.is-size-7-mobile{font-size:.75rem!important}}@media print,screen and (min-width:769px){.is-size-1-tablet{font-size:3rem!important}.is-size-2-tablet{font-size:2.5rem!important}.is-size-3-tablet{font-size:2rem!important}.is-size-4-tablet{font-size:1.5rem!important}.is-size-5-tablet{font-size:1.25rem!important}.is-size-6-tablet{font-size:1rem!important}.is-size-7-tablet{font-size:.75rem!important}}@media screen and (max-width:1023px){.is-size-1-touch{font-size:3rem!important}.is-size-2-touch{font-size:2.5rem!important}.is-size-3-touch{font-size:2rem!important}.is-size-4-touch{font-size:1.5rem!important}.is-size-5-touch{font-size:1.25rem!important}.is-size-6-touch{font-size:1rem!important}.is-size-7-touch{font-size:.75rem!important}}@media screen and (min-width:1024px){.is-size-1-desktop{font-size:3rem!important}.is-size-2-desktop{font-size:2.5rem!important}.is-size-3-desktop{font-size:2rem!important}.is-size-4-desktop{font-size:1.5rem!important}.is-size-5-desktop{font-size:1.25rem!important}.is-size-6-desktop{font-size:1rem!important}.is-size-7-desktop{font-size:.75rem!important}}@media screen and (min-width:1216px){.is-size-1-widescreen{font-size:3rem!important}.is-size-2-widescreen{font-size:2.5rem!important}.is-size-3-widescreen{font-size:2rem!important}.is-size-4-widescreen{font-size:1.5rem!important}.is-size-5-widescreen{font-size:1.25rem!important}.is-size-6-widescreen{font-size:1rem!important}.is-size-7-widescreen{font-size:.75rem!important}}@media screen and (min-width:1408px){.is-size-1-fullhd{font-size:3rem!important}.is-size-2-fullhd{font-size:2.5rem!important}.is-size-3-fullhd{font-size:2rem!important}.is-size-4-fullhd{font-size:1.5rem!important}.is-size-5-fullhd{font-size:1.25rem!important}.is-size-6-fullhd{font-size:1rem!important}.is-size-7-fullhd{font-size:.75rem!important}}.has-text-centered{text-align:center!important}.has-text-justified{text-align:justify!important}.has-text-left{text-align:left!important}.has-text-right{text-align:right!important}@media screen and (max-width:768px){.has-text-centered-mobile{text-align:center!important}}@media print,screen and (min-width:769px){.has-text-centered-tablet{text-align:center!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-centered-tablet-only{text-align:center!important}}@media screen and (max-width:1023px){.has-text-centered-touch{text-align:center!important}}@media screen and (min-width:1024px){.has-text-centered-desktop{text-align:center!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-centered-desktop-only{text-align:center!important}}@media screen and (min-width:1216px){.has-text-centered-widescreen{text-align:center!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-centered-widescreen-only{text-align:center!important}}@media screen and (min-width:1408px){.has-text-centered-fullhd{text-align:center!important}}@media screen and (max-width:768px){.has-text-justified-mobile{text-align:justify!important}}@media print,screen and (min-width:769px){.has-text-justified-tablet{text-align:justify!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-justified-tablet-only{text-align:justify!important}}@media screen and (max-width:1023px){.has-text-justified-touch{text-align:justify!important}}@media screen and (min-width:1024px){.has-text-justified-desktop{text-align:justify!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-justified-desktop-only{text-align:justify!important}}@media screen and (min-width:1216px){.has-text-justified-widescreen{text-align:justify!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-justified-widescreen-only{text-align:justify!important}}@media screen and (min-width:1408px){.has-text-justified-fullhd{text-align:justify!important}}@media screen and (max-width:768px){.has-text-left-mobile{text-align:left!important}}@media print,screen and (min-width:769px){.has-text-left-tablet{text-align:left!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-left-tablet-only{text-align:left!important}}@media screen and (max-width:1023px){.has-text-left-touch{text-align:left!important}}@media screen and (min-width:1024px){.has-text-left-desktop{text-align:left!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-left-desktop-only{text-align:left!important}}@media screen and (min-width:1216px){.has-text-left-widescreen{text-align:left!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-left-widescreen-only{text-align:left!important}}@media screen and (min-width:1408px){.has-text-left-fullhd{text-align:left!important}}@media screen and (max-width:768px){.has-text-right-mobile{text-align:right!important}}@media print,screen and (min-width:769px){.has-text-right-tablet{text-align:right!important}}@media screen and (min-width:769px)and (max-width:1023px){.has-text-right-tablet-only{text-align:right!important}}@media screen and (max-width:1023px){.has-text-right-touch{text-align:right!important}}@media screen and (min-width:1024px){.has-text-right-desktop{text-align:right!important}}@media screen and (min-width:1024px)and (max-width:1215px){.has-text-right-desktop-only{text-align:right!important}}@media screen and (min-width:1216px){.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width:1216px)and (max-width:1407px){.has-text-right-widescreen-only{text-align:right!important}}@media screen and (min-width:1408px){.has-text-right-fullhd{text-align:right!important}}.is-capitalized{text-transform:capitalize!important}.is-lowercase{text-transform:lowercase!important}.is-uppercase{text-transform:uppercase!important}.is-italic{font-style:italic!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-medium{font-weight:500!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-family-primary,.is-family-sans-serif,.is-family-secondary{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif!important}.is-family-code,.is-family-monospace{font-family:monospace!important}.is-block{display:block!important}@media screen and (max-width:768px){.is-block-mobile{display:block!important}}@media print,screen and (min-width:769px){.is-block-tablet{display:block!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-block-tablet-only{display:block!important}}@media screen and (max-width:1023px){.is-block-touch{display:block!important}}@media screen and (min-width:1024px){.is-block-desktop{display:block!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-block-desktop-only{display:block!important}}@media screen and (min-width:1216px){.is-block-widescreen{display:block!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-block-widescreen-only{display:block!important}}@media screen and (min-width:1408px){.is-block-fullhd{display:block!important}}.is-flex{display:flex!important}@media screen and (max-width:768px){.is-flex-mobile{display:flex!important}}@media print,screen and (min-width:769px){.is-flex-tablet{display:flex!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-flex-tablet-only{display:flex!important}}@media screen and (max-width:1023px){.is-flex-touch{display:flex!important}}@media screen and (min-width:1024px){.is-flex-desktop{display:flex!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-flex-desktop-only{display:flex!important}}@media screen and (min-width:1216px){.is-flex-widescreen{display:flex!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-flex-widescreen-only{display:flex!important}}@media screen and (min-width:1408px){.is-flex-fullhd{display:flex!important}}.is-inline{display:inline!important}@media screen and (max-width:768px){.is-inline-mobile{display:inline!important}}@media print,screen and (min-width:769px){.is-inline-tablet{display:inline!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-inline-tablet-only{display:inline!important}}@media screen and (max-width:1023px){.is-inline-touch{display:inline!important}}@media screen and (min-width:1024px){.is-inline-desktop{display:inline!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-inline-desktop-only{display:inline!important}}@media screen and (min-width:1216px){.is-inline-widescreen{display:inline!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-inline-widescreen-only{display:inline!important}}@media screen and (min-width:1408px){.is-inline-fullhd{display:inline!important}}.is-inline-block{display:inline-block!important}@media screen and (max-width:768px){.is-inline-block-mobile{display:inline-block!important}}@media print,screen and (min-width:769px){.is-inline-block-tablet{display:inline-block!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-inline-block-tablet-only{display:inline-block!important}}@media screen and (max-width:1023px){.is-inline-block-touch{display:inline-block!important}}@media screen and (min-width:1024px){.is-inline-block-desktop{display:inline-block!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-inline-block-desktop-only{display:inline-block!important}}@media screen and (min-width:1216px){.is-inline-block-widescreen{display:inline-block!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-inline-block-widescreen-only{display:inline-block!important}}@media screen and (min-width:1408px){.is-inline-block-fullhd{display:inline-block!important}}.is-inline-flex{display:inline-flex!important}@media screen and (max-width:768px){.is-inline-flex-mobile{display:inline-flex!important}}@media print,screen and (min-width:769px){.is-inline-flex-tablet{display:inline-flex!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-inline-flex-tablet-only{display:inline-flex!important}}@media screen and (max-width:1023px){.is-inline-flex-touch{display:inline-flex!important}}@media screen and (min-width:1024px){.is-inline-flex-desktop{display:inline-flex!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-inline-flex-desktop-only{display:inline-flex!important}}@media screen and (min-width:1216px){.is-inline-flex-widescreen{display:inline-flex!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-inline-flex-widescreen-only{display:inline-flex!important}}@media screen and (min-width:1408px){.is-inline-flex-fullhd{display:inline-flex!important}}.is-hidden{display:none!important}.is-sr-only{border:none!important;clip:rect(0,0,0,0)!important;height:.01em!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:.01em!important}@media screen and (max-width:768px){.is-hidden-mobile{display:none!important}}@media print,screen and (min-width:769px){.is-hidden-tablet{display:none!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-hidden-tablet-only{display:none!important}}@media screen and (max-width:1023px){.is-hidden-touch{display:none!important}}@media screen and (min-width:1024px){.is-hidden-desktop{display:none!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-hidden-desktop-only{display:none!important}}@media screen and (min-width:1216px){.is-hidden-widescreen{display:none!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-hidden-widescreen-only{display:none!important}}@media screen and (min-width:1408px){.is-hidden-fullhd{display:none!important}}.is-invisible{visibility:hidden!important}@media screen and (max-width:768px){.is-invisible-mobile{visibility:hidden!important}}@media print,screen and (min-width:769px){.is-invisible-tablet{visibility:hidden!important}}@media screen and (min-width:769px)and (max-width:1023px){.is-invisible-tablet-only{visibility:hidden!important}}@media screen and (max-width:1023px){.is-invisible-touch{visibility:hidden!important}}@media screen and (min-width:1024px){.is-invisible-desktop{visibility:hidden!important}}@media screen and (min-width:1024px)and (max-width:1215px){.is-invisible-desktop-only{visibility:hidden!important}}@media screen and (min-width:1216px){.is-invisible-widescreen{visibility:hidden!important}}@media screen and (min-width:1216px)and (max-width:1407px){.is-invisible-widescreen-only{visibility:hidden!important}}@media screen and (min-width:1408px){.is-invisible-fullhd{visibility:hidden!important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width:1023px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,.7)}.hero.is-white .navbar-link.is-active,.hero.is-white .navbar-link:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover,.hero.is-white .tabs li.is-active a{opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg,#e8e3e4,#fff 71%,#fff)}@media screen and (max-width:768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg,#e8e3e4,#fff 71%,#fff)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-black .navbar-link.is-active,.hero.is-black .navbar-link:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black a.navbar-item:hover{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover,.hero.is-black .tabs li.is-active a{opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg,#000,#0a0a0a 71%,#181616)}@media screen and (max-width:768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg,#000,#0a0a0a 71%,#181616)}}.hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:rgba(0,0,0,.7)}.hero.is-light .subtitle{color:rgba(0,0,0,.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width:1023px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(0,0,0,.7)}.hero.is-light .navbar-link.is-active,.hero.is-light .navbar-link:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light a.navbar-item:hover{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.hero.is-light .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-light .tabs a:hover,.hero.is-light .tabs li.is-active a{opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg,#dfd8d9,#f5f5f5 71%,#fff)}@media screen and (max-width:768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg,#dfd8d9,#f5f5f5 71%,#fff)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-dark .navbar-link.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark a.navbar-item:hover{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:.9}.hero.is-dark .tabs a:hover,.hero.is-dark .tabs li.is-active a{opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg,#1f191a,#363636 71%,#46403f)}@media screen and (max-width:768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1f191a,#363636 71%,#46403f)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-primary .navbar-link.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary a.navbar-item:hover{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover,.hero.is-primary .tabs li.is-active a{opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg,#009e6c,#00d1b2 71%,#00e7eb)}@media screen and (max-width:768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg,#009e6c,#00d1b2 71%,#00e7eb)}}.hero.is-link{background-color:#3273dc;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-link .navbar-menu{background-color:#3273dc}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-link .navbar-link.is-active,.hero.is-link .navbar-link:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link a.navbar-item:hover{background-color:#2366d1;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover,.hero.is-link .tabs li.is-active a{opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3273dc}.hero.is-link.is-bold{background-image:linear-gradient(141deg,#1577c6,#3273dc 71%,#4366e5)}@media screen and (max-width:768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1577c6,#3273dc 71%,#4366e5)}}.hero.is-info{background-color:#3298dc;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-info .navbar-menu{background-color:#3298dc}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-info .navbar-link.is-active,.hero.is-info .navbar-link:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info a.navbar-item:hover{background-color:#238cd1;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover,.hero.is-info .tabs li.is-active a{opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3298dc}.hero.is-info.is-bold{background-image:linear-gradient(141deg,#159dc6,#3298dc 71%,#4389e5)}@media screen and (max-width:768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg,#159dc6,#3298dc 71%,#4389e5)}}.hero.is-success{background-color:#48c774;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-success .navbar-menu{background-color:#48c774}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-success .navbar-link.is-active,.hero.is-success .navbar-link:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success a.navbar-item:hover{background-color:#3abb67;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover,.hero.is-success .tabs li.is-active a{opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#48c774}.hero.is-success.is-bold{background-image:linear-gradient(141deg,#29b342,#48c774 71%,#56d296)}@media screen and (max-width:768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg,#29b342,#48c774 71%,#56d296)}}.hero.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width:1023px){.hero.is-warning .navbar-menu{background-color:#ffdd57}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,.7)}.hero.is-warning .navbar-link.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-warning .tabs a:hover,.hero.is-warning .tabs li.is-active a{opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#ffdd57}.hero.is-warning.is-bold{background-image:linear-gradient(141deg,#ffaf24,#ffdd57 71%,#fffa70)}@media screen and (max-width:768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ffaf24,#ffdd57 71%,#fffa70)}}.hero.is-danger{background-color:#f14668;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:hsla(0,0%,100%,.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width:1023px){.hero.is-danger .navbar-menu{background-color:#f14668}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:hsla(0,0%,100%,.7)}.hero.is-danger .navbar-link.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger a.navbar-item:hover{background-color:#ef2e55;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover,.hero.is-danger .tabs li.is-active a{opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f14668}.hero.is-danger.is-bold{background-image:linear-gradient(141deg,#fa0a62,#f14668 71%,#f7595f)}@media screen and (max-width:768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg,#fa0a62,#f14668 71%,#f7595f)}}.hero.is-small .hero-body{padding:1.5rem}@media print,screen and (min-width:769px){.hero.is-medium .hero-body{padding:9rem 1.5rem}}@media print,screen and (min-width:769px){.hero.is-large .hero-body{padding:18rem 1.5rem}}.hero.is-fullheight-with-navbar .hero-body,.hero.is-fullheight .hero-body,.hero.is-halfheight .hero-body{align-items:center;display:flex}.hero.is-fullheight-with-navbar .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-halfheight .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width:768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width:768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media print,screen and (min-width:769px){.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-foot,.hero-head{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0}.hero-body,.section{padding:3rem 1.5rem}@media screen and (min-width:1024px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}@keyframes spinAround{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.switch[type=checkbox]{outline:0;-webkit-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:absolute;opacity:0}.switch[type=checkbox]:focus+label:after,.switch[type=checkbox]:focus+label:before{outline:1px dotted #b5b5b5}.switch[type=checkbox][disabled]{cursor:not-allowed}.switch[type=checkbox][disabled]+label,.switch[type=checkbox][disabled]+label:after,.switch[type=checkbox][disabled]+label:before{opacity:.5}.switch[type=checkbox][disabled]+label:hover{cursor:not-allowed}.switch[type=checkbox]+label{position:relative;display:initial;font-size:1rem;line-height:normal;padding-left:3.5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox]+label:before{position:absolute;display:block;top:0;left:0;width:3rem;height:1.5rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox]+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1rem;height:1rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-rtl+label{padding-left:0;padding-right:3.5rem}.switch[type=checkbox].is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox]:checked+label:before{background:#00d1b2}.switch[type=checkbox]:checked+label:after{left:1.625rem}.switch[type=checkbox]:checked.is-rtl+label:after{left:auto;right:1.625rem}.switch[type=checkbox].is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-thin+label:before{top:.54545rem;height:.375rem}.switch[type=checkbox].is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-small+label{position:relative;display:initial;font-size:.75rem;line-height:normal;padding-left:2.75rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-small+label:before{position:absolute;display:block;top:0;left:0;width:2.25rem;height:1.125rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox].is-small+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:.625rem;height:.625rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-small.is-rtl+label{padding-left:0;padding-right:2.75rem}.switch[type=checkbox].is-small.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-small.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-small:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-small:checked+label:after{left:1.25rem}.switch[type=checkbox].is-small:checked.is-rtl+label:after{left:auto;right:1.25rem}.switch[type=checkbox].is-small.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-small.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-small.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-small.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-small.is-thin+label:before{top:.40909rem;height:.28125rem}.switch[type=checkbox].is-small.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-small.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-small.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-medium+label{position:relative;display:initial;font-size:1.25rem;line-height:normal;padding-left:4.25rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-medium+label:before{position:absolute;display:block;top:0;left:0;width:3.75rem;height:1.875rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox].is-medium+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.375rem;height:1.375rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-medium.is-rtl+label{padding-left:0;padding-right:4.25rem}.switch[type=checkbox].is-medium.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-medium.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-medium:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-medium:checked+label:after{left:2rem}.switch[type=checkbox].is-medium:checked.is-rtl+label:after{left:auto;right:2rem}.switch[type=checkbox].is-medium.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-medium.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-medium.is-thin+label:before{top:.68182rem;height:.46875rem}.switch[type=checkbox].is-medium.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-medium.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-medium.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-large+label{position:relative;display:initial;font-size:1.5rem;line-height:normal;padding-left:5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-large+label:before{position:absolute;display:block;top:0;left:0;width:4.5rem;height:2.25rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:""}.switch[type=checkbox].is-large+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.75rem;height:1.75rem;transform:translateZ(0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:""}.switch[type=checkbox].is-large.is-rtl+label{padding-left:0;padding-right:5rem}.switch[type=checkbox].is-large.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-large.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-large:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-large:checked+label:after{left:2.375rem}.switch[type=checkbox].is-large:checked.is-rtl+label:after{left:auto;right:2.375rem}.switch[type=checkbox].is-large.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-large.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-large.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-large.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-large.is-thin+label:before{top:.81818rem;height:.5625rem}.switch[type=checkbox].is-large.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-large.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-large.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-white:checked+label:before{background:#fff}.switch[type=checkbox].is-white.is-outlined:checked+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-white.is-outlined:checked+label:after{background:#fff}.switch[type=checkbox].is-white.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-white+label:before{background:#fff}.switch[type=checkbox].is-unchecked-white.is-outlined+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-unchecked-white.is-outlined+label:after{background:#fff}.switch[type=checkbox].is-black:checked+label:before{background:#0a0a0a}.switch[type=checkbox].is-black.is-outlined:checked+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-black.is-outlined:checked+label:after{background:#0a0a0a}.switch[type=checkbox].is-black.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-black+label:before{background:#0a0a0a}.switch[type=checkbox].is-unchecked-black.is-outlined+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-unchecked-black.is-outlined+label:after{background:#0a0a0a}.switch[type=checkbox].is-light:checked+label:before{background:#f5f5f5}.switch[type=checkbox].is-light.is-outlined:checked+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-light.is-outlined:checked+label:after{background:#f5f5f5}.switch[type=checkbox].is-light.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-light+label:before{background:#f5f5f5}.switch[type=checkbox].is-unchecked-light.is-outlined+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-unchecked-light.is-outlined+label:after{background:#f5f5f5}.switch[type=checkbox].is-dark:checked+label:before{background:#363636}.switch[type=checkbox].is-dark.is-outlined:checked+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-dark.is-outlined:checked+label:after{background:#363636}.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-dark+label:before{background:#363636}.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after{background:#363636}.switch[type=checkbox].is-primary:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-primary.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-primary.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-primary+label:before{background:#00d1b2}.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after{background:#00d1b2}.switch[type=checkbox].is-link:checked+label:before{background:#3273dc}.switch[type=checkbox].is-link.is-outlined:checked+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-link.is-outlined:checked+label:after{background:#3273dc}.switch[type=checkbox].is-link.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-link+label:before{background:#3273dc}.switch[type=checkbox].is-unchecked-link.is-outlined+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-unchecked-link.is-outlined+label:after{background:#3273dc}.switch[type=checkbox].is-info:checked+label:before{background:#209cee}.switch[type=checkbox].is-info.is-outlined:checked+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-info.is-outlined:checked+label:after{background:#209cee}.switch[type=checkbox].is-info.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-info+label:before{background:#209cee}.switch[type=checkbox].is-unchecked-info.is-outlined+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-unchecked-info.is-outlined+label:after{background:#209cee}.switch[type=checkbox].is-success:checked+label:before{background:#23d160}.switch[type=checkbox].is-success.is-outlined:checked+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-success.is-outlined:checked+label:after{background:#23d160}.switch[type=checkbox].is-success.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-success+label:before{background:#23d160}.switch[type=checkbox].is-unchecked-success.is-outlined+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-unchecked-success.is-outlined+label:after{background:#23d160}.switch[type=checkbox].is-warning:checked+label:before{background:#ffdd57}.switch[type=checkbox].is-warning.is-outlined:checked+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-warning.is-outlined:checked+label:after{background:#ffdd57}.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-warning+label:before{background:#ffdd57}.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after{background:#ffdd57}.switch[type=checkbox].is-danger:checked+label:before{background:#ff3860}.switch[type=checkbox].is-danger.is-outlined:checked+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-danger.is-outlined:checked+label:after{background:#ff3860}.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-danger+label:before{background:#ff3860}.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after{background:#ff3860}.slider{min-width:250px;width:100%}.range-slider-fill{background-color:#363636}.track-progress{margin:0;padding:0;min-width:250px;width:100%}.track-progress .range-slider-knob{visibility:hidden}.track-progress .range-slider-fill{background-color:#3273dc;height:2px}.track-progress .range-slider-rail{background-color:#fff}.media.with-progress h2:last-of-type{margin-bottom:6px}.media.with-progress{margin-top:0}a.navbar-item{outline:0;line-height:1.5;padding:.5rem 1rem}.fd-expanded{flex-grow:1;flex-shrink:1}.fd-margin-left-auto{margin-left:auto}.fd-has-action{cursor:pointer}.fd-is-movable{cursor:move}.fd-has-margin-top{margin-top:24px}.fd-has-margin-bottom{margin-bottom:24px}.fd-remove-padding-bottom{padding-bottom:0}.fd-has-padding-left-right{padding-left:24px;padding-right:24px}.fd-is-square .button{height:27px;min-width:27px;padding-left:.25rem;padding-right:.25rem}.fd-is-text-clipped{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.fd-tabs-section{padding-bottom:3px;padding-top:3px;background:#fff;top:3.25rem;z-index:20;position:fixed;width:100%}section.fd-tabs-section+section.fd-content{margin-top:24px}section.hero+section.fd-content{padding-top:0}.fd-progress-bar{top:52px!important}.fd-has-shadow{box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.fd-content-with-option{min-height:calc(100vh - 11.5rem)}.fd-is-fullheight{height:calc(100vh - 6.5rem);display:flex;flex-direction:column;justify-content:center}.fd-is-fullheight .fd-is-expanded{max-height:calc(100vh - 25rem);padding:1.5rem}.fd-cover-image,.fd-is-fullheight .fd-is-expanded{overflow:hidden;flex-grow:1;flex-shrink:1;display:flex}.fd-cover-image{min-width:0;min-height:0;padding:10px}.fd-cover-image img{object-fit:contain;object-position:center bottom;filter:drop-shadow(0 0 1px rgba(0,0,0,.3)) drop-shadow(0 0 10px rgba(0,0,0,.3));flex-grow:1;flex-shrink:1;height:unset;width:unset;max-width:unset;max-height:unset;min-width:0;min-height:0;overflow:hidden}.sortable-chosen .media-right{visibility:hidden}.sortable-ghost h1,.sortable-ghost h2{color:#ff3860!important}.media:first-of-type{padding-top:17px;margin-top:16px}.fade-enter-active,.fade-leave-active{transition:opacity .4s}.fade-enter,.fade-leave-to{opacity:0}.seek-slider{min-width:250px;max-width:500px;width:100%!important}.seek-slider .range-slider-fill{background-color:#00d1b2;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.seek-slider .range-slider-knob{width:10px;height:10px;background-color:#00d1b2;border-color:#00d1b2}.title:not(.is-spaced)+.subtitle,.title:not(.is-spaced)+.subtitle+.subtitle{margin-top:-1.3rem!important}.fd-modal-card{overflow:visible}.fd-modal-card .card-content{max-height:calc(100vh - 200px);overflow:auto}.fd-modal-card .card{margin-left:16px;margin-right:16px}.dropdown-item a{display:block}.dropdown-item:hover{background-color:#f5f5f5}.navbar-item .fd-navbar-item-level2{padding-left:1.5rem}hr.fd-navbar-divider{margin:12px 0}@media only screen and (min-width:1024px){.navbar-dropdown{max-height:calc(100vh - 8.5rem);overflow:auto}}.fd-bottom-navbar .navbar-menu{max-height:calc(100vh - 7.5rem);overflow:scroll}@media screen and (max-width:768px){.buttons.fd-is-centered-mobile{justify-content:center}.buttons.fd-is-centered-mobile:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}}.column.fd-has-cover{max-height:150px;max-width:150px}@media screen and (max-width:768px){.column.fd-has-cover{margin:auto}}@media screen and (min-width:769px){.column.fd-has-cover{margin:auto 0 auto auto}}.fd-overlay-fullscreen{z-index:25;background-color:rgba(10,10,10,.2);position:fixed}.hero-body{padding:1.5rem!important} /*# sourceMappingURL=app.css.map */ \ No newline at end of file diff --git a/htdocs/player/css/app.css.map b/htdocs/player/css/app.css.map index 3d8eb3bd..a860200e 100644 --- a/htdocs/player/css/app.css.map +++ b/htdocs/player/css/app.css.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///src/components/src/components/Notifications.vue","webpack:///mystyles.scss","webpack:///node_modules/bulma/bulma.sass","webpack:///node_modules/bulma/sass/utilities/animations.sass","webpack:///node_modules/bulma/sass/utilities/mixins.sass","webpack:///node_modules/bulma/sass/utilities/initial-variables.sass","webpack:///node_modules/bulma/sass/utilities/controls.sass","webpack:///node_modules/bulma/sass/base/minireset.sass","webpack:///node_modules/bulma/sass/base/generic.sass","webpack:///node_modules/bulma/sass/utilities/derived-variables.sass","webpack:///node_modules/bulma/sass/elements/box.sass","webpack:///node_modules/bulma/sass/elements/button.sass","webpack:///node_modules/bulma/sass/elements/container.sass","webpack:///node_modules/bulma/sass/elements/content.sass","webpack:///node_modules/bulma/sass/elements/icon.sass","webpack:///node_modules/bulma/sass/elements/image.sass","webpack:///node_modules/bulma/sass/elements/notification.sass","webpack:///node_modules/bulma/sass/elements/progress.sass","webpack:///node_modules/bulma/sass/elements/table.sass","webpack:///node_modules/bulma/sass/elements/tag.sass","webpack:///node_modules/bulma/sass/elements/title.sass","webpack:///node_modules/bulma/sass/elements/other.sass","webpack:///node_modules/bulma/sass/form/shared.sass","webpack:///node_modules/bulma/sass/form/input-textarea.sass","webpack:///node_modules/bulma/sass/form/checkbox-radio.sass","webpack:///node_modules/bulma/sass/form/select.sass","webpack:///node_modules/bulma/sass/form/file.sass","webpack:///node_modules/bulma/sass/form/tools.sass","webpack:///node_modules/bulma/sass/components/breadcrumb.sass","webpack:///node_modules/bulma/sass/components/card.sass","webpack:///node_modules/bulma/sass/components/dropdown.sass","webpack:///node_modules/bulma/sass/components/level.sass","webpack:///node_modules/bulma/sass/components/media.sass","webpack:///node_modules/bulma/sass/components/menu.sass","webpack:///node_modules/bulma/sass/components/message.sass","webpack:///node_modules/bulma/sass/components/modal.sass","webpack:///node_modules/bulma/sass/components/navbar.sass","webpack:///node_modules/bulma/sass/components/pagination.sass","webpack:///node_modules/bulma/sass/components/panel.sass","webpack:///node_modules/bulma/sass/components/tabs.sass","webpack:///node_modules/bulma/sass/grid/columns.sass","webpack:///node_modules/bulma/sass/grid/tiles.sass","webpack:///node_modules/bulma/sass/helpers/color.sass","webpack:///node_modules/bulma/sass/helpers/flexbox.sass","webpack:///node_modules/bulma/sass/helpers/float.sass","webpack:///node_modules/bulma/sass/helpers/other.sass","webpack:///node_modules/bulma/sass/helpers/overflow.sass","webpack:///node_modules/bulma/sass/helpers/position.sass","webpack:///node_modules/bulma/sass/helpers/spacing.sass","webpack:///node_modules/bulma/sass/helpers/typography.sass","webpack:///node_modules/bulma/sass/helpers/visibility.sass","webpack:///node_modules/bulma/sass/layout/hero.sass","webpack:///node_modules/bulma/sass/layout/section.sass","webpack:///node_modules/bulma/sass/layout/footer.sass","webpack:///node_modules/bulma-switch/dist/css/bulma-switch.min.css","webpack:///src/mystyles.scss"],"names":[],"mappings":"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AQX,SACE,CAAA,mCACF,SACE,CAAA,UACA,CAAA,6CACF,SACE,CAAA,SACA,CAAA,yCACF,SACE,CAAA,cACA,CAAA,mCACF,SACE,CAAA,SACA,CAAA,wCACF,SACE,CAAA,cACA,CAAA,0CACF,SACE,CAAA,SACA,CAAA,wCACF,SACE,CAAA,SACA,CAAA,yCACF,SACE,CAAA,SACA,CAAA,2CACF,SACE,CAAA,SACA,CAAA,0CACF,SACE,CAAA,SACA,CAAA,oDACF,eACE,CAAA,gDACF,oBACE,CAAA,0CACF,eACE,CAAA,+CACF,oBACE,CAAA,iDACF,eACE,CAAA,+CACF,eACE,CAAA,gDACF,eACE,CAAA,kDACF,eACE,CAAA,iDACF,eACE,CAAA,gCAEA,SACE,CAAA,OACA,CAAA,uCACF,aACE,CAAA,gCAJF,SACE,CAAA,mBACA,CAAA,uCACF,yBACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,SACA,CAAA,uCACF,eACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,SACA,CAAA,uCACF,eACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,SACA,CAAA,uCACF,eACE,CAAA,iCAJF,SACE,CAAA,oBACA,CAAA,wCACF,0BACE,CAAA,iCAJF,SACE,CAAA,oBACA,CAAA,wCACF,0BACE,CAAA,iCAJF,SACE,CAAA,UACA,CAAA,wCACF,gBACE,CAAA,oCpCkBJ,yBoChBE,SACE,CAAA,uBACF,SACE,CAAA,UACA,CAAA,iCACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,cACA,CAAA,uBACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,cACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,SACA,CAAA,6BACF,SAC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AA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,SACA,CAAA,0BACF,eACE,CAAA,mBAJF,SACE,CAAA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,SACA,CAAA,0BACF,eACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,UACA,CAAA,2BACF,gBACE,CAAA,CAAA,qCpC/JN,0BoCiKE,SACE,CAAA,wBACF,SACE,CAAA,UACA,CAAA,kCACF,SACE,CAAA,SACA,CAAA,8BACF,SACE,CAAA,cACA,CAAA,wBACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,cACA,CAAA,+BACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,SACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,gCACF,SACE,CAAA,SACA,CAAA,+BACF,SACE,CAAA,SACA,CAAA,yCACF,eACE,CAAA,qCACF,oBACE,CAAA,+BACF,eACE,CAAA,oCACF,oBACE,CAAA,sCACF,eACE,CAAA,oCACF,eACE,CAAA,qCACF,eACE,CAAA,uCACF,eACE,CAAA,sCACF,eACE,CAAA,qBAEA,SACE,CAAA,OACA,CAAA,4BACF,aACE,CAAA,qBAJF,SACE,CAAA,mBACA,CAAA,4BACF,yBACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,SACA,CAAA,4BACF,eACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,SACA,CAAA,4BACF,eACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,SACA,CAAA,4BACF,eACE,CAAA,sBAJF,SACE,CAAA,oBACA,CAAA,6BACF,0BACE,CAAA,sBAJF,SACE,CAAA,oBACA,CAAA,6BACF,0BACE,CAAA,sBAJF,SACE,CAAA,UACA,CAAA,6BACF,gBACE,CAAA,CAAA,qCpCzMJ,6BoC2MA,SACE,CAAA,2BACF,SACE,CAAA,UACA,CAAA,qCACF,SACE,CAAA,SACA,CAAA,iCACF,SACE,CAAA,cACA,CAAA,2BACF,SACE,CAAA,SACA,CAAA,gCACF,SACE,CAAA,cACA,CAAA,kCACF,SACE,CAAA,SACA,CAAA,gCACF,SACE,CAAA,SACA,CAAA,iCACF,SACE,CAAA,SACA,CAAA,mCACF,SACE,CAAA,SACA,CAAA,kCACF,SACE,CAAA,SACA,CAAA,4CACF,eACE,CAAA,wCACF,oBACE,CAAA,kCACF,eACE,CAAA,uCACF,oBACE,CAAA,yCACF,eACE,CAAA,uCACF,eACE,CAAA,wCACF,eACE,CAAA,0CACF,eACE,CAAA,yCACF,eACE,CAAA,wBAEA,SACE,CAAA,OACA,CAAA,+BACF,aACE,CAAA,wBAJF,SACE,CAAA,mBACA,CAAA,+BACF,yBACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,SACA,CAAA,+BACF,eACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,SACA,CAAA,+BACF,eACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,SACA,CAAA,+BACF,eACE,CAAA,yBAJF,SACE,CAAA,oBACA,CAAA,gCACF,0BACE,CAAA,yBAJF,SACE,CAAA,oBACA,CAAA,gCACF,0BACE,CAAA,yBAJF,SACE,CAAA,UACA,CAAA,gCACF,gBACE,CAAA,CAAA,qCpCnPJ,yBoCqPA,SACE,CAAA,uBACF,SACE,CAAA,UACA,CAAA,iCACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,cACA,CAAA,uBACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,cACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,SACA,CAAA,+BACF,SACE,CAAA,SACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,wCACF,eACE,CAAA,oCACF,oBACE,CAAA,8BACF,eACE,CAAA,mCACF,oBACE,CAAA,qCACF,eACE,CAAA,mCACF,eACE,CAAA,oCACF,eACE,CAAA,sCACF,eACE,CAAA,qCACF,eACE,CAAA,oBAEA,SACE,CAAA,OACA,CAAA,2BACF,aACE,CAAA,oBAJF,SACE,CAAA,mBACA,CAAA,2BACF,yBACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,SACA,CAAA,2BACF,eACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,SACA,CAAA,2BACF,eACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,SACA,CAAA,2BACF,eACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,UACA,CAAA,4BACF,gBACE,CAAA,CAAA,SAER,mBACE,CAAA,oBACA,CAAA,kBACA,CAAA,oBACA,qBACE,CAAA,0BACF,oBACE,CAAA,qBAEF,sBACE,CAAA,oBACF,aACE,CAAA,cACA,CAAA,YACA,CAAA,4BACA,QACE,CAAA,mBACA,CAAA,qCACF,oBACE,CAAA,+BACF,eACE,CAAA,mBACJ,YACE,CAAA,sBACF,cACE,CAAA,sBACF,kBACE,CAAA,0CpCnXF,0BoCsXE,YACE,CAAA,CAAA,qCpC3WJ,oBoC8WE,YACE,CAAA,CAAA,qBAGJ,mBACE,CAAA,qCACA,CAAA,sCACA,CAAA,6BACA,6BACE,CAAA,8BACA,CAAA,0BAEA,gBACE,CAAA,oCpC3YN,iCoC6YM,gBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,gBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,gBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,gBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,gBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,gBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,gBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,gBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,gBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,mBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,mBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,mBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,mBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,mBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,mBACE,CAAA,CAAA,0BA5BJ,kBACE,CAAA,oCpC3YN,iCoC6YM,kBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,kBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,kBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,kBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,kBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,kBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,kBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,kBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,kBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,mBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,mBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,mBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,mBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,mBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,mBACE,CAAA,CAAA,0BA5BJ,gBACE,CAAA,oCpC3YN,iCoC6YM,gBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,gBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,gBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,gBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,gBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,gBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,gBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,gBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,gBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,mBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,mBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,mBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,mBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,mBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,mBACE,CAAA,CAAA,0BA5BJ,kBACE,CAAA,oCpC3YN,iCoC6YM,kBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,kBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,kBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,kBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,kBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,kBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,kBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,kBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,kBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA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CAAA,6BACF,kCACE,CAAA,oBAHF,uBACE,CAAA,0BACF,kCACE,CAAA,oBAHF,uBACE,CAAA,0BACF,kCACE,CAAA,uBClCF,4BACE,CAAA,+BADF,oCACE,CAAA,0BADF,+BACE,CAAA,kCADF,uCACE,CAAA,qBAIF,0BACE,CAAA,mBADF,wBACE,CAAA,2BADF,gCACE,CAAA,+BAIF,oCACE,CAAA,6BADF,kCACE,CAAA,2BADF,gCACE,CAAA,kCADF,uCACE,CAAA,iCADF,sCACE,CAAA,iCADF,sCACE,CAAA,0BADF,+BACE,CAAA,wBADF,6BACE,CAAA,yBADF,8BACE,CAAA,0BADF,+BACE,CAAA,6BAIF,kCACE,CAAA,2BADF,gCACE,CAAA,yBADF,8BACE,CAAA,gCADF,qCACE,CAAA,+BADF,oCACE,CAAA,+BADF,oCACE,CAAA,0BADF,+BACE,CAAA,wBADF,6BACE,CAAA,sBADF,2BACE,CAAA,2BADF,gCACE,CAAA,wBAIF,6BACE,CAAA,2BADF,gCACE,CAAA,yBADF,8BACE,CAAA,uBADF,4BACE,CAAA,yBADF,8BACE,CAAA,sBADF,2BACE,CAAA,oBADF,yBACE,CAAA,2BADF,gCACE,CAAA,yBADF,8BACE,CAAA,oBAIF,yBACE,CAAA,0BADF,+BACE,CAAA,wBADF,6BACE,CAAA,sBADF,2BACE,CAAA,wBADF,6BACE,CAAA,uBADF,4BACE,CAAA,gBAKA,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,mBvC/BJ,UACE,CAAA,WACA,CAAA,aACA,CAAA,gBwCHJ,oBACE,CAAA,iBAEF,qBACE,CAAA,eCPF,yBACE,CAAA,eAEF,yBACE,CAAA,cAEF,wBACE,CAAA,YCPF,yBACE,CAAA,aCEF,2BACE,CAAA,eCJF,kBACE,CAAA,gBAEF,mBACE,CAAA,KAWE,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","file":"app.css","sourcesContent":["\n\n\n\n\n","/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.is-unselectable,.tabs,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.breadcrumb,.file,.button,.modal-close,.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless)::after,.select:not(.is-multiple):not(.is-loading)::after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:\" \";display:block;height:.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.tabs:not(:last-child),.pagination:not(:last-child),.message:not(:last-child),.level:not(:last-child),.breadcrumb:not(:last-child),.highlight:not(:last-child),.block:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child),.box:not(:last-child){margin-bottom:1.5rem}.modal-close,.delete{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.modal-close::before,.delete::before,.modal-close::after,.delete::after{background-color:#fff;content:\"\";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.modal-close::before,.delete::before{height:2px;width:50%}.modal-close::after,.delete::after{height:50%;width:2px}.modal-close:hover,.delete:hover,.modal-close:focus,.delete:focus{background-color:rgba(10,10,10,.3)}.modal-close:active,.delete:active{background-color:rgba(10,10,10,.4)}.is-small.modal-close,.is-small.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.modal-close,.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.modal-close,.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:\"\";display:block;height:1em;position:relative;width:1em}.hero-video,.is-overlay,.fd-overlay-fullscreen,.modal-background,.modal,.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{bottom:0;left:0;position:absolute;right:0;top:0}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,.button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,.is-active.button{outline:none}[disabled].pagination-previous,[disabled].pagination-next,[disabled].pagination-link,[disabled].pagination-ellipsis,[disabled].file-cta,[disabled].file-name,.select select[disabled],[disabled].textarea,[disabled].input,[disabled].button,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] .button{cursor:not-allowed}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1em;font-weight:400;line-height:1.5}a{color:#3273dc;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#da1039;font-size:.875em;font-weight:normal;padding:.25em .5em .25em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}.box{background-color:#fff;border-radius:6px;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);color:#4a4a4a;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0 0 1px #3273dc}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#3273dc;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#363636}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent #00d1b2 #00d1b2 !important}.button.is-primary.is-outlined.is-loading:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-outlined.is-loading:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #00d1b2 #00d1b2 !important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#3273dc;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#276cda;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-link:active,.button.is-link.is-active{background-color:#2366d1;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#3273dc;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#3273dc}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3273dc}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;color:#3273dc}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#3273dc;border-color:#3273dc;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #3273dc #3273dc !important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;box-shadow:none;color:#3273dc}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3273dc #3273dc !important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eef3fc;color:#2160c4}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e3ecfa;border-color:transparent;color:#2160c4}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#d8e4f8;border-color:transparent;color:#2160c4}.button.is-info{background-color:#3298dc;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#2793da;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.button.is-info:active,.button.is-info.is-active{background-color:#238cd1;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3298dc;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3298dc}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3298dc}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;color:#3298dc}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3298dc;border-color:#3298dc;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3298dc #3298dc !important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;box-shadow:none;color:#3298dc}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3298dc}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3298dc #3298dc !important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e3f1fa;border-color:transparent;color:#1d72aa}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#d8ebf8;border-color:transparent;color:#1d72aa}.button.is-success{background-color:#48c774;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec46d;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.button.is-success:active,.button.is-success.is-active{background-color:#3abb67;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c774;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c774}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c774}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c774;color:#48c774}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#48c774;border-color:#48c774;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #48c774 #48c774 !important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c774;box-shadow:none;color:#48c774}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#48c774}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #48c774 #48c774 !important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf3;color:#257942}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ec;border-color:transparent;color:#257942}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e4;border-color:transparent;color:#257942}.button.is-warning{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffdd57;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#ffdd57}.button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;color:#ffdd57}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ffdd57 #ffdd57 !important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;box-shadow:none;color:#ffdd57}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ffdd57 #ffdd57 !important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffbeb;color:#947600}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff8de;border-color:transparent;color:#947600}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff6d1;border-color:transparent;color:#947600}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #f14668 #f14668 !important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f14668 #f14668 !important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{border-radius:2px;font-size:.75rem}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent !important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em / 2));top:calc(50% - (1em / 2));position:absolute !important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:290486px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-0.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){border-radius:2px;font-size:.75rem}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1024px){.container{max-width:960px}}@media screen and (max-width: 1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:290486px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:#3273dc;color:#fff}.notification.is-link.is-light{background-color:#eef3fc;color:#2160c4}.notification.is-info{background-color:#3298dc;color:#fff}.notification.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.notification.is-success{background-color:#48c774;color:#fff}.notification.is-success.is-light{background-color:#effaf3;color:#257942}.notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.notification.is-warning.is-light{background-color:#fffbeb;color:#947600}.notification.is-danger{background-color:#f14668;color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right, white 30%, #ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right, whitesmoke 30%, #ededed 30%)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(to right, #363636 30%, #ededed 30%)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(to right, #00d1b2 30%, #ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#3273dc}.progress.is-link::-moz-progress-bar{background-color:#3273dc}.progress.is-link::-ms-fill{background-color:#3273dc}.progress.is-link:indeterminate{background-image:linear-gradient(to right, #3273dc 30%, #ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3298dc}.progress.is-info::-moz-progress-bar{background-color:#3298dc}.progress.is-info::-ms-fill{background-color:#3298dc}.progress.is-info:indeterminate{background-image:linear-gradient(to right, #3298dc 30%, #ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#48c774}.progress.is-success::-moz-progress-bar{background-color:#48c774}.progress.is-success::-ms-fill{background-color:#48c774}.progress.is-success:indeterminate{background-image:linear-gradient(to right, #48c774 30%, #ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffdd57}.progress.is-warning::-moz-progress-bar{background-color:#ffdd57}.progress.is-warning::-ms-fill{background-color:#ffdd57}.progress.is-warning:indeterminate{background-image:linear-gradient(to right, #ffdd57 30%, #ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(to right, #f14668 30%, #ededed 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right, #4a4a4a 30%, #ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#3273dc;border-color:#3273dc;color:#fff}.table td.is-info,.table th.is-info{background-color:#3298dc;border-color:#3298dc;color:#fff}.table td.is-success,.table th.is-success{background-color:#48c774;border-color:#48c774;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.table td.is-danger,.table th.is-danger{background-color:#f14668;border-color:#f14668;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:inherit}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:transparent}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:transparent}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:transparent}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-0.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-0.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#3273dc;color:#fff}.tag:not(body).is-link.is-light{background-color:#eef3fc;color:#2160c4}.tag:not(body).is-info{background-color:#3298dc;color:#fff}.tag:not(body).is-info.is-light{background-color:#eef6fc;color:#1d72aa}.tag:not(body).is-success{background-color:#48c774;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf3;color:#257942}.tag:not(body).is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffbeb;color:#947600}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-0.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-0.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-0.375em;margin-right:-0.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete::before,.tag:not(body).is-delete::after{background-color:currentColor;content:\"\";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete::before{height:1px;width:50%}.tag:not(body).is-delete::after{height:50%;width:1px}.tag:not(body).is-delete:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:290486px}a.tag:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub{font-size:.75em}.title sup,.subtitle sup{font-size:.75em}.title .tag,.subtitle .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title+.highlight{margin-top:-0.75rem}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}.highlight pre{overflow:auto;max-width:100%}.number{align-items:center;background-color:#f5f5f5;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.select select,.textarea,.input{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder{color:rgba(54,54,54,.3)}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder{color:rgba(54,54,54,.3)}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder{color:rgba(54,54,54,.3)}.select select:hover,.textarea:hover,.input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input{border-color:#b5b5b5}.select select:focus,.textarea:focus,.input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,.select select:active,.textarea:active,.input:active,.select select.is-active,.is-active.textarea,.is-active.input{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select select[disabled],[disabled].textarea,[disabled].input,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.select select[disabled]::-moz-placeholder,[disabled].textarea::-moz-placeholder,[disabled].input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-moz-placeholder,[disabled].textarea:-moz-placeholder,[disabled].input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder{color:rgba(122,122,122,.3)}.textarea,.input{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}[readonly].textarea,[readonly].input{box-shadow:none}.is-white.textarea,.is-white.input{border-color:#fff}.is-white.textarea:focus,.is-white.input:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,.is-white.textarea:active,.is-white.input:active,.is-white.is-active.textarea,.is-white.is-active.input{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.is-black.textarea,.is-black.input{border-color:#0a0a0a}.is-black.textarea:focus,.is-black.input:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,.is-black.textarea:active,.is-black.input:active,.is-black.is-active.textarea,.is-black.is-active.input{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.textarea,.is-light.input{border-color:#f5f5f5}.is-light.textarea:focus,.is-light.input:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,.is-light.textarea:active,.is-light.input:active,.is-light.is-active.textarea,.is-light.is-active.input{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.is-dark.textarea,.is-dark.input{border-color:#363636}.is-dark.textarea:focus,.is-dark.input:focus,.is-dark.is-focused.textarea,.is-dark.is-focused.input,.is-dark.textarea:active,.is-dark.input:active,.is-dark.is-active.textarea,.is-dark.is-active.input{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.textarea,.is-primary.input{border-color:#00d1b2}.is-primary.textarea:focus,.is-primary.input:focus,.is-primary.is-focused.textarea,.is-primary.is-focused.input,.is-primary.textarea:active,.is-primary.input:active,.is-primary.is-active.textarea,.is-primary.is-active.input{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.textarea,.is-link.input{border-color:#3273dc}.is-link.textarea:focus,.is-link.input:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,.is-link.textarea:active,.is-link.input:active,.is-link.is-active.textarea,.is-link.is-active.input{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.is-info.textarea,.is-info.input{border-color:#3298dc}.is-info.textarea:focus,.is-info.input:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,.is-info.textarea:active,.is-info.input:active,.is-info.is-active.textarea,.is-info.is-active.input{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.is-success.textarea,.is-success.input{border-color:#48c774}.is-success.textarea:focus,.is-success.input:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,.is-success.textarea:active,.is-success.input:active,.is-success.is-active.textarea,.is-success.is-active.input{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.is-warning.textarea,.is-warning.input{border-color:#ffdd57}.is-warning.textarea:focus,.is-warning.input:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,.is-warning.textarea:active,.is-warning.input:active,.is-warning.is-active.textarea,.is-warning.is-active.input{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.is-danger.textarea,.is-danger.input{border-color:#f14668}.is-danger.textarea:focus,.is-danger.input:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,.is-danger.textarea:active,.is-danger.input:active,.is-danger.is-active.textarea,.is-danger.is-active.input{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.textarea,.is-small.input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input{font-size:1.25rem}.is-large.textarea,.is-large.input{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input{display:block;width:100%}.is-inline.textarea,.is-inline.input{display:inline;width:auto}.input.is-rounded{border-radius:290486px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:#363636}[disabled].radio,[disabled].checkbox,fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#3273dc;right:1.125em;z-index:4}.select.is-rounded select{border-radius:290486px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#363636}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:#3273dc}.select.is-link select{border-color:#3273dc}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#2366d1}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select.is-info:not(:hover)::after{border-color:#3298dc}.select.is-info select{border-color:#3298dc}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#238cd1}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.select.is-success:not(:hover)::after{border-color:#48c774}.select.is-success select{border-color:#48c774}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb67}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.select.is-warning:not(:hover)::after{border-color:#ffdd57}.select.is-warning select{border-color:#ffdd57}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd83d}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.select.is-danger:not(:hover)::after{border-color:#f14668}.select.is-danger select{border-color:#f14668}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#7a7a7a}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:rgba(0,0,0,.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#3273dc;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#276cda;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,115,220,.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#2366d1;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3298dc;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#2793da;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,152,220,.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#238cd1;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c774;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec46d;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,116,.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb67;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,221,87,.25);color:rgba(0,0,0,.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#3273dc}.help.is-info{color:#3298dc}.help.is-success{color:#48c774}.help.is-warning{color:#ffdd57}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute !important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#3273dc;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:\"/\"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:\"→\"}.breadcrumb.has-bullet-separator li+li::before{content:\"•\"}.breadcrumb.has-dot-separator li+li::before{content:\"·\"}.breadcrumb.has-succeeds-separator li+li::before{content:\"≻\"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);color:#4a4a4a;max-width:100%;overflow:hidden;position:relative}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 .125em .25em rgba(10,10,10,.1);display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem 1rem}.card-image{display:block;position:relative}.card-content{background-color:transparent;padding:1.5rem}.card-footer{background-color:transparent;border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#3273dc;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#3273dc;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#00947e}.message.is-link{background-color:#eef3fc}.message.is-link .message-header{background-color:#3273dc;color:#fff}.message.is-link .message-body{border-color:#3273dc;color:#2160c4}.message.is-info{background-color:#eef6fc}.message.is-info .message-header{background-color:#3298dc;color:#fff}.message.is-info .message-body{border-color:#3298dc;color:#1d72aa}.message.is-success{background-color:#effaf3}.message.is-success .message-header{background-color:#48c774;color:#fff}.message.is-success .message-body{border-color:#48c774;color:#257942}.message.is-warning{background-color:#fffbeb}.message.is-warning .message-header{background-color:#ffdd57;color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:#ffdd57;color:#947600}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:#f14668;color:#fff}.message.is-danger .message-body{border-color:#f14668;color:#cc0f35}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,.86)}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1024px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link::after,.navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link::after,.navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width: 1024px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-start .navbar-link::after,.navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,.7)}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-dark .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link::after,.navbar.is-dark .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-primary .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-start .navbar-link::after,.navbar.is-primary .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#3273dc;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-start .navbar-link::after,.navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#3273dc;color:#fff}}.navbar.is-info{background-color:#3298dc;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-start .navbar-link::after,.navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3298dc;color:#fff}}.navbar.is-success{background-color:#48c774;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-start .navbar-link::after,.navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#48c774;color:#fff}}.navbar.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width: 1024px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-start .navbar-link::after,.navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffdd57;color:rgba(0,0,0,.7)}}.navbar.is-danger{background-color:#f14668;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-start .navbar-link::after,.navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f14668;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,.05)}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#3273dc}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(0.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#3273dc}.navbar-item.is-tab.is-active{background-color:transparent;border-bottom-color:#3273dc;border-bottom-style:solid;border-bottom-width:3px;color:#3273dc;padding-bottom:calc(0.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#3273dc;margin-top:-0.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width: 1023px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,.1);padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1024px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,.1);display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-0.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-0.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:transparent}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-0.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:290486px}.pagination.is-rounded .pagination-link{border-radius:290486px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#3273dc}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled]{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#3273dc;border-color:#3273dc;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#00d1b2;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#00d1b2}.panel.is-primary .panel-block.is-active .panel-icon{color:#00d1b2}.panel.is-link .panel-heading{background-color:#3273dc;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#3273dc}.panel.is-link .panel-block.is-active .panel-icon{color:#3273dc}.panel.is-info .panel-heading{background-color:#3298dc;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3298dc}.panel.is-info .panel-block.is-active .panel-icon{color:#3298dc}.panel.is-success .panel-heading{background-color:#48c774;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#48c774}.panel.is-success .panel-block.is-active .panel-icon{color:#48c774}.panel.is-warning .panel-heading{background-color:#ffdd57;color:rgba(0,0,0,.7)}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffdd57}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffdd57}.panel.is-danger .panel-heading{background-color:#f14668;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f14668}.panel.is-danger .panel-block.is-active .panel-icon{color:#f14668}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#3273dc}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#3273dc;color:#363636}.panel-block.is-active .panel-icon{color:#3273dc}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#3273dc;color:#3273dc}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em;padding-right:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent !important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#3273dc;border-color:#3273dc;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.3333333333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.3333333333%}.columns.is-mobile>.column.is-2{flex:none;width:16.6666666667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.6666666667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.3333333333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.3333333333%}.columns.is-mobile>.column.is-5{flex:none;width:41.6666666667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.6666666667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.3333333333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.3333333333%}.columns.is-mobile>.column.is-8{flex:none;width:66.6666666667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.6666666667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.3333333333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.3333333333%}.columns.is-mobile>.column.is-11{flex:none;width:91.6666666667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.6666666667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.3333333333%}.column.is-offset-1-mobile{margin-left:8.3333333333%}.column.is-2-mobile{flex:none;width:16.6666666667%}.column.is-offset-2-mobile{margin-left:16.6666666667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.3333333333%}.column.is-offset-4-mobile{margin-left:33.3333333333%}.column.is-5-mobile{flex:none;width:41.6666666667%}.column.is-offset-5-mobile{margin-left:41.6666666667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.3333333333%}.column.is-offset-7-mobile{margin-left:58.3333333333%}.column.is-8-mobile{flex:none;width:66.6666666667%}.column.is-offset-8-mobile{margin-left:66.6666666667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.3333333333%}.column.is-offset-10-mobile{margin-left:83.3333333333%}.column.is-11-mobile{flex:none;width:91.6666666667%}.column.is-offset-11-mobile{margin-left:91.6666666667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.3333333333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.3333333333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.6666666667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.6666666667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.3333333333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.3333333333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.6666666667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.6666666667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.3333333333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.3333333333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.6666666667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.6666666667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.3333333333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.3333333333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.6666666667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.6666666667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1023px){.column.is-narrow-touch{flex:none}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.3333333333%}.column.is-offset-1-touch{margin-left:8.3333333333%}.column.is-2-touch{flex:none;width:16.6666666667%}.column.is-offset-2-touch{margin-left:16.6666666667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.3333333333%}.column.is-offset-4-touch{margin-left:33.3333333333%}.column.is-5-touch{flex:none;width:41.6666666667%}.column.is-offset-5-touch{margin-left:41.6666666667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.3333333333%}.column.is-offset-7-touch{margin-left:58.3333333333%}.column.is-8-touch{flex:none;width:66.6666666667%}.column.is-offset-8-touch{margin-left:66.6666666667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.3333333333%}.column.is-offset-10-touch{margin-left:83.3333333333%}.column.is-11-touch{flex:none;width:91.6666666667%}.column.is-offset-11-touch{margin-left:91.6666666667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1024px){.column.is-narrow-desktop{flex:none}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.3333333333%}.column.is-offset-1-desktop{margin-left:8.3333333333%}.column.is-2-desktop{flex:none;width:16.6666666667%}.column.is-offset-2-desktop{margin-left:16.6666666667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.3333333333%}.column.is-offset-4-desktop{margin-left:33.3333333333%}.column.is-5-desktop{flex:none;width:41.6666666667%}.column.is-offset-5-desktop{margin-left:41.6666666667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.3333333333%}.column.is-offset-7-desktop{margin-left:58.3333333333%}.column.is-8-desktop{flex:none;width:66.6666666667%}.column.is-offset-8-desktop{margin-left:66.6666666667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.3333333333%}.column.is-offset-10-desktop{margin-left:83.3333333333%}.column.is-11-desktop{flex:none;width:91.6666666667%}.column.is-offset-11-desktop{margin-left:91.6666666667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.3333333333%}.column.is-offset-1-widescreen{margin-left:8.3333333333%}.column.is-2-widescreen{flex:none;width:16.6666666667%}.column.is-offset-2-widescreen{margin-left:16.6666666667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.3333333333%}.column.is-offset-4-widescreen{margin-left:33.3333333333%}.column.is-5-widescreen{flex:none;width:41.6666666667%}.column.is-offset-5-widescreen{margin-left:41.6666666667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.3333333333%}.column.is-offset-7-widescreen{margin-left:58.3333333333%}.column.is-8-widescreen{flex:none;width:66.6666666667%}.column.is-offset-8-widescreen{margin-left:66.6666666667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.3333333333%}.column.is-offset-10-widescreen{margin-left:83.3333333333%}.column.is-11-widescreen{flex:none;width:91.6666666667%}.column.is-offset-11-widescreen{margin-left:91.6666666667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.3333333333%}.column.is-offset-1-fullhd{margin-left:8.3333333333%}.column.is-2-fullhd{flex:none;width:16.6666666667%}.column.is-offset-2-fullhd{margin-left:16.6666666667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.3333333333%}.column.is-offset-4-fullhd{margin-left:33.3333333333%}.column.is-5-fullhd{flex:none;width:41.6666666667%}.column.is-offset-5-fullhd{margin-left:41.6666666667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.3333333333%}.column.is-offset-7-fullhd{margin-left:58.3333333333%}.column.is-8-fullhd{flex:none;width:66.6666666667%}.column.is-offset-8-fullhd{margin-left:66.6666666667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.3333333333%}.column.is-offset-10-fullhd{margin-left:83.3333333333%}.column.is-11-fullhd{flex:none;width:91.6666666667%}.column.is-offset-11-fullhd{margin-left:91.6666666667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-0.75rem;margin-right:-0.75rem;margin-top:-0.75rem}.columns:last-child{margin-bottom:-0.75rem}.columns:not(:last-child){margin-bottom:calc(1.5rem - 0.75rem)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0 !important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1024px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: 0.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: 0.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: 0.25rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-1-tablet-only{--columnGap: 0.25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-1-touch{--columnGap: 0.25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-1-desktop{--columnGap: 0.25rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: 0.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: 0.25rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: 0.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: 0.25rem}}.columns.is-variable.is-2{--columnGap: 0.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: 0.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: 0.5rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-2-tablet-only{--columnGap: 0.5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-2-touch{--columnGap: 0.5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-2-desktop{--columnGap: 0.5rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: 0.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: 0.5rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: 0.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: 0.5rem}}.columns.is-variable.is-3{--columnGap: 0.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: 0.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: 0.75rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-3-tablet-only{--columnGap: 0.75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-3-touch{--columnGap: 0.75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-3-desktop{--columnGap: 0.75rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: 0.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: 0.75rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: 0.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: 0.75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}.tile.is-ancestor{margin-left:-0.75rem;margin-right:-0.75rem;margin-top:-0.75rem}.tile.is-ancestor:last-child{margin-bottom:-0.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0 !important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.3333333333%}.tile.is-2{flex:none;width:16.6666666667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.3333333333%}.tile.is-5{flex:none;width:41.6666666667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.3333333333%}.tile.is-8{flex:none;width:66.6666666667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.3333333333%}.tile.is-11{flex:none;width:91.6666666667%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363636 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c !important}.has-background-dark{background-color:#363636 !important}.has-text-primary{color:#00d1b2 !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#009e86 !important}.has-background-primary{background-color:#00d1b2 !important}.has-text-primary-light{color:#ebfffc !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#b8fff4 !important}.has-background-primary-light{background-color:#ebfffc !important}.has-text-primary-dark{color:#00947e !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#00c7a9 !important}.has-background-primary-dark{background-color:#00947e !important}.has-text-link{color:#3273dc !important}a.has-text-link:hover,a.has-text-link:focus{color:#205bbc !important}.has-background-link{background-color:#3273dc !important}.has-text-link-light{color:#eef3fc !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c2d5f5 !important}.has-background-link-light{background-color:#eef3fc !important}.has-text-link-dark{color:#2160c4 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#3b79de !important}.has-background-link-dark{background-color:#2160c4 !important}.has-text-info{color:#3298dc !important}a.has-text-info:hover,a.has-text-info:focus{color:#207dbc !important}.has-background-info{background-color:#3298dc !important}.has-text-info-light{color:#eef6fc !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c2e0f5 !important}.has-background-info-light{background-color:#eef6fc !important}.has-text-info-dark{color:#1d72aa !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#248fd6 !important}.has-background-info-dark{background-color:#1d72aa !important}.has-text-success{color:#48c774 !important}a.has-text-success:hover,a.has-text-success:focus{color:#34a85c !important}.has-background-success{background-color:#48c774 !important}.has-text-success-light{color:#effaf3 !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c8eed6 !important}.has-background-success-light{background-color:#effaf3 !important}.has-text-success-dark{color:#257942 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#31a058 !important}.has-background-success-dark{background-color:#257942 !important}.has-text-warning{color:#ffdd57 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd324 !important}.has-background-warning{background-color:#ffdd57 !important}.has-text-warning-light{color:#fffbeb !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fff1b8 !important}.has-background-warning-light{background-color:#fffbeb !important}.has-text-warning-dark{color:#947600 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#c79f00 !important}.has-background-warning-dark{background-color:#947600 !important}.has-text-danger{color:#f14668 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee1742 !important}.has-background-danger{background-color:#f14668 !important}.has-text-danger-light{color:#feecf0 !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabdc9 !important}.has-background-danger-light{background-color:#feecf0 !important}.has-text-danger-dark{color:#cc0f35 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#ee2049 !important}.has-background-danger-dark{background-color:#cc0f35 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363636 !important}.has-background-grey-darker{background-color:#363636 !important}.has-text-grey-dark{color:#4a4a4a !important}.has-background-grey-dark{background-color:#4a4a4a !important}.has-text-grey{color:#7a7a7a !important}.has-background-grey{background-color:#7a7a7a !important}.has-text-grey-light{color:#b5b5b5 !important}.has-background-grey-light{background-color:#b5b5b5 !important}.has-text-grey-lighter{color:#dbdbdb !important}.has-background-grey-lighter{background-color:#dbdbdb !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:\" \";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin: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}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.p-0{padding: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}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1023px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1024px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1023px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1024px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1023px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1024px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1023px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1024px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1023px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1024px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif !important}.is-family-secondary{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif !important}.is-family-sans-serif{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif !important}.is-family-monospace{font-family:monospace !important}.is-family-code{font-family:monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1023px){.is-block-touch{display:block !important}}@media screen and (min-width: 1024px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1023px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1024px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1023px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1024px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1023px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1024px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1023px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1024px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1023px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1024px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1023px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1024px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1023px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,.7)}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,.7)}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:rgba(0,0,0,.7)}.hero.is-light .subtitle{color:rgba(0,0,0,.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width: 1023px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(0,0,0,.7)}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.hero.is-light .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:rgba(255,255,255,.9)}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:rgba(255,255,255,.7)}.hero.is-dark a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:rgba(255,255,255,.9)}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:rgba(255,255,255,.7)}.hero.is-primary a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary .navbar-link.is-active{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%)}}.hero.is-link{background-color:#3273dc;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-link .navbar-menu{background-color:#3273dc}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,.7)}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#2366d1;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3273dc}.hero.is-link.is-bold{background-image:linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%)}}.hero.is-info{background-color:#3298dc;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-info .navbar-menu{background-color:#3298dc}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,.7)}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#238cd1;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3298dc}.hero.is-info.is-bold{background-image:linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%)}}.hero.is-success{background-color:#48c774;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-success .navbar-menu{background-color:#48c774}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,.7)}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#3abb67;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#48c774}.hero.is-success.is-bold{background-image:linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%)}}.hero.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width: 1023px){.hero.is-warning .navbar-menu{background-color:#ffdd57}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,.7)}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#ffd83d;color:rgba(0,0,0,.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#ffdd57}.hero.is-warning.is-bold{background-image:linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%)}}.hero.is-danger{background-color:#f14668;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-danger .navbar-menu{background-color:#f14668}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,.7)}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#ef2e55;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f14668}.hero.is-danger.is-bold{background-image:linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%)}}.hero.is-small .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding:9rem 1.5rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding:18rem 1.5rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}.section{padding:3rem 1.5rem}@media screen and (min-width: 1024px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}@-webkit-keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.switch[type=checkbox]{outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:absolute;opacity:0}.switch[type=checkbox]:focus+label::after,.switch[type=checkbox]:focus+label::before,.switch[type=checkbox]:focus+label:after,.switch[type=checkbox]:focus+label:before{outline:1px dotted #b5b5b5}.switch[type=checkbox][disabled]{cursor:not-allowed}.switch[type=checkbox][disabled]+label{opacity:.5}.switch[type=checkbox][disabled]+label::before,.switch[type=checkbox][disabled]+label:before{opacity:.5}.switch[type=checkbox][disabled]+label::after,.switch[type=checkbox][disabled]+label:after{opacity:.5}.switch[type=checkbox][disabled]+label:hover{cursor:not-allowed}.switch[type=checkbox]+label{position:relative;display:initial;font-size:1rem;line-height:initial;padding-left:3.5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox]+label::before,.switch[type=checkbox]+label:before{position:absolute;display:block;top:0;left:0;width:3rem;height:1.5rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox]+label::after,.switch[type=checkbox]+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1rem;height:1rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-rtl+label{padding-left:0;padding-right:3.5rem}.switch[type=checkbox].is-rtl+label::before,.switch[type=checkbox].is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-rtl+label::after,.switch[type=checkbox].is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox]:checked+label::before,.switch[type=checkbox]:checked+label:before{background:#00d1b2}.switch[type=checkbox]:checked+label::after{left:1.625rem}.switch[type=checkbox]:checked.is-rtl+label::after,.switch[type=checkbox]:checked.is-rtl+label:after{left:auto;right:1.625rem}.switch[type=checkbox].is-outlined+label::before,.switch[type=checkbox].is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-outlined+label::after,.switch[type=checkbox].is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-outlined:checked+label::before,.switch[type=checkbox].is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-outlined:checked+label::after,.switch[type=checkbox].is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-thin+label::before,.switch[type=checkbox].is-thin+label:before{top:.54545rem;height:.375rem}.switch[type=checkbox].is-thin+label::after,.switch[type=checkbox].is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-rounded+label::before,.switch[type=checkbox].is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-rounded+label::after,.switch[type=checkbox].is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-small+label{position:relative;display:initial;font-size:.75rem;line-height:initial;padding-left:2.75rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-small+label::before,.switch[type=checkbox].is-small+label:before{position:absolute;display:block;top:0;left:0;width:2.25rem;height:1.125rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox].is-small+label::after,.switch[type=checkbox].is-small+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:.625rem;height:.625rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-small.is-rtl+label{padding-left:0;padding-right:2.75rem}.switch[type=checkbox].is-small.is-rtl+label::before,.switch[type=checkbox].is-small.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-small.is-rtl+label::after,.switch[type=checkbox].is-small.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-small:checked+label::before,.switch[type=checkbox].is-small:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-small:checked+label::after{left:1.25rem}.switch[type=checkbox].is-small:checked.is-rtl+label::after,.switch[type=checkbox].is-small:checked.is-rtl+label:after{left:auto;right:1.25rem}.switch[type=checkbox].is-small.is-outlined+label::before,.switch[type=checkbox].is-small.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-small.is-outlined+label::after,.switch[type=checkbox].is-small.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-small.is-outlined:checked+label::before,.switch[type=checkbox].is-small.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-small.is-outlined:checked+label::after,.switch[type=checkbox].is-small.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-small.is-thin+label::before,.switch[type=checkbox].is-small.is-thin+label:before{top:.40909rem;height:.28125rem}.switch[type=checkbox].is-small.is-thin+label::after,.switch[type=checkbox].is-small.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-small.is-rounded+label::before,.switch[type=checkbox].is-small.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-small.is-rounded+label::after,.switch[type=checkbox].is-small.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-medium+label{position:relative;display:initial;font-size:1.25rem;line-height:initial;padding-left:4.25rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-medium+label::before,.switch[type=checkbox].is-medium+label:before{position:absolute;display:block;top:0;left:0;width:3.75rem;height:1.875rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox].is-medium+label::after,.switch[type=checkbox].is-medium+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.375rem;height:1.375rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-medium.is-rtl+label{padding-left:0;padding-right:4.25rem}.switch[type=checkbox].is-medium.is-rtl+label::before,.switch[type=checkbox].is-medium.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-medium.is-rtl+label::after,.switch[type=checkbox].is-medium.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-medium:checked+label::before,.switch[type=checkbox].is-medium:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-medium:checked+label::after{left:2rem}.switch[type=checkbox].is-medium:checked.is-rtl+label::after,.switch[type=checkbox].is-medium:checked.is-rtl+label:after{left:auto;right:2rem}.switch[type=checkbox].is-medium.is-outlined+label::before,.switch[type=checkbox].is-medium.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined+label::after,.switch[type=checkbox].is-medium.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined:checked+label::before,.switch[type=checkbox].is-medium.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-medium.is-outlined:checked+label::after,.switch[type=checkbox].is-medium.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-medium.is-thin+label::before,.switch[type=checkbox].is-medium.is-thin+label:before{top:.68182rem;height:.46875rem}.switch[type=checkbox].is-medium.is-thin+label::after,.switch[type=checkbox].is-medium.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-medium.is-rounded+label::before,.switch[type=checkbox].is-medium.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-medium.is-rounded+label::after,.switch[type=checkbox].is-medium.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-large+label{position:relative;display:initial;font-size:1.5rem;line-height:initial;padding-left:5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-large+label::before,.switch[type=checkbox].is-large+label:before{position:absolute;display:block;top:0;left:0;width:4.5rem;height:2.25rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox].is-large+label::after,.switch[type=checkbox].is-large+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.75rem;height:1.75rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-large.is-rtl+label{padding-left:0;padding-right:5rem}.switch[type=checkbox].is-large.is-rtl+label::before,.switch[type=checkbox].is-large.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-large.is-rtl+label::after,.switch[type=checkbox].is-large.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-large:checked+label::before,.switch[type=checkbox].is-large:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-large:checked+label::after{left:2.375rem}.switch[type=checkbox].is-large:checked.is-rtl+label::after,.switch[type=checkbox].is-large:checked.is-rtl+label:after{left:auto;right:2.375rem}.switch[type=checkbox].is-large.is-outlined+label::before,.switch[type=checkbox].is-large.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-large.is-outlined+label::after,.switch[type=checkbox].is-large.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-large.is-outlined:checked+label::before,.switch[type=checkbox].is-large.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-large.is-outlined:checked+label::after,.switch[type=checkbox].is-large.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-large.is-thin+label::before,.switch[type=checkbox].is-large.is-thin+label:before{top:.81818rem;height:.5625rem}.switch[type=checkbox].is-large.is-thin+label::after,.switch[type=checkbox].is-large.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-large.is-rounded+label::before,.switch[type=checkbox].is-large.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-large.is-rounded+label::after,.switch[type=checkbox].is-large.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-white:checked+label::before,.switch[type=checkbox].is-white:checked+label:before{background:#fff}.switch[type=checkbox].is-white.is-outlined:checked+label::before,.switch[type=checkbox].is-white.is-outlined:checked+label:before{background-color:transparent;border-color:#fff !important}.switch[type=checkbox].is-white.is-outlined:checked+label::after,.switch[type=checkbox].is-white.is-outlined:checked+label:after{background:#fff}.switch[type=checkbox].is-white.is-thin.is-outlined+label::after,.switch[type=checkbox].is-white.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-white+label::before,.switch[type=checkbox].is-unchecked-white+label:before{background:#fff}.switch[type=checkbox].is-unchecked-white.is-outlined+label::before,.switch[type=checkbox].is-unchecked-white.is-outlined+label:before{background-color:transparent;border-color:#fff !important}.switch[type=checkbox].is-unchecked-white.is-outlined+label::after,.switch[type=checkbox].is-unchecked-white.is-outlined+label:after{background:#fff}.switch[type=checkbox].is-black:checked+label::before,.switch[type=checkbox].is-black:checked+label:before{background:#0a0a0a}.switch[type=checkbox].is-black.is-outlined:checked+label::before,.switch[type=checkbox].is-black.is-outlined:checked+label:before{background-color:transparent;border-color:#0a0a0a !important}.switch[type=checkbox].is-black.is-outlined:checked+label::after,.switch[type=checkbox].is-black.is-outlined:checked+label:after{background:#0a0a0a}.switch[type=checkbox].is-black.is-thin.is-outlined+label::after,.switch[type=checkbox].is-black.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-black+label::before,.switch[type=checkbox].is-unchecked-black+label:before{background:#0a0a0a}.switch[type=checkbox].is-unchecked-black.is-outlined+label::before,.switch[type=checkbox].is-unchecked-black.is-outlined+label:before{background-color:transparent;border-color:#0a0a0a !important}.switch[type=checkbox].is-unchecked-black.is-outlined+label::after,.switch[type=checkbox].is-unchecked-black.is-outlined+label:after{background:#0a0a0a}.switch[type=checkbox].is-light:checked+label::before,.switch[type=checkbox].is-light:checked+label:before{background:#f5f5f5}.switch[type=checkbox].is-light.is-outlined:checked+label::before,.switch[type=checkbox].is-light.is-outlined:checked+label:before{background-color:transparent;border-color:#f5f5f5 !important}.switch[type=checkbox].is-light.is-outlined:checked+label::after,.switch[type=checkbox].is-light.is-outlined:checked+label:after{background:#f5f5f5}.switch[type=checkbox].is-light.is-thin.is-outlined+label::after,.switch[type=checkbox].is-light.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-light+label::before,.switch[type=checkbox].is-unchecked-light+label:before{background:#f5f5f5}.switch[type=checkbox].is-unchecked-light.is-outlined+label::before,.switch[type=checkbox].is-unchecked-light.is-outlined+label:before{background-color:transparent;border-color:#f5f5f5 !important}.switch[type=checkbox].is-unchecked-light.is-outlined+label::after,.switch[type=checkbox].is-unchecked-light.is-outlined+label:after{background:#f5f5f5}.switch[type=checkbox].is-dark:checked+label::before,.switch[type=checkbox].is-dark:checked+label:before{background:#363636}.switch[type=checkbox].is-dark.is-outlined:checked+label::before,.switch[type=checkbox].is-dark.is-outlined:checked+label:before{background-color:transparent;border-color:#363636 !important}.switch[type=checkbox].is-dark.is-outlined:checked+label::after,.switch[type=checkbox].is-dark.is-outlined:checked+label:after{background:#363636}.switch[type=checkbox].is-dark.is-thin.is-outlined+label::after,.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-dark+label::before,.switch[type=checkbox].is-unchecked-dark+label:before{background:#363636}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::before,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before{background-color:transparent;border-color:#363636 !important}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::after,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after{background:#363636}.switch[type=checkbox].is-primary:checked+label::before,.switch[type=checkbox].is-primary:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-primary.is-outlined:checked+label::before,.switch[type=checkbox].is-primary.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2 !important}.switch[type=checkbox].is-primary.is-outlined:checked+label::after,.switch[type=checkbox].is-primary.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-primary.is-thin.is-outlined+label::after,.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-primary+label::before,.switch[type=checkbox].is-unchecked-primary+label:before{background:#00d1b2}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::before,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before{background-color:transparent;border-color:#00d1b2 !important}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::after,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after{background:#00d1b2}.switch[type=checkbox].is-link:checked+label::before,.switch[type=checkbox].is-link:checked+label:before{background:#3273dc}.switch[type=checkbox].is-link.is-outlined:checked+label::before,.switch[type=checkbox].is-link.is-outlined:checked+label:before{background-color:transparent;border-color:#3273dc !important}.switch[type=checkbox].is-link.is-outlined:checked+label::after,.switch[type=checkbox].is-link.is-outlined:checked+label:after{background:#3273dc}.switch[type=checkbox].is-link.is-thin.is-outlined+label::after,.switch[type=checkbox].is-link.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-link+label::before,.switch[type=checkbox].is-unchecked-link+label:before{background:#3273dc}.switch[type=checkbox].is-unchecked-link.is-outlined+label::before,.switch[type=checkbox].is-unchecked-link.is-outlined+label:before{background-color:transparent;border-color:#3273dc !important}.switch[type=checkbox].is-unchecked-link.is-outlined+label::after,.switch[type=checkbox].is-unchecked-link.is-outlined+label:after{background:#3273dc}.switch[type=checkbox].is-info:checked+label::before,.switch[type=checkbox].is-info:checked+label:before{background:#209cee}.switch[type=checkbox].is-info.is-outlined:checked+label::before,.switch[type=checkbox].is-info.is-outlined:checked+label:before{background-color:transparent;border-color:#209cee !important}.switch[type=checkbox].is-info.is-outlined:checked+label::after,.switch[type=checkbox].is-info.is-outlined:checked+label:after{background:#209cee}.switch[type=checkbox].is-info.is-thin.is-outlined+label::after,.switch[type=checkbox].is-info.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-info+label::before,.switch[type=checkbox].is-unchecked-info+label:before{background:#209cee}.switch[type=checkbox].is-unchecked-info.is-outlined+label::before,.switch[type=checkbox].is-unchecked-info.is-outlined+label:before{background-color:transparent;border-color:#209cee !important}.switch[type=checkbox].is-unchecked-info.is-outlined+label::after,.switch[type=checkbox].is-unchecked-info.is-outlined+label:after{background:#209cee}.switch[type=checkbox].is-success:checked+label::before,.switch[type=checkbox].is-success:checked+label:before{background:#23d160}.switch[type=checkbox].is-success.is-outlined:checked+label::before,.switch[type=checkbox].is-success.is-outlined:checked+label:before{background-color:transparent;border-color:#23d160 !important}.switch[type=checkbox].is-success.is-outlined:checked+label::after,.switch[type=checkbox].is-success.is-outlined:checked+label:after{background:#23d160}.switch[type=checkbox].is-success.is-thin.is-outlined+label::after,.switch[type=checkbox].is-success.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-success+label::before,.switch[type=checkbox].is-unchecked-success+label:before{background:#23d160}.switch[type=checkbox].is-unchecked-success.is-outlined+label::before,.switch[type=checkbox].is-unchecked-success.is-outlined+label:before{background-color:transparent;border-color:#23d160 !important}.switch[type=checkbox].is-unchecked-success.is-outlined+label::after,.switch[type=checkbox].is-unchecked-success.is-outlined+label:after{background:#23d160}.switch[type=checkbox].is-warning:checked+label::before,.switch[type=checkbox].is-warning:checked+label:before{background:#ffdd57}.switch[type=checkbox].is-warning.is-outlined:checked+label::before,.switch[type=checkbox].is-warning.is-outlined:checked+label:before{background-color:transparent;border-color:#ffdd57 !important}.switch[type=checkbox].is-warning.is-outlined:checked+label::after,.switch[type=checkbox].is-warning.is-outlined:checked+label:after{background:#ffdd57}.switch[type=checkbox].is-warning.is-thin.is-outlined+label::after,.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-warning+label::before,.switch[type=checkbox].is-unchecked-warning+label:before{background:#ffdd57}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::before,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before{background-color:transparent;border-color:#ffdd57 !important}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::after,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after{background:#ffdd57}.switch[type=checkbox].is-danger:checked+label::before,.switch[type=checkbox].is-danger:checked+label:before{background:#ff3860}.switch[type=checkbox].is-danger.is-outlined:checked+label::before,.switch[type=checkbox].is-danger.is-outlined:checked+label:before{background-color:transparent;border-color:#ff3860 !important}.switch[type=checkbox].is-danger.is-outlined:checked+label::after,.switch[type=checkbox].is-danger.is-outlined:checked+label:after{background:#ff3860}.switch[type=checkbox].is-danger.is-thin.is-outlined+label::after,.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-danger+label::before,.switch[type=checkbox].is-unchecked-danger+label:before{background:#ff3860}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::before,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before{background-color:transparent;border-color:#ff3860 !important}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::after,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after{background:#ff3860}.slider{min-width:250px;width:100%}.range-slider-fill{background-color:#363636}.track-progress{margin:0;padding:0;min-width:250px;width:100%}.track-progress .range-slider-knob{visibility:hidden}.track-progress .range-slider-fill{background-color:#3273dc;height:2px}.track-progress .range-slider-rail{background-color:#fff}.media.with-progress h2:last-of-type{margin-bottom:6px}.media.with-progress{margin-top:0px}a.navbar-item{outline:0;line-height:1.5;padding:.5rem 1rem}.fd-expanded{flex-grow:1;flex-shrink:1}.fd-margin-left-auto{margin-left:auto}.fd-has-action{cursor:pointer}.fd-is-movable{cursor:move}.fd-has-margin-top{margin-top:24px}.fd-has-margin-bottom{margin-bottom:24px}.fd-remove-padding-bottom{padding-bottom:0}.fd-has-padding-left-right{padding-left:24px;padding-right:24px}.fd-is-square .button{height:27px;min-width:27px;padding-left:.25rem;padding-right:.25rem}.fd-is-text-clipped{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.fd-tabs-section{padding-bottom:3px;padding-top:3px;background:#fff;top:3.25rem;z-index:20;position:fixed;width:100%}section.fd-tabs-section+section.fd-content{margin-top:24px}section.hero+section.fd-content{padding-top:0}.fd-progress-bar{top:52px !important}.fd-has-shadow{box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.fd-content-with-option{min-height:calc(100vh - 3.25rem - 3.25rem - 5rem)}.fd-is-fullheight{height:calc(100vh - 3.25rem - 3.25rem);display:flex;flex-direction:column;justify-content:center}.fd-is-fullheight .fd-is-expanded{max-height:calc(100vh - 25rem);padding:1.5rem;overflow:hidden;flex-grow:1;flex-shrink:1;display:flex}.fd-cover-image{display:flex;flex-grow:1;flex-shrink:1;min-width:0;min-height:0;overflow:hidden;padding:10px}.fd-cover-image img{object-fit:contain;object-position:center bottom;filter:drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.3)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));flex-grow:1;flex-shrink:1;height:unset;width:unset;max-width:unset;max-height:unset;min-width:0;min-height:0;overflow:hidden}.sortable-chosen .media-right{visibility:hidden}.sortable-ghost h1,.sortable-ghost h2{color:#ff3860 !important}.media:first-of-type{padding-top:17px;margin-top:16px}.fade-enter-active,.fade-leave-active{transition:opacity .4s}.fade-enter,.fade-leave-to{opacity:0}.seek-slider{min-width:250px;max-width:500px;width:100% !important}.seek-slider .range-slider-fill{background-color:#00d1b2;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.seek-slider .range-slider-knob{width:10px;height:10px;background-color:#00d1b2;border-color:#00d1b2}.title:not(.is-spaced)+.subtitle{margin-top:-1.3rem !important}.title:not(.is-spaced)+.subtitle+.subtitle{margin-top:-1.3rem !important}.fd-modal-card{overflow:visible}.fd-modal-card .card-content{max-height:calc(100vh - 200px);overflow:auto}.fd-modal-card .card{margin-left:16px;margin-right:16px}.dropdown-item a{display:block}.dropdown-item:hover{background-color:#f5f5f5}.navbar-item .fd-navbar-item-level2{padding-left:1.5rem}hr.fd-navbar-divider{margin:12px 0}@media only screen and (min-width: 1024px){.navbar-dropdown{max-height:calc(100vh - 3.25rem - 3.25rem - 2rem);overflow:auto}}.fd-bottom-navbar .navbar-menu{max-height:calc(100vh - 3.25rem - 3.25rem - 1rem);overflow:scroll}@media screen and (max-width: 768px){.buttons.fd-is-centered-mobile{justify-content:center}.buttons.fd-is-centered-mobile:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}}.column.fd-has-cover{max-height:150px;max-width:150px}@media screen and (max-width: 768px){.column.fd-has-cover{margin:auto}}@media screen and (min-width: 769px){.column.fd-has-cover{margin:auto 0 auto auto}}.fd-overlay-fullscreen{z-index:25;background-color:rgba(10,10,10,.2);position:fixed}.hero-body{padding:1.5rem !important}","@charset \"utf-8\"\n/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */\n@import \"sass/utilities/_all\"\n@import \"sass/base/_all\"\n@import \"sass/elements/_all\"\n@import \"sass/form/_all\"\n@import \"sass/components/_all\"\n@import \"sass/grid/_all\"\n@import \"sass/helpers/_all\"\n@import \"sass/layout/_all\"\n","@keyframes spinAround\n from\n transform: rotate(0deg)\n to\n transform: rotate(359deg)\n","@import \"initial-variables\"\n\n=clearfix\n &::after\n clear: both\n content: \" \"\n display: table\n\n=center($width, $height: 0)\n position: absolute\n @if $height != 0\n left: calc(50% - (#{$width} / 2))\n top: calc(50% - (#{$height} / 2))\n @else\n left: calc(50% - (#{$width} / 2))\n top: calc(50% - (#{$width} / 2))\n\n=fa($size, $dimensions)\n display: inline-block\n font-size: $size\n height: $dimensions\n line-height: $dimensions\n text-align: center\n vertical-align: top\n width: $dimensions\n\n=hamburger($dimensions)\n cursor: pointer\n display: block\n height: $dimensions\n position: relative\n width: $dimensions\n span\n background-color: currentColor\n display: block\n height: 1px\n left: calc(50% - 8px)\n position: absolute\n transform-origin: center\n transition-duration: $speed\n transition-property: background-color, opacity, transform\n transition-timing-function: $easing\n width: 16px\n &:nth-child(1)\n top: calc(50% - 6px)\n &:nth-child(2)\n top: calc(50% - 1px)\n &:nth-child(3)\n top: calc(50% + 4px)\n &:hover\n background-color: bulmaRgba(black, 0.05)\n // Modifers\n &.is-active\n span\n &:nth-child(1)\n transform: translateY(5px) rotate(45deg)\n &:nth-child(2)\n opacity: 0\n &:nth-child(3)\n transform: translateY(-5px) rotate(-45deg)\n\n=overflow-touch\n -webkit-overflow-scrolling: touch\n\n=placeholder\n $placeholders: ':-moz' ':-webkit-input' '-moz' '-ms-input'\n @each $placeholder in $placeholders\n &:#{$placeholder}-placeholder\n @content\n\n// Responsiveness\n\n=from($device)\n @media screen and (min-width: $device)\n @content\n\n=until($device)\n @media screen and (max-width: $device - 1px)\n @content\n\n=mobile\n @media screen and (max-width: $tablet - 1px)\n @content\n\n=tablet\n @media screen and (min-width: $tablet), print\n @content\n\n=tablet-only\n @media screen and (min-width: $tablet) and (max-width: $desktop - 1px)\n @content\n\n=touch\n @media screen and (max-width: $desktop - 1px)\n @content\n\n=desktop\n @media screen and (min-width: $desktop)\n @content\n\n=desktop-only\n @if $widescreen-enabled\n @media screen and (min-width: $desktop) and (max-width: $widescreen - 1px)\n @content\n\n=until-widescreen\n @if $widescreen-enabled\n @media screen and (max-width: $widescreen - 1px)\n @content\n\n=widescreen\n @if $widescreen-enabled\n @media screen and (min-width: $widescreen)\n @content\n\n=widescreen-only\n @if $widescreen-enabled and $fullhd-enabled\n @media screen and (min-width: $widescreen) and (max-width: $fullhd - 1px)\n @content\n\n=until-fullhd\n @if $fullhd-enabled\n @media screen and (max-width: $fullhd - 1px)\n @content\n\n=fullhd\n @if $fullhd-enabled\n @media screen and (min-width: $fullhd)\n @content\n\n=ltr\n @if not $rtl\n @content\n\n=rtl\n @if $rtl\n @content\n\n=ltr-property($property, $spacing, $right: true)\n $normal: if($right, \"right\", \"left\")\n $opposite: if($right, \"left\", \"right\")\n @if $rtl\n #{$property}-#{$opposite}: $spacing\n @else\n #{$property}-#{$normal}: $spacing\n\n=ltr-position($spacing, $right: true)\n $normal: if($right, \"right\", \"left\")\n $opposite: if($right, \"left\", \"right\")\n @if $rtl\n #{$opposite}: $spacing\n @else\n #{$normal}: $spacing\n\n// Placeholders\n\n=unselectable\n -webkit-touch-callout: none\n -webkit-user-select: none\n -moz-user-select: none\n -ms-user-select: none\n user-select: none\n\n%unselectable\n +unselectable\n\n=arrow($color: transparent)\n border: 3px solid $color\n border-radius: 2px\n border-right: 0\n border-top: 0\n content: \" \"\n display: block\n height: 0.625em\n margin-top: -0.4375em\n pointer-events: none\n position: absolute\n top: 50%\n transform: rotate(-45deg)\n transform-origin: center\n width: 0.625em\n\n%arrow\n +arrow\n\n=block($spacing: $block-spacing)\n &:not(:last-child)\n margin-bottom: $spacing\n\n%block\n +block\n\n=delete\n @extend %unselectable\n -moz-appearance: none\n -webkit-appearance: none\n background-color: bulmaRgba($scheme-invert, 0.2)\n border: none\n border-radius: $radius-rounded\n cursor: pointer\n pointer-events: auto\n display: inline-block\n flex-grow: 0\n flex-shrink: 0\n font-size: 0\n height: 20px\n max-height: 20px\n max-width: 20px\n min-height: 20px\n min-width: 20px\n outline: none\n position: relative\n vertical-align: top\n width: 20px\n &::before,\n &::after\n background-color: $scheme-main\n content: \"\"\n display: block\n left: 50%\n position: absolute\n top: 50%\n transform: translateX(-50%) translateY(-50%) rotate(45deg)\n transform-origin: center center\n &::before\n height: 2px\n width: 50%\n &::after\n height: 50%\n width: 2px\n &:hover,\n &:focus\n background-color: bulmaRgba($scheme-invert, 0.3)\n &:active\n background-color: bulmaRgba($scheme-invert, 0.4)\n // Sizes\n &.is-small\n height: 16px\n max-height: 16px\n max-width: 16px\n min-height: 16px\n min-width: 16px\n width: 16px\n &.is-medium\n height: 24px\n max-height: 24px\n max-width: 24px\n min-height: 24px\n min-width: 24px\n width: 24px\n &.is-large\n height: 32px\n max-height: 32px\n max-width: 32px\n min-height: 32px\n min-width: 32px\n width: 32px\n\n%delete\n +delete\n\n=loader\n animation: spinAround 500ms infinite linear\n border: 2px solid $grey-lighter\n border-radius: $radius-rounded\n border-right-color: transparent\n border-top-color: transparent\n content: \"\"\n display: block\n height: 1em\n position: relative\n width: 1em\n\n%loader\n +loader\n\n=overlay($offset: 0)\n bottom: $offset\n left: $offset\n position: absolute\n right: $offset\n top: $offset\n\n%overlay\n +overlay\n","// Colors\n\n$black: hsl(0, 0%, 4%) !default\n$black-bis: hsl(0, 0%, 7%) !default\n$black-ter: hsl(0, 0%, 14%) !default\n\n$grey-darker: hsl(0, 0%, 21%) !default\n$grey-dark: hsl(0, 0%, 29%) !default\n$grey: hsl(0, 0%, 48%) !default\n$grey-light: hsl(0, 0%, 71%) !default\n$grey-lighter: hsl(0, 0%, 86%) !default\n$grey-lightest: hsl(0, 0%, 93%) !default\n\n$white-ter: hsl(0, 0%, 96%) !default\n$white-bis: hsl(0, 0%, 98%) !default\n$white: hsl(0, 0%, 100%) !default\n\n$orange: hsl(14, 100%, 53%) !default\n$yellow: hsl(48, 100%, 67%) !default\n$green: hsl(141, 53%, 53%) !default\n$turquoise: hsl(171, 100%, 41%) !default\n$cyan: hsl(204, 71%, 53%) !default\n$blue: hsl(217, 71%, 53%) !default\n$purple: hsl(271, 100%, 71%) !default\n$red: hsl(348, 86%, 61%) !default\n\n// Typography\n\n$family-sans-serif: BlinkMacSystemFont, -apple-system, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", \"Helvetica\", \"Arial\", sans-serif !default\n$family-monospace: monospace !default\n$render-mode: optimizeLegibility !default\n\n$size-1: 3rem !default\n$size-2: 2.5rem !default\n$size-3: 2rem !default\n$size-4: 1.5rem !default\n$size-5: 1.25rem !default\n$size-6: 1rem !default\n$size-7: 0.75rem !default\n\n$weight-light: 300 !default\n$weight-normal: 400 !default\n$weight-medium: 500 !default\n$weight-semibold: 600 !default\n$weight-bold: 700 !default\n\n// Spacing\n\n$block-spacing: 1.5rem !default\n\n// Responsiveness\n\n// The container horizontal gap, which acts as the offset for breakpoints\n$gap: 32px !default\n// 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16\n$tablet: 769px !default\n// 960px container + 4rem\n$desktop: 960px + (2 * $gap) !default\n// 1152px container + 4rem\n$widescreen: 1152px + (2 * $gap) !default\n$widescreen-enabled: true !default\n// 1344px container + 4rem\n$fullhd: 1344px + (2 * $gap) !default\n$fullhd-enabled: true !default\n\n// Miscellaneous\n\n$easing: ease-out !default\n$radius-small: 2px !default\n$radius: 4px !default\n$radius-large: 6px !default\n$radius-rounded: 290486px !default\n$speed: 86ms !default\n\n// Flags\n\n$variable-columns: true !default\n$rtl: false !default\n","$control-radius: $radius !default\n$control-radius-small: $radius-small !default\n\n$control-border-width: 1px !default\n\n$control-height: 2.5em !default\n$control-line-height: 1.5 !default\n\n$control-padding-vertical: calc(0.5em - #{$control-border-width}) !default\n$control-padding-horizontal: calc(0.75em - #{$control-border-width}) !default\n\n=control\n -moz-appearance: none\n -webkit-appearance: none\n align-items: center\n border: $control-border-width solid transparent\n border-radius: $control-radius\n box-shadow: none\n display: inline-flex\n font-size: $size-normal\n height: $control-height\n justify-content: flex-start\n line-height: $control-line-height\n padding-bottom: $control-padding-vertical\n padding-left: $control-padding-horizontal\n padding-right: $control-padding-horizontal\n padding-top: $control-padding-vertical\n position: relative\n vertical-align: top\n // States\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n outline: none\n &[disabled],\n fieldset[disabled] &\n cursor: not-allowed\n\n%control\n +control\n\n// The controls sizes use mixins so they can be used at different breakpoints\n=control-small\n border-radius: $control-radius-small\n font-size: $size-small\n=control-medium\n font-size: $size-medium\n=control-large\n font-size: $size-large\n","/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */\n// Blocks\nhtml,\nbody,\np,\nol,\nul,\nli,\ndl,\ndt,\ndd,\nblockquote,\nfigure,\nfieldset,\nlegend,\ntextarea,\npre,\niframe,\nhr,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6\n margin: 0\n padding: 0\n\n// Headings\nh1,\nh2,\nh3,\nh4,\nh5,\nh6\n font-size: 100%\n font-weight: normal\n\n// List\nul\n list-style: none\n\n// Form\nbutton,\ninput,\nselect,\ntextarea\n margin: 0\n\n// Box sizing\nhtml\n box-sizing: border-box\n\n*\n &,\n &::before,\n &::after\n box-sizing: inherit\n\n// Media\nimg,\nvideo\n height: auto\n max-width: 100%\n\n// Iframe\niframe\n border: 0\n\n// Table\ntable\n border-collapse: collapse\n border-spacing: 0\n\ntd,\nth\n padding: 0\n &:not([align])\n text-align: inherit\n","$body-background-color: $scheme-main !default\n$body-size: 16px !default\n$body-min-width: 300px !default\n$body-rendering: optimizeLegibility !default\n$body-family: $family-primary !default\n$body-overflow-x: hidden !default\n$body-overflow-y: scroll !default\n\n$body-color: $text !default\n$body-font-size: 1em !default\n$body-weight: $weight-normal !default\n$body-line-height: 1.5 !default\n\n$code-family: $family-code !default\n$code-padding: 0.25em 0.5em 0.25em !default\n$code-weight: normal !default\n$code-size: 0.875em !default\n\n$small-font-size: 0.875em !default\n\n$hr-background-color: $background !default\n$hr-height: 2px !default\n$hr-margin: 1.5rem 0 !default\n\n$strong-color: $text-strong !default\n$strong-weight: $weight-bold !default\n\n$pre-font-size: 0.875em !default\n$pre-padding: 1.25rem 1.5rem !default\n$pre-code-font-size: 1em !default\n\nhtml\n background-color: $body-background-color\n font-size: $body-size\n -moz-osx-font-smoothing: grayscale\n -webkit-font-smoothing: antialiased\n min-width: $body-min-width\n overflow-x: $body-overflow-x\n overflow-y: $body-overflow-y\n text-rendering: $body-rendering\n text-size-adjust: 100%\n\narticle,\naside,\nfigure,\nfooter,\nheader,\nhgroup,\nsection\n display: block\n\nbody,\nbutton,\ninput,\noptgroup,\nselect,\ntextarea\n font-family: $body-family\n\ncode,\npre\n -moz-osx-font-smoothing: auto\n -webkit-font-smoothing: auto\n font-family: $code-family\n\nbody\n color: $body-color\n font-size: $body-font-size\n font-weight: $body-weight\n line-height: $body-line-height\n\n// Inline\n\na\n color: $link\n cursor: pointer\n text-decoration: none\n strong\n color: currentColor\n &:hover\n color: $link-hover\n\ncode\n background-color: $code-background\n color: $code\n font-size: $code-size\n font-weight: $code-weight\n padding: $code-padding\n\nhr\n background-color: $hr-background-color\n border: none\n display: block\n height: $hr-height\n margin: $hr-margin\n\nimg\n height: auto\n max-width: 100%\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"]\n vertical-align: baseline\n\nsmall\n font-size: $small-font-size\n\nspan\n font-style: inherit\n font-weight: inherit\n\nstrong\n color: $strong-color\n font-weight: $strong-weight\n\n// Block\n\nfieldset\n border: none\n\npre\n +overflow-touch\n background-color: $pre-background\n color: $pre\n font-size: $pre-font-size\n overflow-x: auto\n padding: $pre-padding\n white-space: pre\n word-wrap: normal\n code\n background-color: transparent\n color: currentColor\n font-size: $pre-code-font-size\n padding: 0\n\ntable\n td,\n th\n vertical-align: top\n &:not([align])\n text-align: inherit\n th\n color: $text-strong\n","$primary: $turquoise !default\n\n$info: $cyan !default\n$success: $green !default\n$warning: $yellow !default\n$danger: $red !default\n\n$light: $white-ter !default\n$dark: $grey-darker !default\n\n// Invert colors\n\n$orange-invert: findColorInvert($orange) !default\n$yellow-invert: findColorInvert($yellow) !default\n$green-invert: findColorInvert($green) !default\n$turquoise-invert: findColorInvert($turquoise) !default\n$cyan-invert: findColorInvert($cyan) !default\n$blue-invert: findColorInvert($blue) !default\n$purple-invert: findColorInvert($purple) !default\n$red-invert: findColorInvert($red) !default\n\n$primary-invert: findColorInvert($primary) !default\n$primary-light: findLightColor($primary) !default\n$primary-dark: findDarkColor($primary) !default\n$info-invert: findColorInvert($info) !default\n$info-light: findLightColor($info) !default\n$info-dark: findDarkColor($info) !default\n$success-invert: findColorInvert($success) !default\n$success-light: findLightColor($success) !default\n$success-dark: findDarkColor($success) !default\n$warning-invert: findColorInvert($warning) !default\n$warning-light: findLightColor($warning) !default\n$warning-dark: findDarkColor($warning) !default\n$danger-invert: findColorInvert($danger) !default\n$danger-light: findLightColor($danger) !default\n$danger-dark: findDarkColor($danger) !default\n$light-invert: findColorInvert($light) !default\n$dark-invert: findColorInvert($dark) !default\n\n// General colors\n\n$scheme-main: $white !default\n$scheme-main-bis: $white-bis !default\n$scheme-main-ter: $white-ter !default\n$scheme-invert: $black !default\n$scheme-invert-bis: $black-bis !default\n$scheme-invert-ter: $black-ter !default\n\n$background: $white-ter !default\n\n$border: $grey-lighter !default\n$border-hover: $grey-light !default\n$border-light: $grey-lightest !default\n$border-light-hover: $grey-light !default\n\n// Text colors\n\n$text: $grey-dark !default\n$text-invert: findColorInvert($text) !default\n$text-light: $grey !default\n$text-strong: $grey-darker !default\n\n// Code colors\n\n$code: darken($red, 15%) !default\n$code-background: $background !default\n\n$pre: $text !default\n$pre-background: $background !default\n\n// Link colors\n\n$link: $blue !default\n$link-invert: findColorInvert($link) !default\n$link-light: findLightColor($link) !default\n$link-dark: findDarkColor($link) !default\n$link-visited: $purple !default\n\n$link-hover: $grey-darker !default\n$link-hover-border: $grey-light !default\n\n$link-focus: $grey-darker !default\n$link-focus-border: $blue !default\n\n$link-active: $grey-darker !default\n$link-active-border: $grey-dark !default\n\n// Typography\n\n$family-primary: $family-sans-serif !default\n$family-secondary: $family-sans-serif !default\n$family-code: $family-monospace !default\n\n$size-small: $size-7 !default\n$size-normal: $size-6 !default\n$size-medium: $size-5 !default\n$size-large: $size-4 !default\n\n// Lists and maps\n$custom-colors: null !default\n$custom-shades: null !default\n\n$colors: mergeColorMaps((\"white\": ($white, $black), \"black\": ($black, $white), \"light\": ($light, $light-invert), \"dark\": ($dark, $dark-invert), \"primary\": ($primary, $primary-invert, $primary-light, $primary-dark), \"link\": ($link, $link-invert, $link-light, $link-dark), \"info\": ($info, $info-invert, $info-light, $info-dark), \"success\": ($success, $success-invert, $success-light, $success-dark), \"warning\": ($warning, $warning-invert, $warning-light, $warning-dark), \"danger\": ($danger, $danger-invert, $danger-light, $danger-dark)), $custom-colors) !default\n\n$shades: mergeColorMaps((\"black-bis\": $black-bis, \"black-ter\": $black-ter, \"grey-darker\": $grey-darker, \"grey-dark\": $grey-dark, \"grey\": $grey, \"grey-light\": $grey-light, \"grey-lighter\": $grey-lighter, \"white-ter\": $white-ter, \"white-bis\": $white-bis), $custom-shades) !default\n\n$sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default\n","$box-color: $text !default\n$box-background-color: $scheme-main !default\n$box-radius: $radius-large !default\n$box-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n$box-padding: 1.25rem !default\n\n$box-link-hover-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0 0 1px $link !default\n$box-link-active-shadow: inset 0 1px 2px rgba($scheme-invert, 0.2), 0 0 0 1px $link !default\n\n.box\n @extend %block\n background-color: $box-background-color\n border-radius: $box-radius\n box-shadow: $box-shadow\n color: $box-color\n display: block\n padding: $box-padding\n\na.box\n &:hover,\n &:focus\n box-shadow: $box-link-hover-shadow\n &:active\n box-shadow: $box-link-active-shadow\n","$button-color: $text-strong !default\n$button-background-color: $scheme-main !default\n$button-family: false !default\n\n$button-border-color: $border !default\n$button-border-width: $control-border-width !default\n\n$button-padding-vertical: calc(0.5em - #{$button-border-width}) !default\n$button-padding-horizontal: 1em !default\n\n$button-hover-color: $link-hover !default\n$button-hover-border-color: $link-hover-border !default\n\n$button-focus-color: $link-focus !default\n$button-focus-border-color: $link-focus-border !default\n$button-focus-box-shadow-size: 0 0 0 0.125em !default\n$button-focus-box-shadow-color: bulmaRgba($link, 0.25) !default\n\n$button-active-color: $link-active !default\n$button-active-border-color: $link-active-border !default\n\n$button-text-color: $text !default\n$button-text-decoration: underline !default\n$button-text-hover-background-color: $background !default\n$button-text-hover-color: $text-strong !default\n\n$button-disabled-background-color: $scheme-main !default\n$button-disabled-border-color: $border !default\n$button-disabled-shadow: none !default\n$button-disabled-opacity: 0.5 !default\n\n$button-static-color: $text-light !default\n$button-static-background-color: $scheme-main-ter !default\n$button-static-border-color: $border !default\n\n$button-colors: $colors !default\n\n// The button sizes use mixins so they can be used at different breakpoints\n=button-small\n border-radius: $radius-small\n font-size: $size-small\n=button-normal\n font-size: $size-normal\n=button-medium\n font-size: $size-medium\n=button-large\n font-size: $size-large\n\n.button\n @extend %control\n @extend %unselectable\n background-color: $button-background-color\n border-color: $button-border-color\n border-width: $button-border-width\n color: $button-color\n cursor: pointer\n @if $button-family\n font-family: $button-family\n justify-content: center\n padding-bottom: $button-padding-vertical\n padding-left: $button-padding-horizontal\n padding-right: $button-padding-horizontal\n padding-top: $button-padding-vertical\n text-align: center\n white-space: nowrap\n strong\n color: inherit\n .icon\n &,\n &.is-small,\n &.is-medium,\n &.is-large\n height: 1.5em\n width: 1.5em\n &:first-child:not(:last-child)\n +ltr-property(\"margin\", calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width}), false)\n +ltr-property(\"margin\", $button-padding-horizontal / 4)\n &:last-child:not(:first-child)\n +ltr-property(\"margin\", $button-padding-horizontal / 4, false)\n +ltr-property(\"margin\", calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width}))\n &:first-child:last-child\n margin-left: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})\n margin-right: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})\n // States\n &:hover,\n &.is-hovered\n border-color: $button-hover-border-color\n color: $button-hover-color\n &:focus,\n &.is-focused\n border-color: $button-focus-border-color\n color: $button-focus-color\n &:not(:active)\n box-shadow: $button-focus-box-shadow-size $button-focus-box-shadow-color\n &:active,\n &.is-active\n border-color: $button-active-border-color\n color: $button-active-color\n // Colors\n &.is-text\n background-color: transparent\n border-color: transparent\n color: $button-text-color\n text-decoration: $button-text-decoration\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n background-color: $button-text-hover-background-color\n color: $button-text-hover-color\n &:active,\n &.is-active\n background-color: bulmaDarken($button-text-hover-background-color, 5%)\n color: $button-text-hover-color\n &[disabled],\n fieldset[disabled] &\n background-color: transparent\n border-color: transparent\n box-shadow: none\n @each $name, $pair in $button-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n border-color: transparent\n color: $color-invert\n &:hover,\n &.is-hovered\n background-color: bulmaDarken($color, 2.5%)\n border-color: transparent\n color: $color-invert\n &:focus,\n &.is-focused\n border-color: transparent\n color: $color-invert\n &:not(:active)\n box-shadow: $button-focus-box-shadow-size bulmaRgba($color, 0.25)\n &:active,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n border-color: transparent\n color: $color-invert\n &[disabled],\n fieldset[disabled] &\n background-color: $color\n border-color: transparent\n box-shadow: none\n &.is-inverted\n background-color: $color-invert\n color: $color\n &:hover,\n &.is-hovered\n background-color: bulmaDarken($color-invert, 5%)\n &[disabled],\n fieldset[disabled] &\n background-color: $color-invert\n border-color: transparent\n box-shadow: none\n color: $color\n &.is-loading\n &::after\n border-color: transparent transparent $color-invert $color-invert !important\n &.is-outlined\n background-color: transparent\n border-color: $color\n color: $color\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n background-color: $color\n border-color: $color\n color: $color-invert\n &.is-loading\n &::after\n border-color: transparent transparent $color $color !important\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n &::after\n border-color: transparent transparent $color-invert $color-invert !important\n &[disabled],\n fieldset[disabled] &\n background-color: transparent\n border-color: $color\n box-shadow: none\n color: $color\n &.is-inverted.is-outlined\n background-color: transparent\n border-color: $color-invert\n color: $color-invert\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n background-color: $color-invert\n color: $color\n &.is-loading\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n &::after\n border-color: transparent transparent $color $color !important\n &[disabled],\n fieldset[disabled] &\n background-color: transparent\n border-color: $color-invert\n box-shadow: none\n color: $color-invert\n // If light and dark colors are provided\n @if length($pair) >= 4\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n &.is-light\n background-color: $color-light\n color: $color-dark\n &:hover,\n &.is-hovered\n background-color: bulmaDarken($color-light, 2.5%)\n border-color: transparent\n color: $color-dark\n &:active,\n &.is-active\n background-color: bulmaDarken($color-light, 5%)\n border-color: transparent\n color: $color-dark\n // Sizes\n &.is-small\n +button-small\n &.is-normal\n +button-normal\n &.is-medium\n +button-medium\n &.is-large\n +button-large\n // Modifiers\n &[disabled],\n fieldset[disabled] &\n background-color: $button-disabled-background-color\n border-color: $button-disabled-border-color\n box-shadow: $button-disabled-shadow\n opacity: $button-disabled-opacity\n &.is-fullwidth\n display: flex\n width: 100%\n &.is-loading\n color: transparent !important\n pointer-events: none\n &::after\n @extend %loader\n +center(1em)\n position: absolute !important\n &.is-static\n background-color: $button-static-background-color\n border-color: $button-static-border-color\n color: $button-static-color\n box-shadow: none\n pointer-events: none\n &.is-rounded\n border-radius: $radius-rounded\n padding-left: calc(#{$button-padding-horizontal} + 0.25em)\n padding-right: calc(#{$button-padding-horizontal} + 0.25em)\n\n.buttons\n align-items: center\n display: flex\n flex-wrap: wrap\n justify-content: flex-start\n .button\n margin-bottom: 0.5rem\n &:not(:last-child):not(.is-fullwidth)\n +ltr-property(\"margin\", 0.5rem)\n &:last-child\n margin-bottom: -0.5rem\n &:not(:last-child)\n margin-bottom: 1rem\n // Sizes\n &.are-small\n .button:not(.is-normal):not(.is-medium):not(.is-large)\n +button-small\n &.are-medium\n .button:not(.is-small):not(.is-normal):not(.is-large)\n +button-medium\n &.are-large\n .button:not(.is-small):not(.is-normal):not(.is-medium)\n +button-large\n &.has-addons\n .button\n &:not(:first-child)\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n &:not(:last-child)\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n +ltr-property(\"margin\", -1px)\n &:last-child\n +ltr-property(\"margin\", 0)\n &:hover,\n &.is-hovered\n z-index: 2\n &:focus,\n &.is-focused,\n &:active,\n &.is-active,\n &.is-selected\n z-index: 3\n &:hover\n z-index: 4\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.is-centered\n justify-content: center\n &:not(.has-addons)\n .button:not(.is-fullwidth)\n margin-left: 0.25rem\n margin-right: 0.25rem\n &.is-right\n justify-content: flex-end\n &:not(.has-addons)\n .button:not(.is-fullwidth)\n margin-left: 0.25rem\n margin-right: 0.25rem\n","$container-offset: (2 * $gap) !default\n$container-max-width: $fullhd !default\n\n.container\n flex-grow: 1\n margin: 0 auto\n position: relative\n width: auto\n &.is-fluid\n max-width: none !important\n padding-left: $gap\n padding-right: $gap\n width: 100%\n +desktop\n max-width: $desktop - $container-offset\n +until-widescreen\n &.is-widescreen:not(.is-max-desktop)\n max-width: min($widescreen, $container-max-width) - $container-offset\n +until-fullhd\n &.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen)\n max-width: min($fullhd, $container-max-width) - $container-offset\n +widescreen\n &:not(.is-max-desktop)\n max-width: min($widescreen, $container-max-width) - $container-offset\n +fullhd\n &:not(.is-max-desktop):not(.is-max-widescreen)\n max-width: min($fullhd, $container-max-width) - $container-offset\n","$content-heading-color: $text-strong !default\n$content-heading-weight: $weight-semibold !default\n$content-heading-line-height: 1.125 !default\n\n$content-blockquote-background-color: $background !default\n$content-blockquote-border-left: 5px solid $border !default\n$content-blockquote-padding: 1.25em 1.5em !default\n\n$content-pre-padding: 1.25em 1.5em !default\n\n$content-table-cell-border: 1px solid $border !default\n$content-table-cell-border-width: 0 0 1px !default\n$content-table-cell-padding: 0.5em 0.75em !default\n$content-table-cell-heading-color: $text-strong !default\n$content-table-head-cell-border-width: 0 0 2px !default\n$content-table-head-cell-color: $text-strong !default\n$content-table-foot-cell-border-width: 2px 0 0 !default\n$content-table-foot-cell-color: $text-strong !default\n\n.content\n @extend %block\n // Inline\n li + li\n margin-top: 0.25em\n // Block\n p,\n dl,\n ol,\n ul,\n blockquote,\n pre,\n table\n &:not(:last-child)\n margin-bottom: 1em\n h1,\n h2,\n h3,\n h4,\n h5,\n h6\n color: $content-heading-color\n font-weight: $content-heading-weight\n line-height: $content-heading-line-height\n h1\n font-size: 2em\n margin-bottom: 0.5em\n &:not(:first-child)\n margin-top: 1em\n h2\n font-size: 1.75em\n margin-bottom: 0.5714em\n &:not(:first-child)\n margin-top: 1.1428em\n h3\n font-size: 1.5em\n margin-bottom: 0.6666em\n &:not(:first-child)\n margin-top: 1.3333em\n h4\n font-size: 1.25em\n margin-bottom: 0.8em\n h5\n font-size: 1.125em\n margin-bottom: 0.8888em\n h6\n font-size: 1em\n margin-bottom: 1em\n blockquote\n background-color: $content-blockquote-background-color\n +ltr-property(\"border\", $content-blockquote-border-left, false)\n padding: $content-blockquote-padding\n ol\n list-style-position: outside\n +ltr-property(\"margin\", 2em, false)\n margin-top: 1em\n &:not([type])\n list-style-type: decimal\n &.is-lower-alpha\n list-style-type: lower-alpha\n &.is-lower-roman\n list-style-type: lower-roman\n &.is-upper-alpha\n list-style-type: upper-alpha\n &.is-upper-roman\n list-style-type: upper-roman\n ul\n list-style: disc outside\n +ltr-property(\"margin\", 2em, false)\n margin-top: 1em\n ul\n list-style-type: circle\n margin-top: 0.5em\n ul\n list-style-type: square\n dd\n +ltr-property(\"margin\", 2em, false)\n figure\n margin-left: 2em\n margin-right: 2em\n text-align: center\n &:not(:first-child)\n margin-top: 2em\n &:not(:last-child)\n margin-bottom: 2em\n img\n display: inline-block\n figcaption\n font-style: italic\n pre\n +overflow-touch\n overflow-x: auto\n padding: $content-pre-padding\n white-space: pre\n word-wrap: normal\n sup,\n sub\n font-size: 75%\n table\n width: 100%\n td,\n th\n border: $content-table-cell-border\n border-width: $content-table-cell-border-width\n padding: $content-table-cell-padding\n vertical-align: top\n th\n color: $content-table-cell-heading-color\n &:not([align])\n text-align: inherit\n thead\n td,\n th\n border-width: $content-table-head-cell-border-width\n color: $content-table-head-cell-color\n tfoot\n td,\n th\n border-width: $content-table-foot-cell-border-width\n color: $content-table-foot-cell-color\n tbody\n tr\n &:last-child\n td,\n th\n border-bottom-width: 0\n .tabs\n li + li\n margin-top: 0\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n","$icon-dimensions: 1.5rem !default\n$icon-dimensions-small: 1rem !default\n$icon-dimensions-medium: 2rem !default\n$icon-dimensions-large: 3rem !default\n\n.icon\n align-items: center\n display: inline-flex\n justify-content: center\n height: $icon-dimensions\n width: $icon-dimensions\n // Sizes\n &.is-small\n height: $icon-dimensions-small\n width: $icon-dimensions-small\n &.is-medium\n height: $icon-dimensions-medium\n width: $icon-dimensions-medium\n &.is-large\n height: $icon-dimensions-large\n width: $icon-dimensions-large\n","$dimensions: 16 24 32 48 64 96 128 !default\n\n.image\n display: block\n position: relative\n img\n display: block\n height: auto\n width: 100%\n &.is-rounded\n border-radius: $radius-rounded\n &.is-fullwidth\n width: 100%\n // Ratio\n &.is-square,\n &.is-1by1,\n &.is-5by4,\n &.is-4by3,\n &.is-3by2,\n &.is-5by3,\n &.is-16by9,\n &.is-2by1,\n &.is-3by1,\n &.is-4by5,\n &.is-3by4,\n &.is-2by3,\n &.is-3by5,\n &.is-9by16,\n &.is-1by2,\n &.is-1by3\n img,\n .has-ratio\n @extend %overlay\n height: 100%\n width: 100%\n &.is-square,\n &.is-1by1\n padding-top: 100%\n &.is-5by4\n padding-top: 80%\n &.is-4by3\n padding-top: 75%\n &.is-3by2\n padding-top: 66.6666%\n &.is-5by3\n padding-top: 60%\n &.is-16by9\n padding-top: 56.25%\n &.is-2by1\n padding-top: 50%\n &.is-3by1\n padding-top: 33.3333%\n &.is-4by5\n padding-top: 125%\n &.is-3by4\n padding-top: 133.3333%\n &.is-2by3\n padding-top: 150%\n &.is-3by5\n padding-top: 166.6666%\n &.is-9by16\n padding-top: 177.7777%\n &.is-1by2\n padding-top: 200%\n &.is-1by3\n padding-top: 300%\n // Sizes\n @each $dimension in $dimensions\n &.is-#{$dimension}x#{$dimension}\n height: $dimension * 1px\n width: $dimension * 1px\n","$notification-background-color: $background !default\n$notification-code-background-color: $scheme-main !default\n$notification-radius: $radius !default\n$notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default\n$notification-padding-ltr: 1.25rem 2.5rem 1.25rem 1.5rem !default\n$notification-padding-rtl: 1.25rem 1.5rem 1.25rem 2.5rem !default\n\n$notification-colors: $colors !default\n\n.notification\n @extend %block\n background-color: $notification-background-color\n border-radius: $notification-radius\n position: relative\n +ltr\n padding: $notification-padding-ltr\n +rtl\n padding: $notification-padding-rtl\n a:not(.button):not(.dropdown-item)\n color: currentColor\n text-decoration: underline\n strong\n color: currentColor\n code,\n pre\n background: $notification-code-background-color\n pre code\n background: transparent\n & > .delete\n +ltr-position(0.5rem)\n position: absolute\n top: 0.5rem\n .title,\n .subtitle,\n .content\n color: currentColor\n // Colors\n @each $name, $pair in $notification-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n // If light and dark colors are provided\n @if length($pair) >= 4\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n &.is-light\n background-color: $color-light\n color: $color-dark\n","$progress-bar-background-color: $border-light !default\n$progress-value-background-color: $text !default\n$progress-border-radius: $radius-rounded !default\n\n$progress-indeterminate-duration: 1.5s !default\n\n$progress-colors: $colors !default\n\n.progress\n @extend %block\n -moz-appearance: none\n -webkit-appearance: none\n border: none\n border-radius: $progress-border-radius\n display: block\n height: $size-normal\n overflow: hidden\n padding: 0\n width: 100%\n &::-webkit-progress-bar\n background-color: $progress-bar-background-color\n &::-webkit-progress-value\n background-color: $progress-value-background-color\n &::-moz-progress-bar\n background-color: $progress-value-background-color\n &::-ms-fill\n background-color: $progress-value-background-color\n border: none\n // Colors\n @each $name, $pair in $progress-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n &::-webkit-progress-value\n background-color: $color\n &::-moz-progress-bar\n background-color: $color\n &::-ms-fill\n background-color: $color\n &:indeterminate\n background-image: linear-gradient(to right, $color 30%, $progress-bar-background-color 30%)\n\n &:indeterminate\n animation-duration: $progress-indeterminate-duration\n animation-iteration-count: infinite\n animation-name: moveIndeterminate\n animation-timing-function: linear\n background-color: $progress-bar-background-color\n background-image: linear-gradient(to right, $text 30%, $progress-bar-background-color 30%)\n background-position: top left\n background-repeat: no-repeat\n background-size: 150% 150%\n &::-webkit-progress-bar\n background-color: transparent\n &::-moz-progress-bar\n background-color: transparent\n &::-ms-fill\n animation-name: none\n\n // Sizes\n &.is-small\n height: $size-small\n &.is-medium\n height: $size-medium\n &.is-large\n height: $size-large\n\n@keyframes moveIndeterminate\n from\n background-position: 200% 0\n to\n background-position: -200% 0\n","$table-color: $text-strong !default\n$table-background-color: $scheme-main !default\n\n$table-cell-border: 1px solid $border !default\n$table-cell-border-width: 0 0 1px !default\n$table-cell-padding: 0.5em 0.75em !default\n$table-cell-heading-color: $text-strong !default\n\n$table-head-cell-border-width: 0 0 2px !default\n$table-head-cell-color: $text-strong !default\n$table-foot-cell-border-width: 2px 0 0 !default\n$table-foot-cell-color: $text-strong !default\n\n$table-head-background-color: transparent !default\n$table-body-background-color: transparent !default\n$table-foot-background-color: transparent !default\n\n$table-row-hover-background-color: $scheme-main-bis !default\n\n$table-row-active-background-color: $primary !default\n$table-row-active-color: $primary-invert !default\n\n$table-striped-row-even-background-color: $scheme-main-bis !default\n$table-striped-row-even-hover-background-color: $scheme-main-ter !default\n\n$table-colors: $colors !default\n\n.table\n @extend %block\n background-color: $table-background-color\n color: $table-color\n td,\n th\n border: $table-cell-border\n border-width: $table-cell-border-width\n padding: $table-cell-padding\n vertical-align: top\n // Colors\n @each $name, $pair in $table-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n border-color: $color\n color: $color-invert\n // Modifiers\n &.is-narrow\n white-space: nowrap\n width: 1%\n &.is-selected\n background-color: $table-row-active-background-color\n color: $table-row-active-color\n a,\n strong\n color: currentColor\n &.is-vcentered\n vertical-align: middle\n th\n color: $table-cell-heading-color\n &:not([align])\n text-align: inherit\n tr\n &.is-selected\n background-color: $table-row-active-background-color\n color: $table-row-active-color\n a,\n strong\n color: currentColor\n td,\n th\n border-color: $table-row-active-color\n color: currentColor\n thead\n background-color: $table-head-background-color\n td,\n th\n border-width: $table-head-cell-border-width\n color: $table-head-cell-color\n tfoot\n background-color: $table-foot-background-color\n td,\n th\n border-width: $table-foot-cell-border-width\n color: $table-foot-cell-color\n tbody\n background-color: $table-body-background-color\n tr\n &:last-child\n td,\n th\n border-bottom-width: 0\n // Modifiers\n &.is-bordered\n td,\n th\n border-width: 1px\n tr\n &:last-child\n td,\n th\n border-bottom-width: 1px\n &.is-fullwidth\n width: 100%\n &.is-hoverable\n tbody\n tr:not(.is-selected)\n &:hover\n background-color: $table-row-hover-background-color\n &.is-striped\n tbody\n tr:not(.is-selected)\n &:hover\n background-color: $table-row-hover-background-color\n &:nth-child(even)\n background-color: $table-striped-row-even-hover-background-color\n &.is-narrow\n td,\n th\n padding: 0.25em 0.5em\n &.is-striped\n tbody\n tr:not(.is-selected)\n &:nth-child(even)\n background-color: $table-striped-row-even-background-color\n\n.table-container\n @extend %block\n +overflow-touch\n overflow: auto\n overflow-y: hidden\n max-width: 100%\n","$tag-background-color: $background !default\n$tag-color: $text !default\n$tag-radius: $radius !default\n$tag-delete-margin: 1px !default\n\n$tag-colors: $colors !default\n\n.tags\n align-items: center\n display: flex\n flex-wrap: wrap\n justify-content: flex-start\n .tag\n margin-bottom: 0.5rem\n &:not(:last-child)\n +ltr-property(\"margin\", 0.5rem)\n &:last-child\n margin-bottom: -0.5rem\n &:not(:last-child)\n margin-bottom: 1rem\n // Sizes\n &.are-medium\n .tag:not(.is-normal):not(.is-large)\n font-size: $size-normal\n &.are-large\n .tag:not(.is-normal):not(.is-medium)\n font-size: $size-medium\n &.is-centered\n justify-content: center\n .tag\n margin-right: 0.25rem\n margin-left: 0.25rem\n &.is-right\n justify-content: flex-end\n .tag\n &:not(:first-child)\n margin-left: 0.5rem\n &:not(:last-child)\n margin-right: 0\n &.has-addons\n .tag\n +ltr-property(\"margin\", 0)\n &:not(:first-child)\n +ltr-property(\"margin\", 0, false)\n +ltr\n border-top-left-radius: 0\n border-bottom-left-radius: 0\n +rtl\n border-top-right-radius: 0\n border-bottom-right-radius: 0\n &:not(:last-child)\n +ltr\n border-top-right-radius: 0\n border-bottom-right-radius: 0\n +rtl\n border-top-left-radius: 0\n border-bottom-left-radius: 0\n\n.tag:not(body)\n align-items: center\n background-color: $tag-background-color\n border-radius: $tag-radius\n color: $tag-color\n display: inline-flex\n font-size: $size-small\n height: 2em\n justify-content: center\n line-height: 1.5\n padding-left: 0.75em\n padding-right: 0.75em\n white-space: nowrap\n .delete\n +ltr-property(\"margin\", 0.25rem, false)\n +ltr-property(\"margin\", -0.375rem)\n // Colors\n @each $name, $pair in $tag-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n // If a light and dark colors are provided\n @if length($pair) > 3\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n &.is-light\n background-color: $color-light\n color: $color-dark\n // Sizes\n &.is-normal\n font-size: $size-small\n &.is-medium\n font-size: $size-normal\n &.is-large\n font-size: $size-medium\n .icon\n &:first-child:not(:last-child)\n +ltr-property(\"margin\", -0.375em, false)\n +ltr-property(\"margin\", 0.1875em)\n &:last-child:not(:first-child)\n +ltr-property(\"margin\", 0.1875em, false)\n +ltr-property(\"margin\", -0.375em)\n &:first-child:last-child\n +ltr-property(\"margin\", -0.375em, false)\n +ltr-property(\"margin\", -0.375em)\n // Modifiers\n &.is-delete\n +ltr-property(\"margin\", $tag-delete-margin, false)\n padding: 0\n position: relative\n width: 2em\n &::before,\n &::after\n background-color: currentColor\n content: \"\"\n display: block\n left: 50%\n position: absolute\n top: 50%\n transform: translateX(-50%) translateY(-50%) rotate(45deg)\n transform-origin: center center\n &::before\n height: 1px\n width: 50%\n &::after\n height: 50%\n width: 1px\n &:hover,\n &:focus\n background-color: darken($tag-background-color, 5%)\n &:active\n background-color: darken($tag-background-color, 10%)\n &.is-rounded\n border-radius: $radius-rounded\n\na.tag\n &:hover\n text-decoration: underline\n","$title-color: $text-strong !default\n$title-family: false !default\n$title-size: $size-3 !default\n$title-weight: $weight-semibold !default\n$title-line-height: 1.125 !default\n$title-strong-color: inherit !default\n$title-strong-weight: inherit !default\n$title-sub-size: 0.75em !default\n$title-sup-size: 0.75em !default\n\n$subtitle-color: $text !default\n$subtitle-family: false !default\n$subtitle-size: $size-5 !default\n$subtitle-weight: $weight-normal !default\n$subtitle-line-height: 1.25 !default\n$subtitle-strong-color: $text-strong !default\n$subtitle-strong-weight: $weight-semibold !default\n$subtitle-negative-margin: -1.25rem !default\n\n.title,\n.subtitle\n @extend %block\n word-break: break-word\n em,\n span\n font-weight: inherit\n sub\n font-size: $title-sub-size\n sup\n font-size: $title-sup-size\n .tag\n vertical-align: middle\n\n.title\n color: $title-color\n @if $title-family\n font-family: $title-family\n font-size: $title-size\n font-weight: $title-weight\n line-height: $title-line-height\n strong\n color: $title-strong-color\n font-weight: $title-strong-weight\n & + .highlight\n margin-top: -0.75rem\n &:not(.is-spaced) + .subtitle\n margin-top: $subtitle-negative-margin\n // Sizes\n @each $size in $sizes\n $i: index($sizes, $size)\n &.is-#{$i}\n font-size: $size\n\n.subtitle\n color: $subtitle-color\n @if $subtitle-family\n font-family: $subtitle-family\n font-size: $subtitle-size\n font-weight: $subtitle-weight\n line-height: $subtitle-line-height\n strong\n color: $subtitle-strong-color\n font-weight: $subtitle-strong-weight\n &:not(.is-spaced) + .title\n margin-top: $subtitle-negative-margin\n // Sizes\n @each $size in $sizes\n $i: index($sizes, $size)\n &.is-#{$i}\n font-size: $size\n",".block\n @extend %block\n\n.delete\n @extend %delete\n\n.heading\n display: block\n font-size: 11px\n letter-spacing: 1px\n margin-bottom: 5px\n text-transform: uppercase\n\n.highlight\n @extend %block\n font-weight: $weight-normal\n max-width: 100%\n overflow: hidden\n padding: 0\n pre\n overflow: auto\n max-width: 100%\n\n.loader\n @extend %loader\n\n.number\n align-items: center\n background-color: $background\n border-radius: $radius-rounded\n display: inline-flex\n font-size: $size-medium\n height: 2em\n justify-content: center\n margin-right: 1.5rem\n min-width: 2.5em\n padding: 0.25rem 0.5rem\n text-align: center\n vertical-align: top\n","$form-colors: $colors !default\n\n$input-color: $text-strong !default\n$input-background-color: $scheme-main !default\n$input-border-color: $border !default\n$input-height: $control-height !default\n$input-shadow: inset 0 0.0625em 0.125em rgba($scheme-invert, 0.05) !default\n$input-placeholder-color: bulmaRgba($input-color, 0.3) !default\n\n$input-hover-color: $text-strong !default\n$input-hover-border-color: $border-hover !default\n\n$input-focus-color: $text-strong !default\n$input-focus-border-color: $link !default\n$input-focus-box-shadow-size: 0 0 0 0.125em !default\n$input-focus-box-shadow-color: bulmaRgba($link, 0.25) !default\n\n$input-disabled-color: $text-light !default\n$input-disabled-background-color: $background !default\n$input-disabled-border-color: $background !default\n$input-disabled-placeholder-color: bulmaRgba($input-disabled-color, 0.3) !default\n\n$input-arrow: $link !default\n\n$input-icon-color: $border !default\n$input-icon-active-color: $text !default\n\n$input-radius: $radius !default\n\n=input\n @extend %control\n background-color: $input-background-color\n border-color: $input-border-color\n border-radius: $input-radius\n color: $input-color\n +placeholder\n color: $input-placeholder-color\n &:hover,\n &.is-hovered\n border-color: $input-hover-border-color\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n border-color: $input-focus-border-color\n box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color\n &[disabled],\n fieldset[disabled] &\n background-color: $input-disabled-background-color\n border-color: $input-disabled-border-color\n box-shadow: none\n color: $input-disabled-color\n +placeholder\n color: $input-disabled-placeholder-color\n\n%input\n +input\n","$textarea-padding: $control-padding-horizontal !default\n$textarea-max-height: 40em !default\n$textarea-min-height: 8em !default\n\n$textarea-colors: $form-colors !default\n\n%input-textarea\n @extend %input\n box-shadow: $input-shadow\n max-width: 100%\n width: 100%\n &[readonly]\n box-shadow: none\n // Colors\n @each $name, $pair in $textarea-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n border-color: $color\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25)\n // Sizes\n &.is-small\n +control-small\n &.is-medium\n +control-medium\n &.is-large\n +control-large\n // Modifiers\n &.is-fullwidth\n display: block\n width: 100%\n &.is-inline\n display: inline\n width: auto\n\n.input\n @extend %input-textarea\n &.is-rounded\n border-radius: $radius-rounded\n padding-left: calc(#{$control-padding-horizontal} + 0.375em)\n padding-right: calc(#{$control-padding-horizontal} + 0.375em)\n &.is-static\n background-color: transparent\n border-color: transparent\n box-shadow: none\n padding-left: 0\n padding-right: 0\n\n.textarea\n @extend %input-textarea\n display: block\n max-width: 100%\n min-width: 100%\n padding: $textarea-padding\n resize: vertical\n &:not([rows])\n max-height: $textarea-max-height\n min-height: $textarea-min-height\n &[rows]\n height: initial\n // Modifiers\n &.has-fixed-size\n resize: none\n","%checkbox-radio\n cursor: pointer\n display: inline-block\n line-height: 1.25\n position: relative\n input\n cursor: pointer\n &:hover\n color: $input-hover-color\n &[disabled],\n fieldset[disabled] &,\n input[disabled]\n color: $input-disabled-color\n cursor: not-allowed\n\n.checkbox\n @extend %checkbox-radio\n\n.radio\n @extend %checkbox-radio\n & + .radio\n +ltr-property(\"margin\", 0.5em, false)\n","$select-colors: $form-colors !default\n\n.select\n display: inline-block\n max-width: 100%\n position: relative\n vertical-align: top\n &:not(.is-multiple)\n height: $input-height\n &:not(.is-multiple):not(.is-loading)\n &::after\n @extend %arrow\n border-color: $input-arrow\n +ltr-position(1.125em)\n z-index: 4\n &.is-rounded\n select\n border-radius: $radius-rounded\n +ltr-property(\"padding\", 1em, false)\n select\n @extend %input\n cursor: pointer\n display: block\n font-size: 1em\n max-width: 100%\n outline: none\n &::-ms-expand\n display: none\n &[disabled]:hover,\n fieldset[disabled] &:hover\n border-color: $input-disabled-border-color\n &:not([multiple])\n +ltr-property(\"padding\", 2.5em)\n &[multiple]\n height: auto\n padding: 0\n option\n padding: 0.5em 1em\n // States\n &:not(.is-multiple):not(.is-loading):hover\n &::after\n border-color: $input-hover-color\n // Colors\n @each $name, $pair in $select-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n &:not(:hover)::after\n border-color: $color\n select\n border-color: $color\n &:hover,\n &.is-hovered\n border-color: bulmaDarken($color, 5%)\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25)\n // Sizes\n &.is-small\n +control-small\n &.is-medium\n +control-medium\n &.is-large\n +control-large\n // Modifiers\n &.is-disabled\n &::after\n border-color: $input-disabled-color\n &.is-fullwidth\n width: 100%\n select\n width: 100%\n &.is-loading\n &::after\n @extend %loader\n margin-top: 0\n position: absolute\n +ltr-position(0.625em)\n top: 0.625em\n transform: none\n &.is-small:after\n font-size: $size-small\n &.is-medium:after\n font-size: $size-medium\n &.is-large:after\n font-size: $size-large\n","$file-border-color: $border !default\n$file-radius: $radius !default\n\n$file-cta-background-color: $scheme-main-ter !default\n$file-cta-color: $text !default\n$file-cta-hover-color: $text-strong !default\n$file-cta-active-color: $text-strong !default\n\n$file-name-border-color: $border !default\n$file-name-border-style: solid !default\n$file-name-border-width: 1px 1px 1px 0 !default\n$file-name-max-width: 16em !default\n\n$file-colors: $form-colors !default\n\n.file\n @extend %unselectable\n align-items: stretch\n display: flex\n justify-content: flex-start\n position: relative\n // Colors\n @each $name, $pair in $file-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n .file-cta\n background-color: $color\n border-color: transparent\n color: $color-invert\n &:hover,\n &.is-hovered\n .file-cta\n background-color: bulmaDarken($color, 2.5%)\n border-color: transparent\n color: $color-invert\n &:focus,\n &.is-focused\n .file-cta\n border-color: transparent\n box-shadow: 0 0 0.5em bulmaRgba($color, 0.25)\n color: $color-invert\n &:active,\n &.is-active\n .file-cta\n background-color: bulmaDarken($color, 5%)\n border-color: transparent\n color: $color-invert\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n .file-icon\n .fa\n font-size: 21px\n &.is-large\n font-size: $size-large\n .file-icon\n .fa\n font-size: 28px\n // Modifiers\n &.has-name\n .file-cta\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n .file-name\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n &.is-empty\n .file-cta\n border-radius: $file-radius\n .file-name\n display: none\n &.is-boxed\n .file-label\n flex-direction: column\n .file-cta\n flex-direction: column\n height: auto\n padding: 1em 3em\n .file-name\n border-width: 0 1px 1px\n .file-icon\n height: 1.5em\n width: 1.5em\n .fa\n font-size: 21px\n &.is-small\n .file-icon .fa\n font-size: 14px\n &.is-medium\n .file-icon .fa\n font-size: 28px\n &.is-large\n .file-icon .fa\n font-size: 35px\n &.has-name\n .file-cta\n border-radius: $file-radius $file-radius 0 0\n .file-name\n border-radius: 0 0 $file-radius $file-radius\n border-width: 0 1px 1px\n &.is-centered\n justify-content: center\n &.is-fullwidth\n .file-label\n width: 100%\n .file-name\n flex-grow: 1\n max-width: none\n &.is-right\n justify-content: flex-end\n .file-cta\n border-radius: 0 $file-radius $file-radius 0\n .file-name\n border-radius: $file-radius 0 0 $file-radius\n border-width: 1px 0 1px 1px\n order: -1\n\n.file-label\n align-items: stretch\n display: flex\n cursor: pointer\n justify-content: flex-start\n overflow: hidden\n position: relative\n &:hover\n .file-cta\n background-color: bulmaDarken($file-cta-background-color, 2.5%)\n color: $file-cta-hover-color\n .file-name\n border-color: bulmaDarken($file-name-border-color, 2.5%)\n &:active\n .file-cta\n background-color: bulmaDarken($file-cta-background-color, 5%)\n color: $file-cta-active-color\n .file-name\n border-color: bulmaDarken($file-name-border-color, 5%)\n\n.file-input\n height: 100%\n left: 0\n opacity: 0\n outline: none\n position: absolute\n top: 0\n width: 100%\n\n.file-cta,\n.file-name\n @extend %control\n border-color: $file-border-color\n border-radius: $file-radius\n font-size: 1em\n padding-left: 1em\n padding-right: 1em\n white-space: nowrap\n\n.file-cta\n background-color: $file-cta-background-color\n color: $file-cta-color\n\n.file-name\n border-color: $file-name-border-color\n border-style: $file-name-border-style\n border-width: $file-name-border-width\n display: block\n max-width: $file-name-max-width\n overflow: hidden\n text-align: inherit\n text-overflow: ellipsis\n\n.file-icon\n align-items: center\n display: flex\n height: 1em\n justify-content: center\n +ltr-property(\"margin\", 0.5em)\n width: 1em\n .fa\n font-size: 14px\n","$label-color: $text-strong !default\n$label-weight: $weight-bold !default\n\n$help-size: $size-small !default\n\n$label-colors: $form-colors !default\n\n.label\n color: $label-color\n display: block\n font-size: $size-normal\n font-weight: $label-weight\n &:not(:last-child)\n margin-bottom: 0.5em\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n\n.help\n display: block\n font-size: $help-size\n margin-top: 0.25rem\n @each $name, $pair in $label-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n color: $color\n\n// Containers\n\n.field\n &:not(:last-child)\n margin-bottom: 0.75rem\n // Modifiers\n &.has-addons\n display: flex\n justify-content: flex-start\n .control\n &:not(:last-child)\n +ltr-property(\"margin\", -1px)\n &:not(:first-child):not(:last-child)\n .button,\n .input,\n .select select\n border-radius: 0\n &:first-child:not(:only-child)\n .button,\n .input,\n .select select\n +ltr\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n +rtl\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n &:last-child:not(:only-child)\n .button,\n .input,\n .select select\n +ltr\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n +rtl\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n .button,\n .input,\n .select select\n &:not([disabled])\n &:hover,\n &.is-hovered\n z-index: 2\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n z-index: 3\n &:hover\n z-index: 4\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.has-addons-centered\n justify-content: center\n &.has-addons-right\n justify-content: flex-end\n &.has-addons-fullwidth\n .control\n flex-grow: 1\n flex-shrink: 0\n &.is-grouped\n display: flex\n justify-content: flex-start\n & > .control\n flex-shrink: 0\n &:not(:last-child)\n margin-bottom: 0\n +ltr-property(\"margin\", 0.75rem)\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.is-grouped-centered\n justify-content: center\n &.is-grouped-right\n justify-content: flex-end\n &.is-grouped-multiline\n flex-wrap: wrap\n & > .control\n &:last-child,\n &:not(:last-child)\n margin-bottom: 0.75rem\n &:last-child\n margin-bottom: -0.75rem\n &:not(:last-child)\n margin-bottom: 0\n &.is-horizontal\n +tablet\n display: flex\n\n.field-label\n .label\n font-size: inherit\n +mobile\n margin-bottom: 0.5rem\n +tablet\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 0\n +ltr-property(\"margin\", 1.5rem)\n text-align: right\n &.is-small\n font-size: $size-small\n padding-top: 0.375em\n &.is-normal\n padding-top: 0.375em\n &.is-medium\n font-size: $size-medium\n padding-top: 0.375em\n &.is-large\n font-size: $size-large\n padding-top: 0.375em\n\n.field-body\n .field .field\n margin-bottom: 0\n +tablet\n display: flex\n flex-basis: 0\n flex-grow: 5\n flex-shrink: 1\n .field\n margin-bottom: 0\n & > .field\n flex-shrink: 1\n &:not(.is-narrow)\n flex-grow: 1\n &:not(:last-child)\n +ltr-property(\"margin\", 0.75rem)\n\n.control\n box-sizing: border-box\n clear: both\n font-size: $size-normal\n position: relative\n text-align: inherit\n // Modifiers\n &.has-icons-left,\n &.has-icons-right\n .input,\n .select\n &:focus\n & ~ .icon\n color: $input-icon-active-color\n &.is-small ~ .icon\n font-size: $size-small\n &.is-medium ~ .icon\n font-size: $size-medium\n &.is-large ~ .icon\n font-size: $size-large\n .icon\n color: $input-icon-color\n height: $input-height\n pointer-events: none\n position: absolute\n top: 0\n width: $input-height\n z-index: 4\n &.has-icons-left\n .input,\n .select select\n padding-left: $input-height\n .icon.is-left\n left: 0\n &.has-icons-right\n .input,\n .select select\n padding-right: $input-height\n .icon.is-right\n right: 0\n &.is-loading\n &::after\n @extend %loader\n position: absolute !important\n +ltr-position(0.625em)\n top: 0.625em\n z-index: 4\n &.is-small:after\n font-size: $size-small\n &.is-medium:after\n font-size: $size-medium\n &.is-large:after\n font-size: $size-large\n","$breadcrumb-item-color: $link !default\n$breadcrumb-item-hover-color: $link-hover !default\n$breadcrumb-item-active-color: $text-strong !default\n\n$breadcrumb-item-padding-vertical: 0 !default\n$breadcrumb-item-padding-horizontal: 0.75em !default\n\n$breadcrumb-item-separator-color: $border-hover !default\n\n.breadcrumb\n @extend %block\n @extend %unselectable\n font-size: $size-normal\n white-space: nowrap\n a\n align-items: center\n color: $breadcrumb-item-color\n display: flex\n justify-content: center\n padding: $breadcrumb-item-padding-vertical $breadcrumb-item-padding-horizontal\n &:hover\n color: $breadcrumb-item-hover-color\n li\n align-items: center\n display: flex\n &:first-child a\n +ltr-property(\"padding\", 0, false)\n &.is-active\n a\n color: $breadcrumb-item-active-color\n cursor: default\n pointer-events: none\n & + li::before\n color: $breadcrumb-item-separator-color\n content: \"\\0002f\"\n ul,\n ol\n align-items: flex-start\n display: flex\n flex-wrap: wrap\n justify-content: flex-start\n .icon\n &:first-child\n +ltr-property(\"margin\", 0.5em)\n &:last-child\n +ltr-property(\"margin\", 0.5em, false)\n // Alignment\n &.is-centered\n ol,\n ul\n justify-content: center\n &.is-right\n ol,\n ul\n justify-content: flex-end\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n // Styles\n &.has-arrow-separator\n li + li::before\n content: \"\\02192\"\n &.has-bullet-separator\n li + li::before\n content: \"\\02022\"\n &.has-dot-separator\n li + li::before\n content: \"\\000b7\"\n &.has-succeeds-separator\n li + li::before\n content: \"\\0227B\"\n","$card-color: $text !default\n$card-background-color: $scheme-main !default\n$card-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n$card-radius: 0.25rem !default\n$card-overflow: hidden !default\n\n$card-header-background-color: transparent !default\n$card-header-color: $text-strong !default\n$card-header-padding: 0.75rem 1rem !default\n$card-header-shadow: 0 0.125em 0.25em rgba($scheme-invert, 0.1) !default\n$card-header-weight: $weight-bold !default\n\n$card-content-background-color: transparent !default\n$card-content-padding: 1.5rem !default\n\n$card-footer-background-color: transparent !default\n$card-footer-border-top: 1px solid $border-light !default\n$card-footer-padding: 0.75rem !default\n\n$card-media-margin: $block-spacing !default\n\n.card\n background-color: $card-background-color\n border-radius: $card-radius\n box-shadow: $card-shadow\n color: $card-color\n max-width: 100%\n overflow: $card-overflow\n position: relative\n\n.card-header\n background-color: $card-header-background-color\n align-items: stretch\n box-shadow: $card-header-shadow\n display: flex\n\n.card-header-title\n align-items: center\n color: $card-header-color\n display: flex\n flex-grow: 1\n font-weight: $card-header-weight\n padding: $card-header-padding\n &.is-centered\n justify-content: center\n\n.card-header-icon\n align-items: center\n cursor: pointer\n display: flex\n justify-content: center\n padding: $card-header-padding\n\n.card-image\n display: block\n position: relative\n\n.card-content\n background-color: $card-content-background-color\n padding: $card-content-padding\n\n.card-footer\n background-color: $card-footer-background-color\n border-top: $card-footer-border-top\n align-items: stretch\n display: flex\n\n.card-footer-item\n align-items: center\n display: flex\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 0\n justify-content: center\n padding: $card-footer-padding\n &:not(:last-child)\n +ltr-property(\"border\", $card-footer-border-top)\n\n// Combinations\n\n.card\n .media:not(:last-child)\n margin-bottom: $card-media-margin\n","$dropdown-menu-min-width: 12rem !default\n\n$dropdown-content-background-color: $scheme-main !default\n$dropdown-content-arrow: $link !default\n$dropdown-content-offset: 4px !default\n$dropdown-content-padding-bottom: 0.5rem !default\n$dropdown-content-padding-top: 0.5rem !default\n$dropdown-content-radius: $radius !default\n$dropdown-content-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n$dropdown-content-z: 20 !default\n\n$dropdown-item-color: $text !default\n$dropdown-item-hover-color: $scheme-invert !default\n$dropdown-item-hover-background-color: $background !default\n$dropdown-item-active-color: $link-invert !default\n$dropdown-item-active-background-color: $link !default\n\n$dropdown-divider-background-color: $border-light !default\n\n.dropdown\n display: inline-flex\n position: relative\n vertical-align: top\n &.is-active,\n &.is-hoverable:hover\n .dropdown-menu\n display: block\n &.is-right\n .dropdown-menu\n left: auto\n right: 0\n &.is-up\n .dropdown-menu\n bottom: 100%\n padding-bottom: $dropdown-content-offset\n padding-top: initial\n top: auto\n\n.dropdown-menu\n display: none\n +ltr-position(0, false)\n min-width: $dropdown-menu-min-width\n padding-top: $dropdown-content-offset\n position: absolute\n top: 100%\n z-index: $dropdown-content-z\n\n.dropdown-content\n background-color: $dropdown-content-background-color\n border-radius: $dropdown-content-radius\n box-shadow: $dropdown-content-shadow\n padding-bottom: $dropdown-content-padding-bottom\n padding-top: $dropdown-content-padding-top\n\n.dropdown-item\n color: $dropdown-item-color\n display: block\n font-size: 0.875rem\n line-height: 1.5\n padding: 0.375rem 1rem\n position: relative\n\na.dropdown-item,\nbutton.dropdown-item\n +ltr-property(\"padding\", 3rem)\n text-align: inherit\n white-space: nowrap\n width: 100%\n &:hover\n background-color: $dropdown-item-hover-background-color\n color: $dropdown-item-hover-color\n &.is-active\n background-color: $dropdown-item-active-background-color\n color: $dropdown-item-active-color\n\n.dropdown-divider\n background-color: $dropdown-divider-background-color\n border: none\n display: block\n height: 1px\n margin: 0.5rem 0\n","$level-item-spacing: ($block-spacing / 2) !default\n\n.level\n @extend %block\n align-items: center\n justify-content: space-between\n code\n border-radius: $radius\n img\n display: inline-block\n vertical-align: top\n // Modifiers\n &.is-mobile\n display: flex\n .level-left,\n .level-right\n display: flex\n .level-left + .level-right\n margin-top: 0\n .level-item\n &:not(:last-child)\n margin-bottom: 0\n +ltr-property(\"margin\", $level-item-spacing)\n &:not(.is-narrow)\n flex-grow: 1\n // Responsiveness\n +tablet\n display: flex\n & > .level-item\n &:not(.is-narrow)\n flex-grow: 1\n\n.level-item\n align-items: center\n display: flex\n flex-basis: auto\n flex-grow: 0\n flex-shrink: 0\n justify-content: center\n .title,\n .subtitle\n margin-bottom: 0\n // Responsiveness\n +mobile\n &:not(:last-child)\n margin-bottom: $level-item-spacing\n\n.level-left,\n.level-right\n flex-basis: auto\n flex-grow: 0\n flex-shrink: 0\n .level-item\n // Modifiers\n &.is-flexible\n flex-grow: 1\n // Responsiveness\n +tablet\n &:not(:last-child)\n +ltr-property(\"margin\", $level-item-spacing)\n\n.level-left\n align-items: center\n justify-content: flex-start\n // Responsiveness\n +mobile\n & + .level-right\n margin-top: 1.5rem\n +tablet\n display: flex\n\n.level-right\n align-items: center\n justify-content: flex-end\n // Responsiveness\n +tablet\n display: flex\n","$media-border-color: bulmaRgba($border, 0.5) !default\n$media-spacing: 1rem\n$media-spacing-large: 1.5rem\n\n.media\n align-items: flex-start\n display: flex\n text-align: inherit\n .content:not(:last-child)\n margin-bottom: 0.75rem\n .media\n border-top: 1px solid $media-border-color\n display: flex\n padding-top: 0.75rem\n .content:not(:last-child),\n .control:not(:last-child)\n margin-bottom: 0.5rem\n .media\n padding-top: 0.5rem\n & + .media\n margin-top: 0.5rem\n & + .media\n border-top: 1px solid $media-border-color\n margin-top: $media-spacing\n padding-top: $media-spacing\n // Sizes\n &.is-large\n & + .media\n margin-top: $media-spacing-large\n padding-top: $media-spacing-large\n\n.media-left,\n.media-right\n flex-basis: auto\n flex-grow: 0\n flex-shrink: 0\n\n.media-left\n +ltr-property(\"margin\", $media-spacing)\n\n.media-right\n +ltr-property(\"margin\", $media-spacing, false)\n\n.media-content\n flex-basis: auto\n flex-grow: 1\n flex-shrink: 1\n text-align: inherit\n\n+mobile\n .media-content\n overflow-x: auto\n","$menu-item-color: $text !default\n$menu-item-radius: $radius-small !default\n$menu-item-hover-color: $text-strong !default\n$menu-item-hover-background-color: $background !default\n$menu-item-active-color: $link-invert !default\n$menu-item-active-background-color: $link !default\n\n$menu-list-border-left: 1px solid $border !default\n$menu-list-line-height: 1.25 !default\n$menu-list-link-padding: 0.5em 0.75em !default\n$menu-nested-list-margin: 0.75em !default\n$menu-nested-list-padding-left: 0.75em !default\n\n$menu-label-color: $text-light !default\n$menu-label-font-size: 0.75em !default\n$menu-label-letter-spacing: 0.1em !default\n$menu-label-spacing: 1em !default\n\n.menu\n font-size: $size-normal\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n\n.menu-list\n line-height: $menu-list-line-height\n a\n border-radius: $menu-item-radius\n color: $menu-item-color\n display: block\n padding: $menu-list-link-padding\n &:hover\n background-color: $menu-item-hover-background-color\n color: $menu-item-hover-color\n // Modifiers\n &.is-active\n background-color: $menu-item-active-background-color\n color: $menu-item-active-color\n li\n ul\n +ltr-property(\"border\", $menu-list-border-left, false)\n margin: $menu-nested-list-margin\n +ltr-property(\"padding\", $menu-nested-list-padding-left, false)\n\n.menu-label\n color: $menu-label-color\n font-size: $menu-label-font-size\n letter-spacing: $menu-label-letter-spacing\n text-transform: uppercase\n &:not(:first-child)\n margin-top: $menu-label-spacing\n &:not(:last-child)\n margin-bottom: $menu-label-spacing\n","$message-background-color: $background !default\n$message-radius: $radius !default\n\n$message-header-background-color: $text !default\n$message-header-color: $text-invert !default\n$message-header-weight: $weight-bold !default\n$message-header-padding: 0.75em 1em !default\n$message-header-radius: $radius !default\n\n$message-body-border-color: $border !default\n$message-body-border-width: 0 0 0 4px !default\n$message-body-color: $text !default\n$message-body-padding: 1.25em 1.5em !default\n$message-body-radius: $radius !default\n\n$message-body-pre-background-color: $scheme-main !default\n$message-body-pre-code-background-color: transparent !default\n\n$message-header-body-border-width: 0 !default\n$message-colors: $colors !default\n\n.message\n @extend %block\n background-color: $message-background-color\n border-radius: $message-radius\n font-size: $size-normal\n strong\n color: currentColor\n a:not(.button):not(.tag):not(.dropdown-item)\n color: currentColor\n text-decoration: underline\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n // Colors\n @each $name, $components in $message-colors\n $color: nth($components, 1)\n $color-invert: nth($components, 2)\n $color-light: null\n $color-dark: null\n\n @if length($components) >= 3\n $color-light: nth($components, 3)\n @if length($components) >= 4\n $color-dark: nth($components, 4)\n @else\n $color-luminance: colorLuminance($color)\n $darken-percentage: $color-luminance * 70%\n $desaturate-percentage: $color-luminance * 30%\n $color-dark: desaturate(darken($color, $darken-percentage), $desaturate-percentage)\n @else\n $color-lightning: max((100% - lightness($color)) - 2%, 0%)\n $color-light: lighten($color, $color-lightning)\n\n &.is-#{$name}\n background-color: $color-light\n .message-header\n background-color: $color\n color: $color-invert\n .message-body\n border-color: $color\n color: $color-dark\n\n.message-header\n align-items: center\n background-color: $message-header-background-color\n border-radius: $message-header-radius $message-header-radius 0 0\n color: $message-header-color\n display: flex\n font-weight: $message-header-weight\n justify-content: space-between\n line-height: 1.25\n padding: $message-header-padding\n position: relative\n .delete\n flex-grow: 0\n flex-shrink: 0\n +ltr-property(\"margin\", 0.75em, false)\n & + .message-body\n border-width: $message-header-body-border-width\n border-top-left-radius: 0\n border-top-right-radius: 0\n\n.message-body\n border-color: $message-body-border-color\n border-radius: $message-body-radius\n border-style: solid\n border-width: $message-body-border-width\n color: $message-body-color\n padding: $message-body-padding\n code,\n pre\n background-color: $message-body-pre-background-color\n pre code\n background-color: $message-body-pre-code-background-color\n","$modal-z: 40 !default\n\n$modal-background-background-color: bulmaRgba($scheme-invert, 0.86) !default\n\n$modal-content-width: 640px !default\n$modal-content-margin-mobile: 20px !default\n$modal-content-spacing-mobile: 160px !default\n$modal-content-spacing-tablet: 40px !default\n\n$modal-close-dimensions: 40px !default\n$modal-close-right: 20px !default\n$modal-close-top: 20px !default\n\n$modal-card-spacing: 40px !default\n\n$modal-card-head-background-color: $background !default\n$modal-card-head-border-bottom: 1px solid $border !default\n$modal-card-head-padding: 20px !default\n$modal-card-head-radius: $radius-large !default\n\n$modal-card-title-color: $text-strong !default\n$modal-card-title-line-height: 1 !default\n$modal-card-title-size: $size-4 !default\n\n$modal-card-foot-radius: $radius-large !default\n$modal-card-foot-border-top: 1px solid $border !default\n\n$modal-card-body-background-color: $scheme-main !default\n$modal-card-body-padding: 20px !default\n\n$modal-breakpoint: $tablet !default\n\n.modal\n @extend %overlay\n align-items: center\n display: none\n flex-direction: column\n justify-content: center\n overflow: hidden\n position: fixed\n z-index: $modal-z\n // Modifiers\n &.is-active\n display: flex\n\n.modal-background\n @extend %overlay\n background-color: $modal-background-background-color\n\n.modal-content,\n.modal-card\n margin: 0 $modal-content-margin-mobile\n max-height: calc(100vh - #{$modal-content-spacing-mobile})\n overflow: auto\n position: relative\n width: 100%\n // Responsiveness\n +from($modal-breakpoint)\n margin: 0 auto\n max-height: calc(100vh - #{$modal-content-spacing-tablet})\n width: $modal-content-width\n\n.modal-close\n @extend %delete\n background: none\n height: $modal-close-dimensions\n position: fixed\n +ltr-position($modal-close-right)\n top: $modal-close-top\n width: $modal-close-dimensions\n\n.modal-card\n display: flex\n flex-direction: column\n max-height: calc(100vh - #{$modal-card-spacing})\n overflow: hidden\n -ms-overflow-y: visible\n\n.modal-card-head,\n.modal-card-foot\n align-items: center\n background-color: $modal-card-head-background-color\n display: flex\n flex-shrink: 0\n justify-content: flex-start\n padding: $modal-card-head-padding\n position: relative\n\n.modal-card-head\n border-bottom: $modal-card-head-border-bottom\n border-top-left-radius: $modal-card-head-radius\n border-top-right-radius: $modal-card-head-radius\n\n.modal-card-title\n color: $modal-card-title-color\n flex-grow: 1\n flex-shrink: 0\n font-size: $modal-card-title-size\n line-height: $modal-card-title-line-height\n\n.modal-card-foot\n border-bottom-left-radius: $modal-card-foot-radius\n border-bottom-right-radius: $modal-card-foot-radius\n border-top: $modal-card-foot-border-top\n .button\n &:not(:last-child)\n +ltr-property(\"margin\", 0.5em)\n\n.modal-card-body\n +overflow-touch\n background-color: $modal-card-body-background-color\n flex-grow: 1\n flex-shrink: 1\n overflow: auto\n padding: $modal-card-body-padding\n","$navbar-background-color: $scheme-main !default\n$navbar-box-shadow-size: 0 2px 0 0 !default\n$navbar-box-shadow-color: $background !default\n$navbar-height: 3.25rem !default\n$navbar-padding-vertical: 1rem !default\n$navbar-padding-horizontal: 2rem !default\n$navbar-z: 30 !default\n$navbar-fixed-z: 30 !default\n\n$navbar-item-color: $text !default\n$navbar-item-hover-color: $link !default\n$navbar-item-hover-background-color: $scheme-main-bis !default\n$navbar-item-active-color: $scheme-invert !default\n$navbar-item-active-background-color: transparent !default\n$navbar-item-img-max-height: 1.75rem !default\n\n$navbar-burger-color: $navbar-item-color !default\n\n$navbar-tab-hover-background-color: transparent !default\n$navbar-tab-hover-border-bottom-color: $link !default\n$navbar-tab-active-color: $link !default\n$navbar-tab-active-background-color: transparent !default\n$navbar-tab-active-border-bottom-color: $link !default\n$navbar-tab-active-border-bottom-style: solid !default\n$navbar-tab-active-border-bottom-width: 3px !default\n\n$navbar-dropdown-background-color: $scheme-main !default\n$navbar-dropdown-border-top: 2px solid $border !default\n$navbar-dropdown-offset: -4px !default\n$navbar-dropdown-arrow: $link !default\n$navbar-dropdown-radius: $radius-large !default\n$navbar-dropdown-z: 20 !default\n\n$navbar-dropdown-boxed-radius: $radius-large !default\n$navbar-dropdown-boxed-shadow: 0 8px 8px bulmaRgba($scheme-invert, 0.1), 0 0 0 1px bulmaRgba($scheme-invert, 0.1) !default\n\n$navbar-dropdown-item-hover-color: $scheme-invert !default\n$navbar-dropdown-item-hover-background-color: $background !default\n$navbar-dropdown-item-active-color: $link !default\n$navbar-dropdown-item-active-background-color: $background !default\n\n$navbar-divider-background-color: $background !default\n$navbar-divider-height: 2px !default\n\n$navbar-bottom-box-shadow-size: 0 -2px 0 0 !default\n\n$navbar-breakpoint: $desktop !default\n\n$navbar-colors: $colors !default\n\n=navbar-fixed\n left: 0\n position: fixed\n right: 0\n z-index: $navbar-fixed-z\n\n.navbar\n background-color: $navbar-background-color\n min-height: $navbar-height\n position: relative\n z-index: $navbar-z\n @each $name, $pair in $navbar-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n .navbar-brand\n & > .navbar-item,\n .navbar-link\n color: $color-invert\n & > a.navbar-item,\n .navbar-link\n &:focus,\n &:hover,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .navbar-link\n &::after\n border-color: $color-invert\n .navbar-burger\n color: $color-invert\n +from($navbar-breakpoint)\n .navbar-start,\n .navbar-end\n & > .navbar-item,\n .navbar-link\n color: $color-invert\n & > a.navbar-item,\n .navbar-link\n &:focus,\n &:hover,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .navbar-link\n &::after\n border-color: $color-invert\n .navbar-item.has-dropdown:focus .navbar-link,\n .navbar-item.has-dropdown:hover .navbar-link,\n .navbar-item.has-dropdown.is-active .navbar-link\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .navbar-dropdown\n a.navbar-item\n &.is-active\n background-color: $color\n color: $color-invert\n & > .container\n align-items: stretch\n display: flex\n min-height: $navbar-height\n width: 100%\n &.has-shadow\n box-shadow: $navbar-box-shadow-size $navbar-box-shadow-color\n &.is-fixed-bottom,\n &.is-fixed-top\n +navbar-fixed\n &.is-fixed-bottom\n bottom: 0\n &.has-shadow\n box-shadow: $navbar-bottom-box-shadow-size $navbar-box-shadow-color\n &.is-fixed-top\n top: 0\n\nhtml,\nbody\n &.has-navbar-fixed-top\n padding-top: $navbar-height\n &.has-navbar-fixed-bottom\n padding-bottom: $navbar-height\n\n.navbar-brand,\n.navbar-tabs\n align-items: stretch\n display: flex\n flex-shrink: 0\n min-height: $navbar-height\n\n.navbar-brand\n a.navbar-item\n &:focus,\n &:hover\n background-color: transparent\n\n.navbar-tabs\n +overflow-touch\n max-width: 100vw\n overflow-x: auto\n overflow-y: hidden\n\n.navbar-burger\n color: $navbar-burger-color\n +hamburger($navbar-height)\n +ltr-property(\"margin\", auto, false)\n\n.navbar-menu\n display: none\n\n.navbar-item,\n.navbar-link\n color: $navbar-item-color\n display: block\n line-height: 1.5\n padding: 0.5rem 0.75rem\n position: relative\n .icon\n &:only-child\n margin-left: -0.25rem\n margin-right: -0.25rem\n\na.navbar-item,\n.navbar-link\n cursor: pointer\n &:focus,\n &:focus-within,\n &:hover,\n &.is-active\n background-color: $navbar-item-hover-background-color\n color: $navbar-item-hover-color\n\n.navbar-item\n flex-grow: 0\n flex-shrink: 0\n img\n max-height: $navbar-item-img-max-height\n &.has-dropdown\n padding: 0\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.is-tab\n border-bottom: 1px solid transparent\n min-height: $navbar-height\n padding-bottom: calc(0.5rem - 1px)\n &:focus,\n &:hover\n background-color: $navbar-tab-hover-background-color\n border-bottom-color: $navbar-tab-hover-border-bottom-color\n &.is-active\n background-color: $navbar-tab-active-background-color\n border-bottom-color: $navbar-tab-active-border-bottom-color\n border-bottom-style: $navbar-tab-active-border-bottom-style\n border-bottom-width: $navbar-tab-active-border-bottom-width\n color: $navbar-tab-active-color\n padding-bottom: calc(0.5rem - #{$navbar-tab-active-border-bottom-width})\n\n.navbar-content\n flex-grow: 1\n flex-shrink: 1\n\n.navbar-link:not(.is-arrowless)\n +ltr-property(\"padding\", 2.5em)\n &::after\n @extend %arrow\n border-color: $navbar-dropdown-arrow\n margin-top: -0.375em\n +ltr-position(1.125em)\n\n.navbar-dropdown\n font-size: 0.875rem\n padding-bottom: 0.5rem\n padding-top: 0.5rem\n .navbar-item\n padding-left: 1.5rem\n padding-right: 1.5rem\n\n.navbar-divider\n background-color: $navbar-divider-background-color\n border: none\n display: none\n height: $navbar-divider-height\n margin: 0.5rem 0\n\n+until($navbar-breakpoint)\n .navbar > .container\n display: block\n .navbar-brand,\n .navbar-tabs\n .navbar-item\n align-items: center\n display: flex\n .navbar-link\n &::after\n display: none\n .navbar-menu\n background-color: $navbar-background-color\n box-shadow: 0 8px 16px bulmaRgba($scheme-invert, 0.1)\n padding: 0.5rem 0\n &.is-active\n display: block\n // Fixed navbar\n .navbar\n &.is-fixed-bottom-touch,\n &.is-fixed-top-touch\n +navbar-fixed\n &.is-fixed-bottom-touch\n bottom: 0\n &.has-shadow\n box-shadow: 0 -2px 3px bulmaRgba($scheme-invert, 0.1)\n &.is-fixed-top-touch\n top: 0\n &.is-fixed-top,\n &.is-fixed-top-touch\n .navbar-menu\n +overflow-touch\n max-height: calc(100vh - #{$navbar-height})\n overflow: auto\n html,\n body\n &.has-navbar-fixed-top-touch\n padding-top: $navbar-height\n &.has-navbar-fixed-bottom-touch\n padding-bottom: $navbar-height\n\n+from($navbar-breakpoint)\n .navbar,\n .navbar-menu,\n .navbar-start,\n .navbar-end\n align-items: stretch\n display: flex\n .navbar\n min-height: $navbar-height\n &.is-spaced\n padding: $navbar-padding-vertical $navbar-padding-horizontal\n .navbar-start,\n .navbar-end\n align-items: center\n a.navbar-item,\n .navbar-link\n border-radius: $radius\n &.is-transparent\n a.navbar-item,\n .navbar-link\n &:focus,\n &:hover,\n &.is-active\n background-color: transparent !important\n .navbar-item.has-dropdown\n &.is-active,\n &.is-hoverable:focus,\n &.is-hoverable:focus-within,\n &.is-hoverable:hover\n .navbar-link\n background-color: transparent !important\n .navbar-dropdown\n a.navbar-item\n &:focus,\n &:hover\n background-color: $navbar-dropdown-item-hover-background-color\n color: $navbar-dropdown-item-hover-color\n &.is-active\n background-color: $navbar-dropdown-item-active-background-color\n color: $navbar-dropdown-item-active-color\n .navbar-burger\n display: none\n .navbar-item,\n .navbar-link\n align-items: center\n display: flex\n .navbar-item\n &.has-dropdown\n align-items: stretch\n &.has-dropdown-up\n .navbar-link::after\n transform: rotate(135deg) translate(0.25em, -0.25em)\n .navbar-dropdown\n border-bottom: $navbar-dropdown-border-top\n border-radius: $navbar-dropdown-radius $navbar-dropdown-radius 0 0\n border-top: none\n bottom: 100%\n box-shadow: 0 -8px 8px bulmaRgba($scheme-invert, 0.1)\n top: auto\n &.is-active,\n &.is-hoverable:focus,\n &.is-hoverable:focus-within,\n &.is-hoverable:hover\n .navbar-dropdown\n display: block\n .navbar.is-spaced &,\n &.is-boxed\n opacity: 1\n pointer-events: auto\n transform: translateY(0)\n .navbar-menu\n flex-grow: 1\n flex-shrink: 0\n .navbar-start\n justify-content: flex-start\n +ltr-property(\"margin\", auto)\n .navbar-end\n justify-content: flex-end\n +ltr-property(\"margin\", auto, false)\n .navbar-dropdown\n background-color: $navbar-dropdown-background-color\n border-bottom-left-radius: $navbar-dropdown-radius\n border-bottom-right-radius: $navbar-dropdown-radius\n border-top: $navbar-dropdown-border-top\n box-shadow: 0 8px 8px bulmaRgba($scheme-invert, 0.1)\n display: none\n font-size: 0.875rem\n +ltr-position(0, false)\n min-width: 100%\n position: absolute\n top: 100%\n z-index: $navbar-dropdown-z\n .navbar-item\n padding: 0.375rem 1rem\n white-space: nowrap\n a.navbar-item\n +ltr-property(\"padding\", 3rem)\n &:focus,\n &:hover\n background-color: $navbar-dropdown-item-hover-background-color\n color: $navbar-dropdown-item-hover-color\n &.is-active\n background-color: $navbar-dropdown-item-active-background-color\n color: $navbar-dropdown-item-active-color\n .navbar.is-spaced &,\n &.is-boxed\n border-radius: $navbar-dropdown-boxed-radius\n border-top: none\n box-shadow: $navbar-dropdown-boxed-shadow\n display: block\n opacity: 0\n pointer-events: none\n top: calc(100% + (#{$navbar-dropdown-offset}))\n transform: translateY(-5px)\n transition-duration: $speed\n transition-property: opacity, transform\n &.is-right\n left: auto\n right: 0\n .navbar-divider\n display: block\n .navbar > .container,\n .container > .navbar\n .navbar-brand\n +ltr-property(\"margin\", -.75rem, false)\n .navbar-menu\n +ltr-property(\"margin\", -.75rem)\n // Fixed navbar\n .navbar\n &.is-fixed-bottom-desktop,\n &.is-fixed-top-desktop\n +navbar-fixed\n &.is-fixed-bottom-desktop\n bottom: 0\n &.has-shadow\n box-shadow: 0 -2px 3px bulmaRgba($scheme-invert, 0.1)\n &.is-fixed-top-desktop\n top: 0\n html,\n body\n &.has-navbar-fixed-top-desktop\n padding-top: $navbar-height\n &.has-navbar-fixed-bottom-desktop\n padding-bottom: $navbar-height\n &.has-spaced-navbar-fixed-top\n padding-top: $navbar-height + ($navbar-padding-vertical * 2)\n &.has-spaced-navbar-fixed-bottom\n padding-bottom: $navbar-height + ($navbar-padding-vertical * 2)\n // Hover/Active states\n a.navbar-item,\n .navbar-link\n &.is-active\n color: $navbar-item-active-color\n &.is-active:not(:focus):not(:hover)\n background-color: $navbar-item-active-background-color\n .navbar-item.has-dropdown\n &:focus,\n &:hover,\n &.is-active\n .navbar-link\n background-color: $navbar-item-hover-background-color\n\n// Combination\n\n.hero\n &.is-fullheight-with-navbar\n min-height: calc(100vh - #{$navbar-height})\n","$pagination-color: $text-strong !default\n$pagination-border-color: $border !default\n$pagination-margin: -0.25rem !default\n$pagination-min-width: $control-height !default\n\n$pagination-item-font-size: 1em !default\n$pagination-item-margin: 0.25rem !default\n$pagination-item-padding-left: 0.5em !default\n$pagination-item-padding-right: 0.5em !default\n\n$pagination-hover-color: $link-hover !default\n$pagination-hover-border-color: $link-hover-border !default\n\n$pagination-focus-color: $link-focus !default\n$pagination-focus-border-color: $link-focus-border !default\n\n$pagination-active-color: $link-active !default\n$pagination-active-border-color: $link-active-border !default\n\n$pagination-disabled-color: $text-light !default\n$pagination-disabled-background-color: $border !default\n$pagination-disabled-border-color: $border !default\n\n$pagination-current-color: $link-invert !default\n$pagination-current-background-color: $link !default\n$pagination-current-border-color: $link !default\n\n$pagination-ellipsis-color: $grey-light !default\n\n$pagination-shadow-inset: inset 0 1px 2px rgba($scheme-invert, 0.2)\n\n.pagination\n @extend %block\n font-size: $size-normal\n margin: $pagination-margin\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n &.is-rounded\n .pagination-previous,\n .pagination-next\n padding-left: 1em\n padding-right: 1em\n border-radius: $radius-rounded\n .pagination-link\n border-radius: $radius-rounded\n\n.pagination,\n.pagination-list\n align-items: center\n display: flex\n justify-content: center\n text-align: center\n\n.pagination-previous,\n.pagination-next,\n.pagination-link,\n.pagination-ellipsis\n @extend %control\n @extend %unselectable\n font-size: $pagination-item-font-size\n justify-content: center\n margin: $pagination-item-margin\n padding-left: $pagination-item-padding-left\n padding-right: $pagination-item-padding-right\n text-align: center\n\n.pagination-previous,\n.pagination-next,\n.pagination-link\n border-color: $pagination-border-color\n color: $pagination-color\n min-width: $pagination-min-width\n &:hover\n border-color: $pagination-hover-border-color\n color: $pagination-hover-color\n &:focus\n border-color: $pagination-focus-border-color\n &:active\n box-shadow: $pagination-shadow-inset\n &[disabled]\n background-color: $pagination-disabled-background-color\n border-color: $pagination-disabled-border-color\n box-shadow: none\n color: $pagination-disabled-color\n opacity: 0.5\n\n.pagination-previous,\n.pagination-next\n padding-left: 0.75em\n padding-right: 0.75em\n white-space: nowrap\n\n.pagination-link\n &.is-current\n background-color: $pagination-current-background-color\n border-color: $pagination-current-border-color\n color: $pagination-current-color\n\n.pagination-ellipsis\n color: $pagination-ellipsis-color\n pointer-events: none\n\n.pagination-list\n flex-wrap: wrap\n\n+mobile\n .pagination\n flex-wrap: wrap\n .pagination-previous,\n .pagination-next\n flex-grow: 1\n flex-shrink: 1\n .pagination-list\n li\n flex-grow: 1\n flex-shrink: 1\n\n+tablet\n .pagination-list\n flex-grow: 1\n flex-shrink: 1\n justify-content: flex-start\n order: 1\n .pagination-previous\n order: 2\n .pagination-next\n order: 3\n .pagination\n justify-content: space-between\n &.is-centered\n .pagination-previous\n order: 1\n .pagination-list\n justify-content: center\n order: 2\n .pagination-next\n order: 3\n &.is-right\n .pagination-previous\n order: 1\n .pagination-next\n order: 2\n .pagination-list\n justify-content: flex-end\n order: 3\n","$panel-margin: $block-spacing !default\n$panel-item-border: 1px solid $border-light !default\n$panel-radius: $radius-large !default\n$panel-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n\n$panel-heading-background-color: $border-light !default\n$panel-heading-color: $text-strong !default\n$panel-heading-line-height: 1.25 !default\n$panel-heading-padding: 0.75em 1em !default\n$panel-heading-radius: $radius !default\n$panel-heading-size: 1.25em !default\n$panel-heading-weight: $weight-bold !default\n\n$panel-tabs-font-size: 0.875em !default\n$panel-tab-border-bottom: 1px solid $border !default\n$panel-tab-active-border-bottom-color: $link-active-border !default\n$panel-tab-active-color: $link-active !default\n\n$panel-list-item-color: $text !default\n$panel-list-item-hover-color: $link !default\n\n$panel-block-color: $text-strong !default\n$panel-block-hover-background-color: $background !default\n$panel-block-active-border-left-color: $link !default\n$panel-block-active-color: $link-active !default\n$panel-block-active-icon-color: $link !default\n\n$panel-icon-color: $text-light !default\n$panel-colors: $colors !default\n\n.panel\n border-radius: $panel-radius\n box-shadow: $panel-shadow\n font-size: $size-normal\n &:not(:last-child)\n margin-bottom: $panel-margin\n // Colors\n @each $name, $components in $panel-colors\n $color: nth($components, 1)\n $color-invert: nth($components, 2)\n &.is-#{$name}\n .panel-heading\n background-color: $color\n color: $color-invert\n .panel-tabs a.is-active\n border-bottom-color: $color\n .panel-block.is-active .panel-icon\n color: $color\n\n.panel-tabs,\n.panel-block\n &:not(:last-child)\n border-bottom: $panel-item-border\n\n.panel-heading\n background-color: $panel-heading-background-color\n border-radius: $panel-radius $panel-radius 0 0\n color: $panel-heading-color\n font-size: $panel-heading-size\n font-weight: $panel-heading-weight\n line-height: $panel-heading-line-height\n padding: $panel-heading-padding\n\n.panel-tabs\n align-items: flex-end\n display: flex\n font-size: $panel-tabs-font-size\n justify-content: center\n a\n border-bottom: $panel-tab-border-bottom\n margin-bottom: -1px\n padding: 0.5em\n // Modifiers\n &.is-active\n border-bottom-color: $panel-tab-active-border-bottom-color\n color: $panel-tab-active-color\n\n.panel-list\n a\n color: $panel-list-item-color\n &:hover\n color: $panel-list-item-hover-color\n\n.panel-block\n align-items: center\n color: $panel-block-color\n display: flex\n justify-content: flex-start\n padding: 0.5em 0.75em\n input[type=\"checkbox\"]\n +ltr-property(\"margin\", 0.75em)\n & > .control\n flex-grow: 1\n flex-shrink: 1\n width: 100%\n &.is-wrapped\n flex-wrap: wrap\n &.is-active\n border-left-color: $panel-block-active-border-left-color\n color: $panel-block-active-color\n .panel-icon\n color: $panel-block-active-icon-color\n &:last-child\n border-bottom-left-radius: $panel-radius\n border-bottom-right-radius: $panel-radius\n\na.panel-block,\nlabel.panel-block\n cursor: pointer\n &:hover\n background-color: $panel-block-hover-background-color\n\n.panel-icon\n +fa(14px, 1em)\n color: $panel-icon-color\n +ltr-property(\"margin\", 0.75em)\n .fa\n font-size: inherit\n line-height: inherit\n","$tabs-border-bottom-color: $border !default\n$tabs-border-bottom-style: solid !default\n$tabs-border-bottom-width: 1px !default\n$tabs-link-color: $text !default\n$tabs-link-hover-border-bottom-color: $text-strong !default\n$tabs-link-hover-color: $text-strong !default\n$tabs-link-active-border-bottom-color: $link !default\n$tabs-link-active-color: $link !default\n$tabs-link-padding: 0.5em 1em !default\n\n$tabs-boxed-link-radius: $radius !default\n$tabs-boxed-link-hover-background-color: $background !default\n$tabs-boxed-link-hover-border-bottom-color: $border !default\n\n$tabs-boxed-link-active-background-color: $scheme-main !default\n$tabs-boxed-link-active-border-color: $border !default\n$tabs-boxed-link-active-border-bottom-color: transparent !default\n\n$tabs-toggle-link-border-color: $border !default\n$tabs-toggle-link-border-style: solid !default\n$tabs-toggle-link-border-width: 1px !default\n$tabs-toggle-link-hover-background-color: $background !default\n$tabs-toggle-link-hover-border-color: $border-hover !default\n$tabs-toggle-link-radius: $radius !default\n$tabs-toggle-link-active-background-color: $link !default\n$tabs-toggle-link-active-border-color: $link !default\n$tabs-toggle-link-active-color: $link-invert !default\n\n.tabs\n @extend %block\n +overflow-touch\n @extend %unselectable\n align-items: stretch\n display: flex\n font-size: $size-normal\n justify-content: space-between\n overflow: hidden\n overflow-x: auto\n white-space: nowrap\n a\n align-items: center\n border-bottom-color: $tabs-border-bottom-color\n border-bottom-style: $tabs-border-bottom-style\n border-bottom-width: $tabs-border-bottom-width\n color: $tabs-link-color\n display: flex\n justify-content: center\n margin-bottom: -#{$tabs-border-bottom-width}\n padding: $tabs-link-padding\n vertical-align: top\n &:hover\n border-bottom-color: $tabs-link-hover-border-bottom-color\n color: $tabs-link-hover-color\n li\n display: block\n &.is-active\n a\n border-bottom-color: $tabs-link-active-border-bottom-color\n color: $tabs-link-active-color\n ul\n align-items: center\n border-bottom-color: $tabs-border-bottom-color\n border-bottom-style: $tabs-border-bottom-style\n border-bottom-width: $tabs-border-bottom-width\n display: flex\n flex-grow: 1\n flex-shrink: 0\n justify-content: flex-start\n &.is-left\n padding-right: 0.75em\n &.is-center\n flex: none\n justify-content: center\n padding-left: 0.75em\n padding-right: 0.75em\n &.is-right\n justify-content: flex-end\n padding-left: 0.75em\n .icon\n &:first-child\n +ltr-property(\"margin\", 0.5em)\n &:last-child\n +ltr-property(\"margin\", 0.5em, false)\n // Alignment\n &.is-centered\n ul\n justify-content: center\n &.is-right\n ul\n justify-content: flex-end\n // Styles\n &.is-boxed\n a\n border: 1px solid transparent\n +ltr\n border-radius: $tabs-boxed-link-radius $tabs-boxed-link-radius 0 0\n +rtl\n border-radius: 0 0 $tabs-boxed-link-radius $tabs-boxed-link-radius\n &:hover\n background-color: $tabs-boxed-link-hover-background-color\n border-bottom-color: $tabs-boxed-link-hover-border-bottom-color\n li\n &.is-active\n a\n background-color: $tabs-boxed-link-active-background-color\n border-color: $tabs-boxed-link-active-border-color\n border-bottom-color: $tabs-boxed-link-active-border-bottom-color !important\n &.is-fullwidth\n li\n flex-grow: 1\n flex-shrink: 0\n &.is-toggle\n a\n border-color: $tabs-toggle-link-border-color\n border-style: $tabs-toggle-link-border-style\n border-width: $tabs-toggle-link-border-width\n margin-bottom: 0\n position: relative\n &:hover\n background-color: $tabs-toggle-link-hover-background-color\n border-color: $tabs-toggle-link-hover-border-color\n z-index: 2\n li\n & + li\n +ltr-property(\"margin\", -#{$tabs-toggle-link-border-width}, false)\n &:first-child a\n +ltr\n border-top-left-radius: $tabs-toggle-link-radius\n border-bottom-left-radius: $tabs-toggle-link-radius\n +rtl\n border-top-right-radius: $tabs-toggle-link-radius\n border-bottom-right-radius: $tabs-toggle-link-radius\n &:last-child a\n +ltr\n border-top-right-radius: $tabs-toggle-link-radius\n border-bottom-right-radius: $tabs-toggle-link-radius\n +rtl\n border-top-left-radius: $tabs-toggle-link-radius\n border-bottom-left-radius: $tabs-toggle-link-radius\n &.is-active\n a\n background-color: $tabs-toggle-link-active-background-color\n border-color: $tabs-toggle-link-active-border-color\n color: $tabs-toggle-link-active-color\n z-index: 1\n ul\n border-bottom: none\n &.is-toggle-rounded\n li\n &:first-child a\n +ltr\n border-bottom-left-radius: $radius-rounded\n border-top-left-radius: $radius-rounded\n padding-left: 1.25em\n +rtl\n border-bottom-right-radius: $radius-rounded\n border-top-right-radius: $radius-rounded\n padding-right: 1.25em\n &:last-child a\n +ltr\n border-bottom-right-radius: $radius-rounded\n border-top-right-radius: $radius-rounded\n padding-right: 1.25em\n +rtl\n border-bottom-left-radius: $radius-rounded\n border-top-left-radius: $radius-rounded\n padding-left: 1.25em\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n","$column-gap: 0.75rem !default\n\n.column\n display: block\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 1\n padding: $column-gap\n .columns.is-mobile > &.is-narrow\n flex: none\n .columns.is-mobile > &.is-full\n flex: none\n width: 100%\n .columns.is-mobile > &.is-three-quarters\n flex: none\n width: 75%\n .columns.is-mobile > &.is-two-thirds\n flex: none\n width: 66.6666%\n .columns.is-mobile > &.is-half\n flex: none\n width: 50%\n .columns.is-mobile > &.is-one-third\n flex: none\n width: 33.3333%\n .columns.is-mobile > &.is-one-quarter\n flex: none\n width: 25%\n .columns.is-mobile > &.is-one-fifth\n flex: none\n width: 20%\n .columns.is-mobile > &.is-two-fifths\n flex: none\n width: 40%\n .columns.is-mobile > &.is-three-fifths\n flex: none\n width: 60%\n .columns.is-mobile > &.is-four-fifths\n flex: none\n width: 80%\n .columns.is-mobile > &.is-offset-three-quarters\n margin-left: 75%\n .columns.is-mobile > &.is-offset-two-thirds\n margin-left: 66.6666%\n .columns.is-mobile > &.is-offset-half\n margin-left: 50%\n .columns.is-mobile > &.is-offset-one-third\n margin-left: 33.3333%\n .columns.is-mobile > &.is-offset-one-quarter\n margin-left: 25%\n .columns.is-mobile > &.is-offset-one-fifth\n margin-left: 20%\n .columns.is-mobile > &.is-offset-two-fifths\n margin-left: 40%\n .columns.is-mobile > &.is-offset-three-fifths\n margin-left: 60%\n .columns.is-mobile > &.is-offset-four-fifths\n margin-left: 80%\n @for $i from 0 through 12\n .columns.is-mobile > &.is-#{$i}\n flex: none\n width: percentage($i / 12)\n .columns.is-mobile > &.is-offset-#{$i}\n margin-left: percentage($i / 12)\n +mobile\n &.is-narrow-mobile\n flex: none\n &.is-full-mobile\n flex: none\n width: 100%\n &.is-three-quarters-mobile\n flex: none\n width: 75%\n &.is-two-thirds-mobile\n flex: none\n width: 66.6666%\n &.is-half-mobile\n flex: none\n width: 50%\n &.is-one-third-mobile\n flex: none\n width: 33.3333%\n &.is-one-quarter-mobile\n flex: none\n width: 25%\n &.is-one-fifth-mobile\n flex: none\n width: 20%\n &.is-two-fifths-mobile\n flex: none\n width: 40%\n &.is-three-fifths-mobile\n flex: none\n width: 60%\n &.is-four-fifths-mobile\n flex: none\n width: 80%\n &.is-offset-three-quarters-mobile\n margin-left: 75%\n &.is-offset-two-thirds-mobile\n margin-left: 66.6666%\n &.is-offset-half-mobile\n margin-left: 50%\n &.is-offset-one-third-mobile\n margin-left: 33.3333%\n &.is-offset-one-quarter-mobile\n margin-left: 25%\n &.is-offset-one-fifth-mobile\n margin-left: 20%\n &.is-offset-two-fifths-mobile\n margin-left: 40%\n &.is-offset-three-fifths-mobile\n margin-left: 60%\n &.is-offset-four-fifths-mobile\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-mobile\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-mobile\n margin-left: percentage($i / 12)\n +tablet\n &.is-narrow,\n &.is-narrow-tablet\n flex: none\n &.is-full,\n &.is-full-tablet\n flex: none\n width: 100%\n &.is-three-quarters,\n &.is-three-quarters-tablet\n flex: none\n width: 75%\n &.is-two-thirds,\n &.is-two-thirds-tablet\n flex: none\n width: 66.6666%\n &.is-half,\n &.is-half-tablet\n flex: none\n width: 50%\n &.is-one-third,\n &.is-one-third-tablet\n flex: none\n width: 33.3333%\n &.is-one-quarter,\n &.is-one-quarter-tablet\n flex: none\n width: 25%\n &.is-one-fifth,\n &.is-one-fifth-tablet\n flex: none\n width: 20%\n &.is-two-fifths,\n &.is-two-fifths-tablet\n flex: none\n width: 40%\n &.is-three-fifths,\n &.is-three-fifths-tablet\n flex: none\n width: 60%\n &.is-four-fifths,\n &.is-four-fifths-tablet\n flex: none\n width: 80%\n &.is-offset-three-quarters,\n &.is-offset-three-quarters-tablet\n margin-left: 75%\n &.is-offset-two-thirds,\n &.is-offset-two-thirds-tablet\n margin-left: 66.6666%\n &.is-offset-half,\n &.is-offset-half-tablet\n margin-left: 50%\n &.is-offset-one-third,\n &.is-offset-one-third-tablet\n margin-left: 33.3333%\n &.is-offset-one-quarter,\n &.is-offset-one-quarter-tablet\n margin-left: 25%\n &.is-offset-one-fifth,\n &.is-offset-one-fifth-tablet\n margin-left: 20%\n &.is-offset-two-fifths,\n &.is-offset-two-fifths-tablet\n margin-left: 40%\n &.is-offset-three-fifths,\n &.is-offset-three-fifths-tablet\n margin-left: 60%\n &.is-offset-four-fifths,\n &.is-offset-four-fifths-tablet\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i},\n &.is-#{$i}-tablet\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i},\n &.is-offset-#{$i}-tablet\n margin-left: percentage($i / 12)\n +touch\n &.is-narrow-touch\n flex: none\n &.is-full-touch\n flex: none\n width: 100%\n &.is-three-quarters-touch\n flex: none\n width: 75%\n &.is-two-thirds-touch\n flex: none\n width: 66.6666%\n &.is-half-touch\n flex: none\n width: 50%\n &.is-one-third-touch\n flex: none\n width: 33.3333%\n &.is-one-quarter-touch\n flex: none\n width: 25%\n &.is-one-fifth-touch\n flex: none\n width: 20%\n &.is-two-fifths-touch\n flex: none\n width: 40%\n &.is-three-fifths-touch\n flex: none\n width: 60%\n &.is-four-fifths-touch\n flex: none\n width: 80%\n &.is-offset-three-quarters-touch\n margin-left: 75%\n &.is-offset-two-thirds-touch\n margin-left: 66.6666%\n &.is-offset-half-touch\n margin-left: 50%\n &.is-offset-one-third-touch\n margin-left: 33.3333%\n &.is-offset-one-quarter-touch\n margin-left: 25%\n &.is-offset-one-fifth-touch\n margin-left: 20%\n &.is-offset-two-fifths-touch\n margin-left: 40%\n &.is-offset-three-fifths-touch\n margin-left: 60%\n &.is-offset-four-fifths-touch\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-touch\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-touch\n margin-left: percentage($i / 12)\n +desktop\n &.is-narrow-desktop\n flex: none\n &.is-full-desktop\n flex: none\n width: 100%\n &.is-three-quarters-desktop\n flex: none\n width: 75%\n &.is-two-thirds-desktop\n flex: none\n width: 66.6666%\n &.is-half-desktop\n flex: none\n width: 50%\n &.is-one-third-desktop\n flex: none\n width: 33.3333%\n &.is-one-quarter-desktop\n flex: none\n width: 25%\n &.is-one-fifth-desktop\n flex: none\n width: 20%\n &.is-two-fifths-desktop\n flex: none\n width: 40%\n &.is-three-fifths-desktop\n flex: none\n width: 60%\n &.is-four-fifths-desktop\n flex: none\n width: 80%\n &.is-offset-three-quarters-desktop\n margin-left: 75%\n &.is-offset-two-thirds-desktop\n margin-left: 66.6666%\n &.is-offset-half-desktop\n margin-left: 50%\n &.is-offset-one-third-desktop\n margin-left: 33.3333%\n &.is-offset-one-quarter-desktop\n margin-left: 25%\n &.is-offset-one-fifth-desktop\n margin-left: 20%\n &.is-offset-two-fifths-desktop\n margin-left: 40%\n &.is-offset-three-fifths-desktop\n margin-left: 60%\n &.is-offset-four-fifths-desktop\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-desktop\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-desktop\n margin-left: percentage($i / 12)\n +widescreen\n &.is-narrow-widescreen\n flex: none\n &.is-full-widescreen\n flex: none\n width: 100%\n &.is-three-quarters-widescreen\n flex: none\n width: 75%\n &.is-two-thirds-widescreen\n flex: none\n width: 66.6666%\n &.is-half-widescreen\n flex: none\n width: 50%\n &.is-one-third-widescreen\n flex: none\n width: 33.3333%\n &.is-one-quarter-widescreen\n flex: none\n width: 25%\n &.is-one-fifth-widescreen\n flex: none\n width: 20%\n &.is-two-fifths-widescreen\n flex: none\n width: 40%\n &.is-three-fifths-widescreen\n flex: none\n width: 60%\n &.is-four-fifths-widescreen\n flex: none\n width: 80%\n &.is-offset-three-quarters-widescreen\n margin-left: 75%\n &.is-offset-two-thirds-widescreen\n margin-left: 66.6666%\n &.is-offset-half-widescreen\n margin-left: 50%\n &.is-offset-one-third-widescreen\n margin-left: 33.3333%\n &.is-offset-one-quarter-widescreen\n margin-left: 25%\n &.is-offset-one-fifth-widescreen\n margin-left: 20%\n &.is-offset-two-fifths-widescreen\n margin-left: 40%\n &.is-offset-three-fifths-widescreen\n margin-left: 60%\n &.is-offset-four-fifths-widescreen\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-widescreen\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-widescreen\n margin-left: percentage($i / 12)\n +fullhd\n &.is-narrow-fullhd\n flex: none\n &.is-full-fullhd\n flex: none\n width: 100%\n &.is-three-quarters-fullhd\n flex: none\n width: 75%\n &.is-two-thirds-fullhd\n flex: none\n width: 66.6666%\n &.is-half-fullhd\n flex: none\n width: 50%\n &.is-one-third-fullhd\n flex: none\n width: 33.3333%\n &.is-one-quarter-fullhd\n flex: none\n width: 25%\n &.is-one-fifth-fullhd\n flex: none\n width: 20%\n &.is-two-fifths-fullhd\n flex: none\n width: 40%\n &.is-three-fifths-fullhd\n flex: none\n width: 60%\n &.is-four-fifths-fullhd\n flex: none\n width: 80%\n &.is-offset-three-quarters-fullhd\n margin-left: 75%\n &.is-offset-two-thirds-fullhd\n margin-left: 66.6666%\n &.is-offset-half-fullhd\n margin-left: 50%\n &.is-offset-one-third-fullhd\n margin-left: 33.3333%\n &.is-offset-one-quarter-fullhd\n margin-left: 25%\n &.is-offset-one-fifth-fullhd\n margin-left: 20%\n &.is-offset-two-fifths-fullhd\n margin-left: 40%\n &.is-offset-three-fifths-fullhd\n margin-left: 60%\n &.is-offset-four-fifths-fullhd\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-fullhd\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-fullhd\n margin-left: percentage($i / 12)\n\n.columns\n margin-left: (-$column-gap)\n margin-right: (-$column-gap)\n margin-top: (-$column-gap)\n &:last-child\n margin-bottom: (-$column-gap)\n &:not(:last-child)\n margin-bottom: calc(1.5rem - #{$column-gap})\n // Modifiers\n &.is-centered\n justify-content: center\n &.is-gapless\n margin-left: 0\n margin-right: 0\n margin-top: 0\n & > .column\n margin: 0\n padding: 0 !important\n &:not(:last-child)\n margin-bottom: 1.5rem\n &:last-child\n margin-bottom: 0\n &.is-mobile\n display: flex\n &.is-multiline\n flex-wrap: wrap\n &.is-vcentered\n align-items: center\n // Responsiveness\n +tablet\n &:not(.is-desktop)\n display: flex\n +desktop\n // Modifiers\n &.is-desktop\n display: flex\n\n@if $variable-columns\n .columns.is-variable\n --columnGap: 0.75rem\n margin-left: calc(-1 * var(--columnGap))\n margin-right: calc(-1 * var(--columnGap))\n .column\n padding-left: var(--columnGap)\n padding-right: var(--columnGap)\n @for $i from 0 through 8\n &.is-#{$i}\n --columnGap: #{$i * 0.25rem}\n +mobile\n &.is-#{$i}-mobile\n --columnGap: #{$i * 0.25rem}\n +tablet\n &.is-#{$i}-tablet\n --columnGap: #{$i * 0.25rem}\n +tablet-only\n &.is-#{$i}-tablet-only\n --columnGap: #{$i * 0.25rem}\n +touch\n &.is-#{$i}-touch\n --columnGap: #{$i * 0.25rem}\n +desktop\n &.is-#{$i}-desktop\n --columnGap: #{$i * 0.25rem}\n +desktop-only\n &.is-#{$i}-desktop-only\n --columnGap: #{$i * 0.25rem}\n +widescreen\n &.is-#{$i}-widescreen\n --columnGap: #{$i * 0.25rem}\n +widescreen-only\n &.is-#{$i}-widescreen-only\n --columnGap: #{$i * 0.25rem}\n +fullhd\n &.is-#{$i}-fullhd\n --columnGap: #{$i * 0.25rem}\n","$tile-spacing: 0.75rem !default\n\n.tile\n align-items: stretch\n display: block\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 1\n min-height: min-content\n // Modifiers\n &.is-ancestor\n margin-left: $tile-spacing * -1\n margin-right: $tile-spacing * -1\n margin-top: $tile-spacing * -1\n &:last-child\n margin-bottom: $tile-spacing * -1\n &:not(:last-child)\n margin-bottom: $tile-spacing\n &.is-child\n margin: 0 !important\n &.is-parent\n padding: $tile-spacing\n &.is-vertical\n flex-direction: column\n & > .tile.is-child:not(:last-child)\n margin-bottom: 1.5rem !important\n // Responsiveness\n +tablet\n &:not(.is-child)\n display: flex\n @for $i from 1 through 12\n &.is-#{$i}\n flex: none\n width: ($i / 12) * 100%\n","@each $name, $pair in $colors\n $color: nth($pair, 1)\n .has-text-#{$name}\n color: $color !important\n a.has-text-#{$name}\n &:hover,\n &:focus\n color: bulmaDarken($color, 10%) !important\n .has-background-#{$name}\n background-color: $color !important\n @if length($pair) >= 4\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n // Light\n .has-text-#{$name}-light\n color: $color-light !important\n a.has-text-#{$name}-light\n &:hover,\n &:focus\n color: bulmaDarken($color-light, 10%) !important\n .has-background-#{$name}-light\n background-color: $color-light !important\n // Dark\n .has-text-#{$name}-dark\n color: $color-dark !important\n a.has-text-#{$name}-dark\n &:hover,\n &:focus\n color: bulmaLighten($color-dark, 10%) !important\n .has-background-#{$name}-dark\n background-color: $color-dark !important\n\n@each $name, $shade in $shades\n .has-text-#{$name}\n color: $shade !important\n .has-background-#{$name}\n background-color: $shade !important\n","$flex-direction-values: row, row-reverse, column, column-reverse\n@each $value in $flex-direction-values\n .is-flex-direction-#{$value}\n flex-direction: $value !important\n\n$flex-wrap-values: nowrap, wrap, wrap-reverse\n@each $value in $flex-wrap-values\n .is-flex-wrap-#{$value}\n flex-wrap: $value !important\n\n$justify-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, start, end, left, right\n@each $value in $justify-content-values\n .is-justify-content-#{$value}\n justify-content: $value !important\n\n$align-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, stretch, start, end, baseline\n@each $value in $align-content-values\n .is-align-content-#{$value}\n align-content: $value !important\n\n$align-items-values: stretch, flex-start, flex-end, center, baseline, start, end, self-start, self-end\n@each $value in $align-items-values\n .is-align-items-#{$value}\n align-items: $value !important\n\n$align-self-values: auto, flex-start, flex-end, center, baseline, stretch\n@each $value in $align-self-values\n .is-align-self-#{$value}\n align-self: $value !important\n\n$flex-operators: grow, shrink\n@each $operator in $flex-operators\n @for $i from 0 through 5\n .is-flex-#{$operator}-#{$i}\n flex-#{$operator}: $i !important\n",".is-clearfix\n +clearfix\n\n.is-pulled-left\n float: left !important\n\n.is-pulled-right\n float: right !important\n",".is-radiusless\n border-radius: 0 !important\n\n.is-shadowless\n box-shadow: none !important\n\n.is-clickable\n cursor: pointer !important\n\n.is-unselectable\n @extend %unselectable\n",".is-clipped\n overflow: hidden !important\n",".is-overlay\n @extend %overlay\n\n.is-relative\n position: relative !important\n",".is-marginless\n margin: 0 !important\n\n.is-paddingless\n padding: 0 !important\n\n$spacing-shortcuts: (\"margin\": \"m\", \"padding\": \"p\") !default\n$spacing-directions: (\"top\": \"t\", \"right\": \"r\", \"bottom\": \"b\", \"left\": \"l\") !default\n$spacing-horizontal: \"x\" !default\n$spacing-vertical: \"y\" !default\n$spacing-values: (\"0\": 0, \"1\": 0.25rem, \"2\": 0.5rem, \"3\": 0.75rem, \"4\": 1rem, \"5\": 1.5rem, \"6\": 3rem) !default\n\n@each $property, $shortcut in $spacing-shortcuts\n @each $name, $value in $spacing-values\n // All directions\n .#{$shortcut}-#{$name}\n #{$property}: $value !important\n // Cardinal directions\n @each $direction, $suffix in $spacing-directions\n .#{$shortcut}#{$suffix}-#{$name}\n #{$property}-#{$direction}: $value !important\n // Horizontal axis\n @if $spacing-horizontal != null\n .#{$shortcut}#{$spacing-horizontal}-#{$name}\n #{$property}-left: $value !important\n #{$property}-right: $value !important\n // Vertical axis\n @if $spacing-vertical != null\n .#{$shortcut}#{$spacing-vertical}-#{$name}\n #{$property}-top: $value !important\n #{$property}-bottom: $value !important\n","=typography-size($target:'')\n @each $size in $sizes\n $i: index($sizes, $size)\n .is-size-#{$i}#{if($target == '', '', '-' + $target)}\n font-size: $size !important\n\n+typography-size()\n\n+mobile\n +typography-size('mobile')\n\n+tablet\n +typography-size('tablet')\n\n+touch\n +typography-size('touch')\n\n+desktop\n +typography-size('desktop')\n\n+widescreen\n +typography-size('widescreen')\n\n+fullhd\n +typography-size('fullhd')\n\n$alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'right': 'right')\n\n@each $alignment, $text-align in $alignments\n .has-text-#{$alignment}\n text-align: #{$text-align} !important\n\n@each $alignment, $text-align in $alignments\n +mobile\n .has-text-#{$alignment}-mobile\n text-align: #{$text-align} !important\n +tablet\n .has-text-#{$alignment}-tablet\n text-align: #{$text-align} !important\n +tablet-only\n .has-text-#{$alignment}-tablet-only\n text-align: #{$text-align} !important\n +touch\n .has-text-#{$alignment}-touch\n text-align: #{$text-align} !important\n +desktop\n .has-text-#{$alignment}-desktop\n text-align: #{$text-align} !important\n +desktop-only\n .has-text-#{$alignment}-desktop-only\n text-align: #{$text-align} !important\n +widescreen\n .has-text-#{$alignment}-widescreen\n text-align: #{$text-align} !important\n +widescreen-only\n .has-text-#{$alignment}-widescreen-only\n text-align: #{$text-align} !important\n +fullhd\n .has-text-#{$alignment}-fullhd\n text-align: #{$text-align} !important\n\n.is-capitalized\n text-transform: capitalize !important\n\n.is-lowercase\n text-transform: lowercase !important\n\n.is-uppercase\n text-transform: uppercase !important\n\n.is-italic\n font-style: italic !important\n\n.has-text-weight-light\n font-weight: $weight-light !important\n.has-text-weight-normal\n font-weight: $weight-normal !important\n.has-text-weight-medium\n font-weight: $weight-medium !important\n.has-text-weight-semibold\n font-weight: $weight-semibold !important\n.has-text-weight-bold\n font-weight: $weight-bold !important\n\n.is-family-primary\n font-family: $family-primary !important\n\n.is-family-secondary\n font-family: $family-secondary !important\n\n.is-family-sans-serif\n font-family: $family-sans-serif !important\n\n.is-family-monospace\n font-family: $family-monospace !important\n\n.is-family-code\n font-family: $family-code !important\n","\n\n$displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'\n\n@each $display in $displays\n .is-#{$display}\n display: #{$display} !important\n +mobile\n .is-#{$display}-mobile\n display: #{$display} !important\n +tablet\n .is-#{$display}-tablet\n display: #{$display} !important\n +tablet-only\n .is-#{$display}-tablet-only\n display: #{$display} !important\n +touch\n .is-#{$display}-touch\n display: #{$display} !important\n +desktop\n .is-#{$display}-desktop\n display: #{$display} !important\n +desktop-only\n .is-#{$display}-desktop-only\n display: #{$display} !important\n +widescreen\n .is-#{$display}-widescreen\n display: #{$display} !important\n +widescreen-only\n .is-#{$display}-widescreen-only\n display: #{$display} !important\n +fullhd\n .is-#{$display}-fullhd\n display: #{$display} !important\n\n.is-hidden\n display: none !important\n\n.is-sr-only\n border: none !important\n clip: rect(0, 0, 0, 0) !important\n height: 0.01em !important\n overflow: hidden !important\n padding: 0 !important\n position: absolute !important\n white-space: nowrap !important\n width: 0.01em !important\n\n+mobile\n .is-hidden-mobile\n display: none !important\n\n+tablet\n .is-hidden-tablet\n display: none !important\n\n+tablet-only\n .is-hidden-tablet-only\n display: none !important\n\n+touch\n .is-hidden-touch\n display: none !important\n\n+desktop\n .is-hidden-desktop\n display: none !important\n\n+desktop-only\n .is-hidden-desktop-only\n display: none !important\n\n+widescreen\n .is-hidden-widescreen\n display: none !important\n\n+widescreen-only\n .is-hidden-widescreen-only\n display: none !important\n\n+fullhd\n .is-hidden-fullhd\n display: none !important\n\n.is-invisible\n visibility: hidden !important\n\n+mobile\n .is-invisible-mobile\n visibility: hidden !important\n\n+tablet\n .is-invisible-tablet\n visibility: hidden !important\n\n+tablet-only\n .is-invisible-tablet-only\n visibility: hidden !important\n\n+touch\n .is-invisible-touch\n visibility: hidden !important\n\n+desktop\n .is-invisible-desktop\n visibility: hidden !important\n\n+desktop-only\n .is-invisible-desktop-only\n visibility: hidden !important\n\n+widescreen\n .is-invisible-widescreen\n visibility: hidden !important\n\n+widescreen-only\n .is-invisible-widescreen-only\n visibility: hidden !important\n\n+fullhd\n .is-invisible-fullhd\n visibility: hidden !important\n","$hero-body-padding: 3rem 1.5rem !default\n$hero-body-padding-small: 1.5rem !default\n$hero-body-padding-medium: 9rem 1.5rem !default\n$hero-body-padding-large: 18rem 1.5rem !default\n\n$hero-colors: $colors !default\n\n// Main container\n.hero\n align-items: stretch\n display: flex\n flex-direction: column\n justify-content: space-between\n .navbar\n background: none\n .tabs\n ul\n border-bottom: none\n // Colors\n @each $name, $pair in $hero-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),\n strong\n color: inherit\n .title\n color: $color-invert\n .subtitle\n color: bulmaRgba($color-invert, 0.9)\n a:not(.button),\n strong\n color: $color-invert\n .navbar-menu\n +touch\n background-color: $color\n .navbar-item,\n .navbar-link\n color: bulmaRgba($color-invert, 0.7)\n a.navbar-item,\n .navbar-link\n &:hover,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .tabs\n a\n color: $color-invert\n opacity: 0.9\n &:hover\n opacity: 1\n li\n &.is-active a\n opacity: 1\n &.is-boxed,\n &.is-toggle\n a\n color: $color-invert\n &:hover\n background-color: bulmaRgba($scheme-invert, 0.1)\n li.is-active a\n &,\n &:hover\n background-color: $color-invert\n border-color: $color-invert\n color: $color\n // Modifiers\n @if type-of($color) == 'color'\n &.is-bold\n $gradient-top-left: darken(saturate(adjust-hue($color, -10deg), 10%), 10%)\n $gradient-bottom-right: lighten(saturate(adjust-hue($color, 10deg), 5%), 5%)\n background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%)\n +mobile\n .navbar-menu\n background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%)\n // Sizes\n &.is-small\n .hero-body\n padding: $hero-body-padding-small\n &.is-medium\n +tablet\n .hero-body\n padding: $hero-body-padding-medium\n &.is-large\n +tablet\n .hero-body\n padding: $hero-body-padding-large\n &.is-halfheight,\n &.is-fullheight,\n &.is-fullheight-with-navbar\n .hero-body\n align-items: center\n display: flex\n & > .container\n flex-grow: 1\n flex-shrink: 1\n &.is-halfheight\n min-height: 50vh\n &.is-fullheight\n min-height: 100vh\n\n// Components\n\n.hero-video\n @extend %overlay\n overflow: hidden\n video\n left: 50%\n min-height: 100%\n min-width: 100%\n position: absolute\n top: 50%\n transform: translate3d(-50%, -50%, 0)\n // Modifiers\n &.is-transparent\n opacity: 0.3\n // Responsiveness\n +mobile\n display: none\n\n.hero-buttons\n margin-top: 1.5rem\n // Responsiveness\n +mobile\n .button\n display: flex\n &:not(:last-child)\n margin-bottom: 0.75rem\n +tablet\n display: flex\n justify-content: center\n .button:not(:last-child)\n +ltr-property(\"margin\", 1.5rem)\n\n// Containers\n\n.hero-head,\n.hero-foot\n flex-grow: 0\n flex-shrink: 0\n\n.hero-body\n flex-grow: 1\n flex-shrink: 0\n padding: $hero-body-padding\n","$section-padding: 3rem 1.5rem !default\n$section-padding-medium: 9rem 1.5rem !default\n$section-padding-large: 18rem 1.5rem !default\n\n.section\n padding: $section-padding\n // Responsiveness\n +desktop\n // Sizes\n &.is-medium\n padding: $section-padding-medium\n &.is-large\n padding: $section-padding-large\n","$footer-background-color: $scheme-main-bis !default\n$footer-color: false !default\n$footer-padding: 3rem 1.5rem 6rem !default\n\n.footer\n background-color: $footer-background-color\n padding: $footer-padding\n @if $footer-color\n color: $footer-color\n","@-webkit-keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.switch[type=checkbox]{outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:absolute;opacity:0}.switch[type=checkbox]:focus+label::after,.switch[type=checkbox]:focus+label::before,.switch[type=checkbox]:focus+label:after,.switch[type=checkbox]:focus+label:before{outline:1px dotted #b5b5b5}.switch[type=checkbox][disabled]{cursor:not-allowed}.switch[type=checkbox][disabled]+label{opacity:.5}.switch[type=checkbox][disabled]+label::before,.switch[type=checkbox][disabled]+label:before{opacity:.5}.switch[type=checkbox][disabled]+label::after,.switch[type=checkbox][disabled]+label:after{opacity:.5}.switch[type=checkbox][disabled]+label:hover{cursor:not-allowed}.switch[type=checkbox]+label{position:relative;display:initial;font-size:1rem;line-height:initial;padding-left:3.5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox]+label::before,.switch[type=checkbox]+label:before{position:absolute;display:block;top:0;left:0;width:3rem;height:1.5rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox]+label::after,.switch[type=checkbox]+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1rem;height:1rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-rtl+label{padding-left:0;padding-right:3.5rem}.switch[type=checkbox].is-rtl+label::before,.switch[type=checkbox].is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-rtl+label::after,.switch[type=checkbox].is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox]:checked+label::before,.switch[type=checkbox]:checked+label:before{background:#00d1b2}.switch[type=checkbox]:checked+label::after{left:1.625rem}.switch[type=checkbox]:checked.is-rtl+label::after,.switch[type=checkbox]:checked.is-rtl+label:after{left:auto;right:1.625rem}.switch[type=checkbox].is-outlined+label::before,.switch[type=checkbox].is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-outlined+label::after,.switch[type=checkbox].is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-outlined:checked+label::before,.switch[type=checkbox].is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-outlined:checked+label::after,.switch[type=checkbox].is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-thin+label::before,.switch[type=checkbox].is-thin+label:before{top:.54545rem;height:.375rem}.switch[type=checkbox].is-thin+label::after,.switch[type=checkbox].is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-rounded+label::before,.switch[type=checkbox].is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-rounded+label::after,.switch[type=checkbox].is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-small+label{position:relative;display:initial;font-size:.75rem;line-height:initial;padding-left:2.75rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-small+label::before,.switch[type=checkbox].is-small+label:before{position:absolute;display:block;top:0;left:0;width:2.25rem;height:1.125rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox].is-small+label::after,.switch[type=checkbox].is-small+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:.625rem;height:.625rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-small.is-rtl+label{padding-left:0;padding-right:2.75rem}.switch[type=checkbox].is-small.is-rtl+label::before,.switch[type=checkbox].is-small.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-small.is-rtl+label::after,.switch[type=checkbox].is-small.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-small:checked+label::before,.switch[type=checkbox].is-small:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-small:checked+label::after{left:1.25rem}.switch[type=checkbox].is-small:checked.is-rtl+label::after,.switch[type=checkbox].is-small:checked.is-rtl+label:after{left:auto;right:1.25rem}.switch[type=checkbox].is-small.is-outlined+label::before,.switch[type=checkbox].is-small.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-small.is-outlined+label::after,.switch[type=checkbox].is-small.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-small.is-outlined:checked+label::before,.switch[type=checkbox].is-small.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-small.is-outlined:checked+label::after,.switch[type=checkbox].is-small.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-small.is-thin+label::before,.switch[type=checkbox].is-small.is-thin+label:before{top:.40909rem;height:.28125rem}.switch[type=checkbox].is-small.is-thin+label::after,.switch[type=checkbox].is-small.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-small.is-rounded+label::before,.switch[type=checkbox].is-small.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-small.is-rounded+label::after,.switch[type=checkbox].is-small.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-medium+label{position:relative;display:initial;font-size:1.25rem;line-height:initial;padding-left:4.25rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-medium+label::before,.switch[type=checkbox].is-medium+label:before{position:absolute;display:block;top:0;left:0;width:3.75rem;height:1.875rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox].is-medium+label::after,.switch[type=checkbox].is-medium+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.375rem;height:1.375rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-medium.is-rtl+label{padding-left:0;padding-right:4.25rem}.switch[type=checkbox].is-medium.is-rtl+label::before,.switch[type=checkbox].is-medium.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-medium.is-rtl+label::after,.switch[type=checkbox].is-medium.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-medium:checked+label::before,.switch[type=checkbox].is-medium:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-medium:checked+label::after{left:2rem}.switch[type=checkbox].is-medium:checked.is-rtl+label::after,.switch[type=checkbox].is-medium:checked.is-rtl+label:after{left:auto;right:2rem}.switch[type=checkbox].is-medium.is-outlined+label::before,.switch[type=checkbox].is-medium.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined+label::after,.switch[type=checkbox].is-medium.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined:checked+label::before,.switch[type=checkbox].is-medium.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-medium.is-outlined:checked+label::after,.switch[type=checkbox].is-medium.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-medium.is-thin+label::before,.switch[type=checkbox].is-medium.is-thin+label:before{top:.68182rem;height:.46875rem}.switch[type=checkbox].is-medium.is-thin+label::after,.switch[type=checkbox].is-medium.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-medium.is-rounded+label::before,.switch[type=checkbox].is-medium.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-medium.is-rounded+label::after,.switch[type=checkbox].is-medium.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-large+label{position:relative;display:initial;font-size:1.5rem;line-height:initial;padding-left:5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-large+label::before,.switch[type=checkbox].is-large+label:before{position:absolute;display:block;top:0;left:0;width:4.5rem;height:2.25rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox].is-large+label::after,.switch[type=checkbox].is-large+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.75rem;height:1.75rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-large.is-rtl+label{padding-left:0;padding-right:5rem}.switch[type=checkbox].is-large.is-rtl+label::before,.switch[type=checkbox].is-large.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-large.is-rtl+label::after,.switch[type=checkbox].is-large.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-large:checked+label::before,.switch[type=checkbox].is-large:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-large:checked+label::after{left:2.375rem}.switch[type=checkbox].is-large:checked.is-rtl+label::after,.switch[type=checkbox].is-large:checked.is-rtl+label:after{left:auto;right:2.375rem}.switch[type=checkbox].is-large.is-outlined+label::before,.switch[type=checkbox].is-large.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-large.is-outlined+label::after,.switch[type=checkbox].is-large.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-large.is-outlined:checked+label::before,.switch[type=checkbox].is-large.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-large.is-outlined:checked+label::after,.switch[type=checkbox].is-large.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-large.is-thin+label::before,.switch[type=checkbox].is-large.is-thin+label:before{top:.81818rem;height:.5625rem}.switch[type=checkbox].is-large.is-thin+label::after,.switch[type=checkbox].is-large.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-large.is-rounded+label::before,.switch[type=checkbox].is-large.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-large.is-rounded+label::after,.switch[type=checkbox].is-large.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-white:checked+label::before,.switch[type=checkbox].is-white:checked+label:before{background:#fff}.switch[type=checkbox].is-white.is-outlined:checked+label::before,.switch[type=checkbox].is-white.is-outlined:checked+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-white.is-outlined:checked+label::after,.switch[type=checkbox].is-white.is-outlined:checked+label:after{background:#fff}.switch[type=checkbox].is-white.is-thin.is-outlined+label::after,.switch[type=checkbox].is-white.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-white+label::before,.switch[type=checkbox].is-unchecked-white+label:before{background:#fff}.switch[type=checkbox].is-unchecked-white.is-outlined+label::before,.switch[type=checkbox].is-unchecked-white.is-outlined+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-unchecked-white.is-outlined+label::after,.switch[type=checkbox].is-unchecked-white.is-outlined+label:after{background:#fff}.switch[type=checkbox].is-black:checked+label::before,.switch[type=checkbox].is-black:checked+label:before{background:#0a0a0a}.switch[type=checkbox].is-black.is-outlined:checked+label::before,.switch[type=checkbox].is-black.is-outlined:checked+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-black.is-outlined:checked+label::after,.switch[type=checkbox].is-black.is-outlined:checked+label:after{background:#0a0a0a}.switch[type=checkbox].is-black.is-thin.is-outlined+label::after,.switch[type=checkbox].is-black.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-black+label::before,.switch[type=checkbox].is-unchecked-black+label:before{background:#0a0a0a}.switch[type=checkbox].is-unchecked-black.is-outlined+label::before,.switch[type=checkbox].is-unchecked-black.is-outlined+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-unchecked-black.is-outlined+label::after,.switch[type=checkbox].is-unchecked-black.is-outlined+label:after{background:#0a0a0a}.switch[type=checkbox].is-light:checked+label::before,.switch[type=checkbox].is-light:checked+label:before{background:#f5f5f5}.switch[type=checkbox].is-light.is-outlined:checked+label::before,.switch[type=checkbox].is-light.is-outlined:checked+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-light.is-outlined:checked+label::after,.switch[type=checkbox].is-light.is-outlined:checked+label:after{background:#f5f5f5}.switch[type=checkbox].is-light.is-thin.is-outlined+label::after,.switch[type=checkbox].is-light.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-light+label::before,.switch[type=checkbox].is-unchecked-light+label:before{background:#f5f5f5}.switch[type=checkbox].is-unchecked-light.is-outlined+label::before,.switch[type=checkbox].is-unchecked-light.is-outlined+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-unchecked-light.is-outlined+label::after,.switch[type=checkbox].is-unchecked-light.is-outlined+label:after{background:#f5f5f5}.switch[type=checkbox].is-dark:checked+label::before,.switch[type=checkbox].is-dark:checked+label:before{background:#363636}.switch[type=checkbox].is-dark.is-outlined:checked+label::before,.switch[type=checkbox].is-dark.is-outlined:checked+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-dark.is-outlined:checked+label::after,.switch[type=checkbox].is-dark.is-outlined:checked+label:after{background:#363636}.switch[type=checkbox].is-dark.is-thin.is-outlined+label::after,.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-dark+label::before,.switch[type=checkbox].is-unchecked-dark+label:before{background:#363636}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::before,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::after,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after{background:#363636}.switch[type=checkbox].is-primary:checked+label::before,.switch[type=checkbox].is-primary:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-primary.is-outlined:checked+label::before,.switch[type=checkbox].is-primary.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-primary.is-outlined:checked+label::after,.switch[type=checkbox].is-primary.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-primary.is-thin.is-outlined+label::after,.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-primary+label::before,.switch[type=checkbox].is-unchecked-primary+label:before{background:#00d1b2}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::before,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::after,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after{background:#00d1b2}.switch[type=checkbox].is-link:checked+label::before,.switch[type=checkbox].is-link:checked+label:before{background:#3273dc}.switch[type=checkbox].is-link.is-outlined:checked+label::before,.switch[type=checkbox].is-link.is-outlined:checked+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-link.is-outlined:checked+label::after,.switch[type=checkbox].is-link.is-outlined:checked+label:after{background:#3273dc}.switch[type=checkbox].is-link.is-thin.is-outlined+label::after,.switch[type=checkbox].is-link.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-link+label::before,.switch[type=checkbox].is-unchecked-link+label:before{background:#3273dc}.switch[type=checkbox].is-unchecked-link.is-outlined+label::before,.switch[type=checkbox].is-unchecked-link.is-outlined+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-unchecked-link.is-outlined+label::after,.switch[type=checkbox].is-unchecked-link.is-outlined+label:after{background:#3273dc}.switch[type=checkbox].is-info:checked+label::before,.switch[type=checkbox].is-info:checked+label:before{background:#209cee}.switch[type=checkbox].is-info.is-outlined:checked+label::before,.switch[type=checkbox].is-info.is-outlined:checked+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-info.is-outlined:checked+label::after,.switch[type=checkbox].is-info.is-outlined:checked+label:after{background:#209cee}.switch[type=checkbox].is-info.is-thin.is-outlined+label::after,.switch[type=checkbox].is-info.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-info+label::before,.switch[type=checkbox].is-unchecked-info+label:before{background:#209cee}.switch[type=checkbox].is-unchecked-info.is-outlined+label::before,.switch[type=checkbox].is-unchecked-info.is-outlined+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-unchecked-info.is-outlined+label::after,.switch[type=checkbox].is-unchecked-info.is-outlined+label:after{background:#209cee}.switch[type=checkbox].is-success:checked+label::before,.switch[type=checkbox].is-success:checked+label:before{background:#23d160}.switch[type=checkbox].is-success.is-outlined:checked+label::before,.switch[type=checkbox].is-success.is-outlined:checked+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-success.is-outlined:checked+label::after,.switch[type=checkbox].is-success.is-outlined:checked+label:after{background:#23d160}.switch[type=checkbox].is-success.is-thin.is-outlined+label::after,.switch[type=checkbox].is-success.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-success+label::before,.switch[type=checkbox].is-unchecked-success+label:before{background:#23d160}.switch[type=checkbox].is-unchecked-success.is-outlined+label::before,.switch[type=checkbox].is-unchecked-success.is-outlined+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-unchecked-success.is-outlined+label::after,.switch[type=checkbox].is-unchecked-success.is-outlined+label:after{background:#23d160}.switch[type=checkbox].is-warning:checked+label::before,.switch[type=checkbox].is-warning:checked+label:before{background:#ffdd57}.switch[type=checkbox].is-warning.is-outlined:checked+label::before,.switch[type=checkbox].is-warning.is-outlined:checked+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-warning.is-outlined:checked+label::after,.switch[type=checkbox].is-warning.is-outlined:checked+label:after{background:#ffdd57}.switch[type=checkbox].is-warning.is-thin.is-outlined+label::after,.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-warning+label::before,.switch[type=checkbox].is-unchecked-warning+label:before{background:#ffdd57}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::before,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::after,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after{background:#ffdd57}.switch[type=checkbox].is-danger:checked+label::before,.switch[type=checkbox].is-danger:checked+label:before{background:#ff3860}.switch[type=checkbox].is-danger.is-outlined:checked+label::before,.switch[type=checkbox].is-danger.is-outlined:checked+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-danger.is-outlined:checked+label::after,.switch[type=checkbox].is-danger.is-outlined:checked+label:after{background:#ff3860}.switch[type=checkbox].is-danger.is-thin.is-outlined+label::after,.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-danger+label::before,.switch[type=checkbox].is-unchecked-danger+label:before{background:#ff3860}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::before,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::after,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after{background:#ff3860}","\n@import 'bulma';\n@import '~bulma-switch';\n\n\n.slider {\n min-width: 250px;\n width: 100%;\n}\n.range-slider-fill {\n background-color: hsl(0, 0%, 21%);\n}\n\n.track-progress {\n margin: 0;\n padding: 0;\n min-width: 250px;\n width: 100%;\n}\n\n.track-progress .range-slider-knob {\n visibility: hidden;\n}\n\n.track-progress .range-slider-fill {\n background-color: hsl(217, 71%, 53%);\n height: 2px;\n}\n\n.track-progress .range-slider-rail {\n background-color: hsl(0, 0%, 100%);\n}\n\n.media.with-progress h2:last-of-type {\n margin-bottom: 6px;\n}\n\n.media.with-progress {\n margin-top: 0px;\n}\n\na.navbar-item {\n outline: 0;\n line-height: 1.5;\n padding: .5rem 1rem;\n}\n\n.fd-expanded {\n flex-grow: 1;\n flex-shrink: 1;\n}\n\n.fd-margin-left-auto {\n margin-left: auto;\n}\n\n.fd-has-action {\n cursor: pointer;\n}\n\n.fd-is-movable {\n cursor: move;\n}\n\n.fd-has-margin-top {\n margin-top: 24px;\n}\n\n.fd-has-margin-bottom {\n margin-bottom: 24px;\n}\n\n.fd-remove-padding-bottom {\n padding-bottom: 0;\n}\n\n.fd-has-padding-left-right {\n padding-left: 24px;\n padding-right: 24px;\n}\n\n.fd-is-square .button {\n height: 27px;\n min-width: 27px;\n padding-left: 0.25rem;\n padding-right: 0.25rem;\n}\n\n.fd-is-text-clipped {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.fd-tabs-section {\n padding-bottom: 3px;\n padding-top: 3px;\n background: white;\n top: 3.25rem;\n z-index: 20;\n position: fixed;\n width: 100%;\n}\n\nsection.fd-tabs-section + section.fd-content {\n margin-top: 24px;\n}\n\nsection.hero + section.fd-content {\n padding-top: 0;\n}\n\n.fd-progress-bar {\n top: 52px !important;\n}\n\n.fd-has-shadow {\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);\n}\n\n/* Set minimum height to hide \"option\" section */\n.fd-content-with-option {\n min-height: calc(100vh - 3.25rem - 3.25rem - 5rem);\n}\n\n/* Now playing page */\n.fd-is-fullheight {\n height: calc(100vh - 3.25rem - 3.25rem);\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.fd-is-fullheight .fd-is-expanded {\n max-height: calc(100vh - 25rem);\n padding: 1.5rem;\n overflow: hidden;\n flex-grow: 1;\n flex-shrink: 1;\n\n /* Use flex box to properly size children */\n display: flex;\n}\n\n.fd-cover-image {\n display: flex;\n flex-grow: 1;\n flex-shrink: 1;\n\n /* Allow flex item to shrink smaller than its content size: https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size */\n min-width: 0;\n min-height: 0;\n overflow: hidden;\n\n /* Padding matches the drop-shadow size of the image */\n padding: 10px;\n}\n\n.fd-cover-image img {\n /* Use object-fit to properly size the cover artwork: https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit */\n object-fit: contain;\n object-position: center bottom;\n filter: drop-shadow(0px 0px 1px rgba(0,0,0,.3)) drop-shadow(0px 0px 10px rgba(0,0,0,.3));\n\n /* Allow flex item to grow/shrink to fill the whole container size */\n flex-grow: 1;\n flex-shrink: 1;\n\n /* Unset height/width to allow flex sizing */\n height: unset;\n width: unset;\n max-width: unset;\n max-height: unset;\n\n /* Allow flex item to shrink smaller than its content size: https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size */\n min-width: 0;\n min-height: 0;\n overflow: hidden;\n}\n\n\n.sortable-chosen .media-right {\n visibility: hidden;\n}\n.sortable-ghost h1, .sortable-ghost h2 {\n color: hsl(348, 100%, 61%) !important;\n}\n\n.media:first-of-type {\n padding-top: 17px;\n margin-top: 16px;\n}\n\n/* Transition effect */\n.fade-enter-active, .fade-leave-active {\n transition: opacity .4s;\n}\n.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {\n opacity: 0;\n}\n\n/* Now playing progress bar */\n.seek-slider {\n min-width: 250px;\n max-width: 500px;\n width: 100% !important;\n}\n.seek-slider .range-slider-fill {\n background-color: hsl(171, 100%, 41%);\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);\n}\n.seek-slider .range-slider-knob {\n width: 10px;\n height: 10px;\n background-color: hsl(171, 100%, 41%);\n border-color: hsl(171, 100%, 41%);\n}\n\n/* Add a little bit of spacing between title and subtitle */\n.title:not(.is-spaced) + .subtitle {\n margin-top: -1.3rem !important;\n}\n.title:not(.is-spaced) + .subtitle + .subtitle {\n margin-top: -1.3rem !important;\n}\n\n/* Only scroll content if modal contains a card component */\n.fd-modal-card {\n overflow: visible;\n}\n.fd-modal-card .card-content {\n max-height: calc(100vh - 200px);\n overflow: auto;\n}\n.fd-modal-card .card {\n margin-left: 16px;\n margin-right: 16px;\n}\n\n.dropdown-item a {\n display: block;\n}\n\n.dropdown-item:hover {\n background-color: hsl(0, 0%, 96%)\n}\n\n.navbar-item .fd-navbar-item-level2 {\n padding-left: 1.5rem;\n}\nhr.fd-navbar-divider {\n margin: 12px 0;\n}\n\n/* Show scrollbar for navbar menu in desktop mode if content exceeds the screen size */\n@media only screen and (min-width: 1024px) {\n .navbar-dropdown {\n max-height: calc(100vh - 3.25rem - 3.25rem - 2rem);\n overflow: auto;\n }\n}\n\n/* Limit the size of the bottom navbar menu to not be displayed behind the Safari browser menu on iOS */\n.fd-bottom-navbar .navbar-menu {\n max-height: calc(100vh - 3.25rem - 3.25rem - 1rem);\n overflow: scroll;\n}\n\n\n.buttons {\n @include mobile {\n &.fd-is-centered-mobile {\n justify-content: center;\n &:not(.has-addons) {\n .button:not(.is-fullwidth) {\n margin-left: 0.25rem;\n margin-right: 0.25rem;\n }\n }\n }\n }\n}\n\n.column {\n &.fd-has-cover {\n max-height: 150px;\n max-width: 150px;\n @include mobile {\n margin: auto;\n }\n @include from($tablet) {\n margin: auto 0 auto auto;\n }\n }\n}\n\n.fd-overlay-fullscreen {\n @extend .is-overlay;\n z-index:25;\n background-color: rgba(10, 10, 10, 0.2);\n position: fixed;\n}\n\n.hero-body {\n padding: 1.5rem !important;\n}"]} \ No newline at end of file +{"version":3,"sources":["webpack:///src/components/src/components/Notifications.vue","webpack:///mystyles.scss","webpack:///node_modules/bulma/bulma.sass","webpack:///node_modules/bulma/sass/utilities/animations.sass","webpack:///node_modules/bulma/sass/utilities/mixins.sass","webpack:///node_modules/bulma/sass/utilities/initial-variables.sass","webpack:///node_modules/bulma/sass/utilities/controls.sass","webpack:///node_modules/bulma/sass/base/minireset.sass","webpack:///node_modules/bulma/sass/base/generic.sass","webpack:///node_modules/bulma/sass/utilities/derived-variables.sass","webpack:///node_modules/bulma/sass/elements/box.sass","webpack:///node_modules/bulma/sass/elements/button.sass","webpack:///node_modules/bulma/sass/elements/container.sass","webpack:///node_modules/bulma/sass/elements/content.sass","webpack:///node_modules/bulma/sass/elements/icon.sass","webpack:///node_modules/bulma/sass/elements/image.sass","webpack:///node_modules/bulma/sass/elements/notification.sass","webpack:///node_modules/bulma/sass/elements/progress.sass","webpack:///node_modules/bulma/sass/elements/table.sass","webpack:///node_modules/bulma/sass/elements/tag.sass","webpack:///node_modules/bulma/sass/elements/title.sass","webpack:///node_modules/bulma/sass/elements/other.sass","webpack:///node_modules/bulma/sass/form/shared.sass","webpack:///node_modules/bulma/sass/form/input-textarea.sass","webpack:///node_modules/bulma/sass/form/checkbox-radio.sass","webpack:///node_modules/bulma/sass/form/select.sass","webpack:///node_modules/bulma/sass/form/file.sass","webpack:///node_modules/bulma/sass/form/tools.sass","webpack:///node_modules/bulma/sass/components/breadcrumb.sass","webpack:///node_modules/bulma/sass/components/card.sass","webpack:///node_modules/bulma/sass/components/dropdown.sass","webpack:///node_modules/bulma/sass/components/level.sass","webpack:///node_modules/bulma/sass/components/media.sass","webpack:///node_modules/bulma/sass/components/menu.sass","webpack:///node_modules/bulma/sass/components/message.sass","webpack:///node_modules/bulma/sass/components/modal.sass","webpack:///node_modules/bulma/sass/components/navbar.sass","webpack:///node_modules/bulma/sass/components/pagination.sass","webpack:///node_modules/bulma/sass/components/panel.sass","webpack:///node_modules/bulma/sass/components/tabs.sass","webpack:///node_modules/bulma/sass/grid/columns.sass","webpack:///node_modules/bulma/sass/grid/tiles.sass","webpack:///node_modules/bulma/sass/helpers/color.sass","webpack:///node_modules/bulma/sass/helpers/flexbox.sass","webpack:///node_modules/bulma/sass/helpers/float.sass","webpack:///node_modules/bulma/sass/helpers/other.sass","webpack:///node_modules/bulma/sass/helpers/overflow.sass","webpack:///node_modules/bulma/sass/helpers/position.sass","webpack:///node_modules/bulma/sass/helpers/spacing.sass","webpack:///node_modules/bulma/sass/helpers/typography.sass","webpack:///node_modules/bulma/sass/helpers/visibility.sass","webpack:///node_modules/bulma/sass/layout/hero.sass","webpack:///node_modules/bulma/sass/layout/section.sass","webpack:///node_modules/bulma/sass/layout/footer.sass","webpack:///node_modules/bulma-switch/dist/css/bulma-switch.min.css","webpack:///src/mystyles.scss"],"names":[],"mappings":"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AQX,SACE,CAAA,mCACF,SACE,CAAA,UACA,CAAA,6CACF,SACE,CAAA,SACA,CAAA,yCACF,SACE,CAAA,cACA,CAAA,mCACF,SACE,CAAA,SACA,CAAA,wCACF,SACE,CAAA,cACA,CAAA,0CACF,SACE,CAAA,SACA,CAAA,wCACF,SACE,CAAA,SACA,CAAA,yCACF,SACE,CAAA,SACA,CAAA,2CACF,SACE,CAAA,SACA,CAAA,0CACF,SACE,CAAA,SACA,CAAA,oDACF,eACE,CAAA,gDACF,oBACE,CAAA,0CACF,eACE,CAAA,+CACF,oBACE,CAAA,iDACF,eACE,CAAA,+CACF,eACE,CAAA,gDACF,eACE,CAAA,kDACF,eACE,CAAA,iDACF,eACE,CAAA,gCAEA,SACE,CAAA,OACA,CAAA,uCACF,aACE,CAAA,gCAJF,SACE,CAAA,mBACA,CAAA,uCACF,yBACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,SACA,CAAA,uCACF,eACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,SACA,CAAA,uCACF,eACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,oBACA,CAAA,uCACF,0BACE,CAAA,gCAJF,SACE,CAAA,SACA,CAAA,uCACF,eACE,CAAA,iCAJF,SACE,CAAA,oBACA,CAAA,wCACF,0BACE,CAAA,iCAJF,SACE,CAAA,oBACA,CAAA,wCACF,0BACE,CAAA,iCAJF,SACE,CAAA,UACA,CAAA,wCACF,gBACE,CAAA,oCpCkBJ,yBoChBE,SACE,CAAA,uBACF,SACE,CAAA,UACA,CAAA,iCACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,cACA,CAAA,uBACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,cACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,SACA,CAAA,6BACF,SAC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AA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,SACA,CAAA,0BACF,eACE,CAAA,mBAJF,SACE,CAAA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,oBACA,CAAA,0BACF,0BACE,CAAA,mBAJF,SACE,CAAA,SACA,CAAA,0BACF,eACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,UACA,CAAA,2BACF,gBACE,CAAA,CAAA,qCpC/JN,0BoCiKE,SACE,CAAA,wBACF,SACE,CAAA,UACA,CAAA,kCACF,SACE,CAAA,SACA,CAAA,8BACF,SACE,CAAA,cACA,CAAA,wBACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,cACA,CAAA,+BACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,SACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,gCACF,SACE,CAAA,SACA,CAAA,+BACF,SACE,CAAA,SACA,CAAA,yCACF,eACE,CAAA,qCACF,oBACE,CAAA,+BACF,eACE,CAAA,oCACF,oBACE,CAAA,sCACF,eACE,CAAA,oCACF,eACE,CAAA,qCACF,eACE,CAAA,uCACF,eACE,CAAA,sCACF,eACE,CAAA,qBAEA,SACE,CAAA,OACA,CAAA,4BACF,aACE,CAAA,qBAJF,SACE,CAAA,mBACA,CAAA,4BACF,yBACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,SACA,CAAA,4BACF,eACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,SACA,CAAA,4BACF,eACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,SACA,CAAA,4BACF,eACE,CAAA,sBAJF,SACE,CAAA,oBACA,CAAA,6BACF,0BACE,CAAA,sBAJF,SACE,CAAA,oBACA,CAAA,6BACF,0BACE,CAAA,sBAJF,SACE,CAAA,UACA,CAAA,6BACF,gBACE,CAAA,CAAA,qCpCzMJ,6BoC2MA,SACE,CAAA,2BACF,SACE,CAAA,UACA,CAAA,qCACF,SACE,CAAA,SACA,CAAA,iCACF,SACE,CAAA,cACA,CAAA,2BACF,SACE,CAAA,SACA,CAAA,gCACF,SACE,CAAA,cACA,CAAA,kCACF,SACE,CAAA,SACA,CAAA,gCACF,SACE,CAAA,SACA,CAAA,iCACF,SACE,CAAA,SACA,CAAA,mCACF,SACE,CAAA,SACA,CAAA,kCACF,SACE,CAAA,SACA,CAAA,4CACF,eACE,CAAA,wCACF,oBACE,CAAA,kCACF,eACE,CAAA,uCACF,oBACE,CAAA,yCACF,eACE,CAAA,uCACF,eACE,CAAA,wCACF,eACE,CAAA,0CACF,eACE,CAAA,yCACF,eACE,CAAA,wBAEA,SACE,CAAA,OACA,CAAA,+BACF,aACE,CAAA,wBAJF,SACE,CAAA,mBACA,CAAA,+BACF,yBACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,SACA,CAAA,+BACF,eACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,SACA,CAAA,+BACF,eACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,oBACA,CAAA,+BACF,0BACE,CAAA,wBAJF,SACE,CAAA,SACA,CAAA,+BACF,eACE,CAAA,yBAJF,SACE,CAAA,oBACA,CAAA,gCACF,0BACE,CAAA,yBAJF,SACE,CAAA,oBACA,CAAA,gCACF,0BACE,CAAA,yBAJF,SACE,CAAA,UACA,CAAA,gCACF,gBACE,CAAA,CAAA,qCpCnPJ,yBoCqPA,SACE,CAAA,uBACF,SACE,CAAA,UACA,CAAA,iCACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,cACA,CAAA,uBACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,cACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,4BACF,SACE,CAAA,SACA,CAAA,6BACF,SACE,CAAA,SACA,CAAA,+BACF,SACE,CAAA,SACA,CAAA,8BACF,SACE,CAAA,SACA,CAAA,wCACF,eACE,CAAA,oCACF,oBACE,CAAA,8BACF,eACE,CAAA,mCACF,oBACE,CAAA,qCACF,eACE,CAAA,mCACF,eACE,CAAA,oCACF,eACE,CAAA,sCACF,eACE,CAAA,qCACF,eACE,CAAA,oBAEA,SACE,CAAA,OACA,CAAA,2BACF,aACE,CAAA,oBAJF,SACE,CAAA,mBACA,CAAA,2BACF,yBACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,SACA,CAAA,2BACF,eACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,SACA,CAAA,2BACF,eACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,oBACA,CAAA,2BACF,0BACE,CAAA,oBAJF,SACE,CAAA,SACA,CAAA,2BACF,eACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,oBACA,CAAA,4BACF,0BACE,CAAA,qBAJF,SACE,CAAA,UACA,CAAA,4BACF,gBACE,CAAA,CAAA,SAER,mBACE,CAAA,oBACA,CAAA,kBACA,CAAA,oBACA,qBACE,CAAA,0BACF,oBACE,CAAA,qBAEF,sBACE,CAAA,oBACF,aACE,CAAA,cACA,CAAA,YACA,CAAA,4BACA,QACE,CAAA,mBACA,CAAA,qCACF,oBACE,CAAA,+BACF,eACE,CAAA,mBACJ,YACE,CAAA,sBACF,cACE,CAAA,sBACF,kBACE,CAAA,0CpCnXF,0BoCsXE,YACE,CAAA,CAAA,qCpC3WJ,oBoC8WE,YACE,CAAA,CAAA,qBAGJ,mBACE,CAAA,qCACA,CAAA,sCACA,CAAA,6BACA,6BACE,CAAA,8BACA,CAAA,0BAEA,gBACE,CAAA,oCpC3YN,iCoC6YM,gBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,gBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,gBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,gBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,gBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,gBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,gBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,gBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,gBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,mBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,mBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,mBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,mBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,mBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,mBACE,CAAA,CAAA,0BA5BJ,kBACE,CAAA,oCpC3YN,iCoC6YM,kBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,kBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,kBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,kBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,kBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,kBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,kBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,kBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,kBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,mBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,mBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,mBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,mBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,mBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,mBACE,CAAA,CAAA,0BA5BJ,gBACE,CAAA,oCpC3YN,iCoC6YM,gBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,gBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,gBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,gBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,gBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,gBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,gBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,gBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,gBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,mBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,mBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,mBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,mBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,mBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,mBACE,CAAA,CAAA,0BA5BJ,kBACE,CAAA,oCpC3YN,iCoC6YM,kBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,kBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,kBACE,CAAA,CAAA,qCpCxYR,gCoC0YM,kBACE,CAAA,CAAA,qCpCvYR,kCoCyYM,kBACE,CAAA,CAAA,2DpCrYN,uCoCuYI,kBACE,CAAA,CAAA,qCpC9XN,qCoCgYI,kBACE,CAAA,CAAA,2DpC5XN,0CoC8XI,kBACE,CAAA,CAAA,qCpCrXN,iCoCuXI,kBACE,CAAA,CAAA,0BA5BJ,mBACE,CAAA,oCpC3YN,iCoC6YM,mBACE,CAAA,CAAA,0CpC1YR,iCoC4YM,mBACE,CAAA,CAAA,0DpCzYR,sCoC2YM,mBACE,CAAA,CAAA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BAHF,uBACE,CAAA,6BACF,kCACE,CAAA,oBAHF,uBACE,CAAA,0BACF,kCACE,CAAA,oBAHF,uBACE,CAAA,0BACF,kCACE,CAAA,uBClCF,4BACE,CAAA,+BADF,oCACE,CAAA,0BADF,+BACE,CAAA,kCADF,uCACE,CAAA,qBAIF,0BACE,CAAA,mBADF,wBACE,CAAA,2BADF,gCACE,CAAA,+BAIF,oCACE,CAAA,6BADF,kCACE,CAAA,2BADF,gCACE,CAAA,kCADF,uCACE,CAAA,iCADF,sCACE,CAAA,iCADF,sCACE,CAAA,0BADF,+BACE,CAAA,wBADF,6BACE,CAAA,yBADF,8BACE,CAAA,0BADF,+BACE,CAAA,6BAIF,kCACE,CAAA,2BADF,gCACE,CAAA,yBADF,8BACE,CAAA,gCADF,qCACE,CAAA,+BADF,oCACE,CAAA,+BADF,oCACE,CAAA,0BADF,+BACE,CAAA,wBADF,6BACE,CAAA,sBADF,2BACE,CAAA,2BADF,gCACE,CAAA,wBAIF,6BACE,CAAA,2BADF,gCACE,CAAA,yBADF,8BACE,CAAA,uBADF,4BACE,CAAA,yBADF,8BACE,CAAA,sBADF,2BACE,CAAA,oBADF,yBACE,CAAA,2BADF,gCACE,CAAA,yBADF,8BACE,CAAA,oBAIF,yBACE,CAAA,0BADF,+BACE,CAAA,wBADF,6BACE,CAAA,sBADF,2BACE,CAAA,wBADF,6BACE,CAAA,uBADF,4BACE,CAAA,gBAKA,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,gBADF,qBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,kBADF,uBACE,CAAA,mBvC/BJ,UACE,CAAA,WACA,CAAA,aACA,CAAA,gBwCHJ,oBACE,CAAA,iBAEF,qBACE,CAAA,eCPF,yBACE,CAAA,eAEF,yBACE,CAAA,cAEF,wBACE,CAAA,YCPF,yBACE,CAAA,aCEF,2BACE,CAAA,eCJF,kBACE,CAAA,gBAEF,mBACE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","file":"app.css","sourcesContent":["\n\n\n\n\n","/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.is-unselectable,.tabs,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.breadcrumb,.file,.button,.modal-close,.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless)::after,.select:not(.is-multiple):not(.is-loading)::after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:\" \";display:block;height:.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.tabs:not(:last-child),.pagination:not(:last-child),.message:not(:last-child),.level:not(:last-child),.breadcrumb:not(:last-child),.highlight:not(:last-child),.block:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child),.box:not(:last-child){margin-bottom:1.5rem}.modal-close,.delete{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.modal-close::before,.delete::before,.modal-close::after,.delete::after{background-color:#fff;content:\"\";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.modal-close::before,.delete::before{height:2px;width:50%}.modal-close::after,.delete::after{height:50%;width:2px}.modal-close:hover,.delete:hover,.modal-close:focus,.delete:focus{background-color:rgba(10,10,10,.3)}.modal-close:active,.delete:active{background-color:rgba(10,10,10,.4)}.is-small.modal-close,.is-small.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.modal-close,.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.modal-close,.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:\"\";display:block;height:1em;position:relative;width:1em}.hero-video,.is-overlay,.fd-overlay-fullscreen,.modal-background,.modal,.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{bottom:0;left:0;position:absolute;right:0;top:0}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,.button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,.is-active.button{outline:none}[disabled].pagination-previous,[disabled].pagination-next,[disabled].pagination-link,[disabled].pagination-ellipsis,[disabled].file-cta,[disabled].file-name,.select select[disabled],[disabled].textarea,[disabled].input,[disabled].button,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] .button{cursor:not-allowed}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1em;font-weight:400;line-height:1.5}a{color:#3273dc;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#da1039;font-size:.875em;font-weight:normal;padding:.25em .5em .25em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}.box{background-color:#fff;border-radius:6px;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);color:#4a4a4a;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0 0 1px #3273dc}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#3273dc;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#363636}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent #00d1b2 #00d1b2 !important}.button.is-primary.is-outlined.is-loading:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-outlined.is-loading:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #00d1b2 #00d1b2 !important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#3273dc;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#276cda;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-link:active,.button.is-link.is-active{background-color:#2366d1;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#3273dc;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#3273dc}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3273dc}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;color:#3273dc}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#3273dc;border-color:#3273dc;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #3273dc #3273dc !important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;box-shadow:none;color:#3273dc}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3273dc #3273dc !important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eef3fc;color:#2160c4}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e3ecfa;border-color:transparent;color:#2160c4}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#d8e4f8;border-color:transparent;color:#2160c4}.button.is-info{background-color:#3298dc;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#2793da;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.button.is-info:active,.button.is-info.is-active{background-color:#238cd1;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3298dc;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3298dc}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3298dc}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;color:#3298dc}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3298dc;border-color:#3298dc;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3298dc #3298dc !important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3298dc;box-shadow:none;color:#3298dc}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3298dc}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3298dc #3298dc !important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e3f1fa;border-color:transparent;color:#1d72aa}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#d8ebf8;border-color:transparent;color:#1d72aa}.button.is-success{background-color:#48c774;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec46d;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.button.is-success:active,.button.is-success.is-active{background-color:#3abb67;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c774;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c774}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c774}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c774;color:#48c774}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#48c774;border-color:#48c774;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #48c774 #48c774 !important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c774;box-shadow:none;color:#48c774}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#48c774}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #48c774 #48c774 !important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf3;color:#257942}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ec;border-color:transparent;color:#257942}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e4;border-color:transparent;color:#257942}.button.is-warning{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffdd57;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#ffdd57}.button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;color:#ffdd57}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ffdd57 #ffdd57 !important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;box-shadow:none;color:#ffdd57}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ffdd57 #ffdd57 !important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffbeb;color:#947600}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff8de;border-color:transparent;color:#947600}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff6d1;border-color:transparent;color:#947600}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #f14668 #f14668 !important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f14668 #f14668 !important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{border-radius:2px;font-size:.75rem}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent !important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em / 2));top:calc(50% - (1em / 2));position:absolute !important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:290486px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-0.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){border-radius:2px;font-size:.75rem}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1024px){.container{max-width:960px}}@media screen and (max-width: 1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:290486px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:#3273dc;color:#fff}.notification.is-link.is-light{background-color:#eef3fc;color:#2160c4}.notification.is-info{background-color:#3298dc;color:#fff}.notification.is-info.is-light{background-color:#eef6fc;color:#1d72aa}.notification.is-success{background-color:#48c774;color:#fff}.notification.is-success.is-light{background-color:#effaf3;color:#257942}.notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.notification.is-warning.is-light{background-color:#fffbeb;color:#947600}.notification.is-danger{background-color:#f14668;color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right, white 30%, #ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right, whitesmoke 30%, #ededed 30%)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(to right, #363636 30%, #ededed 30%)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(to right, #00d1b2 30%, #ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#3273dc}.progress.is-link::-moz-progress-bar{background-color:#3273dc}.progress.is-link::-ms-fill{background-color:#3273dc}.progress.is-link:indeterminate{background-image:linear-gradient(to right, #3273dc 30%, #ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3298dc}.progress.is-info::-moz-progress-bar{background-color:#3298dc}.progress.is-info::-ms-fill{background-color:#3298dc}.progress.is-info:indeterminate{background-image:linear-gradient(to right, #3298dc 30%, #ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#48c774}.progress.is-success::-moz-progress-bar{background-color:#48c774}.progress.is-success::-ms-fill{background-color:#48c774}.progress.is-success:indeterminate{background-image:linear-gradient(to right, #48c774 30%, #ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffdd57}.progress.is-warning::-moz-progress-bar{background-color:#ffdd57}.progress.is-warning::-ms-fill{background-color:#ffdd57}.progress.is-warning:indeterminate{background-image:linear-gradient(to right, #ffdd57 30%, #ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(to right, #f14668 30%, #ededed 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right, #4a4a4a 30%, #ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#3273dc;border-color:#3273dc;color:#fff}.table td.is-info,.table th.is-info{background-color:#3298dc;border-color:#3298dc;color:#fff}.table td.is-success,.table th.is-success{background-color:#48c774;border-color:#48c774;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.table td.is-danger,.table th.is-danger{background-color:#f14668;border-color:#f14668;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:inherit}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:transparent}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:transparent}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:transparent}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-0.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-0.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#3273dc;color:#fff}.tag:not(body).is-link.is-light{background-color:#eef3fc;color:#2160c4}.tag:not(body).is-info{background-color:#3298dc;color:#fff}.tag:not(body).is-info.is-light{background-color:#eef6fc;color:#1d72aa}.tag:not(body).is-success{background-color:#48c774;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf3;color:#257942}.tag:not(body).is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffbeb;color:#947600}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-0.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-0.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-0.375em;margin-right:-0.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete::before,.tag:not(body).is-delete::after{background-color:currentColor;content:\"\";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete::before{height:1px;width:50%}.tag:not(body).is-delete::after{height:50%;width:1px}.tag:not(body).is-delete:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:290486px}a.tag:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub{font-size:.75em}.title sup,.subtitle sup{font-size:.75em}.title .tag,.subtitle .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title+.highlight{margin-top:-0.75rem}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}.highlight pre{overflow:auto;max-width:100%}.number{align-items:center;background-color:#f5f5f5;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.select select,.textarea,.input{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder{color:rgba(54,54,54,.3)}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder{color:rgba(54,54,54,.3)}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder{color:rgba(54,54,54,.3)}.select select:hover,.textarea:hover,.input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input{border-color:#b5b5b5}.select select:focus,.textarea:focus,.input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,.select select:active,.textarea:active,.input:active,.select select.is-active,.is-active.textarea,.is-active.input{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select select[disabled],[disabled].textarea,[disabled].input,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.select select[disabled]::-moz-placeholder,[disabled].textarea::-moz-placeholder,[disabled].input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-moz-placeholder,[disabled].textarea:-moz-placeholder,[disabled].input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder{color:rgba(122,122,122,.3)}.textarea,.input{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}[readonly].textarea,[readonly].input{box-shadow:none}.is-white.textarea,.is-white.input{border-color:#fff}.is-white.textarea:focus,.is-white.input:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,.is-white.textarea:active,.is-white.input:active,.is-white.is-active.textarea,.is-white.is-active.input{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.is-black.textarea,.is-black.input{border-color:#0a0a0a}.is-black.textarea:focus,.is-black.input:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,.is-black.textarea:active,.is-black.input:active,.is-black.is-active.textarea,.is-black.is-active.input{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.textarea,.is-light.input{border-color:#f5f5f5}.is-light.textarea:focus,.is-light.input:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,.is-light.textarea:active,.is-light.input:active,.is-light.is-active.textarea,.is-light.is-active.input{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.is-dark.textarea,.is-dark.input{border-color:#363636}.is-dark.textarea:focus,.is-dark.input:focus,.is-dark.is-focused.textarea,.is-dark.is-focused.input,.is-dark.textarea:active,.is-dark.input:active,.is-dark.is-active.textarea,.is-dark.is-active.input{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.textarea,.is-primary.input{border-color:#00d1b2}.is-primary.textarea:focus,.is-primary.input:focus,.is-primary.is-focused.textarea,.is-primary.is-focused.input,.is-primary.textarea:active,.is-primary.input:active,.is-primary.is-active.textarea,.is-primary.is-active.input{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.textarea,.is-link.input{border-color:#3273dc}.is-link.textarea:focus,.is-link.input:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,.is-link.textarea:active,.is-link.input:active,.is-link.is-active.textarea,.is-link.is-active.input{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.is-info.textarea,.is-info.input{border-color:#3298dc}.is-info.textarea:focus,.is-info.input:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,.is-info.textarea:active,.is-info.input:active,.is-info.is-active.textarea,.is-info.is-active.input{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.is-success.textarea,.is-success.input{border-color:#48c774}.is-success.textarea:focus,.is-success.input:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,.is-success.textarea:active,.is-success.input:active,.is-success.is-active.textarea,.is-success.is-active.input{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.is-warning.textarea,.is-warning.input{border-color:#ffdd57}.is-warning.textarea:focus,.is-warning.input:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,.is-warning.textarea:active,.is-warning.input:active,.is-warning.is-active.textarea,.is-warning.is-active.input{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.is-danger.textarea,.is-danger.input{border-color:#f14668}.is-danger.textarea:focus,.is-danger.input:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,.is-danger.textarea:active,.is-danger.input:active,.is-danger.is-active.textarea,.is-danger.is-active.input{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.textarea,.is-small.input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input{font-size:1.25rem}.is-large.textarea,.is-large.input{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input{display:block;width:100%}.is-inline.textarea,.is-inline.input{display:inline;width:auto}.input.is-rounded{border-radius:290486px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:#363636}[disabled].radio,[disabled].checkbox,fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#3273dc;right:1.125em;z-index:4}.select.is-rounded select{border-radius:290486px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#363636}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:#3273dc}.select.is-link select{border-color:#3273dc}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#2366d1}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select.is-info:not(:hover)::after{border-color:#3298dc}.select.is-info select{border-color:#3298dc}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#238cd1}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em rgba(50,152,220,.25)}.select.is-success:not(:hover)::after{border-color:#48c774}.select.is-success select{border-color:#48c774}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb67}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em rgba(72,199,116,.25)}.select.is-warning:not(:hover)::after{border-color:#ffdd57}.select.is-warning select{border-color:#ffdd57}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd83d}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.select.is-danger:not(:hover)::after{border-color:#f14668}.select.is-danger select{border-color:#f14668}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#7a7a7a}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:rgba(0,0,0,.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#3273dc;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#276cda;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,115,220,.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#2366d1;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3298dc;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#2793da;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,152,220,.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#238cd1;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c774;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec46d;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,116,.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb67;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,221,87,.25);color:rgba(0,0,0,.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#3273dc}.help.is-info{color:#3298dc}.help.is-success{color:#48c774}.help.is-warning{color:#ffdd57}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute !important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#3273dc;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:\"/\"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:\"→\"}.breadcrumb.has-bullet-separator li+li::before{content:\"•\"}.breadcrumb.has-dot-separator li+li::before{content:\"·\"}.breadcrumb.has-succeeds-separator li+li::before{content:\"≻\"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);color:#4a4a4a;max-width:100%;overflow:hidden;position:relative}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 .125em .25em rgba(10,10,10,.1);display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem 1rem}.card-image{display:block;position:relative}.card-content{background-color:transparent;padding:1.5rem}.card-footer{background-color:transparent;border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#3273dc;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#3273dc;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#00947e}.message.is-link{background-color:#eef3fc}.message.is-link .message-header{background-color:#3273dc;color:#fff}.message.is-link .message-body{border-color:#3273dc;color:#2160c4}.message.is-info{background-color:#eef6fc}.message.is-info .message-header{background-color:#3298dc;color:#fff}.message.is-info .message-body{border-color:#3298dc;color:#1d72aa}.message.is-success{background-color:#effaf3}.message.is-success .message-header{background-color:#48c774;color:#fff}.message.is-success .message-body{border-color:#48c774;color:#257942}.message.is-warning{background-color:#fffbeb}.message.is-warning .message-header{background-color:#ffdd57;color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:#ffdd57;color:#947600}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:#f14668;color:#fff}.message.is-danger .message-body{border-color:#f14668;color:#cc0f35}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,.86)}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1024px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link::after,.navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link::after,.navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width: 1024px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-start .navbar-link::after,.navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,.7)}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-dark .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link::after,.navbar.is-dark .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-primary .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-start .navbar-link::after,.navbar.is-primary .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#3273dc;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-start .navbar-link::after,.navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#3273dc;color:#fff}}.navbar.is-info{background-color:#3298dc;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-start .navbar-link::after,.navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#238cd1;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3298dc;color:#fff}}.navbar.is-success{background-color:#48c774;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-start .navbar-link::after,.navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3abb67;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#48c774;color:#fff}}.navbar.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-burger{color:rgba(0,0,0,.7)}@media screen and (min-width: 1024px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-start .navbar-link::after,.navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffdd57;color:rgba(0,0,0,.7)}}.navbar.is-danger{background-color:#f14668;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-start .navbar-link::after,.navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f14668;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,.05)}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#3273dc}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(0.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#3273dc}.navbar-item.is-tab.is-active{background-color:transparent;border-bottom-color:#3273dc;border-bottom-style:solid;border-bottom-width:3px;color:#3273dc;padding-bottom:calc(0.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#3273dc;margin-top:-0.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width: 1023px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,.1);padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1024px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,.1);display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-0.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-0.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:transparent}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-0.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:290486px}.pagination.is-rounded .pagination-link{border-radius:290486px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#3273dc}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled]{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#3273dc;border-color:#3273dc;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 .5em 1em -0.125em rgba(10,10,10,.1),0 0px 0 1px rgba(10,10,10,.02);font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#00d1b2;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#00d1b2}.panel.is-primary .panel-block.is-active .panel-icon{color:#00d1b2}.panel.is-link .panel-heading{background-color:#3273dc;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#3273dc}.panel.is-link .panel-block.is-active .panel-icon{color:#3273dc}.panel.is-info .panel-heading{background-color:#3298dc;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3298dc}.panel.is-info .panel-block.is-active .panel-icon{color:#3298dc}.panel.is-success .panel-heading{background-color:#48c774;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#48c774}.panel.is-success .panel-block.is-active .panel-icon{color:#48c774}.panel.is-warning .panel-heading{background-color:#ffdd57;color:rgba(0,0,0,.7)}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffdd57}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffdd57}.panel.is-danger .panel-heading{background-color:#f14668;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f14668}.panel.is-danger .panel-block.is-active .panel-icon{color:#f14668}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#3273dc}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#3273dc;color:#363636}.panel-block.is-active .panel-icon{color:#3273dc}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#3273dc;color:#3273dc}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em;padding-right:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent !important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#3273dc;border-color:#3273dc;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.3333333333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.3333333333%}.columns.is-mobile>.column.is-2{flex:none;width:16.6666666667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.6666666667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.3333333333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.3333333333%}.columns.is-mobile>.column.is-5{flex:none;width:41.6666666667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.6666666667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.3333333333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.3333333333%}.columns.is-mobile>.column.is-8{flex:none;width:66.6666666667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.6666666667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.3333333333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.3333333333%}.columns.is-mobile>.column.is-11{flex:none;width:91.6666666667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.6666666667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.3333333333%}.column.is-offset-1-mobile{margin-left:8.3333333333%}.column.is-2-mobile{flex:none;width:16.6666666667%}.column.is-offset-2-mobile{margin-left:16.6666666667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.3333333333%}.column.is-offset-4-mobile{margin-left:33.3333333333%}.column.is-5-mobile{flex:none;width:41.6666666667%}.column.is-offset-5-mobile{margin-left:41.6666666667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.3333333333%}.column.is-offset-7-mobile{margin-left:58.3333333333%}.column.is-8-mobile{flex:none;width:66.6666666667%}.column.is-offset-8-mobile{margin-left:66.6666666667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.3333333333%}.column.is-offset-10-mobile{margin-left:83.3333333333%}.column.is-11-mobile{flex:none;width:91.6666666667%}.column.is-offset-11-mobile{margin-left:91.6666666667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.3333333333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.3333333333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.6666666667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.6666666667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.3333333333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.3333333333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.6666666667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.6666666667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.3333333333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.3333333333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.6666666667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.6666666667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.3333333333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.3333333333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.6666666667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.6666666667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1023px){.column.is-narrow-touch{flex:none}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.3333333333%}.column.is-offset-1-touch{margin-left:8.3333333333%}.column.is-2-touch{flex:none;width:16.6666666667%}.column.is-offset-2-touch{margin-left:16.6666666667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.3333333333%}.column.is-offset-4-touch{margin-left:33.3333333333%}.column.is-5-touch{flex:none;width:41.6666666667%}.column.is-offset-5-touch{margin-left:41.6666666667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.3333333333%}.column.is-offset-7-touch{margin-left:58.3333333333%}.column.is-8-touch{flex:none;width:66.6666666667%}.column.is-offset-8-touch{margin-left:66.6666666667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.3333333333%}.column.is-offset-10-touch{margin-left:83.3333333333%}.column.is-11-touch{flex:none;width:91.6666666667%}.column.is-offset-11-touch{margin-left:91.6666666667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1024px){.column.is-narrow-desktop{flex:none}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.3333333333%}.column.is-offset-1-desktop{margin-left:8.3333333333%}.column.is-2-desktop{flex:none;width:16.6666666667%}.column.is-offset-2-desktop{margin-left:16.6666666667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.3333333333%}.column.is-offset-4-desktop{margin-left:33.3333333333%}.column.is-5-desktop{flex:none;width:41.6666666667%}.column.is-offset-5-desktop{margin-left:41.6666666667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.3333333333%}.column.is-offset-7-desktop{margin-left:58.3333333333%}.column.is-8-desktop{flex:none;width:66.6666666667%}.column.is-offset-8-desktop{margin-left:66.6666666667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.3333333333%}.column.is-offset-10-desktop{margin-left:83.3333333333%}.column.is-11-desktop{flex:none;width:91.6666666667%}.column.is-offset-11-desktop{margin-left:91.6666666667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.3333333333%}.column.is-offset-1-widescreen{margin-left:8.3333333333%}.column.is-2-widescreen{flex:none;width:16.6666666667%}.column.is-offset-2-widescreen{margin-left:16.6666666667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.3333333333%}.column.is-offset-4-widescreen{margin-left:33.3333333333%}.column.is-5-widescreen{flex:none;width:41.6666666667%}.column.is-offset-5-widescreen{margin-left:41.6666666667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.3333333333%}.column.is-offset-7-widescreen{margin-left:58.3333333333%}.column.is-8-widescreen{flex:none;width:66.6666666667%}.column.is-offset-8-widescreen{margin-left:66.6666666667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.3333333333%}.column.is-offset-10-widescreen{margin-left:83.3333333333%}.column.is-11-widescreen{flex:none;width:91.6666666667%}.column.is-offset-11-widescreen{margin-left:91.6666666667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.3333333333%}.column.is-offset-1-fullhd{margin-left:8.3333333333%}.column.is-2-fullhd{flex:none;width:16.6666666667%}.column.is-offset-2-fullhd{margin-left:16.6666666667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.3333333333%}.column.is-offset-4-fullhd{margin-left:33.3333333333%}.column.is-5-fullhd{flex:none;width:41.6666666667%}.column.is-offset-5-fullhd{margin-left:41.6666666667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.3333333333%}.column.is-offset-7-fullhd{margin-left:58.3333333333%}.column.is-8-fullhd{flex:none;width:66.6666666667%}.column.is-offset-8-fullhd{margin-left:66.6666666667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.3333333333%}.column.is-offset-10-fullhd{margin-left:83.3333333333%}.column.is-11-fullhd{flex:none;width:91.6666666667%}.column.is-offset-11-fullhd{margin-left:91.6666666667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-0.75rem;margin-right:-0.75rem;margin-top:-0.75rem}.columns:last-child{margin-bottom:-0.75rem}.columns:not(:last-child){margin-bottom:calc(1.5rem - 0.75rem)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0 !important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1024px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: 0.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: 0.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: 0.25rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-1-tablet-only{--columnGap: 0.25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-1-touch{--columnGap: 0.25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-1-desktop{--columnGap: 0.25rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: 0.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: 0.25rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: 0.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: 0.25rem}}.columns.is-variable.is-2{--columnGap: 0.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: 0.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: 0.5rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-2-tablet-only{--columnGap: 0.5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-2-touch{--columnGap: 0.5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-2-desktop{--columnGap: 0.5rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: 0.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: 0.5rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: 0.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: 0.5rem}}.columns.is-variable.is-3{--columnGap: 0.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: 0.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: 0.75rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-3-tablet-only{--columnGap: 0.75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-3-touch{--columnGap: 0.75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-3-desktop{--columnGap: 0.75rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: 0.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: 0.75rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: 0.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: 0.75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px)and (max-width: 1023px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1024px)and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px)and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}.tile.is-ancestor{margin-left:-0.75rem;margin-right:-0.75rem;margin-top:-0.75rem}.tile.is-ancestor:last-child{margin-bottom:-0.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0 !important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.3333333333%}.tile.is-2{flex:none;width:16.6666666667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.3333333333%}.tile.is-5{flex:none;width:41.6666666667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.3333333333%}.tile.is-8{flex:none;width:66.6666666667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.3333333333%}.tile.is-11{flex:none;width:91.6666666667%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363636 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c !important}.has-background-dark{background-color:#363636 !important}.has-text-primary{color:#00d1b2 !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#009e86 !important}.has-background-primary{background-color:#00d1b2 !important}.has-text-primary-light{color:#ebfffc !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#b8fff4 !important}.has-background-primary-light{background-color:#ebfffc !important}.has-text-primary-dark{color:#00947e !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#00c7a9 !important}.has-background-primary-dark{background-color:#00947e !important}.has-text-link{color:#3273dc !important}a.has-text-link:hover,a.has-text-link:focus{color:#205bbc !important}.has-background-link{background-color:#3273dc !important}.has-text-link-light{color:#eef3fc !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c2d5f5 !important}.has-background-link-light{background-color:#eef3fc !important}.has-text-link-dark{color:#2160c4 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#3b79de !important}.has-background-link-dark{background-color:#2160c4 !important}.has-text-info{color:#3298dc !important}a.has-text-info:hover,a.has-text-info:focus{color:#207dbc !important}.has-background-info{background-color:#3298dc !important}.has-text-info-light{color:#eef6fc !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c2e0f5 !important}.has-background-info-light{background-color:#eef6fc !important}.has-text-info-dark{color:#1d72aa !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#248fd6 !important}.has-background-info-dark{background-color:#1d72aa !important}.has-text-success{color:#48c774 !important}a.has-text-success:hover,a.has-text-success:focus{color:#34a85c !important}.has-background-success{background-color:#48c774 !important}.has-text-success-light{color:#effaf3 !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c8eed6 !important}.has-background-success-light{background-color:#effaf3 !important}.has-text-success-dark{color:#257942 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#31a058 !important}.has-background-success-dark{background-color:#257942 !important}.has-text-warning{color:#ffdd57 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd324 !important}.has-background-warning{background-color:#ffdd57 !important}.has-text-warning-light{color:#fffbeb !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fff1b8 !important}.has-background-warning-light{background-color:#fffbeb !important}.has-text-warning-dark{color:#947600 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#c79f00 !important}.has-background-warning-dark{background-color:#947600 !important}.has-text-danger{color:#f14668 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee1742 !important}.has-background-danger{background-color:#f14668 !important}.has-text-danger-light{color:#feecf0 !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabdc9 !important}.has-background-danger-light{background-color:#feecf0 !important}.has-text-danger-dark{color:#cc0f35 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#ee2049 !important}.has-background-danger-dark{background-color:#cc0f35 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363636 !important}.has-background-grey-darker{background-color:#363636 !important}.has-text-grey-dark{color:#4a4a4a !important}.has-background-grey-dark{background-color:#4a4a4a !important}.has-text-grey{color:#7a7a7a !important}.has-background-grey{background-color:#7a7a7a !important}.has-text-grey-light{color:#b5b5b5 !important}.has-background-grey-light{background-color:#b5b5b5 !important}.has-text-grey-lighter{color:#dbdbdb !important}.has-background-grey-lighter{background-color:#dbdbdb !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:\" \";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin: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}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.p-0{padding: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}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1023px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1024px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1023px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1024px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1023px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1024px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1023px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1024px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1023px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1024px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif !important}.is-family-secondary{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif !important}.is-family-sans-serif{font-family:BlinkMacSystemFont,-apple-system,\"Segoe UI\",\"Roboto\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Fira Sans\",\"Droid Sans\",\"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif !important}.is-family-monospace{font-family:monospace !important}.is-family-code{font-family:monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1023px){.is-block-touch{display:block !important}}@media screen and (min-width: 1024px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1023px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1024px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1023px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1024px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1023px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1024px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1023px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1024px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1023px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1024px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px)and (max-width: 1023px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1023px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1024px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1024px)and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px)and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1023px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,.7)}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,.7)}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:rgba(0,0,0,.7)}.hero.is-light .subtitle{color:rgba(0,0,0,.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width: 1023px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(0,0,0,.7)}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,.7)}.hero.is-light .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:rgba(255,255,255,.9)}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:rgba(255,255,255,.7)}.hero.is-dark a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:rgba(255,255,255,.9)}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:rgba(255,255,255,.7)}.hero.is-primary a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary .navbar-link.is-active{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%)}}.hero.is-link{background-color:#3273dc;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-link .navbar-menu{background-color:#3273dc}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,.7)}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#2366d1;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3273dc}.hero.is-link.is-bold{background-image:linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%)}}.hero.is-info{background-color:#3298dc;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-info .navbar-menu{background-color:#3298dc}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,.7)}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#238cd1;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3298dc}.hero.is-info.is-bold{background-image:linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%)}}.hero.is-success{background-color:#48c774;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-success .navbar-menu{background-color:#48c774}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,.7)}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#3abb67;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#48c774}.hero.is-success.is-bold{background-image:linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%)}}.hero.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width: 1023px){.hero.is-warning .navbar-menu{background-color:#ffdd57}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,.7)}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#ffd83d;color:rgba(0,0,0,.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#ffdd57}.hero.is-warning.is-bold{background-image:linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%)}}.hero.is-danger{background-color:#f14668;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-danger .navbar-menu{background-color:#f14668}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,.7)}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#ef2e55;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f14668}.hero.is-danger.is-bold{background-image:linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%)}}.hero.is-small .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding:9rem 1.5rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding:18rem 1.5rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}.section{padding:3rem 1.5rem}@media screen and (min-width: 1024px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}@-webkit-keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.switch[type=checkbox]{outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:absolute;opacity:0}.switch[type=checkbox]:focus+label::after,.switch[type=checkbox]:focus+label::before,.switch[type=checkbox]:focus+label:after,.switch[type=checkbox]:focus+label:before{outline:1px dotted #b5b5b5}.switch[type=checkbox][disabled]{cursor:not-allowed}.switch[type=checkbox][disabled]+label{opacity:.5}.switch[type=checkbox][disabled]+label::before,.switch[type=checkbox][disabled]+label:before{opacity:.5}.switch[type=checkbox][disabled]+label::after,.switch[type=checkbox][disabled]+label:after{opacity:.5}.switch[type=checkbox][disabled]+label:hover{cursor:not-allowed}.switch[type=checkbox]+label{position:relative;display:initial;font-size:1rem;line-height:initial;padding-left:3.5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox]+label::before,.switch[type=checkbox]+label:before{position:absolute;display:block;top:0;left:0;width:3rem;height:1.5rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox]+label::after,.switch[type=checkbox]+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1rem;height:1rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-rtl+label{padding-left:0;padding-right:3.5rem}.switch[type=checkbox].is-rtl+label::before,.switch[type=checkbox].is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-rtl+label::after,.switch[type=checkbox].is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox]:checked+label::before,.switch[type=checkbox]:checked+label:before{background:#00d1b2}.switch[type=checkbox]:checked+label::after{left:1.625rem}.switch[type=checkbox]:checked.is-rtl+label::after,.switch[type=checkbox]:checked.is-rtl+label:after{left:auto;right:1.625rem}.switch[type=checkbox].is-outlined+label::before,.switch[type=checkbox].is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-outlined+label::after,.switch[type=checkbox].is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-outlined:checked+label::before,.switch[type=checkbox].is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-outlined:checked+label::after,.switch[type=checkbox].is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-thin+label::before,.switch[type=checkbox].is-thin+label:before{top:.54545rem;height:.375rem}.switch[type=checkbox].is-thin+label::after,.switch[type=checkbox].is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-rounded+label::before,.switch[type=checkbox].is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-rounded+label::after,.switch[type=checkbox].is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-small+label{position:relative;display:initial;font-size:.75rem;line-height:initial;padding-left:2.75rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-small+label::before,.switch[type=checkbox].is-small+label:before{position:absolute;display:block;top:0;left:0;width:2.25rem;height:1.125rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox].is-small+label::after,.switch[type=checkbox].is-small+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:.625rem;height:.625rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-small.is-rtl+label{padding-left:0;padding-right:2.75rem}.switch[type=checkbox].is-small.is-rtl+label::before,.switch[type=checkbox].is-small.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-small.is-rtl+label::after,.switch[type=checkbox].is-small.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-small:checked+label::before,.switch[type=checkbox].is-small:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-small:checked+label::after{left:1.25rem}.switch[type=checkbox].is-small:checked.is-rtl+label::after,.switch[type=checkbox].is-small:checked.is-rtl+label:after{left:auto;right:1.25rem}.switch[type=checkbox].is-small.is-outlined+label::before,.switch[type=checkbox].is-small.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-small.is-outlined+label::after,.switch[type=checkbox].is-small.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-small.is-outlined:checked+label::before,.switch[type=checkbox].is-small.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-small.is-outlined:checked+label::after,.switch[type=checkbox].is-small.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-small.is-thin+label::before,.switch[type=checkbox].is-small.is-thin+label:before{top:.40909rem;height:.28125rem}.switch[type=checkbox].is-small.is-thin+label::after,.switch[type=checkbox].is-small.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-small.is-rounded+label::before,.switch[type=checkbox].is-small.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-small.is-rounded+label::after,.switch[type=checkbox].is-small.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-medium+label{position:relative;display:initial;font-size:1.25rem;line-height:initial;padding-left:4.25rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-medium+label::before,.switch[type=checkbox].is-medium+label:before{position:absolute;display:block;top:0;left:0;width:3.75rem;height:1.875rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox].is-medium+label::after,.switch[type=checkbox].is-medium+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.375rem;height:1.375rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-medium.is-rtl+label{padding-left:0;padding-right:4.25rem}.switch[type=checkbox].is-medium.is-rtl+label::before,.switch[type=checkbox].is-medium.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-medium.is-rtl+label::after,.switch[type=checkbox].is-medium.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-medium:checked+label::before,.switch[type=checkbox].is-medium:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-medium:checked+label::after{left:2rem}.switch[type=checkbox].is-medium:checked.is-rtl+label::after,.switch[type=checkbox].is-medium:checked.is-rtl+label:after{left:auto;right:2rem}.switch[type=checkbox].is-medium.is-outlined+label::before,.switch[type=checkbox].is-medium.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined+label::after,.switch[type=checkbox].is-medium.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined:checked+label::before,.switch[type=checkbox].is-medium.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-medium.is-outlined:checked+label::after,.switch[type=checkbox].is-medium.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-medium.is-thin+label::before,.switch[type=checkbox].is-medium.is-thin+label:before{top:.68182rem;height:.46875rem}.switch[type=checkbox].is-medium.is-thin+label::after,.switch[type=checkbox].is-medium.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-medium.is-rounded+label::before,.switch[type=checkbox].is-medium.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-medium.is-rounded+label::after,.switch[type=checkbox].is-medium.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-large+label{position:relative;display:initial;font-size:1.5rem;line-height:initial;padding-left:5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-large+label::before,.switch[type=checkbox].is-large+label:before{position:absolute;display:block;top:0;left:0;width:4.5rem;height:2.25rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:\"\"}.switch[type=checkbox].is-large+label::after,.switch[type=checkbox].is-large+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.75rem;height:1.75rem;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:\"\"}.switch[type=checkbox].is-large.is-rtl+label{padding-left:0;padding-right:5rem}.switch[type=checkbox].is-large.is-rtl+label::before,.switch[type=checkbox].is-large.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-large.is-rtl+label::after,.switch[type=checkbox].is-large.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-large:checked+label::before,.switch[type=checkbox].is-large:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-large:checked+label::after{left:2.375rem}.switch[type=checkbox].is-large:checked.is-rtl+label::after,.switch[type=checkbox].is-large:checked.is-rtl+label:after{left:auto;right:2.375rem}.switch[type=checkbox].is-large.is-outlined+label::before,.switch[type=checkbox].is-large.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-large.is-outlined+label::after,.switch[type=checkbox].is-large.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-large.is-outlined:checked+label::before,.switch[type=checkbox].is-large.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-large.is-outlined:checked+label::after,.switch[type=checkbox].is-large.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-large.is-thin+label::before,.switch[type=checkbox].is-large.is-thin+label:before{top:.81818rem;height:.5625rem}.switch[type=checkbox].is-large.is-thin+label::after,.switch[type=checkbox].is-large.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-large.is-rounded+label::before,.switch[type=checkbox].is-large.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-large.is-rounded+label::after,.switch[type=checkbox].is-large.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-white:checked+label::before,.switch[type=checkbox].is-white:checked+label:before{background:#fff}.switch[type=checkbox].is-white.is-outlined:checked+label::before,.switch[type=checkbox].is-white.is-outlined:checked+label:before{background-color:transparent;border-color:#fff !important}.switch[type=checkbox].is-white.is-outlined:checked+label::after,.switch[type=checkbox].is-white.is-outlined:checked+label:after{background:#fff}.switch[type=checkbox].is-white.is-thin.is-outlined+label::after,.switch[type=checkbox].is-white.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-white+label::before,.switch[type=checkbox].is-unchecked-white+label:before{background:#fff}.switch[type=checkbox].is-unchecked-white.is-outlined+label::before,.switch[type=checkbox].is-unchecked-white.is-outlined+label:before{background-color:transparent;border-color:#fff !important}.switch[type=checkbox].is-unchecked-white.is-outlined+label::after,.switch[type=checkbox].is-unchecked-white.is-outlined+label:after{background:#fff}.switch[type=checkbox].is-black:checked+label::before,.switch[type=checkbox].is-black:checked+label:before{background:#0a0a0a}.switch[type=checkbox].is-black.is-outlined:checked+label::before,.switch[type=checkbox].is-black.is-outlined:checked+label:before{background-color:transparent;border-color:#0a0a0a !important}.switch[type=checkbox].is-black.is-outlined:checked+label::after,.switch[type=checkbox].is-black.is-outlined:checked+label:after{background:#0a0a0a}.switch[type=checkbox].is-black.is-thin.is-outlined+label::after,.switch[type=checkbox].is-black.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-black+label::before,.switch[type=checkbox].is-unchecked-black+label:before{background:#0a0a0a}.switch[type=checkbox].is-unchecked-black.is-outlined+label::before,.switch[type=checkbox].is-unchecked-black.is-outlined+label:before{background-color:transparent;border-color:#0a0a0a !important}.switch[type=checkbox].is-unchecked-black.is-outlined+label::after,.switch[type=checkbox].is-unchecked-black.is-outlined+label:after{background:#0a0a0a}.switch[type=checkbox].is-light:checked+label::before,.switch[type=checkbox].is-light:checked+label:before{background:#f5f5f5}.switch[type=checkbox].is-light.is-outlined:checked+label::before,.switch[type=checkbox].is-light.is-outlined:checked+label:before{background-color:transparent;border-color:#f5f5f5 !important}.switch[type=checkbox].is-light.is-outlined:checked+label::after,.switch[type=checkbox].is-light.is-outlined:checked+label:after{background:#f5f5f5}.switch[type=checkbox].is-light.is-thin.is-outlined+label::after,.switch[type=checkbox].is-light.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-light+label::before,.switch[type=checkbox].is-unchecked-light+label:before{background:#f5f5f5}.switch[type=checkbox].is-unchecked-light.is-outlined+label::before,.switch[type=checkbox].is-unchecked-light.is-outlined+label:before{background-color:transparent;border-color:#f5f5f5 !important}.switch[type=checkbox].is-unchecked-light.is-outlined+label::after,.switch[type=checkbox].is-unchecked-light.is-outlined+label:after{background:#f5f5f5}.switch[type=checkbox].is-dark:checked+label::before,.switch[type=checkbox].is-dark:checked+label:before{background:#363636}.switch[type=checkbox].is-dark.is-outlined:checked+label::before,.switch[type=checkbox].is-dark.is-outlined:checked+label:before{background-color:transparent;border-color:#363636 !important}.switch[type=checkbox].is-dark.is-outlined:checked+label::after,.switch[type=checkbox].is-dark.is-outlined:checked+label:after{background:#363636}.switch[type=checkbox].is-dark.is-thin.is-outlined+label::after,.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-dark+label::before,.switch[type=checkbox].is-unchecked-dark+label:before{background:#363636}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::before,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before{background-color:transparent;border-color:#363636 !important}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::after,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after{background:#363636}.switch[type=checkbox].is-primary:checked+label::before,.switch[type=checkbox].is-primary:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-primary.is-outlined:checked+label::before,.switch[type=checkbox].is-primary.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2 !important}.switch[type=checkbox].is-primary.is-outlined:checked+label::after,.switch[type=checkbox].is-primary.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-primary.is-thin.is-outlined+label::after,.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-primary+label::before,.switch[type=checkbox].is-unchecked-primary+label:before{background:#00d1b2}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::before,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before{background-color:transparent;border-color:#00d1b2 !important}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::after,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after{background:#00d1b2}.switch[type=checkbox].is-link:checked+label::before,.switch[type=checkbox].is-link:checked+label:before{background:#3273dc}.switch[type=checkbox].is-link.is-outlined:checked+label::before,.switch[type=checkbox].is-link.is-outlined:checked+label:before{background-color:transparent;border-color:#3273dc !important}.switch[type=checkbox].is-link.is-outlined:checked+label::after,.switch[type=checkbox].is-link.is-outlined:checked+label:after{background:#3273dc}.switch[type=checkbox].is-link.is-thin.is-outlined+label::after,.switch[type=checkbox].is-link.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-link+label::before,.switch[type=checkbox].is-unchecked-link+label:before{background:#3273dc}.switch[type=checkbox].is-unchecked-link.is-outlined+label::before,.switch[type=checkbox].is-unchecked-link.is-outlined+label:before{background-color:transparent;border-color:#3273dc !important}.switch[type=checkbox].is-unchecked-link.is-outlined+label::after,.switch[type=checkbox].is-unchecked-link.is-outlined+label:after{background:#3273dc}.switch[type=checkbox].is-info:checked+label::before,.switch[type=checkbox].is-info:checked+label:before{background:#209cee}.switch[type=checkbox].is-info.is-outlined:checked+label::before,.switch[type=checkbox].is-info.is-outlined:checked+label:before{background-color:transparent;border-color:#209cee !important}.switch[type=checkbox].is-info.is-outlined:checked+label::after,.switch[type=checkbox].is-info.is-outlined:checked+label:after{background:#209cee}.switch[type=checkbox].is-info.is-thin.is-outlined+label::after,.switch[type=checkbox].is-info.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-info+label::before,.switch[type=checkbox].is-unchecked-info+label:before{background:#209cee}.switch[type=checkbox].is-unchecked-info.is-outlined+label::before,.switch[type=checkbox].is-unchecked-info.is-outlined+label:before{background-color:transparent;border-color:#209cee !important}.switch[type=checkbox].is-unchecked-info.is-outlined+label::after,.switch[type=checkbox].is-unchecked-info.is-outlined+label:after{background:#209cee}.switch[type=checkbox].is-success:checked+label::before,.switch[type=checkbox].is-success:checked+label:before{background:#23d160}.switch[type=checkbox].is-success.is-outlined:checked+label::before,.switch[type=checkbox].is-success.is-outlined:checked+label:before{background-color:transparent;border-color:#23d160 !important}.switch[type=checkbox].is-success.is-outlined:checked+label::after,.switch[type=checkbox].is-success.is-outlined:checked+label:after{background:#23d160}.switch[type=checkbox].is-success.is-thin.is-outlined+label::after,.switch[type=checkbox].is-success.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-success+label::before,.switch[type=checkbox].is-unchecked-success+label:before{background:#23d160}.switch[type=checkbox].is-unchecked-success.is-outlined+label::before,.switch[type=checkbox].is-unchecked-success.is-outlined+label:before{background-color:transparent;border-color:#23d160 !important}.switch[type=checkbox].is-unchecked-success.is-outlined+label::after,.switch[type=checkbox].is-unchecked-success.is-outlined+label:after{background:#23d160}.switch[type=checkbox].is-warning:checked+label::before,.switch[type=checkbox].is-warning:checked+label:before{background:#ffdd57}.switch[type=checkbox].is-warning.is-outlined:checked+label::before,.switch[type=checkbox].is-warning.is-outlined:checked+label:before{background-color:transparent;border-color:#ffdd57 !important}.switch[type=checkbox].is-warning.is-outlined:checked+label::after,.switch[type=checkbox].is-warning.is-outlined:checked+label:after{background:#ffdd57}.switch[type=checkbox].is-warning.is-thin.is-outlined+label::after,.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-warning+label::before,.switch[type=checkbox].is-unchecked-warning+label:before{background:#ffdd57}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::before,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before{background-color:transparent;border-color:#ffdd57 !important}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::after,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after{background:#ffdd57}.switch[type=checkbox].is-danger:checked+label::before,.switch[type=checkbox].is-danger:checked+label:before{background:#ff3860}.switch[type=checkbox].is-danger.is-outlined:checked+label::before,.switch[type=checkbox].is-danger.is-outlined:checked+label:before{background-color:transparent;border-color:#ff3860 !important}.switch[type=checkbox].is-danger.is-outlined:checked+label::after,.switch[type=checkbox].is-danger.is-outlined:checked+label:after{background:#ff3860}.switch[type=checkbox].is-danger.is-thin.is-outlined+label::after,.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-danger+label::before,.switch[type=checkbox].is-unchecked-danger+label:before{background:#ff3860}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::before,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before{background-color:transparent;border-color:#ff3860 !important}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::after,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after{background:#ff3860}.slider{min-width:250px;width:100%}.range-slider-fill{background-color:#363636}.track-progress{margin:0;padding:0;min-width:250px;width:100%}.track-progress .range-slider-knob{visibility:hidden}.track-progress .range-slider-fill{background-color:#3273dc;height:2px}.track-progress .range-slider-rail{background-color:#fff}.media.with-progress h2:last-of-type{margin-bottom:6px}.media.with-progress{margin-top:0px}a.navbar-item{outline:0;line-height:1.5;padding:.5rem 1rem}.fd-expanded{flex-grow:1;flex-shrink:1}.fd-margin-left-auto{margin-left:auto}.fd-has-action{cursor:pointer}.fd-is-movable{cursor:move}.fd-has-margin-top{margin-top:24px}.fd-has-margin-bottom{margin-bottom:24px}.fd-remove-padding-bottom{padding-bottom:0}.fd-has-padding-left-right{padding-left:24px;padding-right:24px}.fd-is-square .button{height:27px;min-width:27px;padding-left:.25rem;padding-right:.25rem}.fd-is-text-clipped{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.fd-tabs-section{padding-bottom:3px;padding-top:3px;background:#fff;top:3.25rem;z-index:20;position:fixed;width:100%}section.fd-tabs-section+section.fd-content{margin-top:24px}section.hero+section.fd-content{padding-top:0}.fd-progress-bar{top:52px !important}.fd-has-shadow{box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.fd-content-with-option{min-height:calc(100vh - 3.25rem - 3.25rem - 5rem)}.fd-is-fullheight{height:calc(100vh - 3.25rem - 3.25rem);display:flex;flex-direction:column;justify-content:center}.fd-is-fullheight .fd-is-expanded{max-height:calc(100vh - 25rem);padding:1.5rem;overflow:hidden;flex-grow:1;flex-shrink:1;display:flex}.fd-cover-image{display:flex;flex-grow:1;flex-shrink:1;min-width:0;min-height:0;overflow:hidden;padding:10px}.fd-cover-image img{object-fit:contain;object-position:center bottom;filter:drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.3)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));flex-grow:1;flex-shrink:1;height:unset;width:unset;max-width:unset;max-height:unset;min-width:0;min-height:0;overflow:hidden}.sortable-chosen .media-right{visibility:hidden}.sortable-ghost h1,.sortable-ghost h2{color:#ff3860 !important}.media:first-of-type{padding-top:17px;margin-top:16px}.fade-enter-active,.fade-leave-active{transition:opacity .4s}.fade-enter,.fade-leave-to{opacity:0}.seek-slider{min-width:250px;max-width:500px;width:100% !important}.seek-slider .range-slider-fill{background-color:#00d1b2;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.seek-slider .range-slider-knob{width:10px;height:10px;background-color:#00d1b2;border-color:#00d1b2}.title:not(.is-spaced)+.subtitle{margin-top:-1.3rem !important}.title:not(.is-spaced)+.subtitle+.subtitle{margin-top:-1.3rem !important}.fd-modal-card{overflow:visible}.fd-modal-card .card-content{max-height:calc(100vh - 200px);overflow:auto}.fd-modal-card .card{margin-left:16px;margin-right:16px}.dropdown-item a{display:block}.dropdown-item:hover{background-color:#f5f5f5}.navbar-item .fd-navbar-item-level2{padding-left:1.5rem}hr.fd-navbar-divider{margin:12px 0}@media only screen and (min-width: 1024px){.navbar-dropdown{max-height:calc(100vh - 3.25rem - 3.25rem - 2rem);overflow:auto}}.fd-bottom-navbar .navbar-menu{max-height:calc(100vh - 3.25rem - 3.25rem - 1rem);overflow:scroll}@media screen and (max-width: 768px){.buttons.fd-is-centered-mobile{justify-content:center}.buttons.fd-is-centered-mobile:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}}.column.fd-has-cover{max-height:150px;max-width:150px}@media screen and (max-width: 768px){.column.fd-has-cover{margin:auto}}@media screen and (min-width: 769px){.column.fd-has-cover{margin:auto 0 auto auto}}.fd-overlay-fullscreen{z-index:25;background-color:rgba(10,10,10,.2);position:fixed}.hero-body{padding:1.5rem !important}","@charset \"utf-8\"\n/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */\n@import \"sass/utilities/_all\"\n@import \"sass/base/_all\"\n@import \"sass/elements/_all\"\n@import \"sass/form/_all\"\n@import \"sass/components/_all\"\n@import \"sass/grid/_all\"\n@import \"sass/helpers/_all\"\n@import \"sass/layout/_all\"\n","@keyframes spinAround\n from\n transform: rotate(0deg)\n to\n transform: rotate(359deg)\n","@import \"initial-variables\"\n\n=clearfix\n &::after\n clear: both\n content: \" \"\n display: table\n\n=center($width, $height: 0)\n position: absolute\n @if $height != 0\n left: calc(50% - (#{$width} / 2))\n top: calc(50% - (#{$height} / 2))\n @else\n left: calc(50% - (#{$width} / 2))\n top: calc(50% - (#{$width} / 2))\n\n=fa($size, $dimensions)\n display: inline-block\n font-size: $size\n height: $dimensions\n line-height: $dimensions\n text-align: center\n vertical-align: top\n width: $dimensions\n\n=hamburger($dimensions)\n cursor: pointer\n display: block\n height: $dimensions\n position: relative\n width: $dimensions\n span\n background-color: currentColor\n display: block\n height: 1px\n left: calc(50% - 8px)\n position: absolute\n transform-origin: center\n transition-duration: $speed\n transition-property: background-color, opacity, transform\n transition-timing-function: $easing\n width: 16px\n &:nth-child(1)\n top: calc(50% - 6px)\n &:nth-child(2)\n top: calc(50% - 1px)\n &:nth-child(3)\n top: calc(50% + 4px)\n &:hover\n background-color: bulmaRgba(black, 0.05)\n // Modifers\n &.is-active\n span\n &:nth-child(1)\n transform: translateY(5px) rotate(45deg)\n &:nth-child(2)\n opacity: 0\n &:nth-child(3)\n transform: translateY(-5px) rotate(-45deg)\n\n=overflow-touch\n -webkit-overflow-scrolling: touch\n\n=placeholder\n $placeholders: ':-moz' ':-webkit-input' '-moz' '-ms-input'\n @each $placeholder in $placeholders\n &:#{$placeholder}-placeholder\n @content\n\n// Responsiveness\n\n=from($device)\n @media screen and (min-width: $device)\n @content\n\n=until($device)\n @media screen and (max-width: $device - 1px)\n @content\n\n=mobile\n @media screen and (max-width: $tablet - 1px)\n @content\n\n=tablet\n @media screen and (min-width: $tablet), print\n @content\n\n=tablet-only\n @media screen and (min-width: $tablet) and (max-width: $desktop - 1px)\n @content\n\n=touch\n @media screen and (max-width: $desktop - 1px)\n @content\n\n=desktop\n @media screen and (min-width: $desktop)\n @content\n\n=desktop-only\n @if $widescreen-enabled\n @media screen and (min-width: $desktop) and (max-width: $widescreen - 1px)\n @content\n\n=until-widescreen\n @if $widescreen-enabled\n @media screen and (max-width: $widescreen - 1px)\n @content\n\n=widescreen\n @if $widescreen-enabled\n @media screen and (min-width: $widescreen)\n @content\n\n=widescreen-only\n @if $widescreen-enabled and $fullhd-enabled\n @media screen and (min-width: $widescreen) and (max-width: $fullhd - 1px)\n @content\n\n=until-fullhd\n @if $fullhd-enabled\n @media screen and (max-width: $fullhd - 1px)\n @content\n\n=fullhd\n @if $fullhd-enabled\n @media screen and (min-width: $fullhd)\n @content\n\n=ltr\n @if not $rtl\n @content\n\n=rtl\n @if $rtl\n @content\n\n=ltr-property($property, $spacing, $right: true)\n $normal: if($right, \"right\", \"left\")\n $opposite: if($right, \"left\", \"right\")\n @if $rtl\n #{$property}-#{$opposite}: $spacing\n @else\n #{$property}-#{$normal}: $spacing\n\n=ltr-position($spacing, $right: true)\n $normal: if($right, \"right\", \"left\")\n $opposite: if($right, \"left\", \"right\")\n @if $rtl\n #{$opposite}: $spacing\n @else\n #{$normal}: $spacing\n\n// Placeholders\n\n=unselectable\n -webkit-touch-callout: none\n -webkit-user-select: none\n -moz-user-select: none\n -ms-user-select: none\n user-select: none\n\n%unselectable\n +unselectable\n\n=arrow($color: transparent)\n border: 3px solid $color\n border-radius: 2px\n border-right: 0\n border-top: 0\n content: \" \"\n display: block\n height: 0.625em\n margin-top: -0.4375em\n pointer-events: none\n position: absolute\n top: 50%\n transform: rotate(-45deg)\n transform-origin: center\n width: 0.625em\n\n%arrow\n +arrow\n\n=block($spacing: $block-spacing)\n &:not(:last-child)\n margin-bottom: $spacing\n\n%block\n +block\n\n=delete\n @extend %unselectable\n -moz-appearance: none\n -webkit-appearance: none\n background-color: bulmaRgba($scheme-invert, 0.2)\n border: none\n border-radius: $radius-rounded\n cursor: pointer\n pointer-events: auto\n display: inline-block\n flex-grow: 0\n flex-shrink: 0\n font-size: 0\n height: 20px\n max-height: 20px\n max-width: 20px\n min-height: 20px\n min-width: 20px\n outline: none\n position: relative\n vertical-align: top\n width: 20px\n &::before,\n &::after\n background-color: $scheme-main\n content: \"\"\n display: block\n left: 50%\n position: absolute\n top: 50%\n transform: translateX(-50%) translateY(-50%) rotate(45deg)\n transform-origin: center center\n &::before\n height: 2px\n width: 50%\n &::after\n height: 50%\n width: 2px\n &:hover,\n &:focus\n background-color: bulmaRgba($scheme-invert, 0.3)\n &:active\n background-color: bulmaRgba($scheme-invert, 0.4)\n // Sizes\n &.is-small\n height: 16px\n max-height: 16px\n max-width: 16px\n min-height: 16px\n min-width: 16px\n width: 16px\n &.is-medium\n height: 24px\n max-height: 24px\n max-width: 24px\n min-height: 24px\n min-width: 24px\n width: 24px\n &.is-large\n height: 32px\n max-height: 32px\n max-width: 32px\n min-height: 32px\n min-width: 32px\n width: 32px\n\n%delete\n +delete\n\n=loader\n animation: spinAround 500ms infinite linear\n border: 2px solid $grey-lighter\n border-radius: $radius-rounded\n border-right-color: transparent\n border-top-color: transparent\n content: \"\"\n display: block\n height: 1em\n position: relative\n width: 1em\n\n%loader\n +loader\n\n=overlay($offset: 0)\n bottom: $offset\n left: $offset\n position: absolute\n right: $offset\n top: $offset\n\n%overlay\n +overlay\n","// Colors\n\n$black: hsl(0, 0%, 4%) !default\n$black-bis: hsl(0, 0%, 7%) !default\n$black-ter: hsl(0, 0%, 14%) !default\n\n$grey-darker: hsl(0, 0%, 21%) !default\n$grey-dark: hsl(0, 0%, 29%) !default\n$grey: hsl(0, 0%, 48%) !default\n$grey-light: hsl(0, 0%, 71%) !default\n$grey-lighter: hsl(0, 0%, 86%) !default\n$grey-lightest: hsl(0, 0%, 93%) !default\n\n$white-ter: hsl(0, 0%, 96%) !default\n$white-bis: hsl(0, 0%, 98%) !default\n$white: hsl(0, 0%, 100%) !default\n\n$orange: hsl(14, 100%, 53%) !default\n$yellow: hsl(48, 100%, 67%) !default\n$green: hsl(141, 53%, 53%) !default\n$turquoise: hsl(171, 100%, 41%) !default\n$cyan: hsl(204, 71%, 53%) !default\n$blue: hsl(217, 71%, 53%) !default\n$purple: hsl(271, 100%, 71%) !default\n$red: hsl(348, 86%, 61%) !default\n\n// Typography\n\n$family-sans-serif: BlinkMacSystemFont, -apple-system, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", \"Helvetica\", \"Arial\", sans-serif !default\n$family-monospace: monospace !default\n$render-mode: optimizeLegibility !default\n\n$size-1: 3rem !default\n$size-2: 2.5rem !default\n$size-3: 2rem !default\n$size-4: 1.5rem !default\n$size-5: 1.25rem !default\n$size-6: 1rem !default\n$size-7: 0.75rem !default\n\n$weight-light: 300 !default\n$weight-normal: 400 !default\n$weight-medium: 500 !default\n$weight-semibold: 600 !default\n$weight-bold: 700 !default\n\n// Spacing\n\n$block-spacing: 1.5rem !default\n\n// Responsiveness\n\n// The container horizontal gap, which acts as the offset for breakpoints\n$gap: 32px !default\n// 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16\n$tablet: 769px !default\n// 960px container + 4rem\n$desktop: 960px + (2 * $gap) !default\n// 1152px container + 4rem\n$widescreen: 1152px + (2 * $gap) !default\n$widescreen-enabled: true !default\n// 1344px container + 4rem\n$fullhd: 1344px + (2 * $gap) !default\n$fullhd-enabled: true !default\n\n// Miscellaneous\n\n$easing: ease-out !default\n$radius-small: 2px !default\n$radius: 4px !default\n$radius-large: 6px !default\n$radius-rounded: 290486px !default\n$speed: 86ms !default\n\n// Flags\n\n$variable-columns: true !default\n$rtl: false !default\n","$control-radius: $radius !default\n$control-radius-small: $radius-small !default\n\n$control-border-width: 1px !default\n\n$control-height: 2.5em !default\n$control-line-height: 1.5 !default\n\n$control-padding-vertical: calc(0.5em - #{$control-border-width}) !default\n$control-padding-horizontal: calc(0.75em - #{$control-border-width}) !default\n\n=control\n -moz-appearance: none\n -webkit-appearance: none\n align-items: center\n border: $control-border-width solid transparent\n border-radius: $control-radius\n box-shadow: none\n display: inline-flex\n font-size: $size-normal\n height: $control-height\n justify-content: flex-start\n line-height: $control-line-height\n padding-bottom: $control-padding-vertical\n padding-left: $control-padding-horizontal\n padding-right: $control-padding-horizontal\n padding-top: $control-padding-vertical\n position: relative\n vertical-align: top\n // States\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n outline: none\n &[disabled],\n fieldset[disabled] &\n cursor: not-allowed\n\n%control\n +control\n\n// The controls sizes use mixins so they can be used at different breakpoints\n=control-small\n border-radius: $control-radius-small\n font-size: $size-small\n=control-medium\n font-size: $size-medium\n=control-large\n font-size: $size-large\n","/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */\n// Blocks\nhtml,\nbody,\np,\nol,\nul,\nli,\ndl,\ndt,\ndd,\nblockquote,\nfigure,\nfieldset,\nlegend,\ntextarea,\npre,\niframe,\nhr,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6\n margin: 0\n padding: 0\n\n// Headings\nh1,\nh2,\nh3,\nh4,\nh5,\nh6\n font-size: 100%\n font-weight: normal\n\n// List\nul\n list-style: none\n\n// Form\nbutton,\ninput,\nselect,\ntextarea\n margin: 0\n\n// Box sizing\nhtml\n box-sizing: border-box\n\n*\n &,\n &::before,\n &::after\n box-sizing: inherit\n\n// Media\nimg,\nvideo\n height: auto\n max-width: 100%\n\n// Iframe\niframe\n border: 0\n\n// Table\ntable\n border-collapse: collapse\n border-spacing: 0\n\ntd,\nth\n padding: 0\n &:not([align])\n text-align: inherit\n","$body-background-color: $scheme-main !default\n$body-size: 16px !default\n$body-min-width: 300px !default\n$body-rendering: optimizeLegibility !default\n$body-family: $family-primary !default\n$body-overflow-x: hidden !default\n$body-overflow-y: scroll !default\n\n$body-color: $text !default\n$body-font-size: 1em !default\n$body-weight: $weight-normal !default\n$body-line-height: 1.5 !default\n\n$code-family: $family-code !default\n$code-padding: 0.25em 0.5em 0.25em !default\n$code-weight: normal !default\n$code-size: 0.875em !default\n\n$small-font-size: 0.875em !default\n\n$hr-background-color: $background !default\n$hr-height: 2px !default\n$hr-margin: 1.5rem 0 !default\n\n$strong-color: $text-strong !default\n$strong-weight: $weight-bold !default\n\n$pre-font-size: 0.875em !default\n$pre-padding: 1.25rem 1.5rem !default\n$pre-code-font-size: 1em !default\n\nhtml\n background-color: $body-background-color\n font-size: $body-size\n -moz-osx-font-smoothing: grayscale\n -webkit-font-smoothing: antialiased\n min-width: $body-min-width\n overflow-x: $body-overflow-x\n overflow-y: $body-overflow-y\n text-rendering: $body-rendering\n text-size-adjust: 100%\n\narticle,\naside,\nfigure,\nfooter,\nheader,\nhgroup,\nsection\n display: block\n\nbody,\nbutton,\ninput,\noptgroup,\nselect,\ntextarea\n font-family: $body-family\n\ncode,\npre\n -moz-osx-font-smoothing: auto\n -webkit-font-smoothing: auto\n font-family: $code-family\n\nbody\n color: $body-color\n font-size: $body-font-size\n font-weight: $body-weight\n line-height: $body-line-height\n\n// Inline\n\na\n color: $link\n cursor: pointer\n text-decoration: none\n strong\n color: currentColor\n &:hover\n color: $link-hover\n\ncode\n background-color: $code-background\n color: $code\n font-size: $code-size\n font-weight: $code-weight\n padding: $code-padding\n\nhr\n background-color: $hr-background-color\n border: none\n display: block\n height: $hr-height\n margin: $hr-margin\n\nimg\n height: auto\n max-width: 100%\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"]\n vertical-align: baseline\n\nsmall\n font-size: $small-font-size\n\nspan\n font-style: inherit\n font-weight: inherit\n\nstrong\n color: $strong-color\n font-weight: $strong-weight\n\n// Block\n\nfieldset\n border: none\n\npre\n +overflow-touch\n background-color: $pre-background\n color: $pre\n font-size: $pre-font-size\n overflow-x: auto\n padding: $pre-padding\n white-space: pre\n word-wrap: normal\n code\n background-color: transparent\n color: currentColor\n font-size: $pre-code-font-size\n padding: 0\n\ntable\n td,\n th\n vertical-align: top\n &:not([align])\n text-align: inherit\n th\n color: $text-strong\n","$primary: $turquoise !default\n\n$info: $cyan !default\n$success: $green !default\n$warning: $yellow !default\n$danger: $red !default\n\n$light: $white-ter !default\n$dark: $grey-darker !default\n\n// Invert colors\n\n$orange-invert: findColorInvert($orange) !default\n$yellow-invert: findColorInvert($yellow) !default\n$green-invert: findColorInvert($green) !default\n$turquoise-invert: findColorInvert($turquoise) !default\n$cyan-invert: findColorInvert($cyan) !default\n$blue-invert: findColorInvert($blue) !default\n$purple-invert: findColorInvert($purple) !default\n$red-invert: findColorInvert($red) !default\n\n$primary-invert: findColorInvert($primary) !default\n$primary-light: findLightColor($primary) !default\n$primary-dark: findDarkColor($primary) !default\n$info-invert: findColorInvert($info) !default\n$info-light: findLightColor($info) !default\n$info-dark: findDarkColor($info) !default\n$success-invert: findColorInvert($success) !default\n$success-light: findLightColor($success) !default\n$success-dark: findDarkColor($success) !default\n$warning-invert: findColorInvert($warning) !default\n$warning-light: findLightColor($warning) !default\n$warning-dark: findDarkColor($warning) !default\n$danger-invert: findColorInvert($danger) !default\n$danger-light: findLightColor($danger) !default\n$danger-dark: findDarkColor($danger) !default\n$light-invert: findColorInvert($light) !default\n$dark-invert: findColorInvert($dark) !default\n\n// General colors\n\n$scheme-main: $white !default\n$scheme-main-bis: $white-bis !default\n$scheme-main-ter: $white-ter !default\n$scheme-invert: $black !default\n$scheme-invert-bis: $black-bis !default\n$scheme-invert-ter: $black-ter !default\n\n$background: $white-ter !default\n\n$border: $grey-lighter !default\n$border-hover: $grey-light !default\n$border-light: $grey-lightest !default\n$border-light-hover: $grey-light !default\n\n// Text colors\n\n$text: $grey-dark !default\n$text-invert: findColorInvert($text) !default\n$text-light: $grey !default\n$text-strong: $grey-darker !default\n\n// Code colors\n\n$code: darken($red, 15%) !default\n$code-background: $background !default\n\n$pre: $text !default\n$pre-background: $background !default\n\n// Link colors\n\n$link: $blue !default\n$link-invert: findColorInvert($link) !default\n$link-light: findLightColor($link) !default\n$link-dark: findDarkColor($link) !default\n$link-visited: $purple !default\n\n$link-hover: $grey-darker !default\n$link-hover-border: $grey-light !default\n\n$link-focus: $grey-darker !default\n$link-focus-border: $blue !default\n\n$link-active: $grey-darker !default\n$link-active-border: $grey-dark !default\n\n// Typography\n\n$family-primary: $family-sans-serif !default\n$family-secondary: $family-sans-serif !default\n$family-code: $family-monospace !default\n\n$size-small: $size-7 !default\n$size-normal: $size-6 !default\n$size-medium: $size-5 !default\n$size-large: $size-4 !default\n\n// Lists and maps\n$custom-colors: null !default\n$custom-shades: null !default\n\n$colors: mergeColorMaps((\"white\": ($white, $black), \"black\": ($black, $white), \"light\": ($light, $light-invert), \"dark\": ($dark, $dark-invert), \"primary\": ($primary, $primary-invert, $primary-light, $primary-dark), \"link\": ($link, $link-invert, $link-light, $link-dark), \"info\": ($info, $info-invert, $info-light, $info-dark), \"success\": ($success, $success-invert, $success-light, $success-dark), \"warning\": ($warning, $warning-invert, $warning-light, $warning-dark), \"danger\": ($danger, $danger-invert, $danger-light, $danger-dark)), $custom-colors) !default\n\n$shades: mergeColorMaps((\"black-bis\": $black-bis, \"black-ter\": $black-ter, \"grey-darker\": $grey-darker, \"grey-dark\": $grey-dark, \"grey\": $grey, \"grey-light\": $grey-light, \"grey-lighter\": $grey-lighter, \"white-ter\": $white-ter, \"white-bis\": $white-bis), $custom-shades) !default\n\n$sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default\n","$box-color: $text !default\n$box-background-color: $scheme-main !default\n$box-radius: $radius-large !default\n$box-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n$box-padding: 1.25rem !default\n\n$box-link-hover-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0 0 1px $link !default\n$box-link-active-shadow: inset 0 1px 2px rgba($scheme-invert, 0.2), 0 0 0 1px $link !default\n\n.box\n @extend %block\n background-color: $box-background-color\n border-radius: $box-radius\n box-shadow: $box-shadow\n color: $box-color\n display: block\n padding: $box-padding\n\na.box\n &:hover,\n &:focus\n box-shadow: $box-link-hover-shadow\n &:active\n box-shadow: $box-link-active-shadow\n","$button-color: $text-strong !default\n$button-background-color: $scheme-main !default\n$button-family: false !default\n\n$button-border-color: $border !default\n$button-border-width: $control-border-width !default\n\n$button-padding-vertical: calc(0.5em - #{$button-border-width}) !default\n$button-padding-horizontal: 1em !default\n\n$button-hover-color: $link-hover !default\n$button-hover-border-color: $link-hover-border !default\n\n$button-focus-color: $link-focus !default\n$button-focus-border-color: $link-focus-border !default\n$button-focus-box-shadow-size: 0 0 0 0.125em !default\n$button-focus-box-shadow-color: bulmaRgba($link, 0.25) !default\n\n$button-active-color: $link-active !default\n$button-active-border-color: $link-active-border !default\n\n$button-text-color: $text !default\n$button-text-decoration: underline !default\n$button-text-hover-background-color: $background !default\n$button-text-hover-color: $text-strong !default\n\n$button-disabled-background-color: $scheme-main !default\n$button-disabled-border-color: $border !default\n$button-disabled-shadow: none !default\n$button-disabled-opacity: 0.5 !default\n\n$button-static-color: $text-light !default\n$button-static-background-color: $scheme-main-ter !default\n$button-static-border-color: $border !default\n\n$button-colors: $colors !default\n\n// The button sizes use mixins so they can be used at different breakpoints\n=button-small\n border-radius: $radius-small\n font-size: $size-small\n=button-normal\n font-size: $size-normal\n=button-medium\n font-size: $size-medium\n=button-large\n font-size: $size-large\n\n.button\n @extend %control\n @extend %unselectable\n background-color: $button-background-color\n border-color: $button-border-color\n border-width: $button-border-width\n color: $button-color\n cursor: pointer\n @if $button-family\n font-family: $button-family\n justify-content: center\n padding-bottom: $button-padding-vertical\n padding-left: $button-padding-horizontal\n padding-right: $button-padding-horizontal\n padding-top: $button-padding-vertical\n text-align: center\n white-space: nowrap\n strong\n color: inherit\n .icon\n &,\n &.is-small,\n &.is-medium,\n &.is-large\n height: 1.5em\n width: 1.5em\n &:first-child:not(:last-child)\n +ltr-property(\"margin\", calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width}), false)\n +ltr-property(\"margin\", $button-padding-horizontal / 4)\n &:last-child:not(:first-child)\n +ltr-property(\"margin\", $button-padding-horizontal / 4, false)\n +ltr-property(\"margin\", calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width}))\n &:first-child:last-child\n margin-left: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})\n margin-right: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})\n // States\n &:hover,\n &.is-hovered\n border-color: $button-hover-border-color\n color: $button-hover-color\n &:focus,\n &.is-focused\n border-color: $button-focus-border-color\n color: $button-focus-color\n &:not(:active)\n box-shadow: $button-focus-box-shadow-size $button-focus-box-shadow-color\n &:active,\n &.is-active\n border-color: $button-active-border-color\n color: $button-active-color\n // Colors\n &.is-text\n background-color: transparent\n border-color: transparent\n color: $button-text-color\n text-decoration: $button-text-decoration\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n background-color: $button-text-hover-background-color\n color: $button-text-hover-color\n &:active,\n &.is-active\n background-color: bulmaDarken($button-text-hover-background-color, 5%)\n color: $button-text-hover-color\n &[disabled],\n fieldset[disabled] &\n background-color: transparent\n border-color: transparent\n box-shadow: none\n @each $name, $pair in $button-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n border-color: transparent\n color: $color-invert\n &:hover,\n &.is-hovered\n background-color: bulmaDarken($color, 2.5%)\n border-color: transparent\n color: $color-invert\n &:focus,\n &.is-focused\n border-color: transparent\n color: $color-invert\n &:not(:active)\n box-shadow: $button-focus-box-shadow-size bulmaRgba($color, 0.25)\n &:active,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n border-color: transparent\n color: $color-invert\n &[disabled],\n fieldset[disabled] &\n background-color: $color\n border-color: transparent\n box-shadow: none\n &.is-inverted\n background-color: $color-invert\n color: $color\n &:hover,\n &.is-hovered\n background-color: bulmaDarken($color-invert, 5%)\n &[disabled],\n fieldset[disabled] &\n background-color: $color-invert\n border-color: transparent\n box-shadow: none\n color: $color\n &.is-loading\n &::after\n border-color: transparent transparent $color-invert $color-invert !important\n &.is-outlined\n background-color: transparent\n border-color: $color\n color: $color\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n background-color: $color\n border-color: $color\n color: $color-invert\n &.is-loading\n &::after\n border-color: transparent transparent $color $color !important\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n &::after\n border-color: transparent transparent $color-invert $color-invert !important\n &[disabled],\n fieldset[disabled] &\n background-color: transparent\n border-color: $color\n box-shadow: none\n color: $color\n &.is-inverted.is-outlined\n background-color: transparent\n border-color: $color-invert\n color: $color-invert\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n background-color: $color-invert\n color: $color\n &.is-loading\n &:hover,\n &.is-hovered,\n &:focus,\n &.is-focused\n &::after\n border-color: transparent transparent $color $color !important\n &[disabled],\n fieldset[disabled] &\n background-color: transparent\n border-color: $color-invert\n box-shadow: none\n color: $color-invert\n // If light and dark colors are provided\n @if length($pair) >= 4\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n &.is-light\n background-color: $color-light\n color: $color-dark\n &:hover,\n &.is-hovered\n background-color: bulmaDarken($color-light, 2.5%)\n border-color: transparent\n color: $color-dark\n &:active,\n &.is-active\n background-color: bulmaDarken($color-light, 5%)\n border-color: transparent\n color: $color-dark\n // Sizes\n &.is-small\n +button-small\n &.is-normal\n +button-normal\n &.is-medium\n +button-medium\n &.is-large\n +button-large\n // Modifiers\n &[disabled],\n fieldset[disabled] &\n background-color: $button-disabled-background-color\n border-color: $button-disabled-border-color\n box-shadow: $button-disabled-shadow\n opacity: $button-disabled-opacity\n &.is-fullwidth\n display: flex\n width: 100%\n &.is-loading\n color: transparent !important\n pointer-events: none\n &::after\n @extend %loader\n +center(1em)\n position: absolute !important\n &.is-static\n background-color: $button-static-background-color\n border-color: $button-static-border-color\n color: $button-static-color\n box-shadow: none\n pointer-events: none\n &.is-rounded\n border-radius: $radius-rounded\n padding-left: calc(#{$button-padding-horizontal} + 0.25em)\n padding-right: calc(#{$button-padding-horizontal} + 0.25em)\n\n.buttons\n align-items: center\n display: flex\n flex-wrap: wrap\n justify-content: flex-start\n .button\n margin-bottom: 0.5rem\n &:not(:last-child):not(.is-fullwidth)\n +ltr-property(\"margin\", 0.5rem)\n &:last-child\n margin-bottom: -0.5rem\n &:not(:last-child)\n margin-bottom: 1rem\n // Sizes\n &.are-small\n .button:not(.is-normal):not(.is-medium):not(.is-large)\n +button-small\n &.are-medium\n .button:not(.is-small):not(.is-normal):not(.is-large)\n +button-medium\n &.are-large\n .button:not(.is-small):not(.is-normal):not(.is-medium)\n +button-large\n &.has-addons\n .button\n &:not(:first-child)\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n &:not(:last-child)\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n +ltr-property(\"margin\", -1px)\n &:last-child\n +ltr-property(\"margin\", 0)\n &:hover,\n &.is-hovered\n z-index: 2\n &:focus,\n &.is-focused,\n &:active,\n &.is-active,\n &.is-selected\n z-index: 3\n &:hover\n z-index: 4\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.is-centered\n justify-content: center\n &:not(.has-addons)\n .button:not(.is-fullwidth)\n margin-left: 0.25rem\n margin-right: 0.25rem\n &.is-right\n justify-content: flex-end\n &:not(.has-addons)\n .button:not(.is-fullwidth)\n margin-left: 0.25rem\n margin-right: 0.25rem\n","$container-offset: (2 * $gap) !default\n$container-max-width: $fullhd !default\n\n.container\n flex-grow: 1\n margin: 0 auto\n position: relative\n width: auto\n &.is-fluid\n max-width: none !important\n padding-left: $gap\n padding-right: $gap\n width: 100%\n +desktop\n max-width: $desktop - $container-offset\n +until-widescreen\n &.is-widescreen:not(.is-max-desktop)\n max-width: min($widescreen, $container-max-width) - $container-offset\n +until-fullhd\n &.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen)\n max-width: min($fullhd, $container-max-width) - $container-offset\n +widescreen\n &:not(.is-max-desktop)\n max-width: min($widescreen, $container-max-width) - $container-offset\n +fullhd\n &:not(.is-max-desktop):not(.is-max-widescreen)\n max-width: min($fullhd, $container-max-width) - $container-offset\n","$content-heading-color: $text-strong !default\n$content-heading-weight: $weight-semibold !default\n$content-heading-line-height: 1.125 !default\n\n$content-blockquote-background-color: $background !default\n$content-blockquote-border-left: 5px solid $border !default\n$content-blockquote-padding: 1.25em 1.5em !default\n\n$content-pre-padding: 1.25em 1.5em !default\n\n$content-table-cell-border: 1px solid $border !default\n$content-table-cell-border-width: 0 0 1px !default\n$content-table-cell-padding: 0.5em 0.75em !default\n$content-table-cell-heading-color: $text-strong !default\n$content-table-head-cell-border-width: 0 0 2px !default\n$content-table-head-cell-color: $text-strong !default\n$content-table-foot-cell-border-width: 2px 0 0 !default\n$content-table-foot-cell-color: $text-strong !default\n\n.content\n @extend %block\n // Inline\n li + li\n margin-top: 0.25em\n // Block\n p,\n dl,\n ol,\n ul,\n blockquote,\n pre,\n table\n &:not(:last-child)\n margin-bottom: 1em\n h1,\n h2,\n h3,\n h4,\n h5,\n h6\n color: $content-heading-color\n font-weight: $content-heading-weight\n line-height: $content-heading-line-height\n h1\n font-size: 2em\n margin-bottom: 0.5em\n &:not(:first-child)\n margin-top: 1em\n h2\n font-size: 1.75em\n margin-bottom: 0.5714em\n &:not(:first-child)\n margin-top: 1.1428em\n h3\n font-size: 1.5em\n margin-bottom: 0.6666em\n &:not(:first-child)\n margin-top: 1.3333em\n h4\n font-size: 1.25em\n margin-bottom: 0.8em\n h5\n font-size: 1.125em\n margin-bottom: 0.8888em\n h6\n font-size: 1em\n margin-bottom: 1em\n blockquote\n background-color: $content-blockquote-background-color\n +ltr-property(\"border\", $content-blockquote-border-left, false)\n padding: $content-blockquote-padding\n ol\n list-style-position: outside\n +ltr-property(\"margin\", 2em, false)\n margin-top: 1em\n &:not([type])\n list-style-type: decimal\n &.is-lower-alpha\n list-style-type: lower-alpha\n &.is-lower-roman\n list-style-type: lower-roman\n &.is-upper-alpha\n list-style-type: upper-alpha\n &.is-upper-roman\n list-style-type: upper-roman\n ul\n list-style: disc outside\n +ltr-property(\"margin\", 2em, false)\n margin-top: 1em\n ul\n list-style-type: circle\n margin-top: 0.5em\n ul\n list-style-type: square\n dd\n +ltr-property(\"margin\", 2em, false)\n figure\n margin-left: 2em\n margin-right: 2em\n text-align: center\n &:not(:first-child)\n margin-top: 2em\n &:not(:last-child)\n margin-bottom: 2em\n img\n display: inline-block\n figcaption\n font-style: italic\n pre\n +overflow-touch\n overflow-x: auto\n padding: $content-pre-padding\n white-space: pre\n word-wrap: normal\n sup,\n sub\n font-size: 75%\n table\n width: 100%\n td,\n th\n border: $content-table-cell-border\n border-width: $content-table-cell-border-width\n padding: $content-table-cell-padding\n vertical-align: top\n th\n color: $content-table-cell-heading-color\n &:not([align])\n text-align: inherit\n thead\n td,\n th\n border-width: $content-table-head-cell-border-width\n color: $content-table-head-cell-color\n tfoot\n td,\n th\n border-width: $content-table-foot-cell-border-width\n color: $content-table-foot-cell-color\n tbody\n tr\n &:last-child\n td,\n th\n border-bottom-width: 0\n .tabs\n li + li\n margin-top: 0\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n","$icon-dimensions: 1.5rem !default\n$icon-dimensions-small: 1rem !default\n$icon-dimensions-medium: 2rem !default\n$icon-dimensions-large: 3rem !default\n\n.icon\n align-items: center\n display: inline-flex\n justify-content: center\n height: $icon-dimensions\n width: $icon-dimensions\n // Sizes\n &.is-small\n height: $icon-dimensions-small\n width: $icon-dimensions-small\n &.is-medium\n height: $icon-dimensions-medium\n width: $icon-dimensions-medium\n &.is-large\n height: $icon-dimensions-large\n width: $icon-dimensions-large\n","$dimensions: 16 24 32 48 64 96 128 !default\n\n.image\n display: block\n position: relative\n img\n display: block\n height: auto\n width: 100%\n &.is-rounded\n border-radius: $radius-rounded\n &.is-fullwidth\n width: 100%\n // Ratio\n &.is-square,\n &.is-1by1,\n &.is-5by4,\n &.is-4by3,\n &.is-3by2,\n &.is-5by3,\n &.is-16by9,\n &.is-2by1,\n &.is-3by1,\n &.is-4by5,\n &.is-3by4,\n &.is-2by3,\n &.is-3by5,\n &.is-9by16,\n &.is-1by2,\n &.is-1by3\n img,\n .has-ratio\n @extend %overlay\n height: 100%\n width: 100%\n &.is-square,\n &.is-1by1\n padding-top: 100%\n &.is-5by4\n padding-top: 80%\n &.is-4by3\n padding-top: 75%\n &.is-3by2\n padding-top: 66.6666%\n &.is-5by3\n padding-top: 60%\n &.is-16by9\n padding-top: 56.25%\n &.is-2by1\n padding-top: 50%\n &.is-3by1\n padding-top: 33.3333%\n &.is-4by5\n padding-top: 125%\n &.is-3by4\n padding-top: 133.3333%\n &.is-2by3\n padding-top: 150%\n &.is-3by5\n padding-top: 166.6666%\n &.is-9by16\n padding-top: 177.7777%\n &.is-1by2\n padding-top: 200%\n &.is-1by3\n padding-top: 300%\n // Sizes\n @each $dimension in $dimensions\n &.is-#{$dimension}x#{$dimension}\n height: $dimension * 1px\n width: $dimension * 1px\n","$notification-background-color: $background !default\n$notification-code-background-color: $scheme-main !default\n$notification-radius: $radius !default\n$notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default\n$notification-padding-ltr: 1.25rem 2.5rem 1.25rem 1.5rem !default\n$notification-padding-rtl: 1.25rem 1.5rem 1.25rem 2.5rem !default\n\n$notification-colors: $colors !default\n\n.notification\n @extend %block\n background-color: $notification-background-color\n border-radius: $notification-radius\n position: relative\n +ltr\n padding: $notification-padding-ltr\n +rtl\n padding: $notification-padding-rtl\n a:not(.button):not(.dropdown-item)\n color: currentColor\n text-decoration: underline\n strong\n color: currentColor\n code,\n pre\n background: $notification-code-background-color\n pre code\n background: transparent\n & > .delete\n +ltr-position(0.5rem)\n position: absolute\n top: 0.5rem\n .title,\n .subtitle,\n .content\n color: currentColor\n // Colors\n @each $name, $pair in $notification-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n // If light and dark colors are provided\n @if length($pair) >= 4\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n &.is-light\n background-color: $color-light\n color: $color-dark\n","$progress-bar-background-color: $border-light !default\n$progress-value-background-color: $text !default\n$progress-border-radius: $radius-rounded !default\n\n$progress-indeterminate-duration: 1.5s !default\n\n$progress-colors: $colors !default\n\n.progress\n @extend %block\n -moz-appearance: none\n -webkit-appearance: none\n border: none\n border-radius: $progress-border-radius\n display: block\n height: $size-normal\n overflow: hidden\n padding: 0\n width: 100%\n &::-webkit-progress-bar\n background-color: $progress-bar-background-color\n &::-webkit-progress-value\n background-color: $progress-value-background-color\n &::-moz-progress-bar\n background-color: $progress-value-background-color\n &::-ms-fill\n background-color: $progress-value-background-color\n border: none\n // Colors\n @each $name, $pair in $progress-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n &::-webkit-progress-value\n background-color: $color\n &::-moz-progress-bar\n background-color: $color\n &::-ms-fill\n background-color: $color\n &:indeterminate\n background-image: linear-gradient(to right, $color 30%, $progress-bar-background-color 30%)\n\n &:indeterminate\n animation-duration: $progress-indeterminate-duration\n animation-iteration-count: infinite\n animation-name: moveIndeterminate\n animation-timing-function: linear\n background-color: $progress-bar-background-color\n background-image: linear-gradient(to right, $text 30%, $progress-bar-background-color 30%)\n background-position: top left\n background-repeat: no-repeat\n background-size: 150% 150%\n &::-webkit-progress-bar\n background-color: transparent\n &::-moz-progress-bar\n background-color: transparent\n &::-ms-fill\n animation-name: none\n\n // Sizes\n &.is-small\n height: $size-small\n &.is-medium\n height: $size-medium\n &.is-large\n height: $size-large\n\n@keyframes moveIndeterminate\n from\n background-position: 200% 0\n to\n background-position: -200% 0\n","$table-color: $text-strong !default\n$table-background-color: $scheme-main !default\n\n$table-cell-border: 1px solid $border !default\n$table-cell-border-width: 0 0 1px !default\n$table-cell-padding: 0.5em 0.75em !default\n$table-cell-heading-color: $text-strong !default\n\n$table-head-cell-border-width: 0 0 2px !default\n$table-head-cell-color: $text-strong !default\n$table-foot-cell-border-width: 2px 0 0 !default\n$table-foot-cell-color: $text-strong !default\n\n$table-head-background-color: transparent !default\n$table-body-background-color: transparent !default\n$table-foot-background-color: transparent !default\n\n$table-row-hover-background-color: $scheme-main-bis !default\n\n$table-row-active-background-color: $primary !default\n$table-row-active-color: $primary-invert !default\n\n$table-striped-row-even-background-color: $scheme-main-bis !default\n$table-striped-row-even-hover-background-color: $scheme-main-ter !default\n\n$table-colors: $colors !default\n\n.table\n @extend %block\n background-color: $table-background-color\n color: $table-color\n td,\n th\n border: $table-cell-border\n border-width: $table-cell-border-width\n padding: $table-cell-padding\n vertical-align: top\n // Colors\n @each $name, $pair in $table-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n border-color: $color\n color: $color-invert\n // Modifiers\n &.is-narrow\n white-space: nowrap\n width: 1%\n &.is-selected\n background-color: $table-row-active-background-color\n color: $table-row-active-color\n a,\n strong\n color: currentColor\n &.is-vcentered\n vertical-align: middle\n th\n color: $table-cell-heading-color\n &:not([align])\n text-align: inherit\n tr\n &.is-selected\n background-color: $table-row-active-background-color\n color: $table-row-active-color\n a,\n strong\n color: currentColor\n td,\n th\n border-color: $table-row-active-color\n color: currentColor\n thead\n background-color: $table-head-background-color\n td,\n th\n border-width: $table-head-cell-border-width\n color: $table-head-cell-color\n tfoot\n background-color: $table-foot-background-color\n td,\n th\n border-width: $table-foot-cell-border-width\n color: $table-foot-cell-color\n tbody\n background-color: $table-body-background-color\n tr\n &:last-child\n td,\n th\n border-bottom-width: 0\n // Modifiers\n &.is-bordered\n td,\n th\n border-width: 1px\n tr\n &:last-child\n td,\n th\n border-bottom-width: 1px\n &.is-fullwidth\n width: 100%\n &.is-hoverable\n tbody\n tr:not(.is-selected)\n &:hover\n background-color: $table-row-hover-background-color\n &.is-striped\n tbody\n tr:not(.is-selected)\n &:hover\n background-color: $table-row-hover-background-color\n &:nth-child(even)\n background-color: $table-striped-row-even-hover-background-color\n &.is-narrow\n td,\n th\n padding: 0.25em 0.5em\n &.is-striped\n tbody\n tr:not(.is-selected)\n &:nth-child(even)\n background-color: $table-striped-row-even-background-color\n\n.table-container\n @extend %block\n +overflow-touch\n overflow: auto\n overflow-y: hidden\n max-width: 100%\n","$tag-background-color: $background !default\n$tag-color: $text !default\n$tag-radius: $radius !default\n$tag-delete-margin: 1px !default\n\n$tag-colors: $colors !default\n\n.tags\n align-items: center\n display: flex\n flex-wrap: wrap\n justify-content: flex-start\n .tag\n margin-bottom: 0.5rem\n &:not(:last-child)\n +ltr-property(\"margin\", 0.5rem)\n &:last-child\n margin-bottom: -0.5rem\n &:not(:last-child)\n margin-bottom: 1rem\n // Sizes\n &.are-medium\n .tag:not(.is-normal):not(.is-large)\n font-size: $size-normal\n &.are-large\n .tag:not(.is-normal):not(.is-medium)\n font-size: $size-medium\n &.is-centered\n justify-content: center\n .tag\n margin-right: 0.25rem\n margin-left: 0.25rem\n &.is-right\n justify-content: flex-end\n .tag\n &:not(:first-child)\n margin-left: 0.5rem\n &:not(:last-child)\n margin-right: 0\n &.has-addons\n .tag\n +ltr-property(\"margin\", 0)\n &:not(:first-child)\n +ltr-property(\"margin\", 0, false)\n +ltr\n border-top-left-radius: 0\n border-bottom-left-radius: 0\n +rtl\n border-top-right-radius: 0\n border-bottom-right-radius: 0\n &:not(:last-child)\n +ltr\n border-top-right-radius: 0\n border-bottom-right-radius: 0\n +rtl\n border-top-left-radius: 0\n border-bottom-left-radius: 0\n\n.tag:not(body)\n align-items: center\n background-color: $tag-background-color\n border-radius: $tag-radius\n color: $tag-color\n display: inline-flex\n font-size: $size-small\n height: 2em\n justify-content: center\n line-height: 1.5\n padding-left: 0.75em\n padding-right: 0.75em\n white-space: nowrap\n .delete\n +ltr-property(\"margin\", 0.25rem, false)\n +ltr-property(\"margin\", -0.375rem)\n // Colors\n @each $name, $pair in $tag-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n // If a light and dark colors are provided\n @if length($pair) > 3\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n &.is-light\n background-color: $color-light\n color: $color-dark\n // Sizes\n &.is-normal\n font-size: $size-small\n &.is-medium\n font-size: $size-normal\n &.is-large\n font-size: $size-medium\n .icon\n &:first-child:not(:last-child)\n +ltr-property(\"margin\", -0.375em, false)\n +ltr-property(\"margin\", 0.1875em)\n &:last-child:not(:first-child)\n +ltr-property(\"margin\", 0.1875em, false)\n +ltr-property(\"margin\", -0.375em)\n &:first-child:last-child\n +ltr-property(\"margin\", -0.375em, false)\n +ltr-property(\"margin\", -0.375em)\n // Modifiers\n &.is-delete\n +ltr-property(\"margin\", $tag-delete-margin, false)\n padding: 0\n position: relative\n width: 2em\n &::before,\n &::after\n background-color: currentColor\n content: \"\"\n display: block\n left: 50%\n position: absolute\n top: 50%\n transform: translateX(-50%) translateY(-50%) rotate(45deg)\n transform-origin: center center\n &::before\n height: 1px\n width: 50%\n &::after\n height: 50%\n width: 1px\n &:hover,\n &:focus\n background-color: darken($tag-background-color, 5%)\n &:active\n background-color: darken($tag-background-color, 10%)\n &.is-rounded\n border-radius: $radius-rounded\n\na.tag\n &:hover\n text-decoration: underline\n","$title-color: $text-strong !default\n$title-family: false !default\n$title-size: $size-3 !default\n$title-weight: $weight-semibold !default\n$title-line-height: 1.125 !default\n$title-strong-color: inherit !default\n$title-strong-weight: inherit !default\n$title-sub-size: 0.75em !default\n$title-sup-size: 0.75em !default\n\n$subtitle-color: $text !default\n$subtitle-family: false !default\n$subtitle-size: $size-5 !default\n$subtitle-weight: $weight-normal !default\n$subtitle-line-height: 1.25 !default\n$subtitle-strong-color: $text-strong !default\n$subtitle-strong-weight: $weight-semibold !default\n$subtitle-negative-margin: -1.25rem !default\n\n.title,\n.subtitle\n @extend %block\n word-break: break-word\n em,\n span\n font-weight: inherit\n sub\n font-size: $title-sub-size\n sup\n font-size: $title-sup-size\n .tag\n vertical-align: middle\n\n.title\n color: $title-color\n @if $title-family\n font-family: $title-family\n font-size: $title-size\n font-weight: $title-weight\n line-height: $title-line-height\n strong\n color: $title-strong-color\n font-weight: $title-strong-weight\n & + .highlight\n margin-top: -0.75rem\n &:not(.is-spaced) + .subtitle\n margin-top: $subtitle-negative-margin\n // Sizes\n @each $size in $sizes\n $i: index($sizes, $size)\n &.is-#{$i}\n font-size: $size\n\n.subtitle\n color: $subtitle-color\n @if $subtitle-family\n font-family: $subtitle-family\n font-size: $subtitle-size\n font-weight: $subtitle-weight\n line-height: $subtitle-line-height\n strong\n color: $subtitle-strong-color\n font-weight: $subtitle-strong-weight\n &:not(.is-spaced) + .title\n margin-top: $subtitle-negative-margin\n // Sizes\n @each $size in $sizes\n $i: index($sizes, $size)\n &.is-#{$i}\n font-size: $size\n",".block\n @extend %block\n\n.delete\n @extend %delete\n\n.heading\n display: block\n font-size: 11px\n letter-spacing: 1px\n margin-bottom: 5px\n text-transform: uppercase\n\n.highlight\n @extend %block\n font-weight: $weight-normal\n max-width: 100%\n overflow: hidden\n padding: 0\n pre\n overflow: auto\n max-width: 100%\n\n.loader\n @extend %loader\n\n.number\n align-items: center\n background-color: $background\n border-radius: $radius-rounded\n display: inline-flex\n font-size: $size-medium\n height: 2em\n justify-content: center\n margin-right: 1.5rem\n min-width: 2.5em\n padding: 0.25rem 0.5rem\n text-align: center\n vertical-align: top\n","$form-colors: $colors !default\n\n$input-color: $text-strong !default\n$input-background-color: $scheme-main !default\n$input-border-color: $border !default\n$input-height: $control-height !default\n$input-shadow: inset 0 0.0625em 0.125em rgba($scheme-invert, 0.05) !default\n$input-placeholder-color: bulmaRgba($input-color, 0.3) !default\n\n$input-hover-color: $text-strong !default\n$input-hover-border-color: $border-hover !default\n\n$input-focus-color: $text-strong !default\n$input-focus-border-color: $link !default\n$input-focus-box-shadow-size: 0 0 0 0.125em !default\n$input-focus-box-shadow-color: bulmaRgba($link, 0.25) !default\n\n$input-disabled-color: $text-light !default\n$input-disabled-background-color: $background !default\n$input-disabled-border-color: $background !default\n$input-disabled-placeholder-color: bulmaRgba($input-disabled-color, 0.3) !default\n\n$input-arrow: $link !default\n\n$input-icon-color: $border !default\n$input-icon-active-color: $text !default\n\n$input-radius: $radius !default\n\n=input\n @extend %control\n background-color: $input-background-color\n border-color: $input-border-color\n border-radius: $input-radius\n color: $input-color\n +placeholder\n color: $input-placeholder-color\n &:hover,\n &.is-hovered\n border-color: $input-hover-border-color\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n border-color: $input-focus-border-color\n box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color\n &[disabled],\n fieldset[disabled] &\n background-color: $input-disabled-background-color\n border-color: $input-disabled-border-color\n box-shadow: none\n color: $input-disabled-color\n +placeholder\n color: $input-disabled-placeholder-color\n\n%input\n +input\n","$textarea-padding: $control-padding-horizontal !default\n$textarea-max-height: 40em !default\n$textarea-min-height: 8em !default\n\n$textarea-colors: $form-colors !default\n\n%input-textarea\n @extend %input\n box-shadow: $input-shadow\n max-width: 100%\n width: 100%\n &[readonly]\n box-shadow: none\n // Colors\n @each $name, $pair in $textarea-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n border-color: $color\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25)\n // Sizes\n &.is-small\n +control-small\n &.is-medium\n +control-medium\n &.is-large\n +control-large\n // Modifiers\n &.is-fullwidth\n display: block\n width: 100%\n &.is-inline\n display: inline\n width: auto\n\n.input\n @extend %input-textarea\n &.is-rounded\n border-radius: $radius-rounded\n padding-left: calc(#{$control-padding-horizontal} + 0.375em)\n padding-right: calc(#{$control-padding-horizontal} + 0.375em)\n &.is-static\n background-color: transparent\n border-color: transparent\n box-shadow: none\n padding-left: 0\n padding-right: 0\n\n.textarea\n @extend %input-textarea\n display: block\n max-width: 100%\n min-width: 100%\n padding: $textarea-padding\n resize: vertical\n &:not([rows])\n max-height: $textarea-max-height\n min-height: $textarea-min-height\n &[rows]\n height: initial\n // Modifiers\n &.has-fixed-size\n resize: none\n","%checkbox-radio\n cursor: pointer\n display: inline-block\n line-height: 1.25\n position: relative\n input\n cursor: pointer\n &:hover\n color: $input-hover-color\n &[disabled],\n fieldset[disabled] &,\n input[disabled]\n color: $input-disabled-color\n cursor: not-allowed\n\n.checkbox\n @extend %checkbox-radio\n\n.radio\n @extend %checkbox-radio\n & + .radio\n +ltr-property(\"margin\", 0.5em, false)\n","$select-colors: $form-colors !default\n\n.select\n display: inline-block\n max-width: 100%\n position: relative\n vertical-align: top\n &:not(.is-multiple)\n height: $input-height\n &:not(.is-multiple):not(.is-loading)\n &::after\n @extend %arrow\n border-color: $input-arrow\n +ltr-position(1.125em)\n z-index: 4\n &.is-rounded\n select\n border-radius: $radius-rounded\n +ltr-property(\"padding\", 1em, false)\n select\n @extend %input\n cursor: pointer\n display: block\n font-size: 1em\n max-width: 100%\n outline: none\n &::-ms-expand\n display: none\n &[disabled]:hover,\n fieldset[disabled] &:hover\n border-color: $input-disabled-border-color\n &:not([multiple])\n +ltr-property(\"padding\", 2.5em)\n &[multiple]\n height: auto\n padding: 0\n option\n padding: 0.5em 1em\n // States\n &:not(.is-multiple):not(.is-loading):hover\n &::after\n border-color: $input-hover-color\n // Colors\n @each $name, $pair in $select-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n &:not(:hover)::after\n border-color: $color\n select\n border-color: $color\n &:hover,\n &.is-hovered\n border-color: bulmaDarken($color, 5%)\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25)\n // Sizes\n &.is-small\n +control-small\n &.is-medium\n +control-medium\n &.is-large\n +control-large\n // Modifiers\n &.is-disabled\n &::after\n border-color: $input-disabled-color\n &.is-fullwidth\n width: 100%\n select\n width: 100%\n &.is-loading\n &::after\n @extend %loader\n margin-top: 0\n position: absolute\n +ltr-position(0.625em)\n top: 0.625em\n transform: none\n &.is-small:after\n font-size: $size-small\n &.is-medium:after\n font-size: $size-medium\n &.is-large:after\n font-size: $size-large\n","$file-border-color: $border !default\n$file-radius: $radius !default\n\n$file-cta-background-color: $scheme-main-ter !default\n$file-cta-color: $text !default\n$file-cta-hover-color: $text-strong !default\n$file-cta-active-color: $text-strong !default\n\n$file-name-border-color: $border !default\n$file-name-border-style: solid !default\n$file-name-border-width: 1px 1px 1px 0 !default\n$file-name-max-width: 16em !default\n\n$file-colors: $form-colors !default\n\n.file\n @extend %unselectable\n align-items: stretch\n display: flex\n justify-content: flex-start\n position: relative\n // Colors\n @each $name, $pair in $file-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n .file-cta\n background-color: $color\n border-color: transparent\n color: $color-invert\n &:hover,\n &.is-hovered\n .file-cta\n background-color: bulmaDarken($color, 2.5%)\n border-color: transparent\n color: $color-invert\n &:focus,\n &.is-focused\n .file-cta\n border-color: transparent\n box-shadow: 0 0 0.5em bulmaRgba($color, 0.25)\n color: $color-invert\n &:active,\n &.is-active\n .file-cta\n background-color: bulmaDarken($color, 5%)\n border-color: transparent\n color: $color-invert\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n .file-icon\n .fa\n font-size: 21px\n &.is-large\n font-size: $size-large\n .file-icon\n .fa\n font-size: 28px\n // Modifiers\n &.has-name\n .file-cta\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n .file-name\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n &.is-empty\n .file-cta\n border-radius: $file-radius\n .file-name\n display: none\n &.is-boxed\n .file-label\n flex-direction: column\n .file-cta\n flex-direction: column\n height: auto\n padding: 1em 3em\n .file-name\n border-width: 0 1px 1px\n .file-icon\n height: 1.5em\n width: 1.5em\n .fa\n font-size: 21px\n &.is-small\n .file-icon .fa\n font-size: 14px\n &.is-medium\n .file-icon .fa\n font-size: 28px\n &.is-large\n .file-icon .fa\n font-size: 35px\n &.has-name\n .file-cta\n border-radius: $file-radius $file-radius 0 0\n .file-name\n border-radius: 0 0 $file-radius $file-radius\n border-width: 0 1px 1px\n &.is-centered\n justify-content: center\n &.is-fullwidth\n .file-label\n width: 100%\n .file-name\n flex-grow: 1\n max-width: none\n &.is-right\n justify-content: flex-end\n .file-cta\n border-radius: 0 $file-radius $file-radius 0\n .file-name\n border-radius: $file-radius 0 0 $file-radius\n border-width: 1px 0 1px 1px\n order: -1\n\n.file-label\n align-items: stretch\n display: flex\n cursor: pointer\n justify-content: flex-start\n overflow: hidden\n position: relative\n &:hover\n .file-cta\n background-color: bulmaDarken($file-cta-background-color, 2.5%)\n color: $file-cta-hover-color\n .file-name\n border-color: bulmaDarken($file-name-border-color, 2.5%)\n &:active\n .file-cta\n background-color: bulmaDarken($file-cta-background-color, 5%)\n color: $file-cta-active-color\n .file-name\n border-color: bulmaDarken($file-name-border-color, 5%)\n\n.file-input\n height: 100%\n left: 0\n opacity: 0\n outline: none\n position: absolute\n top: 0\n width: 100%\n\n.file-cta,\n.file-name\n @extend %control\n border-color: $file-border-color\n border-radius: $file-radius\n font-size: 1em\n padding-left: 1em\n padding-right: 1em\n white-space: nowrap\n\n.file-cta\n background-color: $file-cta-background-color\n color: $file-cta-color\n\n.file-name\n border-color: $file-name-border-color\n border-style: $file-name-border-style\n border-width: $file-name-border-width\n display: block\n max-width: $file-name-max-width\n overflow: hidden\n text-align: inherit\n text-overflow: ellipsis\n\n.file-icon\n align-items: center\n display: flex\n height: 1em\n justify-content: center\n +ltr-property(\"margin\", 0.5em)\n width: 1em\n .fa\n font-size: 14px\n","$label-color: $text-strong !default\n$label-weight: $weight-bold !default\n\n$help-size: $size-small !default\n\n$label-colors: $form-colors !default\n\n.label\n color: $label-color\n display: block\n font-size: $size-normal\n font-weight: $label-weight\n &:not(:last-child)\n margin-bottom: 0.5em\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n\n.help\n display: block\n font-size: $help-size\n margin-top: 0.25rem\n @each $name, $pair in $label-colors\n $color: nth($pair, 1)\n &.is-#{$name}\n color: $color\n\n// Containers\n\n.field\n &:not(:last-child)\n margin-bottom: 0.75rem\n // Modifiers\n &.has-addons\n display: flex\n justify-content: flex-start\n .control\n &:not(:last-child)\n +ltr-property(\"margin\", -1px)\n &:not(:first-child):not(:last-child)\n .button,\n .input,\n .select select\n border-radius: 0\n &:first-child:not(:only-child)\n .button,\n .input,\n .select select\n +ltr\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n +rtl\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n &:last-child:not(:only-child)\n .button,\n .input,\n .select select\n +ltr\n border-bottom-left-radius: 0\n border-top-left-radius: 0\n +rtl\n border-bottom-right-radius: 0\n border-top-right-radius: 0\n .button,\n .input,\n .select select\n &:not([disabled])\n &:hover,\n &.is-hovered\n z-index: 2\n &:focus,\n &.is-focused,\n &:active,\n &.is-active\n z-index: 3\n &:hover\n z-index: 4\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.has-addons-centered\n justify-content: center\n &.has-addons-right\n justify-content: flex-end\n &.has-addons-fullwidth\n .control\n flex-grow: 1\n flex-shrink: 0\n &.is-grouped\n display: flex\n justify-content: flex-start\n & > .control\n flex-shrink: 0\n &:not(:last-child)\n margin-bottom: 0\n +ltr-property(\"margin\", 0.75rem)\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.is-grouped-centered\n justify-content: center\n &.is-grouped-right\n justify-content: flex-end\n &.is-grouped-multiline\n flex-wrap: wrap\n & > .control\n &:last-child,\n &:not(:last-child)\n margin-bottom: 0.75rem\n &:last-child\n margin-bottom: -0.75rem\n &:not(:last-child)\n margin-bottom: 0\n &.is-horizontal\n +tablet\n display: flex\n\n.field-label\n .label\n font-size: inherit\n +mobile\n margin-bottom: 0.5rem\n +tablet\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 0\n +ltr-property(\"margin\", 1.5rem)\n text-align: right\n &.is-small\n font-size: $size-small\n padding-top: 0.375em\n &.is-normal\n padding-top: 0.375em\n &.is-medium\n font-size: $size-medium\n padding-top: 0.375em\n &.is-large\n font-size: $size-large\n padding-top: 0.375em\n\n.field-body\n .field .field\n margin-bottom: 0\n +tablet\n display: flex\n flex-basis: 0\n flex-grow: 5\n flex-shrink: 1\n .field\n margin-bottom: 0\n & > .field\n flex-shrink: 1\n &:not(.is-narrow)\n flex-grow: 1\n &:not(:last-child)\n +ltr-property(\"margin\", 0.75rem)\n\n.control\n box-sizing: border-box\n clear: both\n font-size: $size-normal\n position: relative\n text-align: inherit\n // Modifiers\n &.has-icons-left,\n &.has-icons-right\n .input,\n .select\n &:focus\n & ~ .icon\n color: $input-icon-active-color\n &.is-small ~ .icon\n font-size: $size-small\n &.is-medium ~ .icon\n font-size: $size-medium\n &.is-large ~ .icon\n font-size: $size-large\n .icon\n color: $input-icon-color\n height: $input-height\n pointer-events: none\n position: absolute\n top: 0\n width: $input-height\n z-index: 4\n &.has-icons-left\n .input,\n .select select\n padding-left: $input-height\n .icon.is-left\n left: 0\n &.has-icons-right\n .input,\n .select select\n padding-right: $input-height\n .icon.is-right\n right: 0\n &.is-loading\n &::after\n @extend %loader\n position: absolute !important\n +ltr-position(0.625em)\n top: 0.625em\n z-index: 4\n &.is-small:after\n font-size: $size-small\n &.is-medium:after\n font-size: $size-medium\n &.is-large:after\n font-size: $size-large\n","$breadcrumb-item-color: $link !default\n$breadcrumb-item-hover-color: $link-hover !default\n$breadcrumb-item-active-color: $text-strong !default\n\n$breadcrumb-item-padding-vertical: 0 !default\n$breadcrumb-item-padding-horizontal: 0.75em !default\n\n$breadcrumb-item-separator-color: $border-hover !default\n\n.breadcrumb\n @extend %block\n @extend %unselectable\n font-size: $size-normal\n white-space: nowrap\n a\n align-items: center\n color: $breadcrumb-item-color\n display: flex\n justify-content: center\n padding: $breadcrumb-item-padding-vertical $breadcrumb-item-padding-horizontal\n &:hover\n color: $breadcrumb-item-hover-color\n li\n align-items: center\n display: flex\n &:first-child a\n +ltr-property(\"padding\", 0, false)\n &.is-active\n a\n color: $breadcrumb-item-active-color\n cursor: default\n pointer-events: none\n & + li::before\n color: $breadcrumb-item-separator-color\n content: \"\\0002f\"\n ul,\n ol\n align-items: flex-start\n display: flex\n flex-wrap: wrap\n justify-content: flex-start\n .icon\n &:first-child\n +ltr-property(\"margin\", 0.5em)\n &:last-child\n +ltr-property(\"margin\", 0.5em, false)\n // Alignment\n &.is-centered\n ol,\n ul\n justify-content: center\n &.is-right\n ol,\n ul\n justify-content: flex-end\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n // Styles\n &.has-arrow-separator\n li + li::before\n content: \"\\02192\"\n &.has-bullet-separator\n li + li::before\n content: \"\\02022\"\n &.has-dot-separator\n li + li::before\n content: \"\\000b7\"\n &.has-succeeds-separator\n li + li::before\n content: \"\\0227B\"\n","$card-color: $text !default\n$card-background-color: $scheme-main !default\n$card-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n$card-radius: 0.25rem !default\n$card-overflow: hidden !default\n\n$card-header-background-color: transparent !default\n$card-header-color: $text-strong !default\n$card-header-padding: 0.75rem 1rem !default\n$card-header-shadow: 0 0.125em 0.25em rgba($scheme-invert, 0.1) !default\n$card-header-weight: $weight-bold !default\n\n$card-content-background-color: transparent !default\n$card-content-padding: 1.5rem !default\n\n$card-footer-background-color: transparent !default\n$card-footer-border-top: 1px solid $border-light !default\n$card-footer-padding: 0.75rem !default\n\n$card-media-margin: $block-spacing !default\n\n.card\n background-color: $card-background-color\n border-radius: $card-radius\n box-shadow: $card-shadow\n color: $card-color\n max-width: 100%\n overflow: $card-overflow\n position: relative\n\n.card-header\n background-color: $card-header-background-color\n align-items: stretch\n box-shadow: $card-header-shadow\n display: flex\n\n.card-header-title\n align-items: center\n color: $card-header-color\n display: flex\n flex-grow: 1\n font-weight: $card-header-weight\n padding: $card-header-padding\n &.is-centered\n justify-content: center\n\n.card-header-icon\n align-items: center\n cursor: pointer\n display: flex\n justify-content: center\n padding: $card-header-padding\n\n.card-image\n display: block\n position: relative\n\n.card-content\n background-color: $card-content-background-color\n padding: $card-content-padding\n\n.card-footer\n background-color: $card-footer-background-color\n border-top: $card-footer-border-top\n align-items: stretch\n display: flex\n\n.card-footer-item\n align-items: center\n display: flex\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 0\n justify-content: center\n padding: $card-footer-padding\n &:not(:last-child)\n +ltr-property(\"border\", $card-footer-border-top)\n\n// Combinations\n\n.card\n .media:not(:last-child)\n margin-bottom: $card-media-margin\n","$dropdown-menu-min-width: 12rem !default\n\n$dropdown-content-background-color: $scheme-main !default\n$dropdown-content-arrow: $link !default\n$dropdown-content-offset: 4px !default\n$dropdown-content-padding-bottom: 0.5rem !default\n$dropdown-content-padding-top: 0.5rem !default\n$dropdown-content-radius: $radius !default\n$dropdown-content-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n$dropdown-content-z: 20 !default\n\n$dropdown-item-color: $text !default\n$dropdown-item-hover-color: $scheme-invert !default\n$dropdown-item-hover-background-color: $background !default\n$dropdown-item-active-color: $link-invert !default\n$dropdown-item-active-background-color: $link !default\n\n$dropdown-divider-background-color: $border-light !default\n\n.dropdown\n display: inline-flex\n position: relative\n vertical-align: top\n &.is-active,\n &.is-hoverable:hover\n .dropdown-menu\n display: block\n &.is-right\n .dropdown-menu\n left: auto\n right: 0\n &.is-up\n .dropdown-menu\n bottom: 100%\n padding-bottom: $dropdown-content-offset\n padding-top: initial\n top: auto\n\n.dropdown-menu\n display: none\n +ltr-position(0, false)\n min-width: $dropdown-menu-min-width\n padding-top: $dropdown-content-offset\n position: absolute\n top: 100%\n z-index: $dropdown-content-z\n\n.dropdown-content\n background-color: $dropdown-content-background-color\n border-radius: $dropdown-content-radius\n box-shadow: $dropdown-content-shadow\n padding-bottom: $dropdown-content-padding-bottom\n padding-top: $dropdown-content-padding-top\n\n.dropdown-item\n color: $dropdown-item-color\n display: block\n font-size: 0.875rem\n line-height: 1.5\n padding: 0.375rem 1rem\n position: relative\n\na.dropdown-item,\nbutton.dropdown-item\n +ltr-property(\"padding\", 3rem)\n text-align: inherit\n white-space: nowrap\n width: 100%\n &:hover\n background-color: $dropdown-item-hover-background-color\n color: $dropdown-item-hover-color\n &.is-active\n background-color: $dropdown-item-active-background-color\n color: $dropdown-item-active-color\n\n.dropdown-divider\n background-color: $dropdown-divider-background-color\n border: none\n display: block\n height: 1px\n margin: 0.5rem 0\n","$level-item-spacing: ($block-spacing / 2) !default\n\n.level\n @extend %block\n align-items: center\n justify-content: space-between\n code\n border-radius: $radius\n img\n display: inline-block\n vertical-align: top\n // Modifiers\n &.is-mobile\n display: flex\n .level-left,\n .level-right\n display: flex\n .level-left + .level-right\n margin-top: 0\n .level-item\n &:not(:last-child)\n margin-bottom: 0\n +ltr-property(\"margin\", $level-item-spacing)\n &:not(.is-narrow)\n flex-grow: 1\n // Responsiveness\n +tablet\n display: flex\n & > .level-item\n &:not(.is-narrow)\n flex-grow: 1\n\n.level-item\n align-items: center\n display: flex\n flex-basis: auto\n flex-grow: 0\n flex-shrink: 0\n justify-content: center\n .title,\n .subtitle\n margin-bottom: 0\n // Responsiveness\n +mobile\n &:not(:last-child)\n margin-bottom: $level-item-spacing\n\n.level-left,\n.level-right\n flex-basis: auto\n flex-grow: 0\n flex-shrink: 0\n .level-item\n // Modifiers\n &.is-flexible\n flex-grow: 1\n // Responsiveness\n +tablet\n &:not(:last-child)\n +ltr-property(\"margin\", $level-item-spacing)\n\n.level-left\n align-items: center\n justify-content: flex-start\n // Responsiveness\n +mobile\n & + .level-right\n margin-top: 1.5rem\n +tablet\n display: flex\n\n.level-right\n align-items: center\n justify-content: flex-end\n // Responsiveness\n +tablet\n display: flex\n","$media-border-color: bulmaRgba($border, 0.5) !default\n$media-spacing: 1rem\n$media-spacing-large: 1.5rem\n\n.media\n align-items: flex-start\n display: flex\n text-align: inherit\n .content:not(:last-child)\n margin-bottom: 0.75rem\n .media\n border-top: 1px solid $media-border-color\n display: flex\n padding-top: 0.75rem\n .content:not(:last-child),\n .control:not(:last-child)\n margin-bottom: 0.5rem\n .media\n padding-top: 0.5rem\n & + .media\n margin-top: 0.5rem\n & + .media\n border-top: 1px solid $media-border-color\n margin-top: $media-spacing\n padding-top: $media-spacing\n // Sizes\n &.is-large\n & + .media\n margin-top: $media-spacing-large\n padding-top: $media-spacing-large\n\n.media-left,\n.media-right\n flex-basis: auto\n flex-grow: 0\n flex-shrink: 0\n\n.media-left\n +ltr-property(\"margin\", $media-spacing)\n\n.media-right\n +ltr-property(\"margin\", $media-spacing, false)\n\n.media-content\n flex-basis: auto\n flex-grow: 1\n flex-shrink: 1\n text-align: inherit\n\n+mobile\n .media-content\n overflow-x: auto\n","$menu-item-color: $text !default\n$menu-item-radius: $radius-small !default\n$menu-item-hover-color: $text-strong !default\n$menu-item-hover-background-color: $background !default\n$menu-item-active-color: $link-invert !default\n$menu-item-active-background-color: $link !default\n\n$menu-list-border-left: 1px solid $border !default\n$menu-list-line-height: 1.25 !default\n$menu-list-link-padding: 0.5em 0.75em !default\n$menu-nested-list-margin: 0.75em !default\n$menu-nested-list-padding-left: 0.75em !default\n\n$menu-label-color: $text-light !default\n$menu-label-font-size: 0.75em !default\n$menu-label-letter-spacing: 0.1em !default\n$menu-label-spacing: 1em !default\n\n.menu\n font-size: $size-normal\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n\n.menu-list\n line-height: $menu-list-line-height\n a\n border-radius: $menu-item-radius\n color: $menu-item-color\n display: block\n padding: $menu-list-link-padding\n &:hover\n background-color: $menu-item-hover-background-color\n color: $menu-item-hover-color\n // Modifiers\n &.is-active\n background-color: $menu-item-active-background-color\n color: $menu-item-active-color\n li\n ul\n +ltr-property(\"border\", $menu-list-border-left, false)\n margin: $menu-nested-list-margin\n +ltr-property(\"padding\", $menu-nested-list-padding-left, false)\n\n.menu-label\n color: $menu-label-color\n font-size: $menu-label-font-size\n letter-spacing: $menu-label-letter-spacing\n text-transform: uppercase\n &:not(:first-child)\n margin-top: $menu-label-spacing\n &:not(:last-child)\n margin-bottom: $menu-label-spacing\n","$message-background-color: $background !default\n$message-radius: $radius !default\n\n$message-header-background-color: $text !default\n$message-header-color: $text-invert !default\n$message-header-weight: $weight-bold !default\n$message-header-padding: 0.75em 1em !default\n$message-header-radius: $radius !default\n\n$message-body-border-color: $border !default\n$message-body-border-width: 0 0 0 4px !default\n$message-body-color: $text !default\n$message-body-padding: 1.25em 1.5em !default\n$message-body-radius: $radius !default\n\n$message-body-pre-background-color: $scheme-main !default\n$message-body-pre-code-background-color: transparent !default\n\n$message-header-body-border-width: 0 !default\n$message-colors: $colors !default\n\n.message\n @extend %block\n background-color: $message-background-color\n border-radius: $message-radius\n font-size: $size-normal\n strong\n color: currentColor\n a:not(.button):not(.tag):not(.dropdown-item)\n color: currentColor\n text-decoration: underline\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n // Colors\n @each $name, $components in $message-colors\n $color: nth($components, 1)\n $color-invert: nth($components, 2)\n $color-light: null\n $color-dark: null\n\n @if length($components) >= 3\n $color-light: nth($components, 3)\n @if length($components) >= 4\n $color-dark: nth($components, 4)\n @else\n $color-luminance: colorLuminance($color)\n $darken-percentage: $color-luminance * 70%\n $desaturate-percentage: $color-luminance * 30%\n $color-dark: desaturate(darken($color, $darken-percentage), $desaturate-percentage)\n @else\n $color-lightning: max((100% - lightness($color)) - 2%, 0%)\n $color-light: lighten($color, $color-lightning)\n\n &.is-#{$name}\n background-color: $color-light\n .message-header\n background-color: $color\n color: $color-invert\n .message-body\n border-color: $color\n color: $color-dark\n\n.message-header\n align-items: center\n background-color: $message-header-background-color\n border-radius: $message-header-radius $message-header-radius 0 0\n color: $message-header-color\n display: flex\n font-weight: $message-header-weight\n justify-content: space-between\n line-height: 1.25\n padding: $message-header-padding\n position: relative\n .delete\n flex-grow: 0\n flex-shrink: 0\n +ltr-property(\"margin\", 0.75em, false)\n & + .message-body\n border-width: $message-header-body-border-width\n border-top-left-radius: 0\n border-top-right-radius: 0\n\n.message-body\n border-color: $message-body-border-color\n border-radius: $message-body-radius\n border-style: solid\n border-width: $message-body-border-width\n color: $message-body-color\n padding: $message-body-padding\n code,\n pre\n background-color: $message-body-pre-background-color\n pre code\n background-color: $message-body-pre-code-background-color\n","$modal-z: 40 !default\n\n$modal-background-background-color: bulmaRgba($scheme-invert, 0.86) !default\n\n$modal-content-width: 640px !default\n$modal-content-margin-mobile: 20px !default\n$modal-content-spacing-mobile: 160px !default\n$modal-content-spacing-tablet: 40px !default\n\n$modal-close-dimensions: 40px !default\n$modal-close-right: 20px !default\n$modal-close-top: 20px !default\n\n$modal-card-spacing: 40px !default\n\n$modal-card-head-background-color: $background !default\n$modal-card-head-border-bottom: 1px solid $border !default\n$modal-card-head-padding: 20px !default\n$modal-card-head-radius: $radius-large !default\n\n$modal-card-title-color: $text-strong !default\n$modal-card-title-line-height: 1 !default\n$modal-card-title-size: $size-4 !default\n\n$modal-card-foot-radius: $radius-large !default\n$modal-card-foot-border-top: 1px solid $border !default\n\n$modal-card-body-background-color: $scheme-main !default\n$modal-card-body-padding: 20px !default\n\n$modal-breakpoint: $tablet !default\n\n.modal\n @extend %overlay\n align-items: center\n display: none\n flex-direction: column\n justify-content: center\n overflow: hidden\n position: fixed\n z-index: $modal-z\n // Modifiers\n &.is-active\n display: flex\n\n.modal-background\n @extend %overlay\n background-color: $modal-background-background-color\n\n.modal-content,\n.modal-card\n margin: 0 $modal-content-margin-mobile\n max-height: calc(100vh - #{$modal-content-spacing-mobile})\n overflow: auto\n position: relative\n width: 100%\n // Responsiveness\n +from($modal-breakpoint)\n margin: 0 auto\n max-height: calc(100vh - #{$modal-content-spacing-tablet})\n width: $modal-content-width\n\n.modal-close\n @extend %delete\n background: none\n height: $modal-close-dimensions\n position: fixed\n +ltr-position($modal-close-right)\n top: $modal-close-top\n width: $modal-close-dimensions\n\n.modal-card\n display: flex\n flex-direction: column\n max-height: calc(100vh - #{$modal-card-spacing})\n overflow: hidden\n -ms-overflow-y: visible\n\n.modal-card-head,\n.modal-card-foot\n align-items: center\n background-color: $modal-card-head-background-color\n display: flex\n flex-shrink: 0\n justify-content: flex-start\n padding: $modal-card-head-padding\n position: relative\n\n.modal-card-head\n border-bottom: $modal-card-head-border-bottom\n border-top-left-radius: $modal-card-head-radius\n border-top-right-radius: $modal-card-head-radius\n\n.modal-card-title\n color: $modal-card-title-color\n flex-grow: 1\n flex-shrink: 0\n font-size: $modal-card-title-size\n line-height: $modal-card-title-line-height\n\n.modal-card-foot\n border-bottom-left-radius: $modal-card-foot-radius\n border-bottom-right-radius: $modal-card-foot-radius\n border-top: $modal-card-foot-border-top\n .button\n &:not(:last-child)\n +ltr-property(\"margin\", 0.5em)\n\n.modal-card-body\n +overflow-touch\n background-color: $modal-card-body-background-color\n flex-grow: 1\n flex-shrink: 1\n overflow: auto\n padding: $modal-card-body-padding\n","$navbar-background-color: $scheme-main !default\n$navbar-box-shadow-size: 0 2px 0 0 !default\n$navbar-box-shadow-color: $background !default\n$navbar-height: 3.25rem !default\n$navbar-padding-vertical: 1rem !default\n$navbar-padding-horizontal: 2rem !default\n$navbar-z: 30 !default\n$navbar-fixed-z: 30 !default\n\n$navbar-item-color: $text !default\n$navbar-item-hover-color: $link !default\n$navbar-item-hover-background-color: $scheme-main-bis !default\n$navbar-item-active-color: $scheme-invert !default\n$navbar-item-active-background-color: transparent !default\n$navbar-item-img-max-height: 1.75rem !default\n\n$navbar-burger-color: $navbar-item-color !default\n\n$navbar-tab-hover-background-color: transparent !default\n$navbar-tab-hover-border-bottom-color: $link !default\n$navbar-tab-active-color: $link !default\n$navbar-tab-active-background-color: transparent !default\n$navbar-tab-active-border-bottom-color: $link !default\n$navbar-tab-active-border-bottom-style: solid !default\n$navbar-tab-active-border-bottom-width: 3px !default\n\n$navbar-dropdown-background-color: $scheme-main !default\n$navbar-dropdown-border-top: 2px solid $border !default\n$navbar-dropdown-offset: -4px !default\n$navbar-dropdown-arrow: $link !default\n$navbar-dropdown-radius: $radius-large !default\n$navbar-dropdown-z: 20 !default\n\n$navbar-dropdown-boxed-radius: $radius-large !default\n$navbar-dropdown-boxed-shadow: 0 8px 8px bulmaRgba($scheme-invert, 0.1), 0 0 0 1px bulmaRgba($scheme-invert, 0.1) !default\n\n$navbar-dropdown-item-hover-color: $scheme-invert !default\n$navbar-dropdown-item-hover-background-color: $background !default\n$navbar-dropdown-item-active-color: $link !default\n$navbar-dropdown-item-active-background-color: $background !default\n\n$navbar-divider-background-color: $background !default\n$navbar-divider-height: 2px !default\n\n$navbar-bottom-box-shadow-size: 0 -2px 0 0 !default\n\n$navbar-breakpoint: $desktop !default\n\n$navbar-colors: $colors !default\n\n=navbar-fixed\n left: 0\n position: fixed\n right: 0\n z-index: $navbar-fixed-z\n\n.navbar\n background-color: $navbar-background-color\n min-height: $navbar-height\n position: relative\n z-index: $navbar-z\n @each $name, $pair in $navbar-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n .navbar-brand\n & > .navbar-item,\n .navbar-link\n color: $color-invert\n & > a.navbar-item,\n .navbar-link\n &:focus,\n &:hover,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .navbar-link\n &::after\n border-color: $color-invert\n .navbar-burger\n color: $color-invert\n +from($navbar-breakpoint)\n .navbar-start,\n .navbar-end\n & > .navbar-item,\n .navbar-link\n color: $color-invert\n & > a.navbar-item,\n .navbar-link\n &:focus,\n &:hover,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .navbar-link\n &::after\n border-color: $color-invert\n .navbar-item.has-dropdown:focus .navbar-link,\n .navbar-item.has-dropdown:hover .navbar-link,\n .navbar-item.has-dropdown.is-active .navbar-link\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .navbar-dropdown\n a.navbar-item\n &.is-active\n background-color: $color\n color: $color-invert\n & > .container\n align-items: stretch\n display: flex\n min-height: $navbar-height\n width: 100%\n &.has-shadow\n box-shadow: $navbar-box-shadow-size $navbar-box-shadow-color\n &.is-fixed-bottom,\n &.is-fixed-top\n +navbar-fixed\n &.is-fixed-bottom\n bottom: 0\n &.has-shadow\n box-shadow: $navbar-bottom-box-shadow-size $navbar-box-shadow-color\n &.is-fixed-top\n top: 0\n\nhtml,\nbody\n &.has-navbar-fixed-top\n padding-top: $navbar-height\n &.has-navbar-fixed-bottom\n padding-bottom: $navbar-height\n\n.navbar-brand,\n.navbar-tabs\n align-items: stretch\n display: flex\n flex-shrink: 0\n min-height: $navbar-height\n\n.navbar-brand\n a.navbar-item\n &:focus,\n &:hover\n background-color: transparent\n\n.navbar-tabs\n +overflow-touch\n max-width: 100vw\n overflow-x: auto\n overflow-y: hidden\n\n.navbar-burger\n color: $navbar-burger-color\n +hamburger($navbar-height)\n +ltr-property(\"margin\", auto, false)\n\n.navbar-menu\n display: none\n\n.navbar-item,\n.navbar-link\n color: $navbar-item-color\n display: block\n line-height: 1.5\n padding: 0.5rem 0.75rem\n position: relative\n .icon\n &:only-child\n margin-left: -0.25rem\n margin-right: -0.25rem\n\na.navbar-item,\n.navbar-link\n cursor: pointer\n &:focus,\n &:focus-within,\n &:hover,\n &.is-active\n background-color: $navbar-item-hover-background-color\n color: $navbar-item-hover-color\n\n.navbar-item\n flex-grow: 0\n flex-shrink: 0\n img\n max-height: $navbar-item-img-max-height\n &.has-dropdown\n padding: 0\n &.is-expanded\n flex-grow: 1\n flex-shrink: 1\n &.is-tab\n border-bottom: 1px solid transparent\n min-height: $navbar-height\n padding-bottom: calc(0.5rem - 1px)\n &:focus,\n &:hover\n background-color: $navbar-tab-hover-background-color\n border-bottom-color: $navbar-tab-hover-border-bottom-color\n &.is-active\n background-color: $navbar-tab-active-background-color\n border-bottom-color: $navbar-tab-active-border-bottom-color\n border-bottom-style: $navbar-tab-active-border-bottom-style\n border-bottom-width: $navbar-tab-active-border-bottom-width\n color: $navbar-tab-active-color\n padding-bottom: calc(0.5rem - #{$navbar-tab-active-border-bottom-width})\n\n.navbar-content\n flex-grow: 1\n flex-shrink: 1\n\n.navbar-link:not(.is-arrowless)\n +ltr-property(\"padding\", 2.5em)\n &::after\n @extend %arrow\n border-color: $navbar-dropdown-arrow\n margin-top: -0.375em\n +ltr-position(1.125em)\n\n.navbar-dropdown\n font-size: 0.875rem\n padding-bottom: 0.5rem\n padding-top: 0.5rem\n .navbar-item\n padding-left: 1.5rem\n padding-right: 1.5rem\n\n.navbar-divider\n background-color: $navbar-divider-background-color\n border: none\n display: none\n height: $navbar-divider-height\n margin: 0.5rem 0\n\n+until($navbar-breakpoint)\n .navbar > .container\n display: block\n .navbar-brand,\n .navbar-tabs\n .navbar-item\n align-items: center\n display: flex\n .navbar-link\n &::after\n display: none\n .navbar-menu\n background-color: $navbar-background-color\n box-shadow: 0 8px 16px bulmaRgba($scheme-invert, 0.1)\n padding: 0.5rem 0\n &.is-active\n display: block\n // Fixed navbar\n .navbar\n &.is-fixed-bottom-touch,\n &.is-fixed-top-touch\n +navbar-fixed\n &.is-fixed-bottom-touch\n bottom: 0\n &.has-shadow\n box-shadow: 0 -2px 3px bulmaRgba($scheme-invert, 0.1)\n &.is-fixed-top-touch\n top: 0\n &.is-fixed-top,\n &.is-fixed-top-touch\n .navbar-menu\n +overflow-touch\n max-height: calc(100vh - #{$navbar-height})\n overflow: auto\n html,\n body\n &.has-navbar-fixed-top-touch\n padding-top: $navbar-height\n &.has-navbar-fixed-bottom-touch\n padding-bottom: $navbar-height\n\n+from($navbar-breakpoint)\n .navbar,\n .navbar-menu,\n .navbar-start,\n .navbar-end\n align-items: stretch\n display: flex\n .navbar\n min-height: $navbar-height\n &.is-spaced\n padding: $navbar-padding-vertical $navbar-padding-horizontal\n .navbar-start,\n .navbar-end\n align-items: center\n a.navbar-item,\n .navbar-link\n border-radius: $radius\n &.is-transparent\n a.navbar-item,\n .navbar-link\n &:focus,\n &:hover,\n &.is-active\n background-color: transparent !important\n .navbar-item.has-dropdown\n &.is-active,\n &.is-hoverable:focus,\n &.is-hoverable:focus-within,\n &.is-hoverable:hover\n .navbar-link\n background-color: transparent !important\n .navbar-dropdown\n a.navbar-item\n &:focus,\n &:hover\n background-color: $navbar-dropdown-item-hover-background-color\n color: $navbar-dropdown-item-hover-color\n &.is-active\n background-color: $navbar-dropdown-item-active-background-color\n color: $navbar-dropdown-item-active-color\n .navbar-burger\n display: none\n .navbar-item,\n .navbar-link\n align-items: center\n display: flex\n .navbar-item\n &.has-dropdown\n align-items: stretch\n &.has-dropdown-up\n .navbar-link::after\n transform: rotate(135deg) translate(0.25em, -0.25em)\n .navbar-dropdown\n border-bottom: $navbar-dropdown-border-top\n border-radius: $navbar-dropdown-radius $navbar-dropdown-radius 0 0\n border-top: none\n bottom: 100%\n box-shadow: 0 -8px 8px bulmaRgba($scheme-invert, 0.1)\n top: auto\n &.is-active,\n &.is-hoverable:focus,\n &.is-hoverable:focus-within,\n &.is-hoverable:hover\n .navbar-dropdown\n display: block\n .navbar.is-spaced &,\n &.is-boxed\n opacity: 1\n pointer-events: auto\n transform: translateY(0)\n .navbar-menu\n flex-grow: 1\n flex-shrink: 0\n .navbar-start\n justify-content: flex-start\n +ltr-property(\"margin\", auto)\n .navbar-end\n justify-content: flex-end\n +ltr-property(\"margin\", auto, false)\n .navbar-dropdown\n background-color: $navbar-dropdown-background-color\n border-bottom-left-radius: $navbar-dropdown-radius\n border-bottom-right-radius: $navbar-dropdown-radius\n border-top: $navbar-dropdown-border-top\n box-shadow: 0 8px 8px bulmaRgba($scheme-invert, 0.1)\n display: none\n font-size: 0.875rem\n +ltr-position(0, false)\n min-width: 100%\n position: absolute\n top: 100%\n z-index: $navbar-dropdown-z\n .navbar-item\n padding: 0.375rem 1rem\n white-space: nowrap\n a.navbar-item\n +ltr-property(\"padding\", 3rem)\n &:focus,\n &:hover\n background-color: $navbar-dropdown-item-hover-background-color\n color: $navbar-dropdown-item-hover-color\n &.is-active\n background-color: $navbar-dropdown-item-active-background-color\n color: $navbar-dropdown-item-active-color\n .navbar.is-spaced &,\n &.is-boxed\n border-radius: $navbar-dropdown-boxed-radius\n border-top: none\n box-shadow: $navbar-dropdown-boxed-shadow\n display: block\n opacity: 0\n pointer-events: none\n top: calc(100% + (#{$navbar-dropdown-offset}))\n transform: translateY(-5px)\n transition-duration: $speed\n transition-property: opacity, transform\n &.is-right\n left: auto\n right: 0\n .navbar-divider\n display: block\n .navbar > .container,\n .container > .navbar\n .navbar-brand\n +ltr-property(\"margin\", -.75rem, false)\n .navbar-menu\n +ltr-property(\"margin\", -.75rem)\n // Fixed navbar\n .navbar\n &.is-fixed-bottom-desktop,\n &.is-fixed-top-desktop\n +navbar-fixed\n &.is-fixed-bottom-desktop\n bottom: 0\n &.has-shadow\n box-shadow: 0 -2px 3px bulmaRgba($scheme-invert, 0.1)\n &.is-fixed-top-desktop\n top: 0\n html,\n body\n &.has-navbar-fixed-top-desktop\n padding-top: $navbar-height\n &.has-navbar-fixed-bottom-desktop\n padding-bottom: $navbar-height\n &.has-spaced-navbar-fixed-top\n padding-top: $navbar-height + ($navbar-padding-vertical * 2)\n &.has-spaced-navbar-fixed-bottom\n padding-bottom: $navbar-height + ($navbar-padding-vertical * 2)\n // Hover/Active states\n a.navbar-item,\n .navbar-link\n &.is-active\n color: $navbar-item-active-color\n &.is-active:not(:focus):not(:hover)\n background-color: $navbar-item-active-background-color\n .navbar-item.has-dropdown\n &:focus,\n &:hover,\n &.is-active\n .navbar-link\n background-color: $navbar-item-hover-background-color\n\n// Combination\n\n.hero\n &.is-fullheight-with-navbar\n min-height: calc(100vh - #{$navbar-height})\n","$pagination-color: $text-strong !default\n$pagination-border-color: $border !default\n$pagination-margin: -0.25rem !default\n$pagination-min-width: $control-height !default\n\n$pagination-item-font-size: 1em !default\n$pagination-item-margin: 0.25rem !default\n$pagination-item-padding-left: 0.5em !default\n$pagination-item-padding-right: 0.5em !default\n\n$pagination-hover-color: $link-hover !default\n$pagination-hover-border-color: $link-hover-border !default\n\n$pagination-focus-color: $link-focus !default\n$pagination-focus-border-color: $link-focus-border !default\n\n$pagination-active-color: $link-active !default\n$pagination-active-border-color: $link-active-border !default\n\n$pagination-disabled-color: $text-light !default\n$pagination-disabled-background-color: $border !default\n$pagination-disabled-border-color: $border !default\n\n$pagination-current-color: $link-invert !default\n$pagination-current-background-color: $link !default\n$pagination-current-border-color: $link !default\n\n$pagination-ellipsis-color: $grey-light !default\n\n$pagination-shadow-inset: inset 0 1px 2px rgba($scheme-invert, 0.2)\n\n.pagination\n @extend %block\n font-size: $size-normal\n margin: $pagination-margin\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n &.is-rounded\n .pagination-previous,\n .pagination-next\n padding-left: 1em\n padding-right: 1em\n border-radius: $radius-rounded\n .pagination-link\n border-radius: $radius-rounded\n\n.pagination,\n.pagination-list\n align-items: center\n display: flex\n justify-content: center\n text-align: center\n\n.pagination-previous,\n.pagination-next,\n.pagination-link,\n.pagination-ellipsis\n @extend %control\n @extend %unselectable\n font-size: $pagination-item-font-size\n justify-content: center\n margin: $pagination-item-margin\n padding-left: $pagination-item-padding-left\n padding-right: $pagination-item-padding-right\n text-align: center\n\n.pagination-previous,\n.pagination-next,\n.pagination-link\n border-color: $pagination-border-color\n color: $pagination-color\n min-width: $pagination-min-width\n &:hover\n border-color: $pagination-hover-border-color\n color: $pagination-hover-color\n &:focus\n border-color: $pagination-focus-border-color\n &:active\n box-shadow: $pagination-shadow-inset\n &[disabled]\n background-color: $pagination-disabled-background-color\n border-color: $pagination-disabled-border-color\n box-shadow: none\n color: $pagination-disabled-color\n opacity: 0.5\n\n.pagination-previous,\n.pagination-next\n padding-left: 0.75em\n padding-right: 0.75em\n white-space: nowrap\n\n.pagination-link\n &.is-current\n background-color: $pagination-current-background-color\n border-color: $pagination-current-border-color\n color: $pagination-current-color\n\n.pagination-ellipsis\n color: $pagination-ellipsis-color\n pointer-events: none\n\n.pagination-list\n flex-wrap: wrap\n\n+mobile\n .pagination\n flex-wrap: wrap\n .pagination-previous,\n .pagination-next\n flex-grow: 1\n flex-shrink: 1\n .pagination-list\n li\n flex-grow: 1\n flex-shrink: 1\n\n+tablet\n .pagination-list\n flex-grow: 1\n flex-shrink: 1\n justify-content: flex-start\n order: 1\n .pagination-previous\n order: 2\n .pagination-next\n order: 3\n .pagination\n justify-content: space-between\n &.is-centered\n .pagination-previous\n order: 1\n .pagination-list\n justify-content: center\n order: 2\n .pagination-next\n order: 3\n &.is-right\n .pagination-previous\n order: 1\n .pagination-next\n order: 2\n .pagination-list\n justify-content: flex-end\n order: 3\n","$panel-margin: $block-spacing !default\n$panel-item-border: 1px solid $border-light !default\n$panel-radius: $radius-large !default\n$panel-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default\n\n$panel-heading-background-color: $border-light !default\n$panel-heading-color: $text-strong !default\n$panel-heading-line-height: 1.25 !default\n$panel-heading-padding: 0.75em 1em !default\n$panel-heading-radius: $radius !default\n$panel-heading-size: 1.25em !default\n$panel-heading-weight: $weight-bold !default\n\n$panel-tabs-font-size: 0.875em !default\n$panel-tab-border-bottom: 1px solid $border !default\n$panel-tab-active-border-bottom-color: $link-active-border !default\n$panel-tab-active-color: $link-active !default\n\n$panel-list-item-color: $text !default\n$panel-list-item-hover-color: $link !default\n\n$panel-block-color: $text-strong !default\n$panel-block-hover-background-color: $background !default\n$panel-block-active-border-left-color: $link !default\n$panel-block-active-color: $link-active !default\n$panel-block-active-icon-color: $link !default\n\n$panel-icon-color: $text-light !default\n$panel-colors: $colors !default\n\n.panel\n border-radius: $panel-radius\n box-shadow: $panel-shadow\n font-size: $size-normal\n &:not(:last-child)\n margin-bottom: $panel-margin\n // Colors\n @each $name, $components in $panel-colors\n $color: nth($components, 1)\n $color-invert: nth($components, 2)\n &.is-#{$name}\n .panel-heading\n background-color: $color\n color: $color-invert\n .panel-tabs a.is-active\n border-bottom-color: $color\n .panel-block.is-active .panel-icon\n color: $color\n\n.panel-tabs,\n.panel-block\n &:not(:last-child)\n border-bottom: $panel-item-border\n\n.panel-heading\n background-color: $panel-heading-background-color\n border-radius: $panel-radius $panel-radius 0 0\n color: $panel-heading-color\n font-size: $panel-heading-size\n font-weight: $panel-heading-weight\n line-height: $panel-heading-line-height\n padding: $panel-heading-padding\n\n.panel-tabs\n align-items: flex-end\n display: flex\n font-size: $panel-tabs-font-size\n justify-content: center\n a\n border-bottom: $panel-tab-border-bottom\n margin-bottom: -1px\n padding: 0.5em\n // Modifiers\n &.is-active\n border-bottom-color: $panel-tab-active-border-bottom-color\n color: $panel-tab-active-color\n\n.panel-list\n a\n color: $panel-list-item-color\n &:hover\n color: $panel-list-item-hover-color\n\n.panel-block\n align-items: center\n color: $panel-block-color\n display: flex\n justify-content: flex-start\n padding: 0.5em 0.75em\n input[type=\"checkbox\"]\n +ltr-property(\"margin\", 0.75em)\n & > .control\n flex-grow: 1\n flex-shrink: 1\n width: 100%\n &.is-wrapped\n flex-wrap: wrap\n &.is-active\n border-left-color: $panel-block-active-border-left-color\n color: $panel-block-active-color\n .panel-icon\n color: $panel-block-active-icon-color\n &:last-child\n border-bottom-left-radius: $panel-radius\n border-bottom-right-radius: $panel-radius\n\na.panel-block,\nlabel.panel-block\n cursor: pointer\n &:hover\n background-color: $panel-block-hover-background-color\n\n.panel-icon\n +fa(14px, 1em)\n color: $panel-icon-color\n +ltr-property(\"margin\", 0.75em)\n .fa\n font-size: inherit\n line-height: inherit\n","$tabs-border-bottom-color: $border !default\n$tabs-border-bottom-style: solid !default\n$tabs-border-bottom-width: 1px !default\n$tabs-link-color: $text !default\n$tabs-link-hover-border-bottom-color: $text-strong !default\n$tabs-link-hover-color: $text-strong !default\n$tabs-link-active-border-bottom-color: $link !default\n$tabs-link-active-color: $link !default\n$tabs-link-padding: 0.5em 1em !default\n\n$tabs-boxed-link-radius: $radius !default\n$tabs-boxed-link-hover-background-color: $background !default\n$tabs-boxed-link-hover-border-bottom-color: $border !default\n\n$tabs-boxed-link-active-background-color: $scheme-main !default\n$tabs-boxed-link-active-border-color: $border !default\n$tabs-boxed-link-active-border-bottom-color: transparent !default\n\n$tabs-toggle-link-border-color: $border !default\n$tabs-toggle-link-border-style: solid !default\n$tabs-toggle-link-border-width: 1px !default\n$tabs-toggle-link-hover-background-color: $background !default\n$tabs-toggle-link-hover-border-color: $border-hover !default\n$tabs-toggle-link-radius: $radius !default\n$tabs-toggle-link-active-background-color: $link !default\n$tabs-toggle-link-active-border-color: $link !default\n$tabs-toggle-link-active-color: $link-invert !default\n\n.tabs\n @extend %block\n +overflow-touch\n @extend %unselectable\n align-items: stretch\n display: flex\n font-size: $size-normal\n justify-content: space-between\n overflow: hidden\n overflow-x: auto\n white-space: nowrap\n a\n align-items: center\n border-bottom-color: $tabs-border-bottom-color\n border-bottom-style: $tabs-border-bottom-style\n border-bottom-width: $tabs-border-bottom-width\n color: $tabs-link-color\n display: flex\n justify-content: center\n margin-bottom: -#{$tabs-border-bottom-width}\n padding: $tabs-link-padding\n vertical-align: top\n &:hover\n border-bottom-color: $tabs-link-hover-border-bottom-color\n color: $tabs-link-hover-color\n li\n display: block\n &.is-active\n a\n border-bottom-color: $tabs-link-active-border-bottom-color\n color: $tabs-link-active-color\n ul\n align-items: center\n border-bottom-color: $tabs-border-bottom-color\n border-bottom-style: $tabs-border-bottom-style\n border-bottom-width: $tabs-border-bottom-width\n display: flex\n flex-grow: 1\n flex-shrink: 0\n justify-content: flex-start\n &.is-left\n padding-right: 0.75em\n &.is-center\n flex: none\n justify-content: center\n padding-left: 0.75em\n padding-right: 0.75em\n &.is-right\n justify-content: flex-end\n padding-left: 0.75em\n .icon\n &:first-child\n +ltr-property(\"margin\", 0.5em)\n &:last-child\n +ltr-property(\"margin\", 0.5em, false)\n // Alignment\n &.is-centered\n ul\n justify-content: center\n &.is-right\n ul\n justify-content: flex-end\n // Styles\n &.is-boxed\n a\n border: 1px solid transparent\n +ltr\n border-radius: $tabs-boxed-link-radius $tabs-boxed-link-radius 0 0\n +rtl\n border-radius: 0 0 $tabs-boxed-link-radius $tabs-boxed-link-radius\n &:hover\n background-color: $tabs-boxed-link-hover-background-color\n border-bottom-color: $tabs-boxed-link-hover-border-bottom-color\n li\n &.is-active\n a\n background-color: $tabs-boxed-link-active-background-color\n border-color: $tabs-boxed-link-active-border-color\n border-bottom-color: $tabs-boxed-link-active-border-bottom-color !important\n &.is-fullwidth\n li\n flex-grow: 1\n flex-shrink: 0\n &.is-toggle\n a\n border-color: $tabs-toggle-link-border-color\n border-style: $tabs-toggle-link-border-style\n border-width: $tabs-toggle-link-border-width\n margin-bottom: 0\n position: relative\n &:hover\n background-color: $tabs-toggle-link-hover-background-color\n border-color: $tabs-toggle-link-hover-border-color\n z-index: 2\n li\n & + li\n +ltr-property(\"margin\", -#{$tabs-toggle-link-border-width}, false)\n &:first-child a\n +ltr\n border-top-left-radius: $tabs-toggle-link-radius\n border-bottom-left-radius: $tabs-toggle-link-radius\n +rtl\n border-top-right-radius: $tabs-toggle-link-radius\n border-bottom-right-radius: $tabs-toggle-link-radius\n &:last-child a\n +ltr\n border-top-right-radius: $tabs-toggle-link-radius\n border-bottom-right-radius: $tabs-toggle-link-radius\n +rtl\n border-top-left-radius: $tabs-toggle-link-radius\n border-bottom-left-radius: $tabs-toggle-link-radius\n &.is-active\n a\n background-color: $tabs-toggle-link-active-background-color\n border-color: $tabs-toggle-link-active-border-color\n color: $tabs-toggle-link-active-color\n z-index: 1\n ul\n border-bottom: none\n &.is-toggle-rounded\n li\n &:first-child a\n +ltr\n border-bottom-left-radius: $radius-rounded\n border-top-left-radius: $radius-rounded\n padding-left: 1.25em\n +rtl\n border-bottom-right-radius: $radius-rounded\n border-top-right-radius: $radius-rounded\n padding-right: 1.25em\n &:last-child a\n +ltr\n border-bottom-right-radius: $radius-rounded\n border-top-right-radius: $radius-rounded\n padding-right: 1.25em\n +rtl\n border-bottom-left-radius: $radius-rounded\n border-top-left-radius: $radius-rounded\n padding-left: 1.25em\n // Sizes\n &.is-small\n font-size: $size-small\n &.is-medium\n font-size: $size-medium\n &.is-large\n font-size: $size-large\n","$column-gap: 0.75rem !default\n\n.column\n display: block\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 1\n padding: $column-gap\n .columns.is-mobile > &.is-narrow\n flex: none\n .columns.is-mobile > &.is-full\n flex: none\n width: 100%\n .columns.is-mobile > &.is-three-quarters\n flex: none\n width: 75%\n .columns.is-mobile > &.is-two-thirds\n flex: none\n width: 66.6666%\n .columns.is-mobile > &.is-half\n flex: none\n width: 50%\n .columns.is-mobile > &.is-one-third\n flex: none\n width: 33.3333%\n .columns.is-mobile > &.is-one-quarter\n flex: none\n width: 25%\n .columns.is-mobile > &.is-one-fifth\n flex: none\n width: 20%\n .columns.is-mobile > &.is-two-fifths\n flex: none\n width: 40%\n .columns.is-mobile > &.is-three-fifths\n flex: none\n width: 60%\n .columns.is-mobile > &.is-four-fifths\n flex: none\n width: 80%\n .columns.is-mobile > &.is-offset-three-quarters\n margin-left: 75%\n .columns.is-mobile > &.is-offset-two-thirds\n margin-left: 66.6666%\n .columns.is-mobile > &.is-offset-half\n margin-left: 50%\n .columns.is-mobile > &.is-offset-one-third\n margin-left: 33.3333%\n .columns.is-mobile > &.is-offset-one-quarter\n margin-left: 25%\n .columns.is-mobile > &.is-offset-one-fifth\n margin-left: 20%\n .columns.is-mobile > &.is-offset-two-fifths\n margin-left: 40%\n .columns.is-mobile > &.is-offset-three-fifths\n margin-left: 60%\n .columns.is-mobile > &.is-offset-four-fifths\n margin-left: 80%\n @for $i from 0 through 12\n .columns.is-mobile > &.is-#{$i}\n flex: none\n width: percentage($i / 12)\n .columns.is-mobile > &.is-offset-#{$i}\n margin-left: percentage($i / 12)\n +mobile\n &.is-narrow-mobile\n flex: none\n &.is-full-mobile\n flex: none\n width: 100%\n &.is-three-quarters-mobile\n flex: none\n width: 75%\n &.is-two-thirds-mobile\n flex: none\n width: 66.6666%\n &.is-half-mobile\n flex: none\n width: 50%\n &.is-one-third-mobile\n flex: none\n width: 33.3333%\n &.is-one-quarter-mobile\n flex: none\n width: 25%\n &.is-one-fifth-mobile\n flex: none\n width: 20%\n &.is-two-fifths-mobile\n flex: none\n width: 40%\n &.is-three-fifths-mobile\n flex: none\n width: 60%\n &.is-four-fifths-mobile\n flex: none\n width: 80%\n &.is-offset-three-quarters-mobile\n margin-left: 75%\n &.is-offset-two-thirds-mobile\n margin-left: 66.6666%\n &.is-offset-half-mobile\n margin-left: 50%\n &.is-offset-one-third-mobile\n margin-left: 33.3333%\n &.is-offset-one-quarter-mobile\n margin-left: 25%\n &.is-offset-one-fifth-mobile\n margin-left: 20%\n &.is-offset-two-fifths-mobile\n margin-left: 40%\n &.is-offset-three-fifths-mobile\n margin-left: 60%\n &.is-offset-four-fifths-mobile\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-mobile\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-mobile\n margin-left: percentage($i / 12)\n +tablet\n &.is-narrow,\n &.is-narrow-tablet\n flex: none\n &.is-full,\n &.is-full-tablet\n flex: none\n width: 100%\n &.is-three-quarters,\n &.is-three-quarters-tablet\n flex: none\n width: 75%\n &.is-two-thirds,\n &.is-two-thirds-tablet\n flex: none\n width: 66.6666%\n &.is-half,\n &.is-half-tablet\n flex: none\n width: 50%\n &.is-one-third,\n &.is-one-third-tablet\n flex: none\n width: 33.3333%\n &.is-one-quarter,\n &.is-one-quarter-tablet\n flex: none\n width: 25%\n &.is-one-fifth,\n &.is-one-fifth-tablet\n flex: none\n width: 20%\n &.is-two-fifths,\n &.is-two-fifths-tablet\n flex: none\n width: 40%\n &.is-three-fifths,\n &.is-three-fifths-tablet\n flex: none\n width: 60%\n &.is-four-fifths,\n &.is-four-fifths-tablet\n flex: none\n width: 80%\n &.is-offset-three-quarters,\n &.is-offset-three-quarters-tablet\n margin-left: 75%\n &.is-offset-two-thirds,\n &.is-offset-two-thirds-tablet\n margin-left: 66.6666%\n &.is-offset-half,\n &.is-offset-half-tablet\n margin-left: 50%\n &.is-offset-one-third,\n &.is-offset-one-third-tablet\n margin-left: 33.3333%\n &.is-offset-one-quarter,\n &.is-offset-one-quarter-tablet\n margin-left: 25%\n &.is-offset-one-fifth,\n &.is-offset-one-fifth-tablet\n margin-left: 20%\n &.is-offset-two-fifths,\n &.is-offset-two-fifths-tablet\n margin-left: 40%\n &.is-offset-three-fifths,\n &.is-offset-three-fifths-tablet\n margin-left: 60%\n &.is-offset-four-fifths,\n &.is-offset-four-fifths-tablet\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i},\n &.is-#{$i}-tablet\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i},\n &.is-offset-#{$i}-tablet\n margin-left: percentage($i / 12)\n +touch\n &.is-narrow-touch\n flex: none\n &.is-full-touch\n flex: none\n width: 100%\n &.is-three-quarters-touch\n flex: none\n width: 75%\n &.is-two-thirds-touch\n flex: none\n width: 66.6666%\n &.is-half-touch\n flex: none\n width: 50%\n &.is-one-third-touch\n flex: none\n width: 33.3333%\n &.is-one-quarter-touch\n flex: none\n width: 25%\n &.is-one-fifth-touch\n flex: none\n width: 20%\n &.is-two-fifths-touch\n flex: none\n width: 40%\n &.is-three-fifths-touch\n flex: none\n width: 60%\n &.is-four-fifths-touch\n flex: none\n width: 80%\n &.is-offset-three-quarters-touch\n margin-left: 75%\n &.is-offset-two-thirds-touch\n margin-left: 66.6666%\n &.is-offset-half-touch\n margin-left: 50%\n &.is-offset-one-third-touch\n margin-left: 33.3333%\n &.is-offset-one-quarter-touch\n margin-left: 25%\n &.is-offset-one-fifth-touch\n margin-left: 20%\n &.is-offset-two-fifths-touch\n margin-left: 40%\n &.is-offset-three-fifths-touch\n margin-left: 60%\n &.is-offset-four-fifths-touch\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-touch\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-touch\n margin-left: percentage($i / 12)\n +desktop\n &.is-narrow-desktop\n flex: none\n &.is-full-desktop\n flex: none\n width: 100%\n &.is-three-quarters-desktop\n flex: none\n width: 75%\n &.is-two-thirds-desktop\n flex: none\n width: 66.6666%\n &.is-half-desktop\n flex: none\n width: 50%\n &.is-one-third-desktop\n flex: none\n width: 33.3333%\n &.is-one-quarter-desktop\n flex: none\n width: 25%\n &.is-one-fifth-desktop\n flex: none\n width: 20%\n &.is-two-fifths-desktop\n flex: none\n width: 40%\n &.is-three-fifths-desktop\n flex: none\n width: 60%\n &.is-four-fifths-desktop\n flex: none\n width: 80%\n &.is-offset-three-quarters-desktop\n margin-left: 75%\n &.is-offset-two-thirds-desktop\n margin-left: 66.6666%\n &.is-offset-half-desktop\n margin-left: 50%\n &.is-offset-one-third-desktop\n margin-left: 33.3333%\n &.is-offset-one-quarter-desktop\n margin-left: 25%\n &.is-offset-one-fifth-desktop\n margin-left: 20%\n &.is-offset-two-fifths-desktop\n margin-left: 40%\n &.is-offset-three-fifths-desktop\n margin-left: 60%\n &.is-offset-four-fifths-desktop\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-desktop\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-desktop\n margin-left: percentage($i / 12)\n +widescreen\n &.is-narrow-widescreen\n flex: none\n &.is-full-widescreen\n flex: none\n width: 100%\n &.is-three-quarters-widescreen\n flex: none\n width: 75%\n &.is-two-thirds-widescreen\n flex: none\n width: 66.6666%\n &.is-half-widescreen\n flex: none\n width: 50%\n &.is-one-third-widescreen\n flex: none\n width: 33.3333%\n &.is-one-quarter-widescreen\n flex: none\n width: 25%\n &.is-one-fifth-widescreen\n flex: none\n width: 20%\n &.is-two-fifths-widescreen\n flex: none\n width: 40%\n &.is-three-fifths-widescreen\n flex: none\n width: 60%\n &.is-four-fifths-widescreen\n flex: none\n width: 80%\n &.is-offset-three-quarters-widescreen\n margin-left: 75%\n &.is-offset-two-thirds-widescreen\n margin-left: 66.6666%\n &.is-offset-half-widescreen\n margin-left: 50%\n &.is-offset-one-third-widescreen\n margin-left: 33.3333%\n &.is-offset-one-quarter-widescreen\n margin-left: 25%\n &.is-offset-one-fifth-widescreen\n margin-left: 20%\n &.is-offset-two-fifths-widescreen\n margin-left: 40%\n &.is-offset-three-fifths-widescreen\n margin-left: 60%\n &.is-offset-four-fifths-widescreen\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-widescreen\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-widescreen\n margin-left: percentage($i / 12)\n +fullhd\n &.is-narrow-fullhd\n flex: none\n &.is-full-fullhd\n flex: none\n width: 100%\n &.is-three-quarters-fullhd\n flex: none\n width: 75%\n &.is-two-thirds-fullhd\n flex: none\n width: 66.6666%\n &.is-half-fullhd\n flex: none\n width: 50%\n &.is-one-third-fullhd\n flex: none\n width: 33.3333%\n &.is-one-quarter-fullhd\n flex: none\n width: 25%\n &.is-one-fifth-fullhd\n flex: none\n width: 20%\n &.is-two-fifths-fullhd\n flex: none\n width: 40%\n &.is-three-fifths-fullhd\n flex: none\n width: 60%\n &.is-four-fifths-fullhd\n flex: none\n width: 80%\n &.is-offset-three-quarters-fullhd\n margin-left: 75%\n &.is-offset-two-thirds-fullhd\n margin-left: 66.6666%\n &.is-offset-half-fullhd\n margin-left: 50%\n &.is-offset-one-third-fullhd\n margin-left: 33.3333%\n &.is-offset-one-quarter-fullhd\n margin-left: 25%\n &.is-offset-one-fifth-fullhd\n margin-left: 20%\n &.is-offset-two-fifths-fullhd\n margin-left: 40%\n &.is-offset-three-fifths-fullhd\n margin-left: 60%\n &.is-offset-four-fifths-fullhd\n margin-left: 80%\n @for $i from 0 through 12\n &.is-#{$i}-fullhd\n flex: none\n width: percentage($i / 12)\n &.is-offset-#{$i}-fullhd\n margin-left: percentage($i / 12)\n\n.columns\n margin-left: (-$column-gap)\n margin-right: (-$column-gap)\n margin-top: (-$column-gap)\n &:last-child\n margin-bottom: (-$column-gap)\n &:not(:last-child)\n margin-bottom: calc(1.5rem - #{$column-gap})\n // Modifiers\n &.is-centered\n justify-content: center\n &.is-gapless\n margin-left: 0\n margin-right: 0\n margin-top: 0\n & > .column\n margin: 0\n padding: 0 !important\n &:not(:last-child)\n margin-bottom: 1.5rem\n &:last-child\n margin-bottom: 0\n &.is-mobile\n display: flex\n &.is-multiline\n flex-wrap: wrap\n &.is-vcentered\n align-items: center\n // Responsiveness\n +tablet\n &:not(.is-desktop)\n display: flex\n +desktop\n // Modifiers\n &.is-desktop\n display: flex\n\n@if $variable-columns\n .columns.is-variable\n --columnGap: 0.75rem\n margin-left: calc(-1 * var(--columnGap))\n margin-right: calc(-1 * var(--columnGap))\n .column\n padding-left: var(--columnGap)\n padding-right: var(--columnGap)\n @for $i from 0 through 8\n &.is-#{$i}\n --columnGap: #{$i * 0.25rem}\n +mobile\n &.is-#{$i}-mobile\n --columnGap: #{$i * 0.25rem}\n +tablet\n &.is-#{$i}-tablet\n --columnGap: #{$i * 0.25rem}\n +tablet-only\n &.is-#{$i}-tablet-only\n --columnGap: #{$i * 0.25rem}\n +touch\n &.is-#{$i}-touch\n --columnGap: #{$i * 0.25rem}\n +desktop\n &.is-#{$i}-desktop\n --columnGap: #{$i * 0.25rem}\n +desktop-only\n &.is-#{$i}-desktop-only\n --columnGap: #{$i * 0.25rem}\n +widescreen\n &.is-#{$i}-widescreen\n --columnGap: #{$i * 0.25rem}\n +widescreen-only\n &.is-#{$i}-widescreen-only\n --columnGap: #{$i * 0.25rem}\n +fullhd\n &.is-#{$i}-fullhd\n --columnGap: #{$i * 0.25rem}\n","$tile-spacing: 0.75rem !default\n\n.tile\n align-items: stretch\n display: block\n flex-basis: 0\n flex-grow: 1\n flex-shrink: 1\n min-height: min-content\n // Modifiers\n &.is-ancestor\n margin-left: $tile-spacing * -1\n margin-right: $tile-spacing * -1\n margin-top: $tile-spacing * -1\n &:last-child\n margin-bottom: $tile-spacing * -1\n &:not(:last-child)\n margin-bottom: $tile-spacing\n &.is-child\n margin: 0 !important\n &.is-parent\n padding: $tile-spacing\n &.is-vertical\n flex-direction: column\n & > .tile.is-child:not(:last-child)\n margin-bottom: 1.5rem !important\n // Responsiveness\n +tablet\n &:not(.is-child)\n display: flex\n @for $i from 1 through 12\n &.is-#{$i}\n flex: none\n width: ($i / 12) * 100%\n","@each $name, $pair in $colors\n $color: nth($pair, 1)\n .has-text-#{$name}\n color: $color !important\n a.has-text-#{$name}\n &:hover,\n &:focus\n color: bulmaDarken($color, 10%) !important\n .has-background-#{$name}\n background-color: $color !important\n @if length($pair) >= 4\n $color-light: nth($pair, 3)\n $color-dark: nth($pair, 4)\n // Light\n .has-text-#{$name}-light\n color: $color-light !important\n a.has-text-#{$name}-light\n &:hover,\n &:focus\n color: bulmaDarken($color-light, 10%) !important\n .has-background-#{$name}-light\n background-color: $color-light !important\n // Dark\n .has-text-#{$name}-dark\n color: $color-dark !important\n a.has-text-#{$name}-dark\n &:hover,\n &:focus\n color: bulmaLighten($color-dark, 10%) !important\n .has-background-#{$name}-dark\n background-color: $color-dark !important\n\n@each $name, $shade in $shades\n .has-text-#{$name}\n color: $shade !important\n .has-background-#{$name}\n background-color: $shade !important\n","$flex-direction-values: row, row-reverse, column, column-reverse\n@each $value in $flex-direction-values\n .is-flex-direction-#{$value}\n flex-direction: $value !important\n\n$flex-wrap-values: nowrap, wrap, wrap-reverse\n@each $value in $flex-wrap-values\n .is-flex-wrap-#{$value}\n flex-wrap: $value !important\n\n$justify-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, start, end, left, right\n@each $value in $justify-content-values\n .is-justify-content-#{$value}\n justify-content: $value !important\n\n$align-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, stretch, start, end, baseline\n@each $value in $align-content-values\n .is-align-content-#{$value}\n align-content: $value !important\n\n$align-items-values: stretch, flex-start, flex-end, center, baseline, start, end, self-start, self-end\n@each $value in $align-items-values\n .is-align-items-#{$value}\n align-items: $value !important\n\n$align-self-values: auto, flex-start, flex-end, center, baseline, stretch\n@each $value in $align-self-values\n .is-align-self-#{$value}\n align-self: $value !important\n\n$flex-operators: grow, shrink\n@each $operator in $flex-operators\n @for $i from 0 through 5\n .is-flex-#{$operator}-#{$i}\n flex-#{$operator}: $i !important\n",".is-clearfix\n +clearfix\n\n.is-pulled-left\n float: left !important\n\n.is-pulled-right\n float: right !important\n",".is-radiusless\n border-radius: 0 !important\n\n.is-shadowless\n box-shadow: none !important\n\n.is-clickable\n cursor: pointer !important\n\n.is-unselectable\n @extend %unselectable\n",".is-clipped\n overflow: hidden !important\n",".is-overlay\n @extend %overlay\n\n.is-relative\n position: relative !important\n",".is-marginless\n margin: 0 !important\n\n.is-paddingless\n padding: 0 !important\n\n$spacing-shortcuts: (\"margin\": \"m\", \"padding\": \"p\") !default\n$spacing-directions: (\"top\": \"t\", \"right\": \"r\", \"bottom\": \"b\", \"left\": \"l\") !default\n$spacing-horizontal: \"x\" !default\n$spacing-vertical: \"y\" !default\n$spacing-values: (\"0\": 0, \"1\": 0.25rem, \"2\": 0.5rem, \"3\": 0.75rem, \"4\": 1rem, \"5\": 1.5rem, \"6\": 3rem) !default\n\n@each $property, $shortcut in $spacing-shortcuts\n @each $name, $value in $spacing-values\n // All directions\n .#{$shortcut}-#{$name}\n #{$property}: $value !important\n // Cardinal directions\n @each $direction, $suffix in $spacing-directions\n .#{$shortcut}#{$suffix}-#{$name}\n #{$property}-#{$direction}: $value !important\n // Horizontal axis\n @if $spacing-horizontal != null\n .#{$shortcut}#{$spacing-horizontal}-#{$name}\n #{$property}-left: $value !important\n #{$property}-right: $value !important\n // Vertical axis\n @if $spacing-vertical != null\n .#{$shortcut}#{$spacing-vertical}-#{$name}\n #{$property}-top: $value !important\n #{$property}-bottom: $value !important\n","=typography-size($target:'')\n @each $size in $sizes\n $i: index($sizes, $size)\n .is-size-#{$i}#{if($target == '', '', '-' + $target)}\n font-size: $size !important\n\n+typography-size()\n\n+mobile\n +typography-size('mobile')\n\n+tablet\n +typography-size('tablet')\n\n+touch\n +typography-size('touch')\n\n+desktop\n +typography-size('desktop')\n\n+widescreen\n +typography-size('widescreen')\n\n+fullhd\n +typography-size('fullhd')\n\n$alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'right': 'right')\n\n@each $alignment, $text-align in $alignments\n .has-text-#{$alignment}\n text-align: #{$text-align} !important\n\n@each $alignment, $text-align in $alignments\n +mobile\n .has-text-#{$alignment}-mobile\n text-align: #{$text-align} !important\n +tablet\n .has-text-#{$alignment}-tablet\n text-align: #{$text-align} !important\n +tablet-only\n .has-text-#{$alignment}-tablet-only\n text-align: #{$text-align} !important\n +touch\n .has-text-#{$alignment}-touch\n text-align: #{$text-align} !important\n +desktop\n .has-text-#{$alignment}-desktop\n text-align: #{$text-align} !important\n +desktop-only\n .has-text-#{$alignment}-desktop-only\n text-align: #{$text-align} !important\n +widescreen\n .has-text-#{$alignment}-widescreen\n text-align: #{$text-align} !important\n +widescreen-only\n .has-text-#{$alignment}-widescreen-only\n text-align: #{$text-align} !important\n +fullhd\n .has-text-#{$alignment}-fullhd\n text-align: #{$text-align} !important\n\n.is-capitalized\n text-transform: capitalize !important\n\n.is-lowercase\n text-transform: lowercase !important\n\n.is-uppercase\n text-transform: uppercase !important\n\n.is-italic\n font-style: italic !important\n\n.has-text-weight-light\n font-weight: $weight-light !important\n.has-text-weight-normal\n font-weight: $weight-normal !important\n.has-text-weight-medium\n font-weight: $weight-medium !important\n.has-text-weight-semibold\n font-weight: $weight-semibold !important\n.has-text-weight-bold\n font-weight: $weight-bold !important\n\n.is-family-primary\n font-family: $family-primary !important\n\n.is-family-secondary\n font-family: $family-secondary !important\n\n.is-family-sans-serif\n font-family: $family-sans-serif !important\n\n.is-family-monospace\n font-family: $family-monospace !important\n\n.is-family-code\n font-family: $family-code !important\n","\n\n$displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'\n\n@each $display in $displays\n .is-#{$display}\n display: #{$display} !important\n +mobile\n .is-#{$display}-mobile\n display: #{$display} !important\n +tablet\n .is-#{$display}-tablet\n display: #{$display} !important\n +tablet-only\n .is-#{$display}-tablet-only\n display: #{$display} !important\n +touch\n .is-#{$display}-touch\n display: #{$display} !important\n +desktop\n .is-#{$display}-desktop\n display: #{$display} !important\n +desktop-only\n .is-#{$display}-desktop-only\n display: #{$display} !important\n +widescreen\n .is-#{$display}-widescreen\n display: #{$display} !important\n +widescreen-only\n .is-#{$display}-widescreen-only\n display: #{$display} !important\n +fullhd\n .is-#{$display}-fullhd\n display: #{$display} !important\n\n.is-hidden\n display: none !important\n\n.is-sr-only\n border: none !important\n clip: rect(0, 0, 0, 0) !important\n height: 0.01em !important\n overflow: hidden !important\n padding: 0 !important\n position: absolute !important\n white-space: nowrap !important\n width: 0.01em !important\n\n+mobile\n .is-hidden-mobile\n display: none !important\n\n+tablet\n .is-hidden-tablet\n display: none !important\n\n+tablet-only\n .is-hidden-tablet-only\n display: none !important\n\n+touch\n .is-hidden-touch\n display: none !important\n\n+desktop\n .is-hidden-desktop\n display: none !important\n\n+desktop-only\n .is-hidden-desktop-only\n display: none !important\n\n+widescreen\n .is-hidden-widescreen\n display: none !important\n\n+widescreen-only\n .is-hidden-widescreen-only\n display: none !important\n\n+fullhd\n .is-hidden-fullhd\n display: none !important\n\n.is-invisible\n visibility: hidden !important\n\n+mobile\n .is-invisible-mobile\n visibility: hidden !important\n\n+tablet\n .is-invisible-tablet\n visibility: hidden !important\n\n+tablet-only\n .is-invisible-tablet-only\n visibility: hidden !important\n\n+touch\n .is-invisible-touch\n visibility: hidden !important\n\n+desktop\n .is-invisible-desktop\n visibility: hidden !important\n\n+desktop-only\n .is-invisible-desktop-only\n visibility: hidden !important\n\n+widescreen\n .is-invisible-widescreen\n visibility: hidden !important\n\n+widescreen-only\n .is-invisible-widescreen-only\n visibility: hidden !important\n\n+fullhd\n .is-invisible-fullhd\n visibility: hidden !important\n","$hero-body-padding: 3rem 1.5rem !default\n$hero-body-padding-small: 1.5rem !default\n$hero-body-padding-medium: 9rem 1.5rem !default\n$hero-body-padding-large: 18rem 1.5rem !default\n\n$hero-colors: $colors !default\n\n// Main container\n.hero\n align-items: stretch\n display: flex\n flex-direction: column\n justify-content: space-between\n .navbar\n background: none\n .tabs\n ul\n border-bottom: none\n // Colors\n @each $name, $pair in $hero-colors\n $color: nth($pair, 1)\n $color-invert: nth($pair, 2)\n &.is-#{$name}\n background-color: $color\n color: $color-invert\n a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),\n strong\n color: inherit\n .title\n color: $color-invert\n .subtitle\n color: bulmaRgba($color-invert, 0.9)\n a:not(.button),\n strong\n color: $color-invert\n .navbar-menu\n +touch\n background-color: $color\n .navbar-item,\n .navbar-link\n color: bulmaRgba($color-invert, 0.7)\n a.navbar-item,\n .navbar-link\n &:hover,\n &.is-active\n background-color: bulmaDarken($color, 5%)\n color: $color-invert\n .tabs\n a\n color: $color-invert\n opacity: 0.9\n &:hover\n opacity: 1\n li\n &.is-active a\n opacity: 1\n &.is-boxed,\n &.is-toggle\n a\n color: $color-invert\n &:hover\n background-color: bulmaRgba($scheme-invert, 0.1)\n li.is-active a\n &,\n &:hover\n background-color: $color-invert\n border-color: $color-invert\n color: $color\n // Modifiers\n @if type-of($color) == 'color'\n &.is-bold\n $gradient-top-left: darken(saturate(adjust-hue($color, -10deg), 10%), 10%)\n $gradient-bottom-right: lighten(saturate(adjust-hue($color, 10deg), 5%), 5%)\n background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%)\n +mobile\n .navbar-menu\n background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%)\n // Sizes\n &.is-small\n .hero-body\n padding: $hero-body-padding-small\n &.is-medium\n +tablet\n .hero-body\n padding: $hero-body-padding-medium\n &.is-large\n +tablet\n .hero-body\n padding: $hero-body-padding-large\n &.is-halfheight,\n &.is-fullheight,\n &.is-fullheight-with-navbar\n .hero-body\n align-items: center\n display: flex\n & > .container\n flex-grow: 1\n flex-shrink: 1\n &.is-halfheight\n min-height: 50vh\n &.is-fullheight\n min-height: 100vh\n\n// Components\n\n.hero-video\n @extend %overlay\n overflow: hidden\n video\n left: 50%\n min-height: 100%\n min-width: 100%\n position: absolute\n top: 50%\n transform: translate3d(-50%, -50%, 0)\n // Modifiers\n &.is-transparent\n opacity: 0.3\n // Responsiveness\n +mobile\n display: none\n\n.hero-buttons\n margin-top: 1.5rem\n // Responsiveness\n +mobile\n .button\n display: flex\n &:not(:last-child)\n margin-bottom: 0.75rem\n +tablet\n display: flex\n justify-content: center\n .button:not(:last-child)\n +ltr-property(\"margin\", 1.5rem)\n\n// Containers\n\n.hero-head,\n.hero-foot\n flex-grow: 0\n flex-shrink: 0\n\n.hero-body\n flex-grow: 1\n flex-shrink: 0\n padding: $hero-body-padding\n","$section-padding: 3rem 1.5rem !default\n$section-padding-medium: 9rem 1.5rem !default\n$section-padding-large: 18rem 1.5rem !default\n\n.section\n padding: $section-padding\n // Responsiveness\n +desktop\n // Sizes\n &.is-medium\n padding: $section-padding-medium\n &.is-large\n padding: $section-padding-large\n","$footer-background-color: $scheme-main-bis !default\n$footer-color: false !default\n$footer-padding: 3rem 1.5rem 6rem !default\n\n.footer\n background-color: $footer-background-color\n padding: $footer-padding\n @if $footer-color\n color: $footer-color\n","@-webkit-keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.switch[type=checkbox]{outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:absolute;opacity:0}.switch[type=checkbox]:focus+label::after,.switch[type=checkbox]:focus+label::before,.switch[type=checkbox]:focus+label:after,.switch[type=checkbox]:focus+label:before{outline:1px dotted #b5b5b5}.switch[type=checkbox][disabled]{cursor:not-allowed}.switch[type=checkbox][disabled]+label{opacity:.5}.switch[type=checkbox][disabled]+label::before,.switch[type=checkbox][disabled]+label:before{opacity:.5}.switch[type=checkbox][disabled]+label::after,.switch[type=checkbox][disabled]+label:after{opacity:.5}.switch[type=checkbox][disabled]+label:hover{cursor:not-allowed}.switch[type=checkbox]+label{position:relative;display:initial;font-size:1rem;line-height:initial;padding-left:3.5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox]+label::before,.switch[type=checkbox]+label:before{position:absolute;display:block;top:0;left:0;width:3rem;height:1.5rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox]+label::after,.switch[type=checkbox]+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1rem;height:1rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-rtl+label{padding-left:0;padding-right:3.5rem}.switch[type=checkbox].is-rtl+label::before,.switch[type=checkbox].is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-rtl+label::after,.switch[type=checkbox].is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox]:checked+label::before,.switch[type=checkbox]:checked+label:before{background:#00d1b2}.switch[type=checkbox]:checked+label::after{left:1.625rem}.switch[type=checkbox]:checked.is-rtl+label::after,.switch[type=checkbox]:checked.is-rtl+label:after{left:auto;right:1.625rem}.switch[type=checkbox].is-outlined+label::before,.switch[type=checkbox].is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-outlined+label::after,.switch[type=checkbox].is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-outlined:checked+label::before,.switch[type=checkbox].is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-outlined:checked+label::after,.switch[type=checkbox].is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-thin+label::before,.switch[type=checkbox].is-thin+label:before{top:.54545rem;height:.375rem}.switch[type=checkbox].is-thin+label::after,.switch[type=checkbox].is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-rounded+label::before,.switch[type=checkbox].is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-rounded+label::after,.switch[type=checkbox].is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-small+label{position:relative;display:initial;font-size:.75rem;line-height:initial;padding-left:2.75rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-small+label::before,.switch[type=checkbox].is-small+label:before{position:absolute;display:block;top:0;left:0;width:2.25rem;height:1.125rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox].is-small+label::after,.switch[type=checkbox].is-small+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:.625rem;height:.625rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-small.is-rtl+label{padding-left:0;padding-right:2.75rem}.switch[type=checkbox].is-small.is-rtl+label::before,.switch[type=checkbox].is-small.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-small.is-rtl+label::after,.switch[type=checkbox].is-small.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-small:checked+label::before,.switch[type=checkbox].is-small:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-small:checked+label::after{left:1.25rem}.switch[type=checkbox].is-small:checked.is-rtl+label::after,.switch[type=checkbox].is-small:checked.is-rtl+label:after{left:auto;right:1.25rem}.switch[type=checkbox].is-small.is-outlined+label::before,.switch[type=checkbox].is-small.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-small.is-outlined+label::after,.switch[type=checkbox].is-small.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-small.is-outlined:checked+label::before,.switch[type=checkbox].is-small.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-small.is-outlined:checked+label::after,.switch[type=checkbox].is-small.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-small.is-thin+label::before,.switch[type=checkbox].is-small.is-thin+label:before{top:.40909rem;height:.28125rem}.switch[type=checkbox].is-small.is-thin+label::after,.switch[type=checkbox].is-small.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-small.is-rounded+label::before,.switch[type=checkbox].is-small.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-small.is-rounded+label::after,.switch[type=checkbox].is-small.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-medium+label{position:relative;display:initial;font-size:1.25rem;line-height:initial;padding-left:4.25rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-medium+label::before,.switch[type=checkbox].is-medium+label:before{position:absolute;display:block;top:0;left:0;width:3.75rem;height:1.875rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox].is-medium+label::after,.switch[type=checkbox].is-medium+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.375rem;height:1.375rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-medium.is-rtl+label{padding-left:0;padding-right:4.25rem}.switch[type=checkbox].is-medium.is-rtl+label::before,.switch[type=checkbox].is-medium.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-medium.is-rtl+label::after,.switch[type=checkbox].is-medium.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-medium:checked+label::before,.switch[type=checkbox].is-medium:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-medium:checked+label::after{left:2rem}.switch[type=checkbox].is-medium:checked.is-rtl+label::after,.switch[type=checkbox].is-medium:checked.is-rtl+label:after{left:auto;right:2rem}.switch[type=checkbox].is-medium.is-outlined+label::before,.switch[type=checkbox].is-medium.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined+label::after,.switch[type=checkbox].is-medium.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined:checked+label::before,.switch[type=checkbox].is-medium.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-medium.is-outlined:checked+label::after,.switch[type=checkbox].is-medium.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-medium.is-thin+label::before,.switch[type=checkbox].is-medium.is-thin+label:before{top:.68182rem;height:.46875rem}.switch[type=checkbox].is-medium.is-thin+label::after,.switch[type=checkbox].is-medium.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-medium.is-rounded+label::before,.switch[type=checkbox].is-medium.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-medium.is-rounded+label::after,.switch[type=checkbox].is-medium.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-large+label{position:relative;display:initial;font-size:1.5rem;line-height:initial;padding-left:5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-large+label::before,.switch[type=checkbox].is-large+label:before{position:absolute;display:block;top:0;left:0;width:4.5rem;height:2.25rem;border:.1rem solid transparent;border-radius:4px;background:#b5b5b5;content:''}.switch[type=checkbox].is-large+label::after,.switch[type=checkbox].is-large+label:after{display:block;position:absolute;top:.25rem;left:.25rem;width:1.75rem;height:1.75rem;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;background:#fff;transition:all .25s ease-out;content:''}.switch[type=checkbox].is-large.is-rtl+label{padding-left:0;padding-right:5rem}.switch[type=checkbox].is-large.is-rtl+label::before,.switch[type=checkbox].is-large.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-large.is-rtl+label::after,.switch[type=checkbox].is-large.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-large:checked+label::before,.switch[type=checkbox].is-large:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-large:checked+label::after{left:2.375rem}.switch[type=checkbox].is-large:checked.is-rtl+label::after,.switch[type=checkbox].is-large:checked.is-rtl+label:after{left:auto;right:2.375rem}.switch[type=checkbox].is-large.is-outlined+label::before,.switch[type=checkbox].is-large.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-large.is-outlined+label::after,.switch[type=checkbox].is-large.is-outlined+label:after{background:#b5b5b5}.switch[type=checkbox].is-large.is-outlined:checked+label::before,.switch[type=checkbox].is-large.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-large.is-outlined:checked+label::after,.switch[type=checkbox].is-large.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-large.is-thin+label::before,.switch[type=checkbox].is-large.is-thin+label:before{top:.81818rem;height:.5625rem}.switch[type=checkbox].is-large.is-thin+label::after,.switch[type=checkbox].is-large.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-large.is-rounded+label::before,.switch[type=checkbox].is-large.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-large.is-rounded+label::after,.switch[type=checkbox].is-large.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-white:checked+label::before,.switch[type=checkbox].is-white:checked+label:before{background:#fff}.switch[type=checkbox].is-white.is-outlined:checked+label::before,.switch[type=checkbox].is-white.is-outlined:checked+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-white.is-outlined:checked+label::after,.switch[type=checkbox].is-white.is-outlined:checked+label:after{background:#fff}.switch[type=checkbox].is-white.is-thin.is-outlined+label::after,.switch[type=checkbox].is-white.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-white+label::before,.switch[type=checkbox].is-unchecked-white+label:before{background:#fff}.switch[type=checkbox].is-unchecked-white.is-outlined+label::before,.switch[type=checkbox].is-unchecked-white.is-outlined+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-unchecked-white.is-outlined+label::after,.switch[type=checkbox].is-unchecked-white.is-outlined+label:after{background:#fff}.switch[type=checkbox].is-black:checked+label::before,.switch[type=checkbox].is-black:checked+label:before{background:#0a0a0a}.switch[type=checkbox].is-black.is-outlined:checked+label::before,.switch[type=checkbox].is-black.is-outlined:checked+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-black.is-outlined:checked+label::after,.switch[type=checkbox].is-black.is-outlined:checked+label:after{background:#0a0a0a}.switch[type=checkbox].is-black.is-thin.is-outlined+label::after,.switch[type=checkbox].is-black.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-black+label::before,.switch[type=checkbox].is-unchecked-black+label:before{background:#0a0a0a}.switch[type=checkbox].is-unchecked-black.is-outlined+label::before,.switch[type=checkbox].is-unchecked-black.is-outlined+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-unchecked-black.is-outlined+label::after,.switch[type=checkbox].is-unchecked-black.is-outlined+label:after{background:#0a0a0a}.switch[type=checkbox].is-light:checked+label::before,.switch[type=checkbox].is-light:checked+label:before{background:#f5f5f5}.switch[type=checkbox].is-light.is-outlined:checked+label::before,.switch[type=checkbox].is-light.is-outlined:checked+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-light.is-outlined:checked+label::after,.switch[type=checkbox].is-light.is-outlined:checked+label:after{background:#f5f5f5}.switch[type=checkbox].is-light.is-thin.is-outlined+label::after,.switch[type=checkbox].is-light.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-light+label::before,.switch[type=checkbox].is-unchecked-light+label:before{background:#f5f5f5}.switch[type=checkbox].is-unchecked-light.is-outlined+label::before,.switch[type=checkbox].is-unchecked-light.is-outlined+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-unchecked-light.is-outlined+label::after,.switch[type=checkbox].is-unchecked-light.is-outlined+label:after{background:#f5f5f5}.switch[type=checkbox].is-dark:checked+label::before,.switch[type=checkbox].is-dark:checked+label:before{background:#363636}.switch[type=checkbox].is-dark.is-outlined:checked+label::before,.switch[type=checkbox].is-dark.is-outlined:checked+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-dark.is-outlined:checked+label::after,.switch[type=checkbox].is-dark.is-outlined:checked+label:after{background:#363636}.switch[type=checkbox].is-dark.is-thin.is-outlined+label::after,.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-dark+label::before,.switch[type=checkbox].is-unchecked-dark+label:before{background:#363636}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::before,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-unchecked-dark.is-outlined+label::after,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after{background:#363636}.switch[type=checkbox].is-primary:checked+label::before,.switch[type=checkbox].is-primary:checked+label:before{background:#00d1b2}.switch[type=checkbox].is-primary.is-outlined:checked+label::before,.switch[type=checkbox].is-primary.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-primary.is-outlined:checked+label::after,.switch[type=checkbox].is-primary.is-outlined:checked+label:after{background:#00d1b2}.switch[type=checkbox].is-primary.is-thin.is-outlined+label::after,.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-primary+label::before,.switch[type=checkbox].is-unchecked-primary+label:before{background:#00d1b2}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::before,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-unchecked-primary.is-outlined+label::after,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after{background:#00d1b2}.switch[type=checkbox].is-link:checked+label::before,.switch[type=checkbox].is-link:checked+label:before{background:#3273dc}.switch[type=checkbox].is-link.is-outlined:checked+label::before,.switch[type=checkbox].is-link.is-outlined:checked+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-link.is-outlined:checked+label::after,.switch[type=checkbox].is-link.is-outlined:checked+label:after{background:#3273dc}.switch[type=checkbox].is-link.is-thin.is-outlined+label::after,.switch[type=checkbox].is-link.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-link+label::before,.switch[type=checkbox].is-unchecked-link+label:before{background:#3273dc}.switch[type=checkbox].is-unchecked-link.is-outlined+label::before,.switch[type=checkbox].is-unchecked-link.is-outlined+label:before{background-color:transparent;border-color:#3273dc!important}.switch[type=checkbox].is-unchecked-link.is-outlined+label::after,.switch[type=checkbox].is-unchecked-link.is-outlined+label:after{background:#3273dc}.switch[type=checkbox].is-info:checked+label::before,.switch[type=checkbox].is-info:checked+label:before{background:#209cee}.switch[type=checkbox].is-info.is-outlined:checked+label::before,.switch[type=checkbox].is-info.is-outlined:checked+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-info.is-outlined:checked+label::after,.switch[type=checkbox].is-info.is-outlined:checked+label:after{background:#209cee}.switch[type=checkbox].is-info.is-thin.is-outlined+label::after,.switch[type=checkbox].is-info.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-info+label::before,.switch[type=checkbox].is-unchecked-info+label:before{background:#209cee}.switch[type=checkbox].is-unchecked-info.is-outlined+label::before,.switch[type=checkbox].is-unchecked-info.is-outlined+label:before{background-color:transparent;border-color:#209cee!important}.switch[type=checkbox].is-unchecked-info.is-outlined+label::after,.switch[type=checkbox].is-unchecked-info.is-outlined+label:after{background:#209cee}.switch[type=checkbox].is-success:checked+label::before,.switch[type=checkbox].is-success:checked+label:before{background:#23d160}.switch[type=checkbox].is-success.is-outlined:checked+label::before,.switch[type=checkbox].is-success.is-outlined:checked+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-success.is-outlined:checked+label::after,.switch[type=checkbox].is-success.is-outlined:checked+label:after{background:#23d160}.switch[type=checkbox].is-success.is-thin.is-outlined+label::after,.switch[type=checkbox].is-success.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-success+label::before,.switch[type=checkbox].is-unchecked-success+label:before{background:#23d160}.switch[type=checkbox].is-unchecked-success.is-outlined+label::before,.switch[type=checkbox].is-unchecked-success.is-outlined+label:before{background-color:transparent;border-color:#23d160!important}.switch[type=checkbox].is-unchecked-success.is-outlined+label::after,.switch[type=checkbox].is-unchecked-success.is-outlined+label:after{background:#23d160}.switch[type=checkbox].is-warning:checked+label::before,.switch[type=checkbox].is-warning:checked+label:before{background:#ffdd57}.switch[type=checkbox].is-warning.is-outlined:checked+label::before,.switch[type=checkbox].is-warning.is-outlined:checked+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-warning.is-outlined:checked+label::after,.switch[type=checkbox].is-warning.is-outlined:checked+label:after{background:#ffdd57}.switch[type=checkbox].is-warning.is-thin.is-outlined+label::after,.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-warning+label::before,.switch[type=checkbox].is-unchecked-warning+label:before{background:#ffdd57}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::before,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before{background-color:transparent;border-color:#ffdd57!important}.switch[type=checkbox].is-unchecked-warning.is-outlined+label::after,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after{background:#ffdd57}.switch[type=checkbox].is-danger:checked+label::before,.switch[type=checkbox].is-danger:checked+label:before{background:#ff3860}.switch[type=checkbox].is-danger.is-outlined:checked+label::before,.switch[type=checkbox].is-danger.is-outlined:checked+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-danger.is-outlined:checked+label::after,.switch[type=checkbox].is-danger.is-outlined:checked+label:after{background:#ff3860}.switch[type=checkbox].is-danger.is-thin.is-outlined+label::after,.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-danger+label::before,.switch[type=checkbox].is-unchecked-danger+label:before{background:#ff3860}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::before,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before{background-color:transparent;border-color:#ff3860!important}.switch[type=checkbox].is-unchecked-danger.is-outlined+label::after,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after{background:#ff3860}","\n@import 'bulma';\n@import '~bulma-switch';\n\n\n.slider {\n min-width: 250px;\n width: 100%;\n}\n.range-slider-fill {\n background-color: hsl(0, 0%, 21%);\n}\n\n.track-progress {\n margin: 0;\n padding: 0;\n min-width: 250px;\n width: 100%;\n}\n\n.track-progress .range-slider-knob {\n visibility: hidden;\n}\n\n.track-progress .range-slider-fill {\n background-color: hsl(217, 71%, 53%);\n height: 2px;\n}\n\n.track-progress .range-slider-rail {\n background-color: hsl(0, 0%, 100%);\n}\n\n.media.with-progress h2:last-of-type {\n margin-bottom: 6px;\n}\n\n.media.with-progress {\n margin-top: 0px;\n}\n\na.navbar-item {\n outline: 0;\n line-height: 1.5;\n padding: .5rem 1rem;\n}\n\n.fd-expanded {\n flex-grow: 1;\n flex-shrink: 1;\n}\n\n.fd-margin-left-auto {\n margin-left: auto;\n}\n\n.fd-has-action {\n cursor: pointer;\n}\n\n.fd-is-movable {\n cursor: move;\n}\n\n.fd-has-margin-top {\n margin-top: 24px;\n}\n\n.fd-has-margin-bottom {\n margin-bottom: 24px;\n}\n\n.fd-remove-padding-bottom {\n padding-bottom: 0;\n}\n\n.fd-has-padding-left-right {\n padding-left: 24px;\n padding-right: 24px;\n}\n\n.fd-is-square .button {\n height: 27px;\n min-width: 27px;\n padding-left: 0.25rem;\n padding-right: 0.25rem;\n}\n\n.fd-is-text-clipped {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.fd-tabs-section {\n padding-bottom: 3px;\n padding-top: 3px;\n background: white;\n top: 3.25rem;\n z-index: 20;\n position: fixed;\n width: 100%;\n}\n\nsection.fd-tabs-section + section.fd-content {\n margin-top: 24px;\n}\n\nsection.hero + section.fd-content {\n padding-top: 0;\n}\n\n.fd-progress-bar {\n top: 52px !important;\n}\n\n.fd-has-shadow {\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);\n}\n\n/* Set minimum height to hide \"option\" section */\n.fd-content-with-option {\n min-height: calc(100vh - 3.25rem - 3.25rem - 5rem);\n}\n\n/* Now playing page */\n.fd-is-fullheight {\n height: calc(100vh - 3.25rem - 3.25rem);\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.fd-is-fullheight .fd-is-expanded {\n max-height: calc(100vh - 25rem);\n padding: 1.5rem;\n overflow: hidden;\n flex-grow: 1;\n flex-shrink: 1;\n\n /* Use flex box to properly size children */\n display: flex;\n}\n\n.fd-cover-image {\n display: flex;\n flex-grow: 1;\n flex-shrink: 1;\n\n /* Allow flex item to shrink smaller than its content size: https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size */\n min-width: 0;\n min-height: 0;\n overflow: hidden;\n\n /* Padding matches the drop-shadow size of the image */\n padding: 10px;\n}\n\n.fd-cover-image img {\n /* Use object-fit to properly size the cover artwork: https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit */\n object-fit: contain;\n object-position: center bottom;\n filter: drop-shadow(0px 0px 1px rgba(0,0,0,.3)) drop-shadow(0px 0px 10px rgba(0,0,0,.3));\n\n /* Allow flex item to grow/shrink to fill the whole container size */\n flex-grow: 1;\n flex-shrink: 1;\n\n /* Unset height/width to allow flex sizing */\n height: unset;\n width: unset;\n max-width: unset;\n max-height: unset;\n\n /* Allow flex item to shrink smaller than its content size: https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size */\n min-width: 0;\n min-height: 0;\n overflow: hidden;\n}\n\n\n.sortable-chosen .media-right {\n visibility: hidden;\n}\n.sortable-ghost h1, .sortable-ghost h2 {\n color: hsl(348, 100%, 61%) !important;\n}\n\n.media:first-of-type {\n padding-top: 17px;\n margin-top: 16px;\n}\n\n/* Transition effect */\n.fade-enter-active, .fade-leave-active {\n transition: opacity .4s;\n}\n.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {\n opacity: 0;\n}\n\n/* Now playing progress bar */\n.seek-slider {\n min-width: 250px;\n max-width: 500px;\n width: 100% !important;\n}\n.seek-slider .range-slider-fill {\n background-color: hsl(171, 100%, 41%);\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);\n}\n.seek-slider .range-slider-knob {\n width: 10px;\n height: 10px;\n background-color: hsl(171, 100%, 41%);\n border-color: hsl(171, 100%, 41%);\n}\n\n/* Add a little bit of spacing between title and subtitle */\n.title:not(.is-spaced) + .subtitle {\n margin-top: -1.3rem !important;\n}\n.title:not(.is-spaced) + .subtitle + .subtitle {\n margin-top: -1.3rem !important;\n}\n\n/* Only scroll content if modal contains a card component */\n.fd-modal-card {\n overflow: visible;\n}\n.fd-modal-card .card-content {\n max-height: calc(100vh - 200px);\n overflow: auto;\n}\n.fd-modal-card .card {\n margin-left: 16px;\n margin-right: 16px;\n}\n\n.dropdown-item a {\n display: block;\n}\n\n.dropdown-item:hover {\n background-color: hsl(0, 0%, 96%)\n}\n\n.navbar-item .fd-navbar-item-level2 {\n padding-left: 1.5rem;\n}\nhr.fd-navbar-divider {\n margin: 12px 0;\n}\n\n/* Show scrollbar for navbar menu in desktop mode if content exceeds the screen size */\n@media only screen and (min-width: 1024px) {\n .navbar-dropdown {\n max-height: calc(100vh - 3.25rem - 3.25rem - 2rem);\n overflow: auto;\n }\n}\n\n/* Limit the size of the bottom navbar menu to not be displayed behind the Safari browser menu on iOS */\n.fd-bottom-navbar .navbar-menu {\n max-height: calc(100vh - 3.25rem - 3.25rem - 1rem);\n overflow: scroll;\n}\n\n\n.buttons {\n @include mobile {\n &.fd-is-centered-mobile {\n justify-content: center;\n &:not(.has-addons) {\n .button:not(.is-fullwidth) {\n margin-left: 0.25rem;\n margin-right: 0.25rem;\n }\n }\n }\n }\n}\n\n.column {\n &.fd-has-cover {\n max-height: 150px;\n max-width: 150px;\n @include mobile {\n margin: auto;\n }\n @include from($tablet) {\n margin: auto 0 auto auto;\n }\n }\n}\n\n.fd-overlay-fullscreen {\n @extend .is-overlay;\n z-index:25;\n background-color: rgba(10, 10, 10, 0.2);\n position: fixed;\n}\n\n.hero-body {\n padding: 1.5rem !important;\n}"]} \ No newline at end of file diff --git a/htdocs/player/js/app-legacy.js b/htdocs/player/js/app-legacy.js index b8a4fd0a..4e451d1c 100644 --- a/htdocs/player/js/app-legacy.js +++ b/htdocs/player/js/app-legacy.js @@ -1,2 +1,2 @@ -(function(t){function s(s){for(var e,o,l=s[0],r=s[1],c=s[2],u=0,p=[];u-1:t.rescan_metadata},on:{change:function(s){var a=t.rescan_metadata,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.rescan_metadata=a.concat([n])):o>-1&&(t.rescan_metadata=a.slice(0,o).concat(a.slice(o+1)))}else t.rescan_metadata=i}}}),t._v(" Rescan metadata for unmodified files ")])])])])],2),a("div",{directives:[{name:"show",rawName:"v-show",value:t.show_settings_menu,expression:"show_settings_menu"}],staticClass:"is-overlay",staticStyle:{"z-index":"10",width:"100vw",height:"100vh"},on:{click:function(s){t.show_settings_menu=!1}}})],1)}),r=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-link is-arrowless"},[a("span",{staticClass:"icon is-hidden-touch"},[a("i",{staticClass:"mdi mdi-24px mdi-menu"})]),a("span",{staticClass:"is-hidden-desktop has-text-weight-bold"},[t._v("forked-daapd")])])}],c=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-item",class:{"is-active":t.is_active},attrs:{href:t.full_path()},on:{click:function(s){return s.stopPropagation(),s.preventDefault(),t.open_link()}}},[t._t("default")],2)},d=[],u=(a("2ca0"),"UPDATE_CONFIG"),p="UPDATE_SETTINGS",_="UPDATE_SETTINGS_OPTION",m="UPDATE_LIBRARY_STATS",h="UPDATE_LIBRARY_AUDIOBOOKS_COUNT",f="UPDATE_LIBRARY_PODCASTS_COUNT",v="UPDATE_OUTPUTS",y="UPDATE_PLAYER_STATUS",b="UPDATE_QUEUE",g="UPDATE_LASTFM",k="UPDATE_SPOTIFY",C="UPDATE_PAIRING",w="SPOTIFY_NEW_RELEASES",x="SPOTIFY_FEATURED_PLAYLISTS",$="ADD_NOTIFICATION",q="DELETE_NOTIFICATION",A="ADD_RECENT_SEARCH",S="HIDE_SINGLES",j="HIDE_SPOTIFY",P="ARTISTS_SORT",O="ARTIST_ALBUMS_SORT",T="ALBUMS_SORT",L="SHOW_ONLY_NEXT_ITEMS",E="SHOW_BURGER_MENU",I="SHOW_PLAYER_MENU",z={name:"NavbarItemLink",props:{to:String,exact:Boolean},computed:{is_active:function(){return this.exact?this.$route.path===this.to:this.$route.path.startsWith(this.to)},show_player_menu:{get:function(){return this.$store.state.show_player_menu},set:function(t){this.$store.commit(I,t)}},show_burger_menu:{get:function(){return this.$store.state.show_burger_menu},set:function(t){this.$store.commit(E,t)}}},methods:{open_link:function(){this.show_burger_menu&&this.$store.commit(E,!1),this.show_player_menu&&this.$store.commit(I,!1),this.$router.push({path:this.to})},full_path:function(){var t=this.$router.resolve(this.to);return t.href}}},D=z,N=a("2877"),R=Object(N["a"])(D,c,d,!1,null,null,null),M=R.exports,U=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[t.title?a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.title)+" ")]):t._e(),t._t("modal-content")],2),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.close_action?t.close_action:"Cancel"))])]),t.delete_action?a("a",{staticClass:"card-footer-item has-background-danger has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("delete")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.delete_action))])]):t._e(),t.ok_action?a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("ok")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-check"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.ok_action))])]):t._e()])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},H=[],W={name:"ModalDialog",props:["show","title","ok_action","delete_action","close_action"]},B=W,F=Object(N["a"])(B,U,H,!1,null,null,null),G=F.exports,Y=(a("b0c0"),a("d3b7"),a("bc3a")),V=a.n(Y),Q=(a("7db0"),a("c740"),a("c975"),a("a434"),a("ade3")),J=a("2f62");i["a"].use(J["a"]);var K=new J["a"].Store({state:{config:{websocket_port:0,version:"",buildoptions:[]},settings:{categories:[]},library:{artists:0,albums:0,songs:0,db_playtime:0,updating:!1},audiobooks_count:{},podcasts_count:{},outputs:[],player:{state:"stop",repeat:"off",consume:!1,shuffle:!1,volume:0,item_id:0,item_length_ms:0,item_progress_ms:0},queue:{version:0,count:0,items:[]},lastfm:{},spotify:{},pairing:{},spotify_new_releases:[],spotify_featured_playlists:[],notifications:{next_id:1,list:[]},recent_searches:[],hide_singles:!1,hide_spotify:!1,artists_sort:"Name",artist_albums_sort:"Name",albums_sort:"Name",show_only_next_items:!1,show_burger_menu:!1,show_player_menu:!1},getters:{now_playing:function(t){var s=t.queue.items.find((function(s){return s.id===t.player.item_id}));return void 0===s?{}:s},settings_webinterface:function(t){return t.settings?t.settings.categories.find((function(t){return"webinterface"===t.name})):null},settings_option_show_composer_now_playing:function(t,s){if(s.settings_webinterface){var a=s.settings_webinterface.options.find((function(t){return"show_composer_now_playing"===t.name}));if(a)return a.value}return!1},settings_option_show_composer_for_genre:function(t,s){if(s.settings_webinterface){var a=s.settings_webinterface.options.find((function(t){return"show_composer_for_genre"===t.name}));if(a)return a.value}return null},settings_category:function(t){return function(s){return t.settings.categories.find((function(t){return t.name===s}))}},settings_option:function(t){return function(s,a){var e=t.settings.categories.find((function(t){return t.name===s}));return e?e.options.find((function(t){return t.name===a})):{}}}},mutations:(e={},Object(Q["a"])(e,u,(function(t,s){t.config=s})),Object(Q["a"])(e,p,(function(t,s){t.settings=s})),Object(Q["a"])(e,_,(function(t,s){var a=t.settings.categories.find((function(t){return t.name===s.category})),e=a.options.find((function(t){return t.name===s.name}));e.value=s.value})),Object(Q["a"])(e,m,(function(t,s){t.library=s})),Object(Q["a"])(e,h,(function(t,s){t.audiobooks_count=s})),Object(Q["a"])(e,f,(function(t,s){t.podcasts_count=s})),Object(Q["a"])(e,v,(function(t,s){t.outputs=s})),Object(Q["a"])(e,y,(function(t,s){t.player=s})),Object(Q["a"])(e,b,(function(t,s){t.queue=s})),Object(Q["a"])(e,g,(function(t,s){t.lastfm=s})),Object(Q["a"])(e,k,(function(t,s){t.spotify=s})),Object(Q["a"])(e,C,(function(t,s){t.pairing=s})),Object(Q["a"])(e,w,(function(t,s){t.spotify_new_releases=s})),Object(Q["a"])(e,x,(function(t,s){t.spotify_featured_playlists=s})),Object(Q["a"])(e,$,(function(t,s){if(s.topic){var a=t.notifications.list.findIndex((function(t){return t.topic===s.topic}));if(a>=0)return void t.notifications.list.splice(a,1,s)}t.notifications.list.push(s)})),Object(Q["a"])(e,q,(function(t,s){var a=t.notifications.list.indexOf(s);-1!==a&&t.notifications.list.splice(a,1)})),Object(Q["a"])(e,A,(function(t,s){var a=t.recent_searches.findIndex((function(t){return t===s}));a>=0&&t.recent_searches.splice(a,1),t.recent_searches.splice(0,0,s),t.recent_searches.length>5&&t.recent_searches.pop()})),Object(Q["a"])(e,S,(function(t,s){t.hide_singles=s})),Object(Q["a"])(e,j,(function(t,s){t.hide_spotify=s})),Object(Q["a"])(e,P,(function(t,s){t.artists_sort=s})),Object(Q["a"])(e,O,(function(t,s){t.artist_albums_sort=s})),Object(Q["a"])(e,T,(function(t,s){t.albums_sort=s})),Object(Q["a"])(e,L,(function(t,s){t.show_only_next_items=s})),Object(Q["a"])(e,E,(function(t,s){t.show_burger_menu=s})),Object(Q["a"])(e,I,(function(t,s){t.show_player_menu=s})),e),actions:{add_notification:function(t,s){var a=t.commit,e=t.state,i={id:e.notifications.next_id++,type:s.type,text:s.text,topic:s.topic,timeout:s.timeout};a($,i),s.timeout>0&&setTimeout((function(){a(q,i)}),s.timeout)}}});V.a.interceptors.response.use((function(t){return t}),(function(t){return t.request.status&&t.request.responseURL&&K.dispatch("add_notification",{text:"Request failed (status: "+t.request.status+" "+t.request.statusText+", url: "+t.request.responseURL+")",type:"danger"}),Promise.reject(t)}));var X={config:function(){return V.a.get("./api/config")},settings:function(){return V.a.get("./api/settings")},settings_update:function(t,s){return V.a.put("./api/settings/"+t+"/"+s.name,s)},library_stats:function(){return V.a.get("./api/library")},library_update:function(){return V.a.put("./api/update")},library_rescan:function(){return V.a.put("./api/rescan")},library_count:function(t){return V.a.get("./api/library/count?expression="+t)},queue:function(){return V.a.get("./api/queue")},queue_clear:function(){return V.a.put("./api/queue/clear")},queue_remove:function(t){return V.a.delete("./api/queue/items/"+t)},queue_move:function(t,s){return V.a.put("./api/queue/items/"+t+"?new_position="+s)},queue_add:function(t){return V.a.post("./api/queue/items/add?uris="+t).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_add_next:function(t){var s=0;return K.getters.now_playing&&K.getters.now_playing.id&&(s=K.getters.now_playing.position+1),V.a.post("./api/queue/items/add?uris="+t+"&position="+s).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_expression_add:function(t){var s={};return s.expression=t,V.a.post("./api/queue/items/add",void 0,{params:s}).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_expression_add_next:function(t){var s={};return s.expression=t,s.position=0,K.getters.now_playing&&K.getters.now_playing.id&&(s.position=K.getters.now_playing.position+1),V.a.post("./api/queue/items/add",void 0,{params:s}).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_save_playlist:function(t){return V.a.post("./api/queue/save",void 0,{params:{name:t}}).then((function(s){return K.dispatch("add_notification",{text:'Queue saved to playlist "'+t+'"',type:"info",timeout:2e3}),Promise.resolve(s)}))},player_status:function(){return V.a.get("./api/player")},player_play_uri:function(t,s){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,e={};return e.uris=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,V.a.post("./api/queue/items/add",void 0,{params:e})},player_play_expression:function(t,s){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,e={};return e.expression=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,V.a.post("./api/queue/items/add",void 0,{params:e})},player_play:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return V.a.put("./api/player/play",void 0,{params:t})},player_playpos:function(t){return V.a.put("./api/player/play?position="+t)},player_playid:function(t){return V.a.put("./api/player/play?item_id="+t)},player_pause:function(){return V.a.put("./api/player/pause")},player_stop:function(){return V.a.put("./api/player/stop")},player_next:function(){return V.a.put("./api/player/next")},player_previous:function(){return V.a.put("./api/player/previous")},player_shuffle:function(t){var s=t?"true":"false";return V.a.put("./api/player/shuffle?state="+s)},player_consume:function(t){var s=t?"true":"false";return V.a.put("./api/player/consume?state="+s)},player_repeat:function(t){return V.a.put("./api/player/repeat?state="+t)},player_volume:function(t){return V.a.put("./api/player/volume?volume="+t)},player_output_volume:function(t,s){return V.a.put("./api/player/volume?volume="+s+"&output_id="+t)},player_seek_to_pos:function(t){return V.a.put("./api/player/seek?position_ms="+t)},player_seek:function(t){return V.a.put("./api/player/seek?seek_ms="+t)},outputs:function(){return V.a.get("./api/outputs")},output_update:function(t,s){return V.a.put("./api/outputs/"+t,s)},output_toggle:function(t){return V.a.put("./api/outputs/"+t+"/toggle")},library_artists:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;return V.a.get("./api/library/artists",{params:{media_kind:t}})},library_artist:function(t){return V.a.get("./api/library/artists/"+t)},library_artist_albums:function(t){return V.a.get("./api/library/artists/"+t+"/albums")},library_albums:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;return V.a.get("./api/library/albums",{params:{media_kind:t}})},library_album:function(t){return V.a.get("./api/library/albums/"+t)},library_album_tracks:function(t){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{limit:-1,offset:0};return V.a.get("./api/library/albums/"+t+"/tracks",{params:s})},library_album_track_update:function(t,s){return V.a.put("./api/library/albums/"+t+"/tracks",void 0,{params:s})},library_genres:function(){return V.a.get("./api/library/genres")},library_genre:function(t){var s={type:"albums",media_kind:"music",expression:'genre is "'+t+'"'};return V.a.get("./api/search",{params:s})},library_genre_tracks:function(t){var s={type:"tracks",media_kind:"music",expression:'genre is "'+t+'"'};return V.a.get("./api/search",{params:s})},library_radio_streams:function(){var t={type:"tracks",media_kind:"music",expression:"data_kind is url and song_length = 0"};return V.a.get("./api/search",{params:t})},library_artist_tracks:function(t){if(t){var s={type:"tracks",expression:'songartistid is "'+t+'"'};return V.a.get("./api/search",{params:s})}},library_podcasts_new_episodes:function(){var t={type:"tracks",expression:"media_kind is podcast and play_count = 0 ORDER BY time_added DESC"};return V.a.get("./api/search",{params:t})},library_podcast_episodes:function(t){var s={type:"tracks",expression:'media_kind is podcast and songalbumid is "'+t+'" ORDER BY date_released DESC'};return V.a.get("./api/search",{params:s})},library_add:function(t){return V.a.post("./api/library/add",void 0,{params:{url:t}})},library_playlist_delete:function(t){return V.a.delete("./api/library/playlists/"+t,void 0)},library_playlists:function(){return V.a.get("./api/library/playlists")},library_playlist_folder:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return V.a.get("./api/library/playlists/"+t+"/playlists")},library_playlist:function(t){return V.a.get("./api/library/playlists/"+t)},library_playlist_tracks:function(t){return V.a.get("./api/library/playlists/"+t+"/tracks")},library_track:function(t){return V.a.get("./api/library/tracks/"+t)},library_track_playlists:function(t){return V.a.get("./api/library/tracks/"+t+"/playlists")},library_track_update:function(t){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return V.a.put("./api/library/tracks/"+t,void 0,{params:s})},library_files:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,s={directory:t};return V.a.get("./api/library/files",{params:s})},search:function(t){return V.a.get("./api/search",{params:t})},spotify:function(){return V.a.get("./api/spotify")},spotify_login:function(t){return V.a.post("./api/spotify-login",t)},lastfm:function(){return V.a.get("./api/lastfm")},lastfm_login:function(t){return V.a.post("./api/lastfm-login",t)},lastfm_logout:function(t){return V.a.get("./api/lastfm-logout")},pairing:function(){return V.a.get("./api/pairing")},pairing_kickoff:function(t){return V.a.post("./api/pairing",t)},artwork_url_append_size_params:function(t){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:600,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:600;return t&&t.startsWith("/")?t.includes("?")?t+"&maxwidth="+s+"&maxheight="+a:t+"?maxwidth="+s+"&maxheight="+a:t}},Z={name:"NavbarTop",components:{NavbarItemLink:M,ModalDialog:G},data:function(){return{show_settings_menu:!1,show_update_library:!1,rescan_metadata:!1}},computed:{is_visible_playlists:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_playlists").value},is_visible_music:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_music").value},is_visible_podcasts:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_podcasts").value},is_visible_audiobooks:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_audiobooks").value},is_visible_radio:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_radio").value},is_visible_files:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_files").value},is_visible_search:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_search").value},player:function(){return this.$store.state.player},config:function(){return this.$store.state.config},library:function(){return this.$store.state.library},audiobooks:function(){return this.$store.state.audiobooks_count},podcasts:function(){return this.$store.state.podcasts_count},spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},show_burger_menu:{get:function(){return this.$store.state.show_burger_menu},set:function(t){this.$store.commit(E,t)}},show_player_menu:function(){return this.$store.state.show_player_menu},zindex:function(){return this.show_player_menu?"z-index: 20":""}},methods:{on_click_outside_settings:function(){this.show_settings_menu=!this.show_settings_menu},update_library:function(){this.rescan_metadata?X.library_rescan():X.library_update()}},watch:{$route:function(t,s){this.show_settings_menu=!1}}},tt=Z,st=Object(N["a"])(tt,l,r,!1,null,null,null),at=st.exports,et=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("nav",{staticClass:"fd-bottom-navbar navbar is-white is-fixed-bottom",class:{"is-transparent":t.is_now_playing_page,"is-dark":!t.is_now_playing_page},style:t.zindex,attrs:{role:"navigation","aria-label":"player controls"}},[a("div",{staticClass:"navbar-brand fd-expanded"},[a("navbar-item-link",{attrs:{to:"/",exact:""}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-24px mdi-playlist-play"})])]),t.is_now_playing_page?t._e():a("router-link",{staticClass:"navbar-item is-expanded is-clipped",attrs:{to:"/now-playing","active-class":"is-active",exact:""}},[a("div",{staticClass:"is-clipped"},[a("p",{staticClass:"is-size-7 fd-is-text-clipped"},[a("strong",[t._v(t._s(t.now_playing.title))]),a("br"),t._v(" "+t._s(t.now_playing.artist)),"url"===t.now_playing.data_kind?a("span",[t._v(" - "+t._s(t.now_playing.album))]):t._e()])])]),t.is_now_playing_page?a("player-button-previous",{staticClass:"navbar-item fd-margin-left-auto",attrs:{icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-seek-back",{staticClass:"navbar-item",attrs:{seek_ms:"10000",icon_style:"mdi-24px"}}):t._e(),a("player-button-play-pause",{staticClass:"navbar-item",attrs:{icon_style:"mdi-36px",show_disabled_message:""}}),t.is_now_playing_page?a("player-button-seek-forward",{staticClass:"navbar-item",attrs:{seek_ms:"30000",icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-next",{staticClass:"navbar-item",attrs:{icon_style:"mdi-24px"}}):t._e(),a("a",{staticClass:"navbar-item fd-margin-left-auto is-hidden-desktop",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch",class:{"is-active":t.show_player_menu}},[a("a",{staticClass:"navbar-link is-arrowless",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-dropdown is-right is-boxed",staticStyle:{"margin-right":"6px","margin-bottom":"6px","border-radius":"6px"}},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(0)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile fd-expanded"},[a("div",{staticClass:"level-item"},[a("div",{staticClass:"buttons has-addons"},[a("player-button-repeat",{staticClass:"button"}),a("player-button-shuffle",{staticClass:"button"}),a("player-button-consume",{staticClass:"button"})],1)])])])],2)])],1),a("div",{staticClass:"navbar-menu is-hidden-desktop",class:{"is-active":t.show_player_menu}},[a("div",{staticClass:"navbar-start"}),a("div",{staticClass:"navbar-end"},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"buttons is-centered"},[a("player-button-repeat",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-shuffle",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-consume",{staticClass:"button",attrs:{icon_style:"mdi-18px"}})],1)]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item fd-has-margin-bottom"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(1)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])])],2)])])},it=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])}],nt={_audio:new Audio,_context:null,_source:null,_gain:null,setupAudio:function(){var t=this,s=window.AudioContext||window.webkitAudioContext;return this._context=new s,this._source=this._context.createMediaElementSource(this._audio),this._gain=this._context.createGain(),this._source.connect(this._gain),this._gain.connect(this._context.destination),this._audio.addEventListener("canplaythrough",(function(s){t._audio.play()})),this._audio.addEventListener("canplay",(function(s){t._audio.play()})),this._audio},setVolume:function(t){this._gain&&(t=parseFloat(t)||0,t=t<0?0:t,t=t>1?1:t,this._gain.gain.value=t)},playSource:function(t){var s=this;this.stopAudio(),this._context.resume().then((function(){s._audio.src=String(t||"")+"?x="+Date.now(),s._audio.crossOrigin="anonymous",s._audio.load()}))},stopAudio:function(){try{this._audio.pause()}catch(t){}try{this._audio.stop()}catch(t){}try{this._audio.close()}catch(t){}}},ot=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small"},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.output.selected},on:{click:t.set_enabled}},[a("i",{staticClass:"mdi mdi-18px",class:t.type_class})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.output.selected}},[t._v(t._s(t.output.name))]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.output.selected,value:t.volume},on:{change:t.set_volume}})],1)])])])])},lt=[],rt=a("c7e3"),ct=a.n(rt),dt={name:"NavbarItemOutput",components:{RangeSlider:ct.a},props:["output"],computed:{type_class:function(){return"AirPlay"===this.output.type?"mdi-airplay":"Chromecast"===this.output.type?"mdi-cast":"fifo"===this.output.type?"mdi-pipe":"mdi-server"},volume:function(){return this.output.selected?this.output.volume:0}},methods:{play_next:function(){X.player_next()},set_volume:function(t){X.player_output_volume(this.output.id,t)},set_enabled:function(){var t={selected:!this.output.selected};X.output_update(this.output.id,t)}}},ut=dt,pt=Object(N["a"])(ut,ot,lt,!1,null,null,null),_t=pt.exports,mt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.toggle_play_pause}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-play":!t.is_playing,"mdi-pause":t.is_playing&&t.is_pause_allowed,"mdi-stop":t.is_playing&&!t.is_pause_allowed}]})])])},ht=[],ft={name:"PlayerButtonPlayPause",props:{icon_style:String,show_disabled_message:Boolean},computed:{is_playing:function(){return"play"===this.$store.state.player.state},is_pause_allowed:function(){return this.$store.getters.now_playing&&"pipe"!==this.$store.getters.now_playing.data_kind},disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{toggle_play_pause:function(){this.disabled?this.show_disabled_message&&this.$store.dispatch("add_notification",{text:"Queue is empty",type:"info",topic:"connection",timeout:2e3}):this.is_playing&&this.is_pause_allowed?X.player_pause():this.is_playing&&!this.is_pause_allowed?X.player_stop():X.player_play()}}},vt=ft,yt=Object(N["a"])(vt,mt,ht,!1,null,null,null),bt=yt.exports,gt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-forward",class:t.icon_style})])])},kt=[],Ct={name:"PlayerButtonNext",props:{icon_style:String},computed:{disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_next:function(){this.disabled||X.player_next()}}},wt=Ct,xt=Object(N["a"])(wt,gt,kt,!1,null,null,null),$t=xt.exports,qt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_previous}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-backward",class:t.icon_style})])])},At=[],St={name:"PlayerButtonPrevious",props:{icon_style:String},computed:{disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_previous:function(){this.disabled||X.player_previous()}}},jt=St,Pt=Object(N["a"])(jt,qt,At,!1,null,null,null),Ot=Pt.exports,Tt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_shuffle},on:{click:t.toggle_shuffle_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-shuffle":t.is_shuffle,"mdi-shuffle-disabled":!t.is_shuffle}]})])])},Lt=[],Et={name:"PlayerButtonShuffle",props:{icon_style:String},computed:{is_shuffle:function(){return this.$store.state.player.shuffle}},methods:{toggle_shuffle_mode:function(){X.player_shuffle(!this.is_shuffle)}}},It=Et,zt=Object(N["a"])(It,Tt,Lt,!1,null,null,null),Dt=zt.exports,Nt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_consume},on:{click:t.toggle_consume_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fire",class:t.icon_style})])])},Rt=[],Mt={name:"PlayerButtonConsume",props:{icon_style:String},computed:{is_consume:function(){return this.$store.state.player.consume}},methods:{toggle_consume_mode:function(){X.player_consume(!this.is_consume)}}},Ut=Mt,Ht=Object(N["a"])(Ut,Nt,Rt,!1,null,null,null),Wt=Ht.exports,Bt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":!t.is_repeat_off},on:{click:t.toggle_repeat_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-repeat":t.is_repeat_all,"mdi-repeat-once":t.is_repeat_single,"mdi-repeat-off":t.is_repeat_off}]})])])},Ft=[],Gt=(a("38cf"),{name:"PlayerButtonRepeat",props:{icon_style:String},computed:{is_repeat_all:function(){return"all"===this.$store.state.player.repeat},is_repeat_single:function(){return"single"===this.$store.state.player.repeat},is_repeat_off:function(){return!this.is_repeat_all&&!this.is_repeat_single}},methods:{toggle_repeat_mode:function(){this.is_repeat_all?X.player_repeat("single"):this.is_repeat_single?X.player_repeat("off"):X.player_repeat("all")}}}),Yt=Gt,Vt=Object(N["a"])(Yt,Bt,Ft,!1,null,null,null),Qt=Vt.exports,Jt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rewind",class:t.icon_style})])]):t._e()},Kt=[],Xt={name:"PlayerButtonSeekBack",props:["seek_ms","icon_style"],computed:{now_playing:function(){return this.$store.getters.now_playing},is_stopped:function(){return"stop"===this.$store.state.player.state},disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible:function(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||X.player_seek(-1*this.seek_ms)}}},Zt=Xt,ts=Object(N["a"])(Zt,Jt,Kt,!1,null,null,null),ss=ts.exports,as=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fast-forward",class:t.icon_style})])]):t._e()},es=[],is={name:"PlayerButtonSeekForward",props:["seek_ms","icon_style"],computed:{now_playing:function(){return this.$store.getters.now_playing},is_stopped:function(){return"stop"===this.$store.state.player.state},disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible:function(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||X.player_seek(this.seek_ms)}}},ns=is,os=Object(N["a"])(ns,as,es,!1,null,null,null),ls=os.exports,rs={name:"NavbarBottom",components:{NavbarItemLink:M,NavbarItemOutput:_t,RangeSlider:ct.a,PlayerButtonPlayPause:bt,PlayerButtonNext:$t,PlayerButtonPrevious:Ot,PlayerButtonShuffle:Dt,PlayerButtonConsume:Wt,PlayerButtonRepeat:Qt,PlayerButtonSeekForward:ls,PlayerButtonSeekBack:ss},data:function(){return{old_volume:0,playing:!1,loading:!1,stream_volume:10,show_outputs_menu:!1,show_desktop_outputs_menu:!1}},computed:{show_player_menu:{get:function(){return this.$store.state.show_player_menu},set:function(t){this.$store.commit(I,t)}},show_burger_menu:function(){return this.$store.state.show_burger_menu},zindex:function(){return this.show_burger_menu?"z-index: 20":""},state:function(){return this.$store.state.player},now_playing:function(){return this.$store.getters.now_playing},is_now_playing_page:function(){return"/now-playing"===this.$route.path},outputs:function(){return this.$store.state.outputs},player:function(){return this.$store.state.player},config:function(){return this.$store.state.config}},methods:{on_click_outside_outputs:function(){this.show_outputs_menu=!1},set_volume:function(t){X.player_volume(t)},toggle_mute_volume:function(){this.player.volume>0?this.set_volume(0):this.set_volume(this.old_volume)},setupAudio:function(){var t=this,s=nt.setupAudio();s.addEventListener("waiting",(function(s){t.playing=!1,t.loading=!0})),s.addEventListener("playing",(function(s){t.playing=!0,t.loading=!1})),s.addEventListener("ended",(function(s){t.playing=!1,t.loading=!1})),s.addEventListener("error",(function(s){t.closeAudio(),t.$store.dispatch("add_notification",{text:"HTTP stream error: failed to load stream or stopped loading due to network problem",type:"danger"}),t.playing=!1,t.loading=!1}))},closeAudio:function(){nt.stopAudio(),this.playing=!1},playChannel:function(){if(!this.playing){var t="/stream.mp3";this.loading=!0,nt.playSource(t),nt.setVolume(this.stream_volume/100)}},togglePlay:function(){if(!this.loading)return this.playing?this.closeAudio():this.playChannel()},set_stream_volume:function(t){this.stream_volume=t,nt.setVolume(this.stream_volume/100)}},watch:{"$store.state.player.volume":function(){this.player.volume>0&&(this.old_volume=this.player.volume)}},mounted:function(){this.setupAudio()},destroyed:function(){this.closeAudio()}},cs=rs,ds=Object(N["a"])(cs,et,it,!1,null,null,null),us=ds.exports,ps=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"fd-notifications"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-half"},t._l(t.notifications,(function(s){return a("div",{key:s.id,staticClass:"notification has-shadow ",class:["notification",s.type?"is-"+s.type:""]},[a("button",{staticClass:"delete",on:{click:function(a){return t.remove(s)}}}),t._v(" "+t._s(s.text)+" ")])})),0)])])},_s=[],ms={name:"Notifications",components:{},data:function(){return{showNav:!1}},computed:{notifications:function(){return this.$store.state.notifications.list}},methods:{remove:function(t){this.$store.commit(q,t)}}},hs=ms,fs=(a("cf45"),Object(N["a"])(hs,ps,_s,!1,null,null,null)),vs=fs.exports,ys=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Remote pairing request ")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label"},[t._v(" "+t._s(t.pairing.remote)+" ")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],ref:"pin_field",staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.kickoff_pairing}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cellphone-iphone"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Pair Remote")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},bs=[],gs={name:"ModalDialogRemotePairing",props:["show"],data:function(){return{pairing_req:{pin:""}}},computed:{pairing:function(){return this.$store.state.pairing}},methods:{kickoff_pairing:function(){var t=this;X.pairing_kickoff(this.pairing_req).then((function(){t.pairing_req.pin=""}))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.pin_field.focus()}),10))}}},ks=gs,Cs=Object(N["a"])(ks,ys,bs,!1,null,null,null),ws=Cs.exports,xs=a("d04d"),$s=a.n(xs),qs=a("c1df"),As=a.n(qs),Ss={name:"App",components:{NavbarTop:at,NavbarBottom:us,Notifications:vs,ModalDialogRemotePairing:ws},template:"",data:function(){return{token_timer_id:0,reconnect_attempts:0,pairing_active:!1}},computed:{show_burger_menu:{get:function(){return this.$store.state.show_burger_menu},set:function(t){this.$store.commit(E,t)}},show_player_menu:{get:function(){return this.$store.state.show_player_menu},set:function(t){this.$store.commit(I,t)}}},created:function(){var t=this;As.a.locale(navigator.language),this.connect(),this.$Progress.start(),this.$router.beforeEach((function(s,a,e){if(s.meta.show_progress){if(void 0!==s.meta.progress){var i=s.meta.progress;t.$Progress.parseMeta(i)}t.$Progress.start()}e()})),this.$router.afterEach((function(s,a){s.meta.show_progress&&t.$Progress.finish()}))},methods:{connect:function(){var t=this;this.$store.dispatch("add_notification",{text:"Connecting to forked-daapd",type:"info",topic:"connection",timeout:2e3}),X.config().then((function(s){var a=s.data;t.$store.commit(u,a),t.$store.commit(S,a.hide_singles),document.title=a.library_name,t.open_ws(),t.$Progress.finish()})).catch((function(){t.$store.dispatch("add_notification",{text:"Failed to connect to forked-daapd",type:"danger",topic:"connection"})}))},open_ws:function(){if(this.$store.state.config.websocket_port<=0)this.$store.dispatch("add_notification",{text:"Missing websocket port",type:"danger"});else{var t=this,s="ws://";"https:"===window.location.protocol&&(s="wss://");var a=s+window.location.hostname+":"+t.$store.state.config.websocket_port;0;var e=new $s.a(a,"notify",{reconnectInterval:3e3});e.onopen=function(){t.$store.dispatch("add_notification",{text:"Connection to server established",type:"primary",topic:"connection",timeout:2e3}),t.reconnect_attempts=0,e.send(JSON.stringify({notify:["update","database","player","options","outputs","volume","spotify","lastfm","pairing"]})),t.update_outputs(),t.update_player_status(),t.update_library_stats(),t.update_settings(),t.update_queue(),t.update_spotify(),t.update_lastfm(),t.update_pairing()},e.onclose=function(){},e.onerror=function(){t.reconnect_attempts++,t.$store.dispatch("add_notification",{text:"Connection lost. Reconnecting ... ("+t.reconnect_attempts+")",type:"danger",topic:"connection"})},e.onmessage=function(s){var a=JSON.parse(s.data);(a.notify.includes("update")||a.notify.includes("database"))&&t.update_library_stats(),(a.notify.includes("player")||a.notify.includes("options")||a.notify.includes("volume"))&&t.update_player_status(),(a.notify.includes("outputs")||a.notify.includes("volume"))&&t.update_outputs(),a.notify.includes("queue")&&t.update_queue(),a.notify.includes("spotify")&&t.update_spotify(),a.notify.includes("lastfm")&&t.update_lastfm(),a.notify.includes("pairing")&&t.update_pairing()}}},update_library_stats:function(){var t=this;X.library_stats().then((function(s){var a=s.data;t.$store.commit(m,a)})),X.library_count("media_kind is audiobook").then((function(s){var a=s.data;t.$store.commit(h,a)})),X.library_count("media_kind is podcast").then((function(s){var a=s.data;t.$store.commit(f,a)}))},update_outputs:function(){var t=this;X.outputs().then((function(s){var a=s.data;t.$store.commit(v,a.outputs)}))},update_player_status:function(){var t=this;X.player_status().then((function(s){var a=s.data;t.$store.commit(y,a)}))},update_queue:function(){var t=this;X.queue().then((function(s){var a=s.data;t.$store.commit(b,a)}))},update_settings:function(){var t=this;X.settings().then((function(s){var a=s.data;t.$store.commit(p,a)}))},update_lastfm:function(){var t=this;X.lastfm().then((function(s){var a=s.data;t.$store.commit(g,a)}))},update_spotify:function(){var t=this;X.spotify().then((function(s){var a=s.data;t.$store.commit(k,a),t.token_timer_id>0&&(window.clearTimeout(t.token_timer_id),t.token_timer_id=0),a.webapi_token_expires_in>0&&a.webapi_token&&(t.token_timer_id=window.setTimeout(t.update_spotify,1e3*a.webapi_token_expires_in))}))},update_pairing:function(){var t=this;X.pairing().then((function(s){var a=s.data;t.$store.commit(C,a),t.pairing_active=a.active}))},update_is_clipped:function(){this.show_burger_menu||this.show_player_menu?document.querySelector("html").classList.add("is-clipped"):document.querySelector("html").classList.remove("is-clipped")}},watch:{show_burger_menu:function(){this.update_is_clipped()},show_player_menu:function(){this.update_is_clipped()}}},js=Ss,Ps=Object(N["a"])(js,n,o,!1,null,null,null),Os=Ps.exports,Ts=a("8c4f"),Ls=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"heading"},[t._v(t._s(t.queue.count)+" tracks")]),a("p",{staticClass:"title is-4"},[t._v("Queue")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",class:{"is-info":t.show_only_next_items},on:{click:t.update_show_next_items}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-arrow-collapse-down"})]),a("span",[t._v("Hide previous")])]),a("a",{staticClass:"button is-small",on:{click:t.open_add_stream_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",[t._v("Add Stream")])]),a("a",{staticClass:"button is-small",class:{"is-info":t.edit_mode},on:{click:function(s){t.edit_mode=!t.edit_mode}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Edit")])]),a("a",{staticClass:"button is-small",on:{click:t.queue_clear}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete-empty"})]),a("span",[t._v("Clear")])]),t.is_queue_save_allowed?a("a",{staticClass:"button is-small",attrs:{disabled:0===t.queue_items.length},on:{click:t.save_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),a("span",[t._v("Save")])]):t._e()])]),a("template",{slot:"content"},[a("draggable",{attrs:{handle:".handle"},on:{end:t.move_item},model:{value:t.queue_items,callback:function(s){t.queue_items=s},expression:"queue_items"}},t._l(t.queue_items,(function(s,e){return a("list-item-queue-item",{key:s.id,attrs:{item:s,position:e,current_position:t.current_position,show_only_next_items:t.show_only_next_items,edit_mode:t.edit_mode}},[a("template",{slot:"actions"},[t.edit_mode?t._e():a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])]),s.id!==t.state.item_id&&t.edit_mode?a("a",{on:{click:function(a){return t.remove(s)}}},[a("span",{staticClass:"icon has-text-grey"},[a("i",{staticClass:"mdi mdi-delete mdi-18px"})])]):t._e()])],2)})),1),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}}),a("modal-dialog-add-url-stream",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1}}}),t.is_queue_save_allowed?a("modal-dialog-playlist-save",{attrs:{show:t.show_pls_save_modal},on:{close:function(s){t.show_pls_save_modal=!1}}}):t._e()],1)],2)},Es=[],Is=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t.$slots["options"]?a("section",[a("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:t.observer_options,expression:"observer_options"}],staticStyle:{height:"2px"}}),t._t("options"),a("nav",{staticClass:"buttons is-centered",staticStyle:{"margin-bottom":"6px","margin-top":"16px"}},[t.options_visible?a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_content}},[t._m(1)]):a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_top}},[t._m(0)])])],2):t._e(),a("div",{class:{"fd-content-with-option":t.$slots["options"]}},[a("nav",{staticClass:"level",attrs:{id:"top"}},[a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item has-text-centered-mobile"},[a("div",[t._t("heading-left")],2)])]),a("div",{staticClass:"level-right has-text-centered-mobile"},[t._t("heading-right")],2)]),t._t("content"),a("div",{staticStyle:{"margin-top":"16px"}},[t._t("footer")],2)],2)])])])])},zs=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-up"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down"})])}],Ds={name:"ContentWithHeading",data:function(){return{options_visible:!1,observer_options:{callback:this.visibilityChanged,intersection:{rootMargin:"-100px",threshold:.3}}}},methods:{scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})},scroll_to_content:function(){this.$route.meta.has_tabs?this.$scrollTo("#top",{offset:-140}):this.$scrollTo("#top",{offset:-100})},visibilityChanged:function(t){this.options_visible=t}}},Ns=Ds,Rs=Object(N["a"])(Ns,Is,zs,!1,null,null,null),Ms=Rs.exports,Us=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.is_next||!t.show_only_next_items?a("div",{staticClass:"media"},[t.edit_mode?a("div",{staticClass:"media-left"},[t._m(0)]):t._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next}},[t._v(t._s(t.item.title))]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[a("b",[t._v(t._s(t.item.artist))])]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[t._v(t._s(t.item.album))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e()},Hs=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon has-text-grey fd-is-movable handle"},[a("i",{staticClass:"mdi mdi-drag-horizontal mdi-18px"})])}],Ws={name:"ListItemQueueItem",props:["item","position","current_position","show_only_next_items","edit_mode"],computed:{state:function(){return this.$store.state.player},is_next:function(){return this.current_position<0||this.position>=this.current_position}},methods:{play:function(){X.player_play({item_id:this.item.id})}}},Bs=Ws,Fs=Object(N["a"])(Bs,Us,Hs,!1,null,null,null),Gs=Fs.exports,Ys=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.item.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.item.artist)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),t.item.album_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.item.album))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album))])]),t.item.album_artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),t.item.album_artist_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album_artist}},[t._v(t._s(t.item.album_artist))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album_artist))])]):t._e(),t.item.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.composer))])]):t._e(),t.item.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.year))])]):t._e(),t.item.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.item.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.track_number)+" / "+t._s(t.item.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.item.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.media_kind)+" - "+t._s(t.item.data_kind)+" "),"spotify"===t.item.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.item.type)+" "),t.item.samplerate?a("span",[t._v(" | "+t._s(t.item.samplerate)+" Hz")]):t._e(),t.item.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.item.channels)))]):t._e(),t.item.bitrate?a("span",[t._v(" | "+t._s(t.item.bitrate)+" Kb/s")]):t._e()])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.remove}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Remove")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Vs=[],Qs=(a("baa5"),a("fb6a"),a("be8d")),Js=a.n(Qs),Ks={name:"ModalDialogQueueItem",props:["show","item"],data:function(){return{spotify_track:{}}},methods:{remove:function(){this.$emit("close"),X.queue_remove(this.item.id)},play:function(){this.$emit("close"),X.player_play({item_id:this.item.id})},open_album:function(){"podcast"===this.media_kind?this.$router.push({path:"/podcasts/"+this.item.album_id}):"audiobook"===this.media_kind?this.$router.push({path:"/audiobooks/"+this.item.album_id}):this.$router.push({path:"/music/albums/"+this.item.album_id})},open_album_artist:function(){this.$router.push({path:"/music/artists/"+this.item.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.item.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})}},watch:{item:function(){var t=this;if(this.item&&"spotify"===this.item.data_kind){var s=new Js.a;s.setAccessToken(this.$store.state.spotify.webapi_token),s.getTrack(this.item.path.slice(this.item.path.lastIndexOf(":")+1)).then((function(s){t.spotify_track=s}))}else this.spotify_track={}}}},Xs=Ks,Zs=Object(N["a"])(Xs,Ys,Vs,!1,null,null,null),ta=Zs.exports,sa=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Add stream URL ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.play(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-stream",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-web"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Loading ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},aa=[],ea={name:"ModalDialogAddUrlStream",props:["show"],data:function(){return{url:"",loading:!1}},methods:{add_stream:function(){var t=this;this.loading=!0,X.queue_add(this.url).then((function(){t.$emit("close"),t.url=""})).catch((function(){t.loading=!1}))},play:function(){var t=this;this.loading=!0,X.player_play_uri(this.url,!1).then((function(){t.$emit("close"),t.url=""})).catch((function(){t.loading=!1}))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.url_field.focus()}),10))}}},ia=ea,na=Object(N["a"])(ia,sa,aa,!1,null,null,null),oa=na.exports,la=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Save queue to playlist ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.save(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.playlist_name,expression:"playlist_name"}],ref:"playlist_name_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"Playlist name",disabled:t.loading},domProps:{value:t.playlist_name},on:{input:function(s){s.target.composing||(t.playlist_name=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-file-music"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Saving ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.save}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Save")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ra=[],ca={name:"ModalDialogPlaylistSave",props:["show"],data:function(){return{playlist_name:"",loading:!1}},methods:{save:function(){var t=this;this.playlist_name.length<1||(this.loading=!0,X.queue_save_playlist(this.playlist_name).then((function(){t.$emit("close"),t.playlist_name=""})).catch((function(){t.loading=!1})))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.playlist_name_field.focus()}),10))}}},da=ca,ua=Object(N["a"])(da,la,ra,!1,null,null,null),pa=ua.exports,_a=a("b76a"),ma=a.n(_a),ha={name:"PageQueue",components:{ContentWithHeading:Ms,ListItemQueueItem:Gs,draggable:ma.a,ModalDialogQueueItem:ta,ModalDialogAddUrlStream:oa,ModalDialogPlaylistSave:pa},data:function(){return{edit_mode:!1,show_details_modal:!1,show_url_modal:!1,show_pls_save_modal:!1,selected_item:{}}},computed:{state:function(){return this.$store.state.player},is_queue_save_allowed:function(){return this.$store.state.config.allow_modifying_stored_playlists&&this.$store.state.config.default_playlist_directory},queue:function(){return this.$store.state.queue},queue_items:{get:function(){return this.$store.state.queue.items},set:function(t){}},current_position:function(){var t=this.$store.getters.now_playing;return void 0===t||void 0===t.position?-1:this.$store.getters.now_playing.position},show_only_next_items:function(){return this.$store.state.show_only_next_items}},methods:{queue_clear:function(){X.queue_clear()},update_show_next_items:function(t){this.$store.commit(L,!this.show_only_next_items)},remove:function(t){X.queue_remove(t.id)},move_item:function(t){var s=this.show_only_next_items?t.oldIndex+this.current_position:t.oldIndex,a=this.queue_items[s],e=a.position+(t.newIndex-t.oldIndex);e!==s&&X.queue_move(a.id,e)},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0},open_add_stream_dialog:function(t){this.show_url_modal=!0},save_dialog:function(t){this.queue_items.length>0&&(this.show_pls_save_modal=!0)}}},fa=ha,va=Object(N["a"])(fa,Ls,Es,!1,null,null,null),ya=va.exports,ba=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[t.now_playing.id>0?a("div",{staticClass:"fd-is-fullheight"},[a("div",{staticClass:"fd-is-expanded"},[a("cover-artwork",{staticClass:"fd-cover-image fd-has-action",attrs:{artwork_url:t.now_playing.artwork_url,artist:t.now_playing.artist,album:t.now_playing.album},on:{click:function(s){return t.open_dialog(t.now_playing)}}})],1),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered"},[a("p",{staticClass:"control has-text-centered fd-progress-now-playing"},[a("range-slider",{staticClass:"seek-slider fd-has-action",attrs:{min:"0",max:t.state.item_length_ms,value:t.item_progress_ms,disabled:"stop"===t.state.state,step:"1000"},on:{change:t.seek}})],1),a("p",{staticClass:"content"},[a("span",[t._v(t._s(t._f("duration")(t.item_progress_ms))+" / "+t._s(t._f("duration")(t.now_playing.length_ms)))])])])]),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered fd-has-margin-top"},[a("h1",{staticClass:"title is-5"},[t._v(" "+t._s(t.now_playing.title)+" ")]),a("h2",{staticClass:"title is-6"},[t._v(" "+t._s(t.now_playing.artist)+" ")]),t.composer?a("h2",{staticClass:"subtitle is-6 has-text-grey has-text-weight-bold"},[t._v(" "+t._s(t.composer)+" ")]):t._e(),a("h3",{staticClass:"subtitle is-6"},[t._v(" "+t._s(t.now_playing.album)+" ")])])])]):a("div",{staticClass:"fd-is-fullheight"},[t._m(0)]),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}})],1)},ga=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"fd-is-expanded fd-has-padding-left-right",staticStyle:{"flex-direction":"column"}},[a("div",{staticClass:"content has-text-centered"},[a("h1",{staticClass:"title is-5"},[t._v(" Your play queue is empty ")]),a("p",[t._v(" Add some tracks by browsing your library ")])])])}],ka=(a("ac1f"),a("1276"),a("498a"),function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("figure",[a("img",{directives:[{name:"lazyload",rawName:"v-lazyload"}],key:t.artwork_url_with_size,attrs:{"data-src":t.artwork_url_with_size,"data-err":t.dataURI},on:{click:function(s){return t.$emit("click")}}})])}),Ca=[],wa=(a("13d5"),a("5319"),a("d4ec")),xa=a("bee2"),$a=function(){function t(){Object(wa["a"])(this,t)}return Object(xa["a"])(t,[{key:"render",value:function(t){var s=' '+t.caption+" ";return"data:image/svg+xml;charset=UTF-8,"+encodeURIComponent(s)}}]),t}(),qa=$a,Aa=a("5d8a"),Sa=a.n(Aa),ja={name:"CoverArtwork",props:["artist","album","artwork_url","maxwidth","maxheight"],data:function(){return{svg:new qa,width:600,height:600,font_family:"sans-serif",font_size:200,font_weight:600}},computed:{artwork_url_with_size:function(){return this.maxwidth>0&&this.maxheight>0?X.artwork_url_append_size_params(this.artwork_url,this.maxwidth,this.maxheight):X.artwork_url_append_size_params(this.artwork_url)},alt_text:function(){return this.artist+" - "+this.album},caption:function(){return this.album?this.album.substring(0,2):this.artist?this.artist.substring(0,2):""},background_color:function(){return Sa()(this.alt_text)},is_background_light:function(){var t=this.background_color.replace(/#/,""),s=parseInt(t.substr(0,2),16),a=parseInt(t.substr(2,2),16),e=parseInt(t.substr(4,2),16),i=[.299*s,.587*a,.114*e].reduce((function(t,s){return t+s}))/255;return i>.5},text_color:function(){return this.is_background_light?"#000000":"#ffffff"},rendererParams:function(){return{width:this.width,height:this.height,textColor:this.text_color,backgroundColor:this.background_color,caption:this.caption,fontFamily:this.font_family,fontSize:this.font_size,fontWeight:this.font_weight}},dataURI:function(){return this.svg.render(this.rendererParams)}}},Pa=ja,Oa=Object(N["a"])(Pa,ka,Ca,!1,null,null,null),Ta=Oa.exports,La={name:"PageNowPlaying",components:{ModalDialogQueueItem:ta,RangeSlider:ct.a,CoverArtwork:Ta},data:function(){return{item_progress_ms:0,interval_id:0,show_details_modal:!1,selected_item:{}}},created:function(){var t=this;this.item_progress_ms=this.state.item_progress_ms,X.player_status().then((function(s){var a=s.data;t.$store.commit(y,a),"play"===t.state.state&&(t.interval_id=window.setInterval(t.tick,1e3))}))},destroyed:function(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0)},computed:{state:function(){return this.$store.state.player},now_playing:function(){return this.$store.getters.now_playing},settings_option_show_composer_now_playing:function(){return this.$store.getters.settings_option_show_composer_now_playing},settings_option_show_composer_for_genre:function(){return this.$store.getters.settings_option_show_composer_for_genre},composer:function(){var t=this;return this.settings_option_show_composer_now_playing&&(!this.settings_option_show_composer_for_genre||this.now_playing.genre&&this.settings_option_show_composer_for_genre.toLowerCase().split(",").findIndex((function(s){return t.now_playing.genre.toLowerCase().indexOf(s.trim())>=0}))>=0)?this.now_playing.composer:null}},methods:{tick:function(){this.item_progress_ms+=1e3},seek:function(t){var s=this;X.player_seek_to_pos(t).catch((function(){s.item_progress_ms=s.state.item_progress_ms}))},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0}},watch:{state:function(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0),this.item_progress_ms=this.state.item_progress_ms,"play"===this.state.state&&(this.interval_id=window.setInterval(this.tick,1e3))}}},Ea=La,Ia=Object(N["a"])(Ea,ba,ga,!1,null,null,null),za=Ia.exports,Da=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.recently_added.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_added")}}},[t._v("Show more")])])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_played")}}},[t._v("Show more")])])])])],2)],1)},Na=[],Ra=(a("3ca3"),a("841c"),a("ddb0"),function(t){return{beforeRouteEnter:function(s,a,e){t.load(s).then((function(s){e((function(a){return t.set(a,s)}))}))},beforeRouteUpdate:function(s,a,e){var i=this;t.load(s).then((function(s){t.set(i,s),e()}))}}}),Ma=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/music/browse","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",{},[t._v("Browse")])])]),a("router-link",{attrs:{tag:"li",to:"/music/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Artists")])])]),a("router-link",{attrs:{tag:"li",to:"/music/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Albums")])])]),a("router-link",{attrs:{tag:"li",to:"/music/genres","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-speaker"})]),a("span",{},[t._v("Genres")])])]),t.spotify_enabled?a("router-link",{attrs:{tag:"li",to:"/music/spotify","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})]),a("span",{},[t._v("Spotify")])])]):t._e()],1)])])])])])},Ua=[],Ha={name:"TabsMusic",computed:{spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid}}},Wa=Ha,Ba=Object(N["a"])(Wa,Ma,Ua,!1,null,null,null),Fa=Ba.exports,Ga=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.albums.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.albums.grouped[s],(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.albums_list,(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-album",{attrs:{show:t.show_details_modal,album:t.selected_album,media_kind:t.media_kind},on:{"remove-podcast":function(s){return t.open_remove_podcast_dialog()},close:function(s){t.show_details_modal=!1}}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],1)},Ya=[],Va=(a("4de4"),function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.album.name_sort.charAt(0).toUpperCase()}},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("div",{staticStyle:{"margin-top":"0.7rem"}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artist))])]),s.props.album.date_released&&"music"===s.props.album.media_kind?a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v(" "+s._s(s._f("time")(s.props.album.date_released,"L"))+" ")]):s._e()])]),a("div",{staticClass:"media-right",staticStyle:{"padding-top":"0.7rem"}},[s._t("actions")],2)])}),Qa=[],Ja={name:"ListItemAlbum",props:["album","media_kind"]},Ka=Ja,Xa=Object(N["a"])(Ka,Va,Qa,!0,null,null,null),Za=Xa.exports,te=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("cover-artwork",{staticClass:"image is-square fd-has-margin-bottom fd-has-shadow",attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name}}),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),"podcast"===t.media_kind_resolved?a("div",{staticClass:"buttons"},[a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]),a("a",{staticClass:"button is-small",on:{click:function(s){return t.$emit("remove-podcast")}}},[t._v("Remove podcast")])]):t._e(),a("div",{staticClass:"content is-small"},[t.album.artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]):t._e(),t.album.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.date_released,"L")))])]):t.album.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.year))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.album.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.media_kind)+" - "+t._s(t.album.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.time_added,"L LT")))])])])],1),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},se=[],ae={name:"ModalDialogAlbum",components:{CoverArtwork:Ta},props:["show","album","media_kind","new_tracks"],data:function(){return{artwork_visible:!1}},computed:{artwork_url:function(){return X.artwork_url_append_size_params(this.album.artwork_url)},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.album.media_kind}},methods:{play:function(){this.$emit("close"),X.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.album.uri)},open_album:function(){"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+this.album.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+this.album.id}):this.$router.push({path:"/music/albums/"+this.album.id})},open_artist:function(){"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id}):this.$router.push({path:"/music/artists/"+this.album.artist_id}))},mark_played:function(){var t=this;X.library_album_track_update(this.album.id,{play_count:"played"}).then((function(s){s.data;t.$emit("play-count-changed"),t.$emit("close")}))},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},ee=ae,ie=Object(N["a"])(ee,te,se,!1,null,null,null),ne=ie.exports,oe=(a("99af"),a("d81d"),a("4e82"),a("6062"),a("2909")),le=function(){function t(s){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1};Object(wa["a"])(this,t),this.items=s,this.options=a,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}return Object(xa["a"])(t,[{key:"init",value:function(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}},{key:"getAlbumIndex",value:function(t){return"Recently added"===this.options.sort?t.time_added.substring(0,4):"Recently released"===this.options.sort||"Release date"===this.options.sort?t.date_released?t.date_released.substring(0,4):"0000":t.name_sort.charAt(0).toUpperCase()}},{key:"isAlbumVisible",value:function(t){return!(this.options.hideSingles&&t.track_count<=2)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}},{key:"createIndexList",value:function(){var t=this;this.indexList=Object(oe["a"])(new Set(this.sortedAndFiltered.map((function(s){return t.getAlbumIndex(s)}))))}},{key:"createSortedAndFilteredList",value:function(){var t=this,s=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(s=s.filter((function(s){return t.isAlbumVisible(s)}))),"Recently added"===this.options.sort?s=Object(oe["a"])(s).sort((function(t,s){return s.time_added.localeCompare(t.time_added)})):"Recently released"===this.options.sort?s=Object(oe["a"])(s).sort((function(t,s){return t.date_released?s.date_released?s.date_released.localeCompare(t.date_released):-1:1})):"Release date"===this.options.sort&&(s=Object(oe["a"])(s).sort((function(t,s){return t.date_released?s.date_released?t.date_released.localeCompare(s.date_released):1:-1}))),this.sortedAndFiltered=s}},{key:"createGroupedList",value:function(){var t=this;this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((function(s,a){var e=t.getAlbumIndex(a);return s[e]=[].concat(Object(oe["a"])(s[e]||[]),[a]),s}),{})}}]),t}(),re={name:"ListAlbums",components:{ListItemAlbum:Za,ModalDialogAlbum:ne,ModalDialog:G,CoverArtwork:Ta},props:["albums","media_kind"],data:function(){return{show_details_modal:!1,selected_album:{},show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_album.media_kind},albums_list:function(){return Array.isArray(this.albums)?this.albums:this.albums.sortedAndFiltered},is_grouped:function(){return this.albums instanceof le&&this.albums.options.group}},methods:{open_album:function(t){this.selected_album=t,"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+t.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+t.id}):this.$router.push({path:"/music/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){var t=this;X.library_album_tracks(this.selected_album.id,{limit:1}).then((function(s){var a=s.data;X.library_track_playlists(a.items[0].id).then((function(s){var a=s.data,e=a.items.filter((function(t){return"rss"===t.type}));1===e.length?(t.rss_playlist_to_remove=e[0],t.show_remove_podcast_modal=!0,t.show_details_modal=!1):t.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})}))}))},remove_podcast:function(){var t=this;this.show_remove_podcast_modal=!1,X.library_playlist_delete(this.rss_playlist_to_remove.id).then((function(){t.$emit("podcast-deleted")}))}}},ce=re,de=Object(N["a"])(ce,Ga,Ya,!1,null,null,null),ue=de.exports,pe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.tracks,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(e,s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1}}})],2)},_e=[],me=function(t,s){var a=s._c;return a("div",{staticClass:"media",class:{"with-progress":s.slots().progress},attrs:{id:"index_"+s.props.track.title_sort.charAt(0).toUpperCase()}},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6",class:{"has-text-grey":"podcast"===s.props.track.media_kind&&s.props.track.play_count>0}},[s._v(s._s(s.props.track.title))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.track.artist))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[s._v(s._s(s.props.track.album))]),s._t("progress")],2),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},he=[],fe={name:"ListItemTrack",props:["track"]},ve=fe,ye=Object(N["a"])(ve,me,he,!0,null,null,null),be=ye.exports,ge=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artist)+" ")]),"podcast"===t.track.media_kind?a("div",{staticClass:"buttons"},[t.track.play_count>0?a("a",{staticClass:"button is-small",on:{click:t.mark_new}},[t._v("Mark as new")]):t._e(),0===t.track.play_count?a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]):t._e()]):t._e(),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.track.album))])]),t.track.album_artist&&"audiobook"!==t.track.media_kind?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.track.album_artist))])]):t._e(),t.track.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.composer))])]):t._e(),t.track.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.date_released,"L")))])]):t.track.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.year))])]):t._e(),t.track.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.track.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.media_kind)+" - "+t._s(t.track.data_kind)+" "),"spotify"===t.track.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.track.type)+" "),t.track.samplerate?a("span",[t._v(" | "+t._s(t.track.samplerate)+" Hz")]):t._e(),t.track.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.track.channels)))]):t._e(),t.track.bitrate?a("span",[t._v(" | "+t._s(t.track.bitrate)+" Kb/s")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.time_added,"L LT")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Rating")]),a("span",{staticClass:"title is-6"},[t._v(t._s(Math.floor(t.track.rating/10))+" / 10")])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play_track}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ke=[],Ce={name:"ModalDialogTrack",props:["show","track"],data:function(){return{spotify_track:{}}},methods:{play_track:function(){this.$emit("close"),X.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.track.uri)},open_album:function(){this.$emit("close"),"podcast"===this.track.media_kind?this.$router.push({path:"/podcasts/"+this.track.album_id}):"audiobook"===this.track.media_kind?this.$router.push({path:"/audiobooks/"+this.track.album_id}):this.$router.push({path:"/music/albums/"+this.track.album_id})},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.track.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.track.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})},mark_new:function(){var t=this;X.library_track_update(this.track.id,{play_count:"reset"}).then((function(){t.$emit("play-count-changed"),t.$emit("close")}))},mark_played:function(){var t=this;X.library_track_update(this.track.id,{play_count:"increment"}).then((function(){t.$emit("play-count-changed"),t.$emit("close")}))}},watch:{track:function(){var t=this;if(this.track&&"spotify"===this.track.data_kind){var s=new Js.a;s.setAccessToken(this.$store.state.spotify.webapi_token),s.getTrack(this.track.path.slice(this.track.path.lastIndexOf(":")+1)).then((function(s){t.spotify_track=s}))}else this.spotify_track={}}}},we=Ce,xe=Object(N["a"])(we,ge,ke,!1,null,null,null),$e=xe.exports,qe={name:"ListTracks",components:{ListItemTrack:be,ModalDialogTrack:$e},props:["tracks","uris","expression"],data:function(){return{show_details_modal:!1,selected_track:{}}},methods:{play_track:function(t,s){this.uris?X.player_play_uri(this.uris,!1,t):this.expression?X.player_play_expression(this.expression,!1,t):X.player_play_uri(s.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Ae=qe,Se=Object(N["a"])(Ae,pe,_e,!1,null,null,null),je=Se.exports,Pe={load:function(t){return Promise.all([X.search({type:"album",expression:"time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc",limit:3}),X.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:3})])},set:function(t,s){t.recently_added=s[0].data.albums,t.recently_played=s[1].data.tracks}},Oe={name:"PageBrowse",mixins:[Ra(Pe)],components:{ContentWithHeading:Ms,TabsMusic:Fa,ListAlbums:ue,ListTracks:je},data:function(){return{recently_added:{items:[]},recently_played:{items:[]},show_track_details_modal:!1,selected_track:{}}},methods:{open_browse:function(t){this.$router.push({path:"/music/browse/"+t})}}},Te=Oe,Le=Object(N["a"])(Te,Da,Na,!1,null,null,null),Ee=Le.exports,Ie=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.recently_added.items}})],1)],2)],1)},ze=[],De={load:function(t){return X.search({type:"album",expression:"time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc",limit:50})},set:function(t,s){t.recently_added=s.data.albums}},Ne={name:"PageBrowseType",mixins:[Ra(De)],components:{ContentWithHeading:Ms,TabsMusic:Fa,ListAlbums:ue},data:function(){return{recently_added:{}}}},Re=Ne,Me=Object(N["a"])(Re,Ie,ze,!1,null,null,null),Ue=Me.exports,He=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1)],2)],1)},We=[],Be={load:function(t){return X.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:50})},set:function(t,s){t.recently_played=s.data.tracks}},Fe={name:"PageBrowseType",mixins:[Ra(Be)],components:{ContentWithHeading:Ms,TabsMusic:Fa,ListTracks:je},data:function(){return{recently_played:{}}}},Ge=Fe,Ye=Object(N["a"])(Ge,He,We,!1,null,null,null),Ve=Ye.exports,Qe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_singles=a.concat([n])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear on singles or playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_spotify=a.concat([n])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide artists from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Artists")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},Je=[],Ke=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[a("nav",{staticClass:"buttons is-centered fd-is-square",staticStyle:{"margin-bottom":"16px"}},t._l(t.filtered_index,(function(s){return a("a",{key:s,staticClass:"button is-small",on:{click:function(a){return t.nav(s)}}},[t._v(t._s(s))])})),0)])},Xe=[],Ze={name:"IndexButtonList",props:["index"],computed:{filtered_index:function(){var t="!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~";return this.index.filter((function(s){return!t.includes(s)}))}},methods:{nav:function(t){this.$router.push({path:this.$router.currentRoute.path+"#index_"+t})},scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})}}},ti=Ze,si=Object(N["a"])(ti,Ke,Xe,!1,null,null,null),ai=si.exports,ei=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.artists.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.artists.grouped[s],(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.artists_list,(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-artist",{attrs:{show:t.show_details_modal,artist:t.selected_artist,media_kind:t.media_kind},on:{close:function(s){t.show_details_modal=!1}}})],1)},ii=[],ni=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.artist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},oi=[],li={name:"ListItemArtist",props:["artist"]},ri=li,ci=Object(N["a"])(ri,ni,oi,!0,null,null,null),di=ci.exports,ui=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Albums")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.album_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.artist.time_added,"L LT")))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},pi=[],_i={name:"ModalDialogArtist",props:["show","artist"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.artist.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.artist.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.artist.uri)},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.artist.id})}}},mi=_i,hi=Object(N["a"])(mi,ui,pi,!1,null,null,null),fi=hi.exports,vi=function(){function t(s){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1};Object(wa["a"])(this,t),this.items=s,this.options=a,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}return Object(xa["a"])(t,[{key:"init",value:function(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}},{key:"getArtistIndex",value:function(t){return"Name"===this.options.sort?t.name_sort.charAt(0).toUpperCase():t.time_added.substring(0,4)}},{key:"isArtistVisible",value:function(t){return!(this.options.hideSingles&&t.track_count<=2*t.album_count)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}},{key:"createIndexList",value:function(){var t=this;this.indexList=Object(oe["a"])(new Set(this.sortedAndFiltered.map((function(s){return t.getArtistIndex(s)}))))}},{key:"createSortedAndFilteredList",value:function(){var t=this,s=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(s=s.filter((function(s){return t.isArtistVisible(s)}))),"Recently added"===this.options.sort&&(s=Object(oe["a"])(s).sort((function(t,s){return s.time_added.localeCompare(t.time_added)}))),this.sortedAndFiltered=s}},{key:"createGroupedList",value:function(){var t=this;this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((function(s,a){var e=t.getArtistIndex(a);return s[e]=[].concat(Object(oe["a"])(s[e]||[]),[a]),s}),{})}}]),t}(),yi={name:"ListArtists",components:{ListItemArtist:di,ModalDialogArtist:fi},props:["artists","media_kind"],data:function(){return{show_details_modal:!1,selected_artist:{}}},computed:{media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_artist.media_kind},artists_list:function(){return Array.isArray(this.artists)?this.artists:this.artists.sortedAndFiltered},is_grouped:function(){return this.artists instanceof vi&&this.artists.options.group}},methods:{open_artist:function(t){this.selected_artist=t,"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+t.id}):this.$router.push({path:"/music/artists/"+t.id}))},open_dialog:function(t){this.selected_artist=t,this.show_details_modal=!0}}},bi=yi,gi=Object(N["a"])(bi,ei,ii,!1,null,null,null),ki=gi.exports,Ci=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown",class:{"is-active":t.is_active}},[a("div",{staticClass:"dropdown-trigger"},[a("button",{staticClass:"button",attrs:{"aria-haspopup":"true","aria-controls":"dropdown-menu"},on:{click:function(s){t.is_active=!t.is_active}}},[a("span",[t._v(t._s(t.value))]),t._m(0)])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},t._l(t.options,(function(s){return a("a",{key:s,staticClass:"dropdown-item",class:{"is-active":t.value===s},on:{click:function(a){return t.select(s)}}},[t._v(" "+t._s(s)+" ")])})),0)])])},wi=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down",attrs:{"aria-hidden":"true"}})])}],xi={name:"DropdownMenu",props:["value","options"],data:function(){return{is_active:!1}},methods:{onClickOutside:function(t){this.is_active=!1},select:function(t){this.is_active=!1,this.$emit("input",t)}}},$i=xi,qi=Object(N["a"])($i,Ci,wi,!1,null,null,null),Ai=qi.exports,Si={load:function(t){return X.library_artists("music")},set:function(t,s){t.artists=s.data}},ji={name:"PageArtists",mixins:[Ra(Si)],components:{ContentWithHeading:Ms,TabsMusic:Fa,IndexButtonList:ai,ListArtists:ki,DropdownMenu:Ai},data:function(){return{artists:{items:[]},sort_options:["Name","Recently added"]}},computed:{artists_list:function(){return new vi(this.artists.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get:function(){return this.$store.state.hide_singles},set:function(t){this.$store.commit(S,t)}},hide_spotify:{get:function(){return this.$store.state.hide_spotify},set:function(t){this.$store.commit(j,t)}},sort:{get:function(){return this.$store.state.artists_sort},set:function(t){this.$store.commit(P,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Pi=ji,Oi=Object(N["a"])(Pi,Qe,Je,!1,null,null,null),Ti=Oi.exports,Li=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"options"},[a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])]),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v(t._s(t.artist.track_count)+" tracks")])]),a("list-albums",{attrs:{albums:t.albums_list}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},Ei=[],Ii=(a("a15b"),{load:function(t){return Promise.all([X.library_artist(t.params.artist_id),X.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}}),zi={name:"PageArtist",mixins:[Ra(Ii)],components:{ContentWithHeading:Ms,ListAlbums:ue,ModalDialogArtist:fi,DropdownMenu:Ai},data:function(){return{artist:{},albums:{items:[]},sort_options:["Name","Release date"],show_artist_details_modal:!1}},computed:{albums_list:function(){return new le(this.albums.items,{sort:this.sort,group:!1})},sort:{get:function(){return this.$store.state.artist_albums_sort},set:function(t){this.$store.commit(O,t)}}},methods:{open_tracks:function(){this.$router.push({path:"/music/artists/"+this.artist.id+"/tracks"})},play:function(){X.player_play_uri(this.albums.items.map((function(t){return t.uri})).join(","),!0)}}},Di=zi,Ni=Object(N["a"])(Di,Li,Ei,!1,null,null,null),Ri=Ni.exports,Mi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_singles=a.concat([n])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides singles and albums with tracks that only appear in playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_spotify=a.concat([n])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide albums from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides albums that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Albums")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},Ui=[],Hi={load:function(t){return X.library_albums("music")},set:function(t,s){t.albums=s.data,t.index_list=Object(oe["a"])(new Set(t.albums.items.filter((function(s){return!t.$store.state.hide_singles||s.track_count>2})).map((function(t){return t.name_sort.charAt(0).toUpperCase()}))))}},Wi={name:"PageAlbums",mixins:[Ra(Hi)],components:{ContentWithHeading:Ms,TabsMusic:Fa,IndexButtonList:ai,ListAlbums:ue,DropdownMenu:Ai},data:function(){return{albums:{items:[]},sort_options:["Name","Recently added","Recently released"]}},computed:{albums_list:function(){return new le(this.albums.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get:function(){return this.$store.state.hide_singles},set:function(t){this.$store.commit(S,t)}},hide_spotify:{get:function(){return this.$store.state.hide_spotify},set:function(t){this.$store.commit(j,t)}},sort:{get:function(){return this.$store.state.albums_sort},set:function(t){this.$store.commit(T,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Bi=Wi,Fi=Object(N["a"])(Bi,Mi,Ui,!1,null,null,null),Gi=Fi.exports,Yi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},Vi=[],Qi=a("fd4d"),Ji={load:function(t){return Promise.all([X.library_album(t.params.album_id),X.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}},Ki={name:"PageAlbum",mixins:[Ra(Ji)],components:{ContentWithHero:Qi["default"],ListTracks:je,ModalDialogAlbum:ne,CoverArtwork:Ta},data:function(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.album.artist_id})},play:function(){X.player_play_uri(this.album.uri,!0)}}},Xi=Ki,Zi=Object(N["a"])(Xi,Yi,Vi,!1,null,null,null),tn=Zi.exports,sn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Genres")]),a("p",{staticClass:"heading"},[t._v(t._s(t.genres.total)+" genres")])]),a("template",{slot:"content"},[t._l(t.genres.items,(function(s){return a("list-item-genre",{key:s.name,attrs:{genre:s},on:{click:function(a){return t.open_genre(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-genre",{attrs:{show:t.show_details_modal,genre:t.selected_genre},on:{close:function(s){t.show_details_modal=!1}}})],2)],2)],1)},an=[],en=function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.genre.name.charAt(0).toUpperCase()}},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.genre.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},nn=[],on={name:"ListItemGenre",props:["genre"]},ln=on,rn=Object(N["a"])(ln,en,nn,!0,null,null,null),cn=rn.exports,dn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.genre.name))])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},un=[],pn={name:"ModalDialogGenre",props:["show","genre"],methods:{play:function(){this.$emit("close"),X.player_play_expression('genre is "'+this.genre.name+'" and media_kind is music',!1)},queue_add:function(){this.$emit("close"),X.queue_expression_add('genre is "'+this.genre.name+'" and media_kind is music')},queue_add_next:function(){this.$emit("close"),X.queue_expression_add_next('genre is "'+this.genre.name+'" and media_kind is music')},open_genre:function(){this.$emit("close"),this.$router.push({name:"Genre",params:{genre:this.genre.name}})}}},_n=pn,mn=Object(N["a"])(_n,dn,un,!1,null,null,null),hn=mn.exports,fn={load:function(t){return X.library_genres()},set:function(t,s){t.genres=s.data}},vn={name:"PageGenres",mixins:[Ra(fn)],components:{ContentWithHeading:Ms,TabsMusic:Fa,IndexButtonList:ai,ListItemGenre:cn,ModalDialogGenre:hn},data:function(){return{genres:{items:[]},show_details_modal:!1,selected_genre:{}}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.genres.items.map((function(t){return t.name.charAt(0).toUpperCase()}))))}},methods:{open_genre:function(t){this.$router.push({name:"Genre",params:{genre:t.name}})},open_dialog:function(t){this.selected_genre=t,this.show_details_modal=!0}}},yn=vn,bn=Object(N["a"])(yn,sn,an,!1,null,null,null),gn=bn.exports,kn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.genre_albums.total)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v("tracks")])]),a("list-albums",{attrs:{albums:t.genre_albums.items}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.name}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},Cn=[],wn={load:function(t){return X.library_genre(t.params.genre)},set:function(t,s){t.name=t.$route.params.genre,t.genre_albums=s.data.albums}},xn={name:"PageGenre",mixins:[Ra(wn)],components:{ContentWithHeading:Ms,IndexButtonList:ai,ListAlbums:ue,ModalDialogGenre:hn},data:function(){return{name:"",genre_albums:{items:[]},show_genre_details_modal:!1}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.genre_albums.items.map((function(t){return t.name.charAt(0).toUpperCase()}))))}},methods:{open_tracks:function(){this.show_details_modal=!1,this.$router.push({name:"GenreTracks",params:{genre:this.name}})},play:function(){X.player_play_expression('genre is "'+this.name+'" and media_kind is music',!0)},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0}}},$n=xn,qn=Object(N["a"])($n,kn,Cn,!1,null,null,null),An=qn.exports,Sn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.genre))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v("albums")]),t._v(" | "+t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,expression:t.expression}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.genre}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},jn=[],Pn={load:function(t){return X.library_genre_tracks(t.params.genre)},set:function(t,s){t.genre=t.$route.params.genre,t.tracks=s.data.tracks}},On={name:"PageGenreTracks",mixins:[Ra(Pn)],components:{ContentWithHeading:Ms,ListTracks:je,IndexButtonList:ai,ModalDialogGenre:hn},data:function(){return{tracks:{items:[]},genre:"",show_genre_details_modal:!1}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.tracks.items.map((function(t){return t.title_sort.charAt(0).toUpperCase()}))))},expression:function(){return'genre is "'+this.genre+'" and media_kind is music'}},methods:{open_genre:function(){this.show_details_modal=!1,this.$router.push({name:"Genre",params:{genre:this.genre}})},play:function(){X.player_play_expression(this.expression,!0)}}},Tn=On,Ln=Object(N["a"])(Tn,Sn,jn,!1,null,null,null),En=Ln.exports,In=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.album_count)+" albums")]),t._v(" | "+t._s(t.artist.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,uris:t.track_uris}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)],1)},zn=[],Dn={load:function(t){return Promise.all([X.library_artist(t.params.artist_id),X.library_artist_tracks(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.tracks=s[1].data.tracks}},Nn={name:"PageArtistTracks",mixins:[Ra(Dn)],components:{ContentWithHeading:Ms,ListTracks:je,IndexButtonList:ai,ModalDialogArtist:fi},data:function(){return{artist:{},tracks:{items:[]},show_artist_details_modal:!1}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.tracks.items.map((function(t){return t.title_sort.charAt(0).toUpperCase()}))))},track_uris:function(){return this.tracks.items.map((function(t){return t.uri})).join(",")}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.artist.id})},play:function(){X.player_play_uri(this.tracks.items.map((function(t){return t.uri})).join(","),!0)}}},Rn=Nn,Mn=Object(N["a"])(Rn,In,zn,!1,null,null,null),Un=Mn.exports,Hn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.new_episodes.items.length>0?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New episodes")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.mark_all_played}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Mark All Played")])])])]),a("template",{slot:"content"},[t._l(t.new_episodes.items,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1},"play-count-changed":t.reload_new_episodes}})],2)],2):t._e(),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums.total)+" podcasts")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.open_add_podcast_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rss"})]),a("span",[t._v("Add Podcast")])])])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items},on:{"play-count-changed":function(s){return t.reload_new_episodes()},"podcast-deleted":function(s){return t.reload_podcasts()}}}),a("modal-dialog-add-rss",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1},"podcast-added":function(s){return t.reload_podcasts()}}})],1)],2)],1)},Wn=[],Bn=(a("4160"),a("159b"),function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v("Add Podcast RSS feed URL")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.add_stream(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-rss",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-rss"})])]),a("p",{staticClass:"help"},[t._v("Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. ")])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item button is-loading"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Processing ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)}),Fn=[],Gn={name:"ModalDialogAddRss",props:["show"],data:function(){return{url:"",loading:!1}},methods:{add_stream:function(){var t=this;this.loading=!0,X.library_add(this.url).then((function(){t.$emit("close"),t.$emit("podcast-added"),t.url=""})).catch((function(){t.loading=!1}))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.url_field.focus()}),10))}}},Yn=Gn,Vn=Object(N["a"])(Yn,Bn,Fn,!1,null,null,null),Qn=Vn.exports,Jn={load:function(t){return Promise.all([X.library_albums("podcast"),X.library_podcasts_new_episodes()])},set:function(t,s){t.albums=s[0].data,t.new_episodes=s[1].data.tracks}},Kn={name:"PagePodcasts",mixins:[Ra(Jn)],components:{ContentWithHeading:Ms,ListItemTrack:be,ListAlbums:ue,ModalDialogTrack:$e,ModalDialogAddRss:Qn,RangeSlider:ct.a},data:function(){return{albums:{items:[]},new_episodes:{items:[]},show_url_modal:!1,show_track_details_modal:!1,selected_track:{}}},methods:{play_track:function(t){X.player_play_uri(t.uri,!1)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},mark_all_played:function(){this.new_episodes.items.forEach((function(t){X.library_track_update(t.id,{play_count:"increment"})})),this.new_episodes.items={}},open_add_podcast_dialog:function(t){this.show_url_modal=!0},reload_new_episodes:function(){var t=this;X.library_podcasts_new_episodes().then((function(s){var a=s.data;t.new_episodes=a.tracks}))},reload_podcasts:function(){var t=this;X.library_albums("podcast").then((function(s){var a=s.data;t.albums=a,t.reload_new_episodes()}))}}},Xn=Kn,Zn=Object(N["a"])(Xn,Hn,Wn,!1,null,null,null),to=Zn.exports,so=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.album.name)+" ")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.album.track_count)+" tracks")]),t._l(t.tracks,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1},"play-count-changed":t.reload_tracks}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"podcast",new_tracks:t.new_tracks},on:{close:function(s){t.show_album_details_modal=!1},"play-count-changed":t.reload_tracks,"remove-podcast":t.open_remove_podcast_dialog}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],2)],2)},ao=[],eo={load:function(t){return Promise.all([X.library_album(t.params.album_id),X.library_podcast_episodes(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.tracks.items}},io={name:"PagePodcast",mixins:[Ra(eo)],components:{ContentWithHeading:Ms,ListItemTrack:be,ModalDialogTrack:$e,RangeSlider:ct.a,ModalDialogAlbum:ne,ModalDialog:G},data:function(){return{album:{},tracks:[],show_details_modal:!1,selected_track:{},show_album_details_modal:!1,show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{new_tracks:function(){return this.tracks.filter((function(t){return 0===t.play_count})).length}},methods:{play:function(){X.player_play_uri(this.album.uri,!1)},play_track:function(t){X.player_play_uri(t.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){var t=this;this.show_album_details_modal=!1,X.library_track_playlists(this.tracks[0].id).then((function(s){var a=s.data,e=a.items.filter((function(t){return"rss"===t.type}));1===e.length?(t.rss_playlist_to_remove=e[0],t.show_remove_podcast_modal=!0):t.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})}))},remove_podcast:function(){var t=this;this.show_remove_podcast_modal=!1,X.library_playlist_delete(this.rss_playlist_to_remove.id).then((function(){t.$router.replace({path:"/podcasts"})}))},reload_tracks:function(){var t=this;X.library_podcast_episodes(this.album.id).then((function(s){var a=s.data;t.tracks=a.tracks.items}))}}},no=io,oo=Object(N["a"])(no,so,ao,!1,null,null,null),lo=oo.exports,ro=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},co=[],uo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/audiobooks/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Authors")])])]),a("router-link",{attrs:{tag:"li",to:"/audiobooks/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Audiobooks")])])])],1)])])])])])},po=[],_o={name:"TabsAudiobooks"},mo=_o,ho=Object(N["a"])(mo,uo,po,!1,null,null,null),fo=ho.exports,vo={load:function(t){return X.library_albums("audiobook")},set:function(t,s){t.albums=s.data}},yo={name:"PageAudiobooksAlbums",mixins:[Ra(vo)],components:{TabsAudiobooks:fo,ContentWithHeading:Ms,IndexButtonList:ai,ListAlbums:ue},data:function(){return{albums:{items:[]}}},computed:{albums_list:function(){return new le(this.albums.items,{sort:"Name",group:!0})}},methods:{}},bo=yo,go=Object(N["a"])(bo,ro,co,!1,null,null,null),ko=go.exports,Co=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Authors")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Authors")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},wo=[],xo={load:function(t){return X.library_artists("audiobook")},set:function(t,s){t.artists=s.data}},$o={name:"PageAudiobooksArtists",mixins:[Ra(xo)],components:{ContentWithHeading:Ms,TabsAudiobooks:fo,IndexButtonList:ai,ListArtists:ki},data:function(){return{artists:{items:[]}}},computed:{artists_list:function(){return new vi(this.artists.items,{sort:"Name",group:!0})}},methods:{}},qo=$o,Ao=Object(N["a"])(qo,Co,wo,!1,null,null,null),So=Ao.exports,jo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums")]),a("list-albums",{attrs:{albums:t.albums.items}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},Po=[],Oo={load:function(t){return Promise.all([X.library_artist(t.params.artist_id),X.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}},To={name:"PageAudiobooksArtist",mixins:[Ra(Oo)],components:{ContentWithHeading:Ms,ListAlbums:ue,ModalDialogArtist:fi},data:function(){return{artist:{},albums:{},show_artist_details_modal:!1}},methods:{play:function(){X.player_play_uri(this.albums.items.map((function(t){return t.uri})).join(","),!1)}}},Lo=To,Eo=Object(N["a"])(Lo,jo,Po,!1,null,null,null),Io=Eo.exports,zo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"audiobook"},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},Do=[],No={load:function(t){return Promise.all([X.library_album(t.params.album_id),X.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}},Ro={name:"PageAudiobooksAlbum",mixins:[Ra(No)],components:{ContentWithHero:Qi["default"],ListTracks:je,ModalDialogAlbum:ne,CoverArtwork:Ta},data:function(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id})},play:function(){X.player_play_uri(this.album.uri,!1)},play_track:function(t){X.player_play_uri(this.album.uri,!1,t)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Mo=Ro,Uo=Object(N["a"])(Mo,zo,Do,!1,null,null,null),Ho=Uo.exports,Wo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))]),a("p",{staticClass:"heading"},[t._v(t._s(t.playlists.total)+" playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1)],2)},Bo=[],Fo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.playlists,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-library-music":"folder"!==s.type,"mdi-rss":"rss"===s.type,"mdi-folder":"folder"===s.type}})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-playlist",{attrs:{show:t.show_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_details_modal=!1}}})],2)},Go=[],Yo=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.playlist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},Vo=[],Qo={name:"ListItemPlaylist",props:["playlist"]},Jo=Qo,Ko=Object(N["a"])(Jo,Yo,Vo,!0,null,null,null),Xo=Ko.exports,Zo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.type))])])])]),t.playlist.folder?t._e():a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},tl=[],sl={name:"ModalDialogPlaylist",props:["show","playlist","uris"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.uris?this.uris:this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.uris?this.uris:this.playlist.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.uris?this.uris:this.playlist.uri)},open_playlist:function(){this.$emit("close"),this.$router.push({path:"/playlists/"+this.playlist.id+"/tracks"})}}},al=sl,el=Object(N["a"])(al,Zo,tl,!1,null,null,null),il=el.exports,nl={name:"ListPlaylists",components:{ListItemPlaylist:Xo,ModalDialogPlaylist:il},props:["playlists"],data:function(){return{show_details_modal:!1,selected_playlist:{}}},methods:{open_playlist:function(t){"folder"!==t.type?this.$router.push({path:"/playlists/"+t.id+"/tracks"}):this.$router.push({path:"/playlists/"+t.id})},open_dialog:function(t){this.selected_playlist=t,this.show_details_modal=!0}}},ol=nl,ll=Object(N["a"])(ol,Fo,Go,!1,null,null,null),rl=ll.exports,cl={load:function(t){return Promise.all([X.library_playlist(t.params.playlist_id),X.library_playlist_folder(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.playlists=s[1].data}},dl={name:"PagePlaylists",mixins:[Ra(cl)],components:{ContentWithHeading:Ms,ListPlaylists:rl},data:function(){return{playlist:{},playlists:{}}}},ul=dl,pl=Object(N["a"])(ul,Wo,Bo,!1,null,null,null),_l=pl.exports,ml=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.length)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.uris}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.playlist,uris:t.uris},on:{close:function(s){t.show_playlist_details_modal=!1}}})],1)],2)},hl=[],fl={load:function(t){return Promise.all([X.library_playlist(t.params.playlist_id),X.library_playlist_tracks(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.tracks=s[1].data.items}},vl={name:"PagePlaylist",mixins:[Ra(fl)],components:{ContentWithHeading:Ms,ListTracks:je,ModalDialogPlaylist:il},data:function(){return{playlist:{},tracks:[],show_playlist_details_modal:!1}},computed:{uris:function(){return this.playlist.random?this.tracks.map((function(t){return t.uri})).join(","):this.playlist.uri}},methods:{play:function(){X.player_play_uri(this.uris,!0)}}},yl=vl,bl=Object(N["a"])(yl,ml,hl,!1,null,null,null),gl=bl.exports,kl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Files")]),a("p",{staticClass:"title is-7 has-text-grey"},[t._v(t._s(t.current_directory))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){return t.open_directory_dialog({path:t.current_directory})}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[t.$route.query.directory?a("div",{staticClass:"media",on:{click:function(s){return t.open_parent_directory()}}},[a("figure",{staticClass:"media-left fd-has-action"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-subdirectory-arrow-left"})])]),a("div",{staticClass:"media-content fd-has-action is-clipped"},[a("h1",{staticClass:"title is-6"},[t._v("..")])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e(),t._l(t.files.directories,(function(s){return a("list-item-directory",{key:s.path,attrs:{directory:s},on:{click:function(a){return t.open_directory(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_directory_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.playlists.items,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-library-music"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.tracks.items,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(s){return t.play_track(e)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-file-outline"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-directory",{attrs:{show:t.show_directory_details_modal,directory:t.selected_directory},on:{close:function(s){t.show_directory_details_modal=!1}}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}}),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1}}})],2)],2)],1)},Cl=[],wl=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._m(0)]),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.directory.path.substring(s.props.directory.path.lastIndexOf("/")+1)))]),a("h2",{staticClass:"subtitle is-7 has-text-grey-light"},[s._v(s._s(s.props.directory.path))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},xl=[function(t,s){var a=s._c;return a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-folder"})])}],$l={name:"ListItemDirectory",props:["directory"]},ql=$l,Al=Object(N["a"])(ql,wl,xl,!0,null,null,null),Sl=Al.exports,jl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.directory.path)+" ")])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Pl=[],Ol={name:"ModalDialogDirectory",props:["show","directory"],methods:{play:function(){this.$emit("close"),X.player_play_expression('path starts with "'+this.directory.path+'" order by path asc',!1)},queue_add:function(){this.$emit("close"),X.queue_expression_add('path starts with "'+this.directory.path+'" order by path asc')},queue_add_next:function(){this.$emit("close"),X.queue_expression_add_next('path starts with "'+this.directory.path+'" order by path asc')}}},Tl=Ol,Ll=Object(N["a"])(Tl,jl,Pl,!1,null,null,null),El=Ll.exports,Il={load:function(t){return t.query.directory?X.library_files(t.query.directory):Promise.resolve()},set:function(t,s){t.files=s?s.data:{directories:t.$store.state.config.directories.map((function(t){return{path:t}})),tracks:{items:[]},playlists:{items:[]}}}},zl={name:"PageFiles",mixins:[Ra(Il)],components:{ContentWithHeading:Ms,ListItemDirectory:Sl,ListItemPlaylist:Xo,ListItemTrack:be,ModalDialogDirectory:El,ModalDialogPlaylist:il,ModalDialogTrack:$e},data:function(){return{files:{directories:[],tracks:{items:[]},playlists:{items:[]}},show_directory_details_modal:!1,selected_directory:{},show_playlist_details_modal:!1,selected_playlist:{},show_track_details_modal:!1,selected_track:{}}},computed:{current_directory:function(){return this.$route.query&&this.$route.query.directory?this.$route.query.directory:"/"}},methods:{open_parent_directory:function(){var t=this.current_directory.slice(0,this.current_directory.lastIndexOf("/"));""===t||this.$store.state.config.directories.includes(this.current_directory)?this.$router.push({path:"/files"}):this.$router.push({path:"/files",query:{directory:this.current_directory.slice(0,this.current_directory.lastIndexOf("/"))}})},open_directory:function(t){this.$router.push({path:"/files",query:{directory:t.path}})},open_directory_dialog:function(t){this.selected_directory=t,this.show_directory_details_modal=!0},play:function(){X.player_play_expression('path starts with "'+this.current_directory+'" order by path asc',!1)},play_track:function(t){X.player_play_uri(this.files.tracks.items.map((function(t){return t.uri})).join(","),!1,t)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_playlist:function(t){this.$router.push({path:"/playlists/"+t.id+"/tracks"})},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},Dl=zl,Nl=Object(N["a"])(Dl,kl,Cl,!1,null,null,null),Rl=Nl.exports,Ml=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Radio")])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items}})],1)],2)],1)},Ul=[],Hl={load:function(t){return X.library_radio_streams()},set:function(t,s){t.tracks=s.data.tracks}},Wl={name:"PageRadioStreams",mixins:[Ra(Hl)],components:{ContentWithHeading:Ms,ListTracks:je},data:function(){return{tracks:{items:[]}}}},Bl=Wl,Fl=Object(N["a"])(Bl,Ml,Ul,!1,null,null,null),Gl=Fl.exports,Yl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)]),t._m(1)])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.tracks.items}})],1),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists.items}})],1),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items}})],1),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e(),t.show_podcasts&&t.podcasts.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.podcasts.items}})],1),a("template",{slot:"footer"},[t.show_all_podcasts_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_podcasts}},[t._v("Show all "+t._s(t.podcasts.total.toLocaleString())+" podcasts")])])]):t._e()])],2):t._e(),t.show_podcasts&&!t.podcasts.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No podcasts found")])])])],2):t._e(),t.show_audiobooks&&t.audiobooks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.audiobooks.items}})],1),a("template",{slot:"footer"},[t.show_all_audiobooks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_audiobooks}},[t._v("Show all "+t._s(t.audiobooks.total.toLocaleString())+" audiobooks")])])]):t._e()])],2):t._e(),t.show_audiobooks&&!t.audiobooks.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No audiobooks found")])])])],2):t._e()],1)},Vl=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"help has-text-centered"},[t._v("Tip: you can search by a smart playlist query language "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md",target:"_blank"}},[t._v("expression")]),t._v(" if you prefix it with "),a("code",[t._v("query:")]),t._v(". ")])}],Ql=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content py-3"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t._t("content")],2)])])])},Jl=[],Kl={name:"ContentText"},Xl=Kl,Zl=Object(N["a"])(Xl,Ql,Jl,!1,null,null,null),tr=Zl.exports,sr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.spotify_enabled?a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small is-toggle is-toggle-rounded"},[a("ul",[a("li",{class:{"is-active":"/search/library"===t.$route.path}},[a("a",{on:{click:t.search_library}},[t._m(0),a("span",{},[t._v("Library")])])]),a("li",{class:{"is-active":"/search/spotify"===t.$route.path}},[a("a",{on:{click:t.search_spotify}},[t._m(1),a("span",{},[t._v("Spotify")])])])])])])])])]):t._e()},ar=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-library-books"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})])}],er={name:"TabsSearch",props:["query"],computed:{spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},route_query:function(){return this.query?{type:"track,artist,album,playlist,audiobook,podcast",query:this.query,limit:3,offset:0}:null}},methods:{search_library:function(){this.$router.push({path:"/search/library",query:this.route_query})},search_spotify:function(){this.$router.push({path:"/search/spotify",query:this.route_query})}}},ir=er,nr=Object(N["a"])(ir,sr,ar,!1,null,null,null),or=nr.exports,lr={name:"PageSearch",components:{ContentWithHeading:Ms,ContentText:tr,TabsSearch:or,ListTracks:je,ListArtists:ki,ListAlbums:ue,ListPlaylists:rl},data:function(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},audiobooks:{items:[],total:0},podcasts:{items:[],total:0}}},computed:{recent_searches:function(){return this.$store.state.recent_searches},show_tracks:function(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button:function(){return this.tracks.total>this.tracks.items.length},show_artists:function(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button:function(){return this.artists.total>this.artists.items.length},show_albums:function(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button:function(){return this.albums.total>this.albums.items.length},show_playlists:function(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button:function(){return this.playlists.total>this.playlists.items.length},show_audiobooks:function(){return this.$route.query.type&&this.$route.query.type.includes("audiobook")},show_all_audiobooks_button:function(){return this.audiobooks.total>this.audiobooks.items.length},show_podcasts:function(){return this.$route.query.type&&this.$route.query.type.includes("podcast")},show_all_podcasts_button:function(){return this.podcasts.total>this.podcasts.items.length},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{search:function(t){if(!t.query.query||""===t.query.query)return this.search_query="",void this.$refs.search_field.focus();this.search_query=t.query.query,this.searchMusic(t.query),this.searchAudiobooks(t.query),this.searchPodcasts(t.query),this.$store.commit(A,t.query.query)},searchMusic:function(t){var s=this;if(!(t.type.indexOf("track")<0&&t.type.indexOf("artist")<0&&t.type.indexOf("album")<0&&t.type.indexOf("playlist")<0)){var a={type:t.type,media_kind:"music"};t.query.startsWith("query:")?a.expression=t.query.replace(/^query:/,"").trim():a.query=t.query,t.limit&&(a.limit=t.limit,a.offset=t.offset),X.search(a).then((function(t){var a=t.data;s.tracks=a.tracks?a.tracks:{items:[],total:0},s.artists=a.artists?a.artists:{items:[],total:0},s.albums=a.albums?a.albums:{items:[],total:0},s.playlists=a.playlists?a.playlists:{items:[],total:0}}))}},searchAudiobooks:function(t){var s=this;if(!(t.type.indexOf("audiobook")<0)){var a={type:"album",media_kind:"audiobook"};t.query.startsWith("query:")?a.expression=t.query.replace(/^query:/,"").trim():a.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is audiobook)',t.limit&&(a.limit=t.limit,a.offset=t.offset),X.search(a).then((function(t){var a=t.data;s.audiobooks=a.albums?a.albums:{items:[],total:0}}))}},searchPodcasts:function(t){var s=this;if(!(t.type.indexOf("podcast")<0)){var a={type:"album",media_kind:"podcast"};t.query.startsWith("query:")?a.expression=t.query.replace(/^query:/,"").trim():a.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is podcast)',t.limit&&(a.limit=t.limit,a.offset=t.offset),X.search(a).then((function(t){var a=t.data;s.podcasts=a.albums?a.albums:{items:[],total:0}}))}},new_search:function(){this.search_query&&(this.$router.push({path:"/search/library",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/library",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/library",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/library",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/library",query:{type:"playlist",query:this.$route.query.query}})},open_search_audiobooks:function(){this.$router.push({path:"/search/library",query:{type:"audiobook",query:this.$route.query.query}})},open_search_podcasts:function(){this.$router.push({path:"/search/library",query:{type:"podcast",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()}},mounted:function(){this.search(this.$route)},watch:{$route:function(t,s){this.search(t)}}},rr=lr,cr=Object(N["a"])(rr,Yl,Vl,!1,null,null,null),dr=cr.exports,ur=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths has-text-centered-mobile"},[a("p",{staticClass:"heading"},[a("b",[t._v("forked-daapd")]),t._v(" - version "+t._s(t.config.version))]),a("h1",{staticClass:"title is-4"},[t._v(t._s(t.config.library_name))])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content"},[a("nav",{staticClass:"level is-mobile"},[t._m(0),a("div",{staticClass:"level-right"},[t.library.updating?a("div",[a("a",{staticClass:"button is-small is-loading"},[t._v("Update")])]):a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown is-right",class:{"is-active":t.show_update_dropdown}},[a("div",{staticClass:"dropdown-trigger"},[a("div",{staticClass:"buttons has-addons"},[a("a",{staticClass:"button is-small",on:{click:t.update}},[t._v("Update")]),a("a",{staticClass:"button is-small",on:{click:function(s){t.show_update_dropdown=!t.show_update_dropdown}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-chevron-down":!t.show_update_dropdown,"mdi-chevron-up":t.show_update_dropdown}})])])])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},[a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update}},[a("strong",[t._v("Update")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Adds new, removes deleted and updates modified files.")])])]),a("hr",{staticClass:"dropdown-divider"}),a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update_meta}},[a("strong",[t._v("Rescan metadata")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Same as update, but also rescans unmodified files.")])])])])])])])]),a("table",{staticClass:"table"},[a("tbody",[a("tr",[a("th",[t._v("Artists")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.artists)))])]),a("tr",[a("th",[t._v("Albums")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.albums)))])]),a("tr",[a("th",[t._v("Tracks")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.songs)))])]),a("tr",[a("th",[t._v("Total playtime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("duration")(1e3*t.library.db_playtime,"y [years], d [days], h [hours], m [minutes]")))])]),a("tr",[a("th",[t._v("Library updated")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.updated_at))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.updated_at,"lll"))+")")])])]),a("tr",[a("th",[t._v("Uptime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.started_at,!0))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.started_at,"ll"))+")")])])])])])])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content has-text-centered-mobile"},[a("p",{staticClass:"is-size-7"},[t._v("Compiled with support for "+t._s(t._f("join")(t.config.buildoptions))+".")]),t._m(1)])])])])])])},pr=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item"},[a("h2",{staticClass:"title is-5"},[t._v("Library")])])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"is-size-7"},[t._v("Web interface built with "),a("a",{attrs:{href:"http://bulma.io"}},[t._v("Bulma")]),t._v(", "),a("a",{attrs:{href:"https://materialdesignicons.com/"}},[t._v("Material Design Icons")]),t._v(", "),a("a",{attrs:{href:"https://vuejs.org/"}},[t._v("Vue.js")]),t._v(", "),a("a",{attrs:{href:"https://github.com/mzabriskie/axios"}},[t._v("axios")]),t._v(" and "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/network/dependencies"}},[t._v("more")]),t._v(".")])}],_r={name:"PageAbout",data:function(){return{show_update_dropdown:!1}},computed:{config:function(){return this.$store.state.config},library:function(){return this.$store.state.library}},methods:{onClickOutside:function(t){this.show_update_dropdown=!1},update:function(){this.show_update_dropdown=!1,X.library_update()},update_meta:function(){this.show_update_dropdown=!1,X.library_rescan()}},filters:{join:function(t){return t.join(", ")}}},mr=_r,hr=Object(N["a"])(mr,ur,pr,!1,null,null,null),fr=hr.exports,vr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/new-releases"}},[t._v(" Show more ")])],1)])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/featured-playlists"}},[t._v(" Show more ")])],1)])])],2)],1)},yr=[],br=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artists[0].name))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v("("+s._s(s.props.album.album_type)+", "+s._s(s._f("time")(s.props.album.release_date,"L"))+")")])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},gr=[],kr={name:"SpotifyListItemAlbum",props:["album"]},Cr=kr,wr=Object(N["a"])(Cr,br,gr,!0,null,null,null),xr=wr.exports,$r=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_playlist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.playlist.name))]),a("h2",{staticClass:"subtitle is-7"},[t._v(t._s(t.playlist.owner.display_name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},qr=[],Ar={name:"SpotifyListItemPlaylist",props:["playlist"],methods:{open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},Sr=Ar,jr=Object(N["a"])(Sr,$r,qr,!1,null,null,null),Pr=jr.exports,Or=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("figure",{directives:[{name:"show",rawName:"v-show",value:t.artwork_visible,expression:"artwork_visible"}],staticClass:"image is-square fd-has-margin-bottom"},[a("img",{staticClass:"fd-has-shadow",attrs:{src:t.artwork_url},on:{load:t.artwork_loaded,error:t.artwork_error}})]),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.album_type))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Tr=[],Lr={name:"SpotifyModalDialogAlbum",props:["show","album"],data:function(){return{artwork_visible:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{play:function(){this.$emit("close"),X.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.album.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},Er=Lr,Ir=Object(N["a"])(Er,Or,Tr,!1,null,null,null),zr=Ir.exports,Dr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Owner")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.owner.display_name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.tracks.total))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Nr=[],Rr={name:"SpotifyModalDialogPlaylist",props:["show","playlist"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.playlist.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.playlist.uri)},open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},Mr=Rr,Ur=Object(N["a"])(Mr,Dr,Nr,!1,null,null,null),Hr=Ur.exports,Wr={load:function(t){if(K.state.spotify_new_releases.length>0&&K.state.spotify_featured_playlists.length>0)return Promise.resolve();var s=new Js.a;return s.setAccessToken(K.state.spotify.webapi_token),Promise.all([s.getNewReleases({country:K.state.spotify.webapi_country,limit:50}),s.getFeaturedPlaylists({country:K.state.spotify.webapi_country,limit:50})])},set:function(t,s){s&&(K.commit(w,s[0].albums.items),K.commit(x,s[1].playlists.items))}},Br={name:"SpotifyPageBrowse",mixins:[Ra(Wr)],components:{ContentWithHeading:Ms,TabsMusic:Fa,SpotifyListItemAlbum:xr,SpotifyListItemPlaylist:Pr,SpotifyModalDialogAlbum:zr,SpotifyModalDialogPlaylist:Hr,CoverArtwork:Ta},data:function(){return{show_album_details_modal:!1,selected_album:{},show_playlist_details_modal:!1,selected_playlist:{}}},computed:{new_releases:function(){return this.$store.state.spotify_new_releases.slice(0,3)},featured_playlists:function(){return this.$store.state.spotify_featured_playlists.slice(0,3)},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Fr=Br,Gr=Object(N["a"])(Fr,vr,yr,!1,null,null,null),Yr=Gr.exports,Vr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)],1)},Qr=[],Jr={load:function(t){if(K.state.spotify_new_releases.length>0)return Promise.resolve();var s=new Js.a;return s.setAccessToken(K.state.spotify.webapi_token),s.getNewReleases({country:K.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&K.commit(w,s.albums.items)}},Kr={name:"SpotifyPageBrowseNewReleases",mixins:[Ra(Jr)],components:{ContentWithHeading:Ms,TabsMusic:Fa,SpotifyListItemAlbum:xr,SpotifyModalDialogAlbum:zr,CoverArtwork:Ta},data:function(){return{show_album_details_modal:!1,selected_album:{}}},computed:{new_releases:function(){return this.$store.state.spotify_new_releases},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Xr=Kr,Zr=Object(N["a"])(Xr,Vr,Qr,!1,null,null,null),tc=Zr.exports,sc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2)],2)],1)},ac=[],ec={load:function(t){if(K.state.spotify_featured_playlists.length>0)return Promise.resolve();var s=new Js.a;s.setAccessToken(K.state.spotify.webapi_token),s.getFeaturedPlaylists({country:K.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&K.commit(x,s.playlists.items)}},ic={name:"SpotifyPageBrowseFeaturedPlaylists",mixins:[Ra(ec)],components:{ContentWithHeading:Ms,TabsMusic:Fa,SpotifyListItemPlaylist:Pr,SpotifyModalDialogPlaylist:Hr},data:function(){return{show_playlist_details_modal:!1,selected_playlist:{}}},computed:{featured_playlists:function(){return this.$store.state.spotify_featured_playlists}},methods:{open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},nc=ic,oc=Object(N["a"])(nc,sc,ac,!1,null,null,null),lc=oc.exports,rc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.total)+" albums")]),t._l(t.albums,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset=this.total&&s.complete())},play:function(){this.show_details_modal=!1,X.player_play_uri(this.artist.uri,!0)},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},gc=bc,kc=Object(N["a"])(gc,rc,cc,!1,null,null,null),Cc=kc.exports,wc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.tracks.total)+" tracks")]),t._l(t.album.tracks.items,(function(s,e){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,position:e,album:t.album,context_uri:t.album.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.album},on:{close:function(s){t.show_track_details_modal=!1}}}),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)},xc=[],$c=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.track.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[t._v(t._s(t.track.artists[0].name))])])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},qc=[],Ac={name:"SpotifyListItemTrack",props:["track","position","album","context_uri"],methods:{play:function(){X.player_play_uri(this.context_uri,!1,this.position)}}},Sc=Ac,jc=Object(N["a"])(Sc,$c,qc,!1,null,null,null),Pc=jc.exports,Oc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.name)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artists[0].name)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.duration_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Tc=[],Lc={name:"SpotifyModalDialogTrack",props:["show","track","album"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.track.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})}}},Ec=Lc,Ic=Object(N["a"])(Ec,Oc,Tc,!1,null,null,null),zc=Ic.exports,Dc={load:function(t){var s=new Js.a;return s.setAccessToken(K.state.spotify.webapi_token),s.getAlbum(t.params.album_id)},set:function(t,s){t.album=s}},Nc={name:"PageAlbum",mixins:[Ra(Dc)],components:{ContentWithHero:Qi["default"],SpotifyListItemTrack:Pc,SpotifyModalDialogTrack:zc,SpotifyModalDialogAlbum:zr,CoverArtwork:Ta},data:function(){return{album:{artists:[{}],tracks:{}},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},play:function(){this.show_details_modal=!1,X.player_play_uri(this.album.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Rc=Nc,Mc=Object(N["a"])(Rc,wc,xc,!1,null,null,null),Uc=Mc.exports,Hc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.playlist.tracks.total)+" tracks")]),t._l(t.tracks,(function(s,e){return a("spotify-list-item-track",{key:s.track.id,attrs:{track:s.track,album:s.track.album,position:e,context_uri:t.playlist.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s.track)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset=this.total&&s.complete())},play:function(){this.show_details_modal=!1,X.player_play_uri(this.playlist.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Gc=Fc,Yc=Object(N["a"])(Gc,Hc,Wc,!1,null,null,null),Vc=Yc.exports,Qc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)])])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[t._l(t.tracks.items,(function(s){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,album:s.album,position:0,context_uri:s.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"track"===t.query.type?a("infinite-loading",{on:{infinite:t.search_tracks_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.selected_track.album},on:{close:function(s){t.show_track_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[t._l(t.artists.items,(function(s){return a("spotify-list-item-artist",{key:s.id,attrs:{artist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_artist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"artist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_artists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.selected_artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[t._l(t.albums.items,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"album"===t.query.type?a("infinite-loading",{on:{infinite:t.search_albums_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[t._l(t.playlists.items,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"playlist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_playlists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e()],1)},Jc=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])}],Kc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_artist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},Xc=[],Zc={name:"SpotifyListItemArtist",props:["artist"],methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.artist.id})}}},td=Zc,sd=Object(N["a"])(td,Kc,Xc,!1,null,null,null),ad=sd.exports,ed={name:"SpotifyPageSearch",components:{ContentWithHeading:Ms,ContentText:tr,TabsSearch:or,SpotifyListItemTrack:Pc,SpotifyListItemArtist:ad,SpotifyListItemAlbum:xr,SpotifyListItemPlaylist:Pr,SpotifyModalDialogTrack:zc,SpotifyModalDialogArtist:hc,SpotifyModalDialogAlbum:zr,SpotifyModalDialogPlaylist:Hr,InfiniteLoading:vc.a,CoverArtwork:Ta},data:function(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},query:{},search_param:{},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1,selected_album:{},show_artist_details_modal:!1,selected_artist:{},show_playlist_details_modal:!1,selected_playlist:{},validSearchTypes:["track","artist","album","playlist"]}},computed:{recent_searches:function(){return this.$store.state.recent_searches.filter((function(t){return!t.startsWith("query:")}))},show_tracks:function(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button:function(){return this.tracks.total>this.tracks.items.length},show_artists:function(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button:function(){return this.artists.total>this.artists.items.length},show_albums:function(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button:function(){return this.albums.total>this.albums.items.length},show_playlists:function(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button:function(){return this.playlists.total>this.playlists.items.length},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{reset:function(){this.tracks={items:[],total:0},this.artists={items:[],total:0},this.albums={items:[],total:0},this.playlists={items:[],total:0}},search:function(){if(this.reset(),!this.query.query||""===this.query.query||this.query.query.startsWith("query:"))return this.search_query="",void this.$refs.search_field.focus();this.search_query=this.query.query,this.search_param.limit=this.query.limit?this.query.limit:50,this.search_param.offset=this.query.offset?this.query.offset:0,this.$store.commit(A,this.query.query),this.search_all()},spotify_search:function(){var t=this;return X.spotify().then((function(s){var a=s.data;t.search_param.market=a.webapi_country;var e=new Js.a;e.setAccessToken(a.webapi_token);var i=t.query.type.split(",").filter((function(s){return t.validSearchTypes.includes(s)}));return e.search(t.query.query,i,t.search_param)}))},search_all:function(){var t=this;this.spotify_search().then((function(s){t.tracks=s.tracks?s.tracks:{items:[],total:0},t.artists=s.artists?s.artists:{items:[],total:0},t.albums=s.albums?s.albums:{items:[],total:0},t.playlists=s.playlists?s.playlists:{items:[],total:0}}))},search_tracks_next:function(t){var s=this;this.spotify_search().then((function(a){s.tracks.items=s.tracks.items.concat(a.tracks.items),s.tracks.total=a.tracks.total,s.search_param.offset+=a.tracks.limit,t.loaded(),s.search_param.offset>=s.tracks.total&&t.complete()}))},search_artists_next:function(t){var s=this;this.spotify_search().then((function(a){s.artists.items=s.artists.items.concat(a.artists.items),s.artists.total=a.artists.total,s.search_param.offset+=a.artists.limit,t.loaded(),s.search_param.offset>=s.artists.total&&t.complete()}))},search_albums_next:function(t){var s=this;this.spotify_search().then((function(a){s.albums.items=s.albums.items.concat(a.albums.items),s.albums.total=a.albums.total,s.search_param.offset+=a.albums.limit,t.loaded(),s.search_param.offset>=s.albums.total&&t.complete()}))},search_playlists_next:function(t){var s=this;this.spotify_search().then((function(a){s.playlists.items=s.playlists.items.concat(a.playlists.items),s.playlists.total=a.playlists.total,s.search_param.offset+=a.playlists.limit,t.loaded(),s.search_param.offset>=s.playlists.total&&t.complete()}))},new_search:function(){this.search_query&&(this.$router.push({path:"/search/spotify",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/spotify",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/spotify",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/spotify",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/spotify",query:{type:"playlist",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_artist_dialog:function(t){this.selected_artist=t,this.show_artist_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}},mounted:function(){this.query=this.$route.query,this.search()},watch:{$route:function(t,s){this.query=t.query,this.search()}}},id=ed,nd=Object(N["a"])(id,Qc,Jc,!1,null,null,null),od=nd.exports,ld=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Navbar items")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" Select the top navigation bar menu items ")]),a("div",{staticClass:"notification is-size-7"},[t._v(" If you select more items than can be shown on your screen then the burger menu will disappear. ")]),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_playlists"}},[a("template",{slot:"label"},[t._v(" Playlists")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_music"}},[a("template",{slot:"label"},[t._v(" Music")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_podcasts"}},[a("template",{slot:"label"},[t._v(" Podcasts")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_audiobooks"}},[a("template",{slot:"label"},[t._v(" Audiobooks")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_radio"}},[a("template",{slot:"label"},[t._v(" Radio")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_files"}},[a("template",{slot:"label"},[t._v(" Files")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_search"}},[a("template",{slot:"label"},[t._v(" Search")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Album lists")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_cover_artwork_in_album_lists"}},[a("template",{slot:"label"},[t._v(" Show cover artwork in album list")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Now playing page")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_composer_now_playing"}},[a("template",{slot:"label"},[t._v(" Show composer")]),a("template",{slot:"info"},[t._v('If enabled the composer of the current playing track is shown on the "now playing page"')])],2),a("settings-textfield",{attrs:{category_name:"webinterface",option_name:"show_composer_for_genre",disabled:!t.settings_option_show_composer_now_playing,placeholder:"Genres"}},[a("template",{slot:"label"},[t._v("Show composer only for listed genres")]),a("template",{slot:"info"},[a("p",{staticClass:"help"},[t._v(' Comma separated list of genres the composer should be displayed on the "now playing page". ')]),a("p",{staticClass:"help"},[t._v(" Leave empty to always show the composer. ")]),a("p",{staticClass:"help"},[t._v(" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to "),a("code",[t._v("classical, soundtrack")]),t._v(' will show the composer for tracks with a genre tag of "Contemporary Classical".'),a("br")])])],2)],1)],2)],1)},rd=[],cd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/settings/webinterface","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Webinterface")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/remotes-outputs","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Remotes & Outputs")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/artwork","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Artwork")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/online-services","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Online Services")])])])],1)])])])])])},dd=[],ud={name:"TabsSettings",computed:{}},pd=ud,_d=Object(N["a"])(pd,cd,dd,!1,null,null,null),md=_d.exports,hd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"field"},[a("label",{staticClass:"checkbox"},[a("input",{ref:"settings_checkbox",attrs:{type:"checkbox"},domProps:{checked:t.value},on:{change:t.set_update_timer}}),t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])},fd=[],vd={name:"SettingsCheckbox",props:["category_name","option_name"],data:function(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category:function(){var t=this;return this.$store.state.settings.categories.find((function(s){return s.name===t.category_name}))},option:function(){var t=this;return this.category?this.category.options.find((function(s){return s.name===t.option_name})):{}},value:function(){return this.option.value},info:function(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer:function(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";var t=this.$refs.settings_checkbox.checked;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting:function(){var t=this;this.timerId=-1;var s=this.$refs.settings_checkbox.checked;if(s!==this.value){var a={category:this.category.name,name:this.option_name,value:s};X.settings_update(this.category.name,a).then((function(){t.$store.commit(_,a),t.statusUpdate="success"})).catch((function(){t.statusUpdate="error",t.$refs.settings_checkbox.checked=t.value})).finally((function(){t.timerId=window.setTimeout(t.clear_status,t.timerDelay)}))}else this.statusUpdate=""},clear_status:function(){this.statusUpdate=""}}},yd=vd,bd=Object(N["a"])(yd,hd,fd,!1,null,null,null),gd=bd.exports,kd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("fieldset",{attrs:{disabled:t.disabled}},[a("div",{staticClass:"field"},[a("label",{staticClass:"label has-text-weight-normal"},[t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),a("div",{staticClass:"control"},[a("input",{ref:"settings_text",staticClass:"input",attrs:{type:"text",placeholder:t.placeholder},domProps:{value:t.value},on:{input:t.set_update_timer}})]),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])])},Cd=[],wd={name:"SettingsTextfield",props:["category_name","option_name","placeholder","disabled"],data:function(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category:function(){var t=this;return this.$store.state.settings.categories.find((function(s){return s.name===t.category_name}))},option:function(){var t=this;return this.category?this.category.options.find((function(s){return s.name===t.option_name})):{}},value:function(){return this.option.value},info:function(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer:function(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";var t=this.$refs.settings_text.value;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting:function(){var t=this;this.timerId=-1;var s=this.$refs.settings_text.value;if(s!==this.value){var a={category:this.category.name,name:this.option_name,value:s};X.settings_update(this.category.name,a).then((function(){t.$store.commit(_,a),t.statusUpdate="success"})).catch((function(){t.statusUpdate="error",t.$refs.settings_text.value=t.value})).finally((function(){t.timerId=window.setTimeout(t.clear_status,t.timerDelay)}))}else this.statusUpdate=""},clear_status:function(){this.statusUpdate=""}}},xd=wd,$d=Object(N["a"])(xd,kd,Cd,!1,null,null,null),qd=$d.exports,Ad={name:"SettingsPageWebinterface",components:{ContentWithHeading:Ms,TabsSettings:md,SettingsCheckbox:gd,SettingsTextfield:qd},computed:{settings_option_show_composer_now_playing:function(){return this.$store.getters.settings_option_show_composer_now_playing}}},Sd=Ad,jd=Object(N["a"])(Sd,ld,rd,!1,null,null,null),Pd=jd.exports,Od=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Artwork")])]),a("template",{slot:"content"},[a("div",{staticClass:"content"},[a("p",[t._v(" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. ")]),a("p",[t._v("In addition to that, you can enable fetching artwork from the following artwork providers:")])]),t.spotify.libspotify_logged_in?a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_spotify"}},[a("template",{slot:"label"},[t._v(" Spotify")])],2):t._e(),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_discogs"}},[a("template",{slot:"label"},[t._v(" Discogs ("),a("a",{attrs:{href:"https://www.discogs.com/"}},[t._v("https://www.discogs.com/")]),t._v(")")])],2),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_coverartarchive"}},[a("template",{slot:"label"},[t._v(" Cover Art Archive ("),a("a",{attrs:{href:"https://coverartarchive.org/"}},[t._v("https://coverartarchive.org/")]),t._v(")")])],2)],1)],2)],1)},Td=[],Ld={name:"SettingsPageArtwork",components:{ContentWithHeading:Ms,TabsSettings:md,SettingsCheckbox:gd},computed:{spotify:function(){return this.$store.state.spotify}}},Ed=Ld,Id=Object(N["a"])(Ed,Od,Td,!1,null,null,null),zd=Id.exports,Dd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Spotify")])]),a("template",{slot:"content"},[t.spotify.libspotify_installed?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was either built without support for Spotify or libspotify is not installed.")])]),t.spotify.libspotify_installed?a("div",[a("div",{staticClass:"notification is-size-7"},[a("b",[t._v("You must have a Spotify premium account")]),t._v(". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. ")]),a("div",[a("p",{staticClass:"content"},[a("b",[t._v("libspotify")]),t._v(" - Login with your Spotify username and password ")]),t.spotify.libspotify_logged_in?a("p",{staticClass:"fd-has-margin-bottom"},[t._v(" Logged in as "),a("b",[a("code",[t._v(t._s(t.spotify.libspotify_user))])])]):t._e(),t.spotify.libspotify_installed&&!t.spotify.libspotify_logged_in?a("form",{on:{submit:function(s){return s.preventDefault(),t.login_libspotify(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.user,expression:"libspotify.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.libspotify.user},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.password,expression:"libspotify.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.libspotify.password},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info"},[t._v("Login")])])])]):t._e(),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.error))]),a("p",{staticClass:"help"},[t._v(" libspotify enables forked-daapd to play Spotify tracks. ")]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. ")])]),a("div",{staticClass:"fd-has-margin-top"},[a("p",{staticClass:"content"},[a("b",[t._v("Spotify Web API")]),t._v(" - Grant access to the Spotify Web API ")]),t.spotify.webapi_token_valid?a("p",[t._v(" Access granted for "),a("b",[a("code",[t._v(t._s(t.spotify.webapi_user))])])]):t._e(),t.spotify_missing_scope.length>0?a("p",{staticClass:"help is-danger"},[t._v(" Please reauthorize Web API access to grant forked-daapd the following additional access rights: "),a("b",[a("code",[t._v(t._s(t._f("join")(t.spotify_missing_scope)))])])]):t._e(),a("div",{staticClass:"field fd-has-margin-top "},[a("div",{staticClass:"control"},[a("a",{staticClass:"button",class:{"is-info":!t.spotify.webapi_token_valid||t.spotify_missing_scope.length>0},attrs:{href:t.spotify.oauth_uri}},[t._v("Authorize Web API access")])])]),a("p",{staticClass:"help"},[t._v(" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are "),a("code",[t._v(t._s(t._f("join")(t.spotify_required_scope)))]),t._v(". ")])])]):t._e()])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Last.fm")])]),a("template",{slot:"content"},[t.lastfm.enabled?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was built without support for Last.fm.")])]),t.lastfm.enabled?a("div",[a("p",{staticClass:"content"},[a("b",[t._v("Last.fm")]),t._v(" - Login with your Last.fm username and password to enable scrobbling ")]),t.lastfm.scrobbling_enabled?a("div",[a("a",{staticClass:"button",on:{click:t.logoutLastfm}},[t._v("Stop scrobbling")])]):t._e(),t.lastfm.scrobbling_enabled?t._e():a("div",[a("form",{on:{submit:function(s){return s.preventDefault(),t.login_lastfm(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.user,expression:"lastfm_login.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.lastfm_login.user},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.password,expression:"lastfm_login.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.lastfm_login.password},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Login")])])]),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.error))]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. ")])])])]):t._e()])],2)],1)},Nd=[],Rd={name:"SettingsPageOnlineServices",components:{ContentWithHeading:Ms,TabsSettings:md},data:function(){return{libspotify:{user:"",password:"",errors:{user:"",password:"",error:""}},lastfm_login:{user:"",password:"",errors:{user:"",password:"",error:""}}}},computed:{lastfm:function(){return this.$store.state.lastfm},spotify:function(){return this.$store.state.spotify},spotify_required_scope:function(){return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" "):[]},spotify_missing_scope:function(){var t=this;return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" ").filter((function(s){return t.spotify.webapi_granted_scope.indexOf(s)<0})):[]}},methods:{login_libspotify:function(){var t=this;X.spotify_login(this.libspotify).then((function(s){t.libspotify.user="",t.libspotify.password="",t.libspotify.errors.user="",t.libspotify.errors.password="",t.libspotify.errors.error="",s.data.success||(t.libspotify.errors.user=s.data.errors.user,t.libspotify.errors.password=s.data.errors.password,t.libspotify.errors.error=s.data.errors.error)}))},login_lastfm:function(){var t=this;X.lastfm_login(this.lastfm_login).then((function(s){t.lastfm_login.user="",t.lastfm_login.password="",t.lastfm_login.errors.user="",t.lastfm_login.errors.password="",t.lastfm_login.errors.error="",s.data.success||(t.lastfm_login.errors.user=s.data.errors.user,t.lastfm_login.errors.password=s.data.errors.password,t.lastfm_login.errors.error=s.data.errors.error)}))},logoutLastfm:function(){X.lastfm_logout()}},filters:{join:function(t){return t.join(", ")}}},Md=Rd,Ud=Object(N["a"])(Md,Dd,Nd,!1,null,null,null),Hd=Ud.exports,Wd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Remote Pairing")])]),a("template",{slot:"content"},[t.pairing.active?a("div",{staticClass:"notification"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label has-text-weight-normal"},[t._v(" Remote pairing request from "),a("b",[t._v(t._s(t.pairing.remote))])]),a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Send")])])])])]):t._e(),t.pairing.active?t._e():a("div",{staticClass:"content"},[a("p",[t._v("No active pairing request.")])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Device Verification")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. ")]),t._l(t.outputs,(function(s){return a("div",{key:s.id},[a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("label",{staticClass:"checkbox"},[a("input",{directives:[{name:"model",rawName:"v-model",value:s.selected,expression:"output.selected"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(s.selected)?t._i(s.selected,null)>-1:s.selected},on:{change:[function(a){var e=s.selected,i=a.target,n=!!i.checked;if(Array.isArray(e)){var o=null,l=t._i(e,o);i.checked?l<0&&t.$set(s,"selected",e.concat([o])):l>-1&&t.$set(s,"selected",e.slice(0,l).concat(e.slice(l+1)))}else t.$set(s,"selected",n)},function(a){return t.output_toggle(s.id)}]}}),t._v(" "+t._s(s.name)+" ")])])]),s.needs_auth_key?a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(a){return a.preventDefault(),t.kickoff_verification(s.id)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.verification_req.pin,expression:"verification_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter verification code"},domProps:{value:t.verification_req.pin},on:{input:function(s){s.target.composing||t.$set(t.verification_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Verify")])])])]):t._e()])}))],2)],2)],1)},Bd=[],Fd={name:"SettingsPageRemotesOutputs",components:{ContentWithHeading:Ms,TabsSettings:md},data:function(){return{pairing_req:{pin:""},verification_req:{pin:""}}},computed:{pairing:function(){return this.$store.state.pairing},outputs:function(){return this.$store.state.outputs}},methods:{kickoff_pairing:function(){X.pairing_kickoff(this.pairing_req)},output_toggle:function(t){X.output_toggle(t)},kickoff_verification:function(t){X.output_update(t,this.verification_req)}},filters:{}},Gd=Fd,Yd=Object(N["a"])(Gd,Wd,Bd,!1,null,null,null),Vd=Yd.exports;i["a"].use(Ts["a"]);var Qd=new Ts["a"]({routes:[{path:"/",name:"PageQueue",component:ya},{path:"/about",name:"About",component:fr},{path:"/now-playing",name:"Now playing",component:za},{path:"/music",redirect:"/music/browse"},{path:"/music/browse",name:"Browse",component:Ee,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_added",name:"Browse Recently Added",component:Ue,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_played",name:"Browse Recently Played",component:Ve,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/artists",name:"Artists",component:Ti,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/artists/:artist_id",name:"Artist",component:Ri,meta:{show_progress:!0,has_index:!0}},{path:"/music/artists/:artist_id/tracks",name:"Tracks",component:Un,meta:{show_progress:!0,has_index:!0}},{path:"/music/albums",name:"Albums",component:Gi,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/albums/:album_id",name:"Album",component:tn,meta:{show_progress:!0}},{path:"/music/genres",name:"Genres",component:gn,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/genres/:genre",name:"Genre",component:An,meta:{show_progress:!0,has_index:!0}},{path:"/music/genres/:genre/tracks",name:"GenreTracks",component:En,meta:{show_progress:!0,has_index:!0}},{path:"/podcasts",name:"Podcasts",component:to,meta:{show_progress:!0}},{path:"/podcasts/:album_id",name:"Podcast",component:lo,meta:{show_progress:!0}},{path:"/audiobooks",redirect:"/audiobooks/artists"},{path:"/audiobooks/artists",name:"AudiobooksArtists",component:So,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/artists/:artist_id",name:"AudiobooksArtist",component:Io,meta:{show_progress:!0}},{path:"/audiobooks/albums",name:"AudiobooksAlbums",component:ko,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/:album_id",name:"Audiobook",component:Ho,meta:{show_progress:!0}},{path:"/radio",name:"Radio",component:Gl,meta:{show_progress:!0}},{path:"/files",name:"Files",component:Rl,meta:{show_progress:!0}},{path:"/playlists",redirect:"/playlists/0"},{path:"/playlists/:playlist_id",name:"Playlists",component:_l,meta:{show_progress:!0}},{path:"/playlists/:playlist_id/tracks",name:"Playlist",component:gl,meta:{show_progress:!0}},{path:"/search",redirect:"/search/library"},{path:"/search/library",name:"Search Library",component:dr},{path:"/music/spotify",name:"Spotify",component:Yr,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/new-releases",name:"Spotify Browse New Releases",component:tc,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/featured-playlists",name:"Spotify Browse Featured Playlists",component:lc,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/artists/:artist_id",name:"Spotify Artist",component:Cc,meta:{show_progress:!0}},{path:"/music/spotify/albums/:album_id",name:"Spotify Album",component:Uc,meta:{show_progress:!0}},{path:"/music/spotify/playlists/:playlist_id",name:"Spotify Playlist",component:Vc,meta:{show_progress:!0}},{path:"/search/spotify",name:"Spotify Search",component:od},{path:"/settings/webinterface",name:"Settings Webinterface",component:Pd},{path:"/settings/artwork",name:"Settings Artwork",component:zd},{path:"/settings/online-services",name:"Settings Online Services",component:Hd},{path:"/settings/remotes-outputs",name:"Settings Remotes Outputs",component:Vd}],scrollBehavior:function(t,s,a){return a?new Promise((function(t,s){setTimeout((function(){t(a)}),10)})):t.path===s.path&&t.hash?{selector:t.hash,offset:{x:0,y:120}}:t.hash?new Promise((function(s,a){setTimeout((function(){s({selector:t.hash,offset:{x:0,y:120}})}),10)})):t.meta.has_index?new Promise((function(s,a){setTimeout((function(){t.meta.has_tabs?s({selector:"#top",offset:{x:0,y:140}}):s({selector:"#top",offset:{x:0,y:100}})}),10)})):{x:0,y:0}}});Qd.beforeEach((function(t,s,a){return K.state.show_burger_menu?(K.commit(E,!1),void a(!1)):K.state.show_player_menu?(K.commit(I,!1),void a(!1)):void a(!0)}));var Jd=a("4623"),Kd=a.n(Jd);Kd()(As.a),i["a"].filter("duration",(function(t,s){return s?As.a.duration(t).format(s):As.a.duration(t).format("hh:*mm:ss")})),i["a"].filter("time",(function(t,s){return s?As()(t).format(s):As()(t).format()})),i["a"].filter("timeFromNow",(function(t,s){return As()(t).fromNow(s)})),i["a"].filter("number",(function(t){return t.toLocaleString()})),i["a"].filter("channels",(function(t){return 1===t?"mono":2===t?"stereo":t?t+" channels":""}));var Xd=a("26b9"),Zd=a.n(Xd);i["a"].use(Zd.a,{color:"hsl(204, 86%, 53%)",failedColor:"red",height:"1px"});var tu=a("c28b"),su=a.n(tu),au=a("3659"),eu=a.n(au),iu=a("85fe"),nu=a("f13c"),ou=a.n(nu);a("de2f"),a("2760"),a("a848");i["a"].config.productionTip=!1,i["a"].use(su.a),i["a"].use(eu.a),i["a"].use(iu["a"]),i["a"].use(ou.a),new i["a"]({el:"#app",router:Qd,store:K,components:{App:Os},template:""})},a848:function(t,s,a){},cf45:function(t,s,a){"use strict";a("53c4")},e6a4:function(t,s){},fd4d:function(t,s,a){"use strict";var e=a("2c75"),i=a("4178"),n=a("2877"),o=Object(n["a"])(i["default"],e["a"],e["b"],!1,null,null,null);s["default"]=o.exports}}); +(function(t){function s(s){for(var e,o,l=s[0],r=s[1],c=s[2],u=0,p=[];u-1:t.rescan_metadata},on:{change:function(s){var a=t.rescan_metadata,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.rescan_metadata=a.concat([n])):o>-1&&(t.rescan_metadata=a.slice(0,o).concat(a.slice(o+1)))}else t.rescan_metadata=i}}}),t._v(" Rescan metadata for unmodified files ")])])])])],2),a("div",{directives:[{name:"show",rawName:"v-show",value:t.show_settings_menu,expression:"show_settings_menu"}],staticClass:"is-overlay",staticStyle:{"z-index":"10",width:"100vw",height:"100vh"},on:{click:function(s){t.show_settings_menu=!1}}})],1)}),r=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-link is-arrowless"},[a("span",{staticClass:"icon is-hidden-touch"},[a("i",{staticClass:"mdi mdi-24px mdi-menu"})]),a("span",{staticClass:"is-hidden-desktop has-text-weight-bold"},[t._v("forked-daapd")])])}],c=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-item",class:{"is-active":t.is_active},attrs:{href:t.full_path()},on:{click:function(s){return s.stopPropagation(),s.preventDefault(),t.open_link()}}},[t._t("default")],2)},d=[],u=(a("2ca0"),"UPDATE_CONFIG"),p="UPDATE_SETTINGS",_="UPDATE_SETTINGS_OPTION",m="UPDATE_LIBRARY_STATS",h="UPDATE_LIBRARY_AUDIOBOOKS_COUNT",f="UPDATE_LIBRARY_PODCASTS_COUNT",v="UPDATE_OUTPUTS",y="UPDATE_PLAYER_STATUS",b="UPDATE_QUEUE",g="UPDATE_LASTFM",k="UPDATE_SPOTIFY",C="UPDATE_PAIRING",w="SPOTIFY_NEW_RELEASES",x="SPOTIFY_FEATURED_PLAYLISTS",$="ADD_NOTIFICATION",q="DELETE_NOTIFICATION",A="ADD_RECENT_SEARCH",S="HIDE_SINGLES",j="HIDE_SPOTIFY",P="ARTISTS_SORT",O="ARTIST_ALBUMS_SORT",T="ALBUMS_SORT",L="SHOW_ONLY_NEXT_ITEMS",E="SHOW_BURGER_MENU",I="SHOW_PLAYER_MENU",z={name:"NavbarItemLink",props:{to:String,exact:Boolean},computed:{is_active:function(){return this.exact?this.$route.path===this.to:this.$route.path.startsWith(this.to)},show_player_menu:{get:function(){return this.$store.state.show_player_menu},set:function(t){this.$store.commit(I,t)}},show_burger_menu:{get:function(){return this.$store.state.show_burger_menu},set:function(t){this.$store.commit(E,t)}}},methods:{open_link:function(){this.show_burger_menu&&this.$store.commit(E,!1),this.show_player_menu&&this.$store.commit(I,!1),this.$router.push({path:this.to})},full_path:function(){var t=this.$router.resolve(this.to);return t.href}}},D=z,R=a("2877"),N=Object(R["a"])(D,c,d,!1,null,null,null),M=N.exports,U=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[t.title?a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.title)+" ")]):t._e(),t._t("modal-content")],2),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.close_action?t.close_action:"Cancel"))])]),t.delete_action?a("a",{staticClass:"card-footer-item has-background-danger has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("delete")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.delete_action))])]):t._e(),t.ok_action?a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("ok")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-check"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.ok_action))])]):t._e()])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},H=[],W={name:"ModalDialog",props:["show","title","ok_action","delete_action","close_action"]},B=W,F=Object(R["a"])(B,U,H,!1,null,null,null),G=F.exports,Y=(a("b0c0"),a("d3b7"),a("bc3a")),V=a.n(Y),Q=(a("7db0"),a("c740"),a("c975"),a("a434"),a("ade3")),J=a("2f62");i["a"].use(J["a"]);var K=new J["a"].Store({state:{config:{websocket_port:0,version:"",buildoptions:[]},settings:{categories:[]},library:{artists:0,albums:0,songs:0,db_playtime:0,updating:!1},audiobooks_count:{},podcasts_count:{},outputs:[],player:{state:"stop",repeat:"off",consume:!1,shuffle:!1,volume:0,item_id:0,item_length_ms:0,item_progress_ms:0},queue:{version:0,count:0,items:[]},lastfm:{},spotify:{},pairing:{},spotify_new_releases:[],spotify_featured_playlists:[],notifications:{next_id:1,list:[]},recent_searches:[],hide_singles:!1,hide_spotify:!1,artists_sort:"Name",artist_albums_sort:"Name",albums_sort:"Name",show_only_next_items:!1,show_burger_menu:!1,show_player_menu:!1},getters:{now_playing:function(t){var s=t.queue.items.find((function(s){return s.id===t.player.item_id}));return void 0===s?{}:s},settings_webinterface:function(t){return t.settings?t.settings.categories.find((function(t){return"webinterface"===t.name})):null},settings_option_recently_added_limit:function(t,s){if(s.settings_webinterface){var a=s.settings_webinterface.options.find((function(t){return"recently_added_limit"===t.name}));if(a)return a.value}return 100},settings_option_show_composer_now_playing:function(t,s){if(s.settings_webinterface){var a=s.settings_webinterface.options.find((function(t){return"show_composer_now_playing"===t.name}));if(a)return a.value}return!1},settings_option_show_composer_for_genre:function(t,s){if(s.settings_webinterface){var a=s.settings_webinterface.options.find((function(t){return"show_composer_for_genre"===t.name}));if(a)return a.value}return null},settings_category:function(t){return function(s){return t.settings.categories.find((function(t){return t.name===s}))}},settings_option:function(t){return function(s,a){var e=t.settings.categories.find((function(t){return t.name===s}));return e?e.options.find((function(t){return t.name===a})):{}}}},mutations:(e={},Object(Q["a"])(e,u,(function(t,s){t.config=s})),Object(Q["a"])(e,p,(function(t,s){t.settings=s})),Object(Q["a"])(e,_,(function(t,s){var a=t.settings.categories.find((function(t){return t.name===s.category})),e=a.options.find((function(t){return t.name===s.name}));e.value=s.value})),Object(Q["a"])(e,m,(function(t,s){t.library=s})),Object(Q["a"])(e,h,(function(t,s){t.audiobooks_count=s})),Object(Q["a"])(e,f,(function(t,s){t.podcasts_count=s})),Object(Q["a"])(e,v,(function(t,s){t.outputs=s})),Object(Q["a"])(e,y,(function(t,s){t.player=s})),Object(Q["a"])(e,b,(function(t,s){t.queue=s})),Object(Q["a"])(e,g,(function(t,s){t.lastfm=s})),Object(Q["a"])(e,k,(function(t,s){t.spotify=s})),Object(Q["a"])(e,C,(function(t,s){t.pairing=s})),Object(Q["a"])(e,w,(function(t,s){t.spotify_new_releases=s})),Object(Q["a"])(e,x,(function(t,s){t.spotify_featured_playlists=s})),Object(Q["a"])(e,$,(function(t,s){if(s.topic){var a=t.notifications.list.findIndex((function(t){return t.topic===s.topic}));if(a>=0)return void t.notifications.list.splice(a,1,s)}t.notifications.list.push(s)})),Object(Q["a"])(e,q,(function(t,s){var a=t.notifications.list.indexOf(s);-1!==a&&t.notifications.list.splice(a,1)})),Object(Q["a"])(e,A,(function(t,s){var a=t.recent_searches.findIndex((function(t){return t===s}));a>=0&&t.recent_searches.splice(a,1),t.recent_searches.splice(0,0,s),t.recent_searches.length>5&&t.recent_searches.pop()})),Object(Q["a"])(e,S,(function(t,s){t.hide_singles=s})),Object(Q["a"])(e,j,(function(t,s){t.hide_spotify=s})),Object(Q["a"])(e,P,(function(t,s){t.artists_sort=s})),Object(Q["a"])(e,O,(function(t,s){t.artist_albums_sort=s})),Object(Q["a"])(e,T,(function(t,s){t.albums_sort=s})),Object(Q["a"])(e,L,(function(t,s){t.show_only_next_items=s})),Object(Q["a"])(e,E,(function(t,s){t.show_burger_menu=s})),Object(Q["a"])(e,I,(function(t,s){t.show_player_menu=s})),e),actions:{add_notification:function(t,s){var a=t.commit,e=t.state,i={id:e.notifications.next_id++,type:s.type,text:s.text,topic:s.topic,timeout:s.timeout};a($,i),s.timeout>0&&setTimeout((function(){a(q,i)}),s.timeout)}}});V.a.interceptors.response.use((function(t){return t}),(function(t){return t.request.status&&t.request.responseURL&&K.dispatch("add_notification",{text:"Request failed (status: "+t.request.status+" "+t.request.statusText+", url: "+t.request.responseURL+")",type:"danger"}),Promise.reject(t)}));var X={config:function(){return V.a.get("./api/config")},settings:function(){return V.a.get("./api/settings")},settings_update:function(t,s){return V.a.put("./api/settings/"+t+"/"+s.name,s)},library_stats:function(){return V.a.get("./api/library")},library_update:function(){return V.a.put("./api/update")},library_rescan:function(){return V.a.put("./api/rescan")},library_count:function(t){return V.a.get("./api/library/count?expression="+t)},queue:function(){return V.a.get("./api/queue")},queue_clear:function(){return V.a.put("./api/queue/clear")},queue_remove:function(t){return V.a.delete("./api/queue/items/"+t)},queue_move:function(t,s){return V.a.put("./api/queue/items/"+t+"?new_position="+s)},queue_add:function(t){return V.a.post("./api/queue/items/add?uris="+t).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_add_next:function(t){var s=0;return K.getters.now_playing&&K.getters.now_playing.id&&(s=K.getters.now_playing.position+1),V.a.post("./api/queue/items/add?uris="+t+"&position="+s).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_expression_add:function(t){var s={};return s.expression=t,V.a.post("./api/queue/items/add",void 0,{params:s}).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_expression_add_next:function(t){var s={};return s.expression=t,s.position=0,K.getters.now_playing&&K.getters.now_playing.id&&(s.position=K.getters.now_playing.position+1),V.a.post("./api/queue/items/add",void 0,{params:s}).then((function(t){return K.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)}))},queue_save_playlist:function(t){return V.a.post("./api/queue/save",void 0,{params:{name:t}}).then((function(s){return K.dispatch("add_notification",{text:'Queue saved to playlist "'+t+'"',type:"info",timeout:2e3}),Promise.resolve(s)}))},player_status:function(){return V.a.get("./api/player")},player_play_uri:function(t,s){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,e={};return e.uris=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,V.a.post("./api/queue/items/add",void 0,{params:e})},player_play_expression:function(t,s){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,e={};return e.expression=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,V.a.post("./api/queue/items/add",void 0,{params:e})},player_play:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return V.a.put("./api/player/play",void 0,{params:t})},player_playpos:function(t){return V.a.put("./api/player/play?position="+t)},player_playid:function(t){return V.a.put("./api/player/play?item_id="+t)},player_pause:function(){return V.a.put("./api/player/pause")},player_stop:function(){return V.a.put("./api/player/stop")},player_next:function(){return V.a.put("./api/player/next")},player_previous:function(){return V.a.put("./api/player/previous")},player_shuffle:function(t){var s=t?"true":"false";return V.a.put("./api/player/shuffle?state="+s)},player_consume:function(t){var s=t?"true":"false";return V.a.put("./api/player/consume?state="+s)},player_repeat:function(t){return V.a.put("./api/player/repeat?state="+t)},player_volume:function(t){return V.a.put("./api/player/volume?volume="+t)},player_output_volume:function(t,s){return V.a.put("./api/player/volume?volume="+s+"&output_id="+t)},player_seek_to_pos:function(t){return V.a.put("./api/player/seek?position_ms="+t)},player_seek:function(t){return V.a.put("./api/player/seek?seek_ms="+t)},outputs:function(){return V.a.get("./api/outputs")},output_update:function(t,s){return V.a.put("./api/outputs/"+t,s)},output_toggle:function(t){return V.a.put("./api/outputs/"+t+"/toggle")},library_artists:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;return V.a.get("./api/library/artists",{params:{media_kind:t}})},library_artist:function(t){return V.a.get("./api/library/artists/"+t)},library_artist_albums:function(t){return V.a.get("./api/library/artists/"+t+"/albums")},library_albums:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;return V.a.get("./api/library/albums",{params:{media_kind:t}})},library_album:function(t){return V.a.get("./api/library/albums/"+t)},library_album_tracks:function(t){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{limit:-1,offset:0};return V.a.get("./api/library/albums/"+t+"/tracks",{params:s})},library_album_track_update:function(t,s){return V.a.put("./api/library/albums/"+t+"/tracks",void 0,{params:s})},library_genres:function(){return V.a.get("./api/library/genres")},library_genre:function(t){var s={type:"albums",media_kind:"music",expression:'genre is "'+t+'"'};return V.a.get("./api/search",{params:s})},library_genre_tracks:function(t){var s={type:"tracks",media_kind:"music",expression:'genre is "'+t+'"'};return V.a.get("./api/search",{params:s})},library_radio_streams:function(){var t={type:"tracks",media_kind:"music",expression:"data_kind is url and song_length = 0"};return V.a.get("./api/search",{params:t})},library_artist_tracks:function(t){if(t){var s={type:"tracks",expression:'songartistid is "'+t+'"'};return V.a.get("./api/search",{params:s})}},library_podcasts_new_episodes:function(){var t={type:"tracks",expression:"media_kind is podcast and play_count = 0 ORDER BY time_added DESC"};return V.a.get("./api/search",{params:t})},library_podcast_episodes:function(t){var s={type:"tracks",expression:'media_kind is podcast and songalbumid is "'+t+'" ORDER BY date_released DESC'};return V.a.get("./api/search",{params:s})},library_add:function(t){return V.a.post("./api/library/add",void 0,{params:{url:t}})},library_playlist_delete:function(t){return V.a.delete("./api/library/playlists/"+t,void 0)},library_playlists:function(){return V.a.get("./api/library/playlists")},library_playlist_folder:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return V.a.get("./api/library/playlists/"+t+"/playlists")},library_playlist:function(t){return V.a.get("./api/library/playlists/"+t)},library_playlist_tracks:function(t){return V.a.get("./api/library/playlists/"+t+"/tracks")},library_track:function(t){return V.a.get("./api/library/tracks/"+t)},library_track_playlists:function(t){return V.a.get("./api/library/tracks/"+t+"/playlists")},library_track_update:function(t){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return V.a.put("./api/library/tracks/"+t,void 0,{params:s})},library_files:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,s={directory:t};return V.a.get("./api/library/files",{params:s})},search:function(t){return V.a.get("./api/search",{params:t})},spotify:function(){return V.a.get("./api/spotify")},spotify_login:function(t){return V.a.post("./api/spotify-login",t)},lastfm:function(){return V.a.get("./api/lastfm")},lastfm_login:function(t){return V.a.post("./api/lastfm-login",t)},lastfm_logout:function(t){return V.a.get("./api/lastfm-logout")},pairing:function(){return V.a.get("./api/pairing")},pairing_kickoff:function(t){return V.a.post("./api/pairing",t)},artwork_url_append_size_params:function(t){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:600,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:600;return t&&t.startsWith("/")?t.includes("?")?t+"&maxwidth="+s+"&maxheight="+a:t+"?maxwidth="+s+"&maxheight="+a:t}},Z={name:"NavbarTop",components:{NavbarItemLink:M,ModalDialog:G},data:function(){return{show_settings_menu:!1,show_update_library:!1,rescan_metadata:!1}},computed:{is_visible_playlists:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_playlists").value},is_visible_music:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_music").value},is_visible_podcasts:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_podcasts").value},is_visible_audiobooks:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_audiobooks").value},is_visible_radio:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_radio").value},is_visible_files:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_files").value},is_visible_search:function(){return this.$store.getters.settings_option("webinterface","show_menu_item_search").value},player:function(){return this.$store.state.player},config:function(){return this.$store.state.config},library:function(){return this.$store.state.library},audiobooks:function(){return this.$store.state.audiobooks_count},podcasts:function(){return this.$store.state.podcasts_count},spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},show_burger_menu:{get:function(){return this.$store.state.show_burger_menu},set:function(t){this.$store.commit(E,t)}},show_player_menu:function(){return this.$store.state.show_player_menu},zindex:function(){return this.show_player_menu?"z-index: 20":""}},methods:{on_click_outside_settings:function(){this.show_settings_menu=!this.show_settings_menu},update_library:function(){this.rescan_metadata?X.library_rescan():X.library_update()}},watch:{$route:function(t,s){this.show_settings_menu=!1}}},tt=Z,st=Object(R["a"])(tt,l,r,!1,null,null,null),at=st.exports,et=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("nav",{staticClass:"fd-bottom-navbar navbar is-white is-fixed-bottom",class:{"is-transparent":t.is_now_playing_page,"is-dark":!t.is_now_playing_page},style:t.zindex,attrs:{role:"navigation","aria-label":"player controls"}},[a("div",{staticClass:"navbar-brand fd-expanded"},[a("navbar-item-link",{attrs:{to:"/",exact:""}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-24px mdi-playlist-play"})])]),t.is_now_playing_page?t._e():a("router-link",{staticClass:"navbar-item is-expanded is-clipped",attrs:{to:"/now-playing","active-class":"is-active",exact:""}},[a("div",{staticClass:"is-clipped"},[a("p",{staticClass:"is-size-7 fd-is-text-clipped"},[a("strong",[t._v(t._s(t.now_playing.title))]),a("br"),t._v(" "+t._s(t.now_playing.artist)),"url"===t.now_playing.data_kind?a("span",[t._v(" - "+t._s(t.now_playing.album))]):t._e()])])]),t.is_now_playing_page?a("player-button-previous",{staticClass:"navbar-item fd-margin-left-auto",attrs:{icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-seek-back",{staticClass:"navbar-item",attrs:{seek_ms:"10000",icon_style:"mdi-24px"}}):t._e(),a("player-button-play-pause",{staticClass:"navbar-item",attrs:{icon_style:"mdi-36px",show_disabled_message:""}}),t.is_now_playing_page?a("player-button-seek-forward",{staticClass:"navbar-item",attrs:{seek_ms:"30000",icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-next",{staticClass:"navbar-item",attrs:{icon_style:"mdi-24px"}}):t._e(),a("a",{staticClass:"navbar-item fd-margin-left-auto is-hidden-desktop",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch",class:{"is-active":t.show_player_menu}},[a("a",{staticClass:"navbar-link is-arrowless",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-dropdown is-right is-boxed",staticStyle:{"margin-right":"6px","margin-bottom":"6px","border-radius":"6px"}},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(0)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile fd-expanded"},[a("div",{staticClass:"level-item"},[a("div",{staticClass:"buttons has-addons"},[a("player-button-repeat",{staticClass:"button"}),a("player-button-shuffle",{staticClass:"button"}),a("player-button-consume",{staticClass:"button"})],1)])])])],2)])],1),a("div",{staticClass:"navbar-menu is-hidden-desktop",class:{"is-active":t.show_player_menu}},[a("div",{staticClass:"navbar-start"}),a("div",{staticClass:"navbar-end"},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"buttons is-centered"},[a("player-button-repeat",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-shuffle",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-consume",{staticClass:"button",attrs:{icon_style:"mdi-18px"}})],1)]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item fd-has-margin-bottom"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(1)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])])],2)])])},it=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])}],nt={_audio:new Audio,_context:null,_source:null,_gain:null,setupAudio:function(){var t=this,s=window.AudioContext||window.webkitAudioContext;return this._context=new s,this._source=this._context.createMediaElementSource(this._audio),this._gain=this._context.createGain(),this._source.connect(this._gain),this._gain.connect(this._context.destination),this._audio.addEventListener("canplaythrough",(function(s){t._audio.play()})),this._audio.addEventListener("canplay",(function(s){t._audio.play()})),this._audio},setVolume:function(t){this._gain&&(t=parseFloat(t)||0,t=t<0?0:t,t=t>1?1:t,this._gain.gain.value=t)},playSource:function(t){var s=this;this.stopAudio(),this._context.resume().then((function(){s._audio.src=String(t||"")+"?x="+Date.now(),s._audio.crossOrigin="anonymous",s._audio.load()}))},stopAudio:function(){try{this._audio.pause()}catch(t){}try{this._audio.stop()}catch(t){}try{this._audio.close()}catch(t){}}},ot=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small"},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.output.selected},on:{click:t.set_enabled}},[a("i",{staticClass:"mdi mdi-18px",class:t.type_class,attrs:{title:t.output.type}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.output.selected}},[t._v(t._s(t.output.name))]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.output.selected,value:t.volume},on:{change:t.set_volume}})],1)])])])])},lt=[],rt=a("c7e3"),ct=a.n(rt),dt={name:"NavbarItemOutput",components:{RangeSlider:ct.a},props:["output"],computed:{type_class:function(){return this.output.type.startsWith("AirPlay")?"mdi-airplay":"Chromecast"===this.output.type?"mdi-cast":"fifo"===this.output.type?"mdi-pipe":"mdi-server"},volume:function(){return this.output.selected?this.output.volume:0}},methods:{play_next:function(){X.player_next()},set_volume:function(t){X.player_output_volume(this.output.id,t)},set_enabled:function(){var t={selected:!this.output.selected};X.output_update(this.output.id,t)}}},ut=dt,pt=Object(R["a"])(ut,ot,lt,!1,null,null,null),_t=pt.exports,mt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.toggle_play_pause}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-play":!t.is_playing,"mdi-pause":t.is_playing&&t.is_pause_allowed,"mdi-stop":t.is_playing&&!t.is_pause_allowed}]})])])},ht=[],ft={name:"PlayerButtonPlayPause",props:{icon_style:String,show_disabled_message:Boolean},computed:{is_playing:function(){return"play"===this.$store.state.player.state},is_pause_allowed:function(){return this.$store.getters.now_playing&&"pipe"!==this.$store.getters.now_playing.data_kind},disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{toggle_play_pause:function(){this.disabled?this.show_disabled_message&&this.$store.dispatch("add_notification",{text:"Queue is empty",type:"info",topic:"connection",timeout:2e3}):this.is_playing&&this.is_pause_allowed?X.player_pause():this.is_playing&&!this.is_pause_allowed?X.player_stop():X.player_play()}}},vt=ft,yt=Object(R["a"])(vt,mt,ht,!1,null,null,null),bt=yt.exports,gt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-forward",class:t.icon_style})])])},kt=[],Ct={name:"PlayerButtonNext",props:{icon_style:String},computed:{disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_next:function(){this.disabled||X.player_next()}}},wt=Ct,xt=Object(R["a"])(wt,gt,kt,!1,null,null,null),$t=xt.exports,qt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_previous}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-backward",class:t.icon_style})])])},At=[],St={name:"PlayerButtonPrevious",props:{icon_style:String},computed:{disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_previous:function(){this.disabled||X.player_previous()}}},jt=St,Pt=Object(R["a"])(jt,qt,At,!1,null,null,null),Ot=Pt.exports,Tt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_shuffle},on:{click:t.toggle_shuffle_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-shuffle":t.is_shuffle,"mdi-shuffle-disabled":!t.is_shuffle}]})])])},Lt=[],Et={name:"PlayerButtonShuffle",props:{icon_style:String},computed:{is_shuffle:function(){return this.$store.state.player.shuffle}},methods:{toggle_shuffle_mode:function(){X.player_shuffle(!this.is_shuffle)}}},It=Et,zt=Object(R["a"])(It,Tt,Lt,!1,null,null,null),Dt=zt.exports,Rt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_consume},on:{click:t.toggle_consume_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fire",class:t.icon_style})])])},Nt=[],Mt={name:"PlayerButtonConsume",props:{icon_style:String},computed:{is_consume:function(){return this.$store.state.player.consume}},methods:{toggle_consume_mode:function(){X.player_consume(!this.is_consume)}}},Ut=Mt,Ht=Object(R["a"])(Ut,Rt,Nt,!1,null,null,null),Wt=Ht.exports,Bt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":!t.is_repeat_off},on:{click:t.toggle_repeat_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-repeat":t.is_repeat_all,"mdi-repeat-once":t.is_repeat_single,"mdi-repeat-off":t.is_repeat_off}]})])])},Ft=[],Gt=(a("38cf"),{name:"PlayerButtonRepeat",props:{icon_style:String},computed:{is_repeat_all:function(){return"all"===this.$store.state.player.repeat},is_repeat_single:function(){return"single"===this.$store.state.player.repeat},is_repeat_off:function(){return!this.is_repeat_all&&!this.is_repeat_single}},methods:{toggle_repeat_mode:function(){this.is_repeat_all?X.player_repeat("single"):this.is_repeat_single?X.player_repeat("off"):X.player_repeat("all")}}}),Yt=Gt,Vt=Object(R["a"])(Yt,Bt,Ft,!1,null,null,null),Qt=Vt.exports,Jt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rewind",class:t.icon_style})])]):t._e()},Kt=[],Xt={name:"PlayerButtonSeekBack",props:["seek_ms","icon_style"],computed:{now_playing:function(){return this.$store.getters.now_playing},is_stopped:function(){return"stop"===this.$store.state.player.state},disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible:function(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||X.player_seek(-1*this.seek_ms)}}},Zt=Xt,ts=Object(R["a"])(Zt,Jt,Kt,!1,null,null,null),ss=ts.exports,as=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fast-forward",class:t.icon_style})])]):t._e()},es=[],is={name:"PlayerButtonSeekForward",props:["seek_ms","icon_style"],computed:{now_playing:function(){return this.$store.getters.now_playing},is_stopped:function(){return"stop"===this.$store.state.player.state},disabled:function(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible:function(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||X.player_seek(this.seek_ms)}}},ns=is,os=Object(R["a"])(ns,as,es,!1,null,null,null),ls=os.exports,rs={name:"NavbarBottom",components:{NavbarItemLink:M,NavbarItemOutput:_t,RangeSlider:ct.a,PlayerButtonPlayPause:bt,PlayerButtonNext:$t,PlayerButtonPrevious:Ot,PlayerButtonShuffle:Dt,PlayerButtonConsume:Wt,PlayerButtonRepeat:Qt,PlayerButtonSeekForward:ls,PlayerButtonSeekBack:ss},data:function(){return{old_volume:0,playing:!1,loading:!1,stream_volume:10,show_outputs_menu:!1,show_desktop_outputs_menu:!1}},computed:{show_player_menu:{get:function(){return this.$store.state.show_player_menu},set:function(t){this.$store.commit(I,t)}},show_burger_menu:function(){return this.$store.state.show_burger_menu},zindex:function(){return this.show_burger_menu?"z-index: 20":""},state:function(){return this.$store.state.player},now_playing:function(){return this.$store.getters.now_playing},is_now_playing_page:function(){return"/now-playing"===this.$route.path},outputs:function(){return this.$store.state.outputs},player:function(){return this.$store.state.player},config:function(){return this.$store.state.config}},methods:{on_click_outside_outputs:function(){this.show_outputs_menu=!1},set_volume:function(t){X.player_volume(t)},toggle_mute_volume:function(){this.player.volume>0?this.set_volume(0):this.set_volume(this.old_volume)},setupAudio:function(){var t=this,s=nt.setupAudio();s.addEventListener("waiting",(function(s){t.playing=!1,t.loading=!0})),s.addEventListener("playing",(function(s){t.playing=!0,t.loading=!1})),s.addEventListener("ended",(function(s){t.playing=!1,t.loading=!1})),s.addEventListener("error",(function(s){t.closeAudio(),t.$store.dispatch("add_notification",{text:"HTTP stream error: failed to load stream or stopped loading due to network problem",type:"danger"}),t.playing=!1,t.loading=!1}))},closeAudio:function(){nt.stopAudio(),this.playing=!1},playChannel:function(){if(!this.playing){var t="/stream.mp3";this.loading=!0,nt.playSource(t),nt.setVolume(this.stream_volume/100)}},togglePlay:function(){if(!this.loading)return this.playing?this.closeAudio():this.playChannel()},set_stream_volume:function(t){this.stream_volume=t,nt.setVolume(this.stream_volume/100)}},watch:{"$store.state.player.volume":function(){this.player.volume>0&&(this.old_volume=this.player.volume)}},mounted:function(){this.setupAudio()},destroyed:function(){this.closeAudio()}},cs=rs,ds=Object(R["a"])(cs,et,it,!1,null,null,null),us=ds.exports,ps=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"fd-notifications"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-half"},t._l(t.notifications,(function(s){return a("div",{key:s.id,staticClass:"notification has-shadow ",class:["notification",s.type?"is-"+s.type:""]},[a("button",{staticClass:"delete",on:{click:function(a){return t.remove(s)}}}),t._v(" "+t._s(s.text)+" ")])})),0)])])},_s=[],ms={name:"Notifications",components:{},data:function(){return{showNav:!1}},computed:{notifications:function(){return this.$store.state.notifications.list}},methods:{remove:function(t){this.$store.commit(q,t)}}},hs=ms,fs=(a("cf45"),Object(R["a"])(hs,ps,_s,!1,null,null,null)),vs=fs.exports,ys=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Remote pairing request ")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label"},[t._v(" "+t._s(t.pairing.remote)+" ")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],ref:"pin_field",staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.kickoff_pairing}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cellphone-iphone"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Pair Remote")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},bs=[],gs={name:"ModalDialogRemotePairing",props:["show"],data:function(){return{pairing_req:{pin:""}}},computed:{pairing:function(){return this.$store.state.pairing}},methods:{kickoff_pairing:function(){var t=this;X.pairing_kickoff(this.pairing_req).then((function(){t.pairing_req.pin=""}))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.pin_field.focus()}),10))}}},ks=gs,Cs=Object(R["a"])(ks,ys,bs,!1,null,null,null),ws=Cs.exports,xs=a("d04d"),$s=a.n(xs),qs=a("c1df"),As=a.n(qs),Ss={name:"App",components:{NavbarTop:at,NavbarBottom:us,Notifications:vs,ModalDialogRemotePairing:ws},template:"",data:function(){return{token_timer_id:0,reconnect_attempts:0,pairing_active:!1}},computed:{show_burger_menu:{get:function(){return this.$store.state.show_burger_menu},set:function(t){this.$store.commit(E,t)}},show_player_menu:{get:function(){return this.$store.state.show_player_menu},set:function(t){this.$store.commit(I,t)}}},created:function(){var t=this;As.a.locale(navigator.language),this.connect(),this.$Progress.start(),this.$router.beforeEach((function(s,a,e){if(s.meta.show_progress){if(void 0!==s.meta.progress){var i=s.meta.progress;t.$Progress.parseMeta(i)}t.$Progress.start()}e()})),this.$router.afterEach((function(s,a){s.meta.show_progress&&t.$Progress.finish()}))},methods:{connect:function(){var t=this;this.$store.dispatch("add_notification",{text:"Connecting to forked-daapd",type:"info",topic:"connection",timeout:2e3}),X.config().then((function(s){var a=s.data;t.$store.commit(u,a),t.$store.commit(S,a.hide_singles),document.title=a.library_name,t.open_ws(),t.$Progress.finish()})).catch((function(){t.$store.dispatch("add_notification",{text:"Failed to connect to forked-daapd",type:"danger",topic:"connection"})}))},open_ws:function(){if(this.$store.state.config.websocket_port<=0)this.$store.dispatch("add_notification",{text:"Missing websocket port",type:"danger"});else{var t=this,s="ws://";"https:"===window.location.protocol&&(s="wss://");var a=s+window.location.hostname+":"+t.$store.state.config.websocket_port;0;var e=new $s.a(a,"notify",{reconnectInterval:3e3});e.onopen=function(){t.$store.dispatch("add_notification",{text:"Connection to server established",type:"primary",topic:"connection",timeout:2e3}),t.reconnect_attempts=0,e.send(JSON.stringify({notify:["update","database","player","options","outputs","volume","spotify","lastfm","pairing"]})),t.update_outputs(),t.update_player_status(),t.update_library_stats(),t.update_settings(),t.update_queue(),t.update_spotify(),t.update_lastfm(),t.update_pairing()},e.onclose=function(){},e.onerror=function(){t.reconnect_attempts++,t.$store.dispatch("add_notification",{text:"Connection lost. Reconnecting ... ("+t.reconnect_attempts+")",type:"danger",topic:"connection"})},e.onmessage=function(s){var a=JSON.parse(s.data);(a.notify.includes("update")||a.notify.includes("database"))&&t.update_library_stats(),(a.notify.includes("player")||a.notify.includes("options")||a.notify.includes("volume"))&&t.update_player_status(),(a.notify.includes("outputs")||a.notify.includes("volume"))&&t.update_outputs(),a.notify.includes("queue")&&t.update_queue(),a.notify.includes("spotify")&&t.update_spotify(),a.notify.includes("lastfm")&&t.update_lastfm(),a.notify.includes("pairing")&&t.update_pairing()}}},update_library_stats:function(){var t=this;X.library_stats().then((function(s){var a=s.data;t.$store.commit(m,a)})),X.library_count("media_kind is audiobook").then((function(s){var a=s.data;t.$store.commit(h,a)})),X.library_count("media_kind is podcast").then((function(s){var a=s.data;t.$store.commit(f,a)}))},update_outputs:function(){var t=this;X.outputs().then((function(s){var a=s.data;t.$store.commit(v,a.outputs)}))},update_player_status:function(){var t=this;X.player_status().then((function(s){var a=s.data;t.$store.commit(y,a)}))},update_queue:function(){var t=this;X.queue().then((function(s){var a=s.data;t.$store.commit(b,a)}))},update_settings:function(){var t=this;X.settings().then((function(s){var a=s.data;t.$store.commit(p,a)}))},update_lastfm:function(){var t=this;X.lastfm().then((function(s){var a=s.data;t.$store.commit(g,a)}))},update_spotify:function(){var t=this;X.spotify().then((function(s){var a=s.data;t.$store.commit(k,a),t.token_timer_id>0&&(window.clearTimeout(t.token_timer_id),t.token_timer_id=0),a.webapi_token_expires_in>0&&a.webapi_token&&(t.token_timer_id=window.setTimeout(t.update_spotify,1e3*a.webapi_token_expires_in))}))},update_pairing:function(){var t=this;X.pairing().then((function(s){var a=s.data;t.$store.commit(C,a),t.pairing_active=a.active}))},update_is_clipped:function(){this.show_burger_menu||this.show_player_menu?document.querySelector("html").classList.add("is-clipped"):document.querySelector("html").classList.remove("is-clipped")}},watch:{show_burger_menu:function(){this.update_is_clipped()},show_player_menu:function(){this.update_is_clipped()}}},js=Ss,Ps=Object(R["a"])(js,n,o,!1,null,null,null),Os=Ps.exports,Ts=a("8c4f"),Ls=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"heading"},[t._v(t._s(t.queue.count)+" tracks")]),a("p",{staticClass:"title is-4"},[t._v("Queue")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",class:{"is-info":t.show_only_next_items},on:{click:t.update_show_next_items}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-arrow-collapse-down"})]),a("span",[t._v("Hide previous")])]),a("a",{staticClass:"button is-small",on:{click:t.open_add_stream_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",[t._v("Add Stream")])]),a("a",{staticClass:"button is-small",class:{"is-info":t.edit_mode},on:{click:function(s){t.edit_mode=!t.edit_mode}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Edit")])]),a("a",{staticClass:"button is-small",on:{click:t.queue_clear}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete-empty"})]),a("span",[t._v("Clear")])]),t.is_queue_save_allowed?a("a",{staticClass:"button is-small",attrs:{disabled:0===t.queue_items.length},on:{click:t.save_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),a("span",[t._v("Save")])]):t._e()])]),a("template",{slot:"content"},[a("draggable",{attrs:{handle:".handle"},on:{end:t.move_item},model:{value:t.queue_items,callback:function(s){t.queue_items=s},expression:"queue_items"}},t._l(t.queue_items,(function(s,e){return a("list-item-queue-item",{key:s.id,attrs:{item:s,position:e,current_position:t.current_position,show_only_next_items:t.show_only_next_items,edit_mode:t.edit_mode}},[a("template",{slot:"actions"},[t.edit_mode?t._e():a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])]),s.id!==t.state.item_id&&t.edit_mode?a("a",{on:{click:function(a){return t.remove(s)}}},[a("span",{staticClass:"icon has-text-grey"},[a("i",{staticClass:"mdi mdi-delete mdi-18px"})])]):t._e()])],2)})),1),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}}),a("modal-dialog-add-url-stream",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1}}}),t.is_queue_save_allowed?a("modal-dialog-playlist-save",{attrs:{show:t.show_pls_save_modal},on:{close:function(s){t.show_pls_save_modal=!1}}}):t._e()],1)],2)},Es=[],Is=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t.$slots["options"]?a("section",[a("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:t.observer_options,expression:"observer_options"}],staticStyle:{height:"2px"}}),t._t("options"),a("nav",{staticClass:"buttons is-centered",staticStyle:{"margin-bottom":"6px","margin-top":"16px"}},[t.options_visible?a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_content}},[t._m(1)]):a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_top}},[t._m(0)])])],2):t._e(),a("div",{class:{"fd-content-with-option":t.$slots["options"]}},[a("nav",{staticClass:"level",attrs:{id:"top"}},[a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item has-text-centered-mobile"},[a("div",[t._t("heading-left")],2)])]),a("div",{staticClass:"level-right has-text-centered-mobile"},[t._t("heading-right")],2)]),t._t("content"),a("div",{staticStyle:{"margin-top":"16px"}},[t._t("footer")],2)],2)])])])])},zs=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-up"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down"})])}],Ds={name:"ContentWithHeading",data:function(){return{options_visible:!1,observer_options:{callback:this.visibilityChanged,intersection:{rootMargin:"-100px",threshold:.3}}}},methods:{scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})},scroll_to_content:function(){this.$route.meta.has_tabs?this.$scrollTo("#top",{offset:-140}):this.$scrollTo("#top",{offset:-100})},visibilityChanged:function(t){this.options_visible=t}}},Rs=Ds,Ns=Object(R["a"])(Rs,Is,zs,!1,null,null,null),Ms=Ns.exports,Us=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.is_next||!t.show_only_next_items?a("div",{staticClass:"media"},[t.edit_mode?a("div",{staticClass:"media-left"},[t._m(0)]):t._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next}},[t._v(t._s(t.item.title))]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[a("b",[t._v(t._s(t.item.artist))])]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[t._v(t._s(t.item.album))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e()},Hs=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon has-text-grey fd-is-movable handle"},[a("i",{staticClass:"mdi mdi-drag-horizontal mdi-18px"})])}],Ws={name:"ListItemQueueItem",props:["item","position","current_position","show_only_next_items","edit_mode"],computed:{state:function(){return this.$store.state.player},is_next:function(){return this.current_position<0||this.position>=this.current_position}},methods:{play:function(){X.player_play({item_id:this.item.id})}}},Bs=Ws,Fs=Object(R["a"])(Bs,Us,Hs,!1,null,null,null),Gs=Fs.exports,Ys=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.item.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.item.artist)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),t.item.album_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.item.album))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album))])]),t.item.album_artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),t.item.album_artist_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album_artist}},[t._v(t._s(t.item.album_artist))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album_artist))])]):t._e(),t.item.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.composer))])]):t._e(),t.item.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.year))])]):t._e(),t.item.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.item.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.track_number)+" / "+t._s(t.item.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.item.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.media_kind)+" - "+t._s(t.item.data_kind)+" "),"spotify"===t.item.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.item.type)+" "),t.item.samplerate?a("span",[t._v(" | "+t._s(t.item.samplerate)+" Hz")]):t._e(),t.item.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.item.channels)))]):t._e(),t.item.bitrate?a("span",[t._v(" | "+t._s(t.item.bitrate)+" Kb/s")]):t._e()])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.remove}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Remove")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Vs=[],Qs=(a("baa5"),a("fb6a"),a("be8d")),Js=a.n(Qs),Ks={name:"ModalDialogQueueItem",props:["show","item"],data:function(){return{spotify_track:{}}},methods:{remove:function(){this.$emit("close"),X.queue_remove(this.item.id)},play:function(){this.$emit("close"),X.player_play({item_id:this.item.id})},open_album:function(){"podcast"===this.media_kind?this.$router.push({path:"/podcasts/"+this.item.album_id}):"audiobook"===this.media_kind?this.$router.push({path:"/audiobooks/"+this.item.album_id}):this.$router.push({path:"/music/albums/"+this.item.album_id})},open_album_artist:function(){this.$router.push({path:"/music/artists/"+this.item.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.item.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})}},watch:{item:function(){var t=this;if(this.item&&"spotify"===this.item.data_kind){var s=new Js.a;s.setAccessToken(this.$store.state.spotify.webapi_token),s.getTrack(this.item.path.slice(this.item.path.lastIndexOf(":")+1)).then((function(s){t.spotify_track=s}))}else this.spotify_track={}}}},Xs=Ks,Zs=Object(R["a"])(Xs,Ys,Vs,!1,null,null,null),ta=Zs.exports,sa=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Add stream URL ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.play(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-stream",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-web"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Loading ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},aa=[],ea={name:"ModalDialogAddUrlStream",props:["show"],data:function(){return{url:"",loading:!1}},methods:{add_stream:function(){var t=this;this.loading=!0,X.queue_add(this.url).then((function(){t.$emit("close"),t.url=""})).catch((function(){t.loading=!1}))},play:function(){var t=this;this.loading=!0,X.player_play_uri(this.url,!1).then((function(){t.$emit("close"),t.url=""})).catch((function(){t.loading=!1}))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.url_field.focus()}),10))}}},ia=ea,na=Object(R["a"])(ia,sa,aa,!1,null,null,null),oa=na.exports,la=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Save queue to playlist ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.save(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.playlist_name,expression:"playlist_name"}],ref:"playlist_name_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"Playlist name",disabled:t.loading},domProps:{value:t.playlist_name},on:{input:function(s){s.target.composing||(t.playlist_name=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-file-music"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Saving ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.save}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Save")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ra=[],ca={name:"ModalDialogPlaylistSave",props:["show"],data:function(){return{playlist_name:"",loading:!1}},methods:{save:function(){var t=this;this.playlist_name.length<1||(this.loading=!0,X.queue_save_playlist(this.playlist_name).then((function(){t.$emit("close"),t.playlist_name=""})).catch((function(){t.loading=!1})))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.playlist_name_field.focus()}),10))}}},da=ca,ua=Object(R["a"])(da,la,ra,!1,null,null,null),pa=ua.exports,_a=a("b76a"),ma=a.n(_a),ha={name:"PageQueue",components:{ContentWithHeading:Ms,ListItemQueueItem:Gs,draggable:ma.a,ModalDialogQueueItem:ta,ModalDialogAddUrlStream:oa,ModalDialogPlaylistSave:pa},data:function(){return{edit_mode:!1,show_details_modal:!1,show_url_modal:!1,show_pls_save_modal:!1,selected_item:{}}},computed:{state:function(){return this.$store.state.player},is_queue_save_allowed:function(){return this.$store.state.config.allow_modifying_stored_playlists&&this.$store.state.config.default_playlist_directory},queue:function(){return this.$store.state.queue},queue_items:{get:function(){return this.$store.state.queue.items},set:function(t){}},current_position:function(){var t=this.$store.getters.now_playing;return void 0===t||void 0===t.position?-1:this.$store.getters.now_playing.position},show_only_next_items:function(){return this.$store.state.show_only_next_items}},methods:{queue_clear:function(){X.queue_clear()},update_show_next_items:function(t){this.$store.commit(L,!this.show_only_next_items)},remove:function(t){X.queue_remove(t.id)},move_item:function(t){var s=this.show_only_next_items?t.oldIndex+this.current_position:t.oldIndex,a=this.queue_items[s],e=a.position+(t.newIndex-t.oldIndex);e!==s&&X.queue_move(a.id,e)},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0},open_add_stream_dialog:function(t){this.show_url_modal=!0},save_dialog:function(t){this.queue_items.length>0&&(this.show_pls_save_modal=!0)}}},fa=ha,va=Object(R["a"])(fa,Ls,Es,!1,null,null,null),ya=va.exports,ba=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[t.now_playing.id>0?a("div",{staticClass:"fd-is-fullheight"},[a("div",{staticClass:"fd-is-expanded"},[a("cover-artwork",{staticClass:"fd-cover-image fd-has-action",attrs:{artwork_url:t.now_playing.artwork_url,artist:t.now_playing.artist,album:t.now_playing.album},on:{click:function(s){return t.open_dialog(t.now_playing)}}})],1),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered"},[a("p",{staticClass:"control has-text-centered fd-progress-now-playing"},[a("range-slider",{staticClass:"seek-slider fd-has-action",attrs:{min:"0",max:t.state.item_length_ms,value:t.item_progress_ms,disabled:"stop"===t.state.state,step:"1000"},on:{change:t.seek}})],1),a("p",{staticClass:"content"},[a("span",[t._v(t._s(t._f("duration")(t.item_progress_ms))+" / "+t._s(t._f("duration")(t.now_playing.length_ms)))])])])]),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered fd-has-margin-top"},[a("h1",{staticClass:"title is-5"},[t._v(" "+t._s(t.now_playing.title)+" ")]),a("h2",{staticClass:"title is-6"},[t._v(" "+t._s(t.now_playing.artist)+" ")]),t.composer?a("h2",{staticClass:"subtitle is-6 has-text-grey has-text-weight-bold"},[t._v(" "+t._s(t.composer)+" ")]):t._e(),a("h3",{staticClass:"subtitle is-6"},[t._v(" "+t._s(t.now_playing.album)+" ")])])])]):a("div",{staticClass:"fd-is-fullheight"},[t._m(0)]),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}})],1)},ga=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"fd-is-expanded fd-has-padding-left-right",staticStyle:{"flex-direction":"column"}},[a("div",{staticClass:"content has-text-centered"},[a("h1",{staticClass:"title is-5"},[t._v(" Your play queue is empty ")]),a("p",[t._v(" Add some tracks by browsing your library ")])])])}],ka=(a("ac1f"),a("1276"),a("498a"),function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("figure",[a("img",{directives:[{name:"lazyload",rawName:"v-lazyload"}],key:t.artwork_url_with_size,attrs:{"data-src":t.artwork_url_with_size,"data-err":t.dataURI},on:{click:function(s){return t.$emit("click")}}})])}),Ca=[],wa=(a("13d5"),a("5319"),a("d4ec")),xa=a("bee2"),$a=function(){function t(){Object(wa["a"])(this,t)}return Object(xa["a"])(t,[{key:"render",value:function(t){var s=' '+t.caption+" ";return"data:image/svg+xml;charset=UTF-8,"+encodeURIComponent(s)}}]),t}(),qa=$a,Aa=a("5d8a"),Sa=a.n(Aa),ja={name:"CoverArtwork",props:["artist","album","artwork_url","maxwidth","maxheight"],data:function(){return{svg:new qa,width:600,height:600,font_family:"sans-serif",font_size:200,font_weight:600}},computed:{artwork_url_with_size:function(){return this.maxwidth>0&&this.maxheight>0?X.artwork_url_append_size_params(this.artwork_url,this.maxwidth,this.maxheight):X.artwork_url_append_size_params(this.artwork_url)},alt_text:function(){return this.artist+" - "+this.album},caption:function(){return this.album?this.album.substring(0,2):this.artist?this.artist.substring(0,2):""},background_color:function(){return Sa()(this.alt_text)},is_background_light:function(){var t=this.background_color.replace(/#/,""),s=parseInt(t.substr(0,2),16),a=parseInt(t.substr(2,2),16),e=parseInt(t.substr(4,2),16),i=[.299*s,.587*a,.114*e].reduce((function(t,s){return t+s}))/255;return i>.5},text_color:function(){return this.is_background_light?"#000000":"#ffffff"},rendererParams:function(){return{width:this.width,height:this.height,textColor:this.text_color,backgroundColor:this.background_color,caption:this.caption,fontFamily:this.font_family,fontSize:this.font_size,fontWeight:this.font_weight}},dataURI:function(){return this.svg.render(this.rendererParams)}}},Pa=ja,Oa=Object(R["a"])(Pa,ka,Ca,!1,null,null,null),Ta=Oa.exports,La={name:"PageNowPlaying",components:{ModalDialogQueueItem:ta,RangeSlider:ct.a,CoverArtwork:Ta},data:function(){return{item_progress_ms:0,interval_id:0,show_details_modal:!1,selected_item:{}}},created:function(){var t=this;this.item_progress_ms=this.state.item_progress_ms,X.player_status().then((function(s){var a=s.data;t.$store.commit(y,a),"play"===t.state.state&&(t.interval_id=window.setInterval(t.tick,1e3))}))},destroyed:function(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0)},computed:{state:function(){return this.$store.state.player},now_playing:function(){return this.$store.getters.now_playing},settings_option_show_composer_now_playing:function(){return this.$store.getters.settings_option_show_composer_now_playing},settings_option_show_composer_for_genre:function(){return this.$store.getters.settings_option_show_composer_for_genre},composer:function(){var t=this;return this.settings_option_show_composer_now_playing&&(!this.settings_option_show_composer_for_genre||this.now_playing.genre&&this.settings_option_show_composer_for_genre.toLowerCase().split(",").findIndex((function(s){return t.now_playing.genre.toLowerCase().indexOf(s.trim())>=0}))>=0)?this.now_playing.composer:null}},methods:{tick:function(){this.item_progress_ms+=1e3},seek:function(t){var s=this;X.player_seek_to_pos(t).catch((function(){s.item_progress_ms=s.state.item_progress_ms}))},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0}},watch:{state:function(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0),this.item_progress_ms=this.state.item_progress_ms,"play"===this.state.state&&(this.interval_id=window.setInterval(this.tick,1e3))}}},Ea=La,Ia=Object(R["a"])(Ea,ba,ga,!1,null,null,null),za=Ia.exports,Da=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.recently_added.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_added")}}},[t._v("Show more")])])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_played")}}},[t._v("Show more")])])])])],2)],1)},Ra=[],Na=(a("3ca3"),a("841c"),a("ddb0"),function(t){return{beforeRouteEnter:function(s,a,e){t.load(s).then((function(s){e((function(a){return t.set(a,s)}))}))},beforeRouteUpdate:function(s,a,e){var i=this;t.load(s).then((function(s){t.set(i,s),e()}))}}}),Ma=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/music/browse","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",{},[t._v("Browse")])])]),a("router-link",{attrs:{tag:"li",to:"/music/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Artists")])])]),a("router-link",{attrs:{tag:"li",to:"/music/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Albums")])])]),a("router-link",{attrs:{tag:"li",to:"/music/genres","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-speaker"})]),a("span",{},[t._v("Genres")])])]),t.spotify_enabled?a("router-link",{attrs:{tag:"li",to:"/music/spotify","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})]),a("span",{},[t._v("Spotify")])])]):t._e()],1)])])])])])},Ua=[],Ha={name:"TabsMusic",computed:{spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid}}},Wa=Ha,Ba=Object(R["a"])(Wa,Ma,Ua,!1,null,null,null),Fa=Ba.exports,Ga=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.albums.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.albums.grouped[s],(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.albums_list,(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-album",{attrs:{show:t.show_details_modal,album:t.selected_album,media_kind:t.media_kind},on:{"remove-podcast":function(s){return t.open_remove_podcast_dialog()},close:function(s){t.show_details_modal=!1}}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],1)},Ya=[],Va=(a("4de4"),function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.album.name_sort.charAt(0).toUpperCase()}},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("div",{staticStyle:{"margin-top":"0.7rem"}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artist))])]),s.props.album.date_released&&"music"===s.props.album.media_kind?a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v(" "+s._s(s._f("time")(s.props.album.date_released,"L"))+" ")]):s._e()])]),a("div",{staticClass:"media-right",staticStyle:{"padding-top":"0.7rem"}},[s._t("actions")],2)])}),Qa=[],Ja={name:"ListItemAlbum",props:["album","media_kind"]},Ka=Ja,Xa=Object(R["a"])(Ka,Va,Qa,!0,null,null,null),Za=Xa.exports,te=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("cover-artwork",{staticClass:"image is-square fd-has-margin-bottom fd-has-shadow",attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name}}),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),"podcast"===t.media_kind_resolved?a("div",{staticClass:"buttons"},[a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]),a("a",{staticClass:"button is-small",on:{click:function(s){return t.$emit("remove-podcast")}}},[t._v("Remove podcast")])]):t._e(),a("div",{staticClass:"content is-small"},[t.album.artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]):t._e(),t.album.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.date_released,"L")))])]):t.album.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.year))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.album.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.media_kind)+" - "+t._s(t.album.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.time_added,"L LT")))])])])],1),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},se=[],ae={name:"ModalDialogAlbum",components:{CoverArtwork:Ta},props:["show","album","media_kind","new_tracks"],data:function(){return{artwork_visible:!1}},computed:{artwork_url:function(){return X.artwork_url_append_size_params(this.album.artwork_url)},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.album.media_kind}},methods:{play:function(){this.$emit("close"),X.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.album.uri)},open_album:function(){"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+this.album.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+this.album.id}):this.$router.push({path:"/music/albums/"+this.album.id})},open_artist:function(){"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id}):this.$router.push({path:"/music/artists/"+this.album.artist_id}))},mark_played:function(){var t=this;X.library_album_track_update(this.album.id,{play_count:"played"}).then((function(s){s.data;t.$emit("play-count-changed"),t.$emit("close")}))},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},ee=ae,ie=Object(R["a"])(ee,te,se,!1,null,null,null),ne=ie.exports,oe=(a("99af"),a("d81d"),a("6062"),a("2909")),le=function(){function t(s){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1};Object(wa["a"])(this,t),this.items=s,this.options=a,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}return Object(xa["a"])(t,[{key:"init",value:function(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}},{key:"getAlbumIndex",value:function(t){return"Recently added"===this.options.sort?t.time_added.substring(0,4):"Recently added (browse)"===this.options.sort?this.getRecentlyAddedBrowseIndex(t.time_added):"Recently released"===this.options.sort||"Release date"===this.options.sort?t.date_released?t.date_released.substring(0,4):"0000":t.name_sort.charAt(0).toUpperCase()}},{key:"getRecentlyAddedBrowseIndex",value:function(t){if(!t)return"0000";var s=(new Date).getTime()-new Date(t).getTime();return s<864e5?"Today":s<6048e5?"Last week":s<2592e6?"Last month":t.substring(0,4)}},{key:"isAlbumVisible",value:function(t){return!(this.options.hideSingles&&t.track_count<=2)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}},{key:"createIndexList",value:function(){var t=this;this.indexList=Object(oe["a"])(new Set(this.sortedAndFiltered.map((function(s){return t.getAlbumIndex(s)}))))}},{key:"createSortedAndFilteredList",value:function(){var t=this,s=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(s=s.filter((function(s){return t.isAlbumVisible(s)}))),"Recently added"===this.options.sort||"Recently added (browse)"===this.options.sort?s=Object(oe["a"])(s).sort((function(t,s){return s.time_added.localeCompare(t.time_added)})):"Recently released"===this.options.sort?s=Object(oe["a"])(s).sort((function(t,s){return t.date_released?s.date_released?s.date_released.localeCompare(t.date_released):-1:1})):"Release date"===this.options.sort&&(s=Object(oe["a"])(s).sort((function(t,s){return t.date_released?s.date_released?t.date_released.localeCompare(s.date_released):1:-1}))),this.sortedAndFiltered=s}},{key:"createGroupedList",value:function(){var t=this;this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((function(s,a){var e=t.getAlbumIndex(a);return s[e]=[].concat(Object(oe["a"])(s[e]||[]),[a]),s}),{})}}]),t}(),re={name:"ListAlbums",components:{ListItemAlbum:Za,ModalDialogAlbum:ne,ModalDialog:G,CoverArtwork:Ta},props:["albums","media_kind"],data:function(){return{show_details_modal:!1,selected_album:{},show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_album.media_kind},albums_list:function(){return Array.isArray(this.albums)?this.albums:this.albums.sortedAndFiltered},is_grouped:function(){return this.albums instanceof le&&this.albums.options.group}},methods:{open_album:function(t){this.selected_album=t,"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+t.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+t.id}):this.$router.push({path:"/music/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){var t=this;X.library_album_tracks(this.selected_album.id,{limit:1}).then((function(s){var a=s.data;X.library_track_playlists(a.items[0].id).then((function(s){var a=s.data,e=a.items.filter((function(t){return"rss"===t.type}));1===e.length?(t.rss_playlist_to_remove=e[0],t.show_remove_podcast_modal=!0,t.show_details_modal=!1):t.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})}))}))},remove_podcast:function(){var t=this;this.show_remove_podcast_modal=!1,X.library_playlist_delete(this.rss_playlist_to_remove.id).then((function(){t.$emit("podcast-deleted")}))}}},ce=re,de=Object(R["a"])(ce,Ga,Ya,!1,null,null,null),ue=de.exports,pe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.tracks,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(e,s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1}}})],2)},_e=[],me=function(t,s){var a=s._c;return a("div",{staticClass:"media",class:{"with-progress":s.slots().progress},attrs:{id:"index_"+s.props.track.title_sort.charAt(0).toUpperCase()}},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6",class:{"has-text-grey":"podcast"===s.props.track.media_kind&&s.props.track.play_count>0}},[s._v(s._s(s.props.track.title))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.track.artist))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[s._v(s._s(s.props.track.album))]),s._t("progress")],2),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},he=[],fe={name:"ListItemTrack",props:["track"]},ve=fe,ye=Object(R["a"])(ve,me,he,!0,null,null,null),be=ye.exports,ge=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artist)+" ")]),"podcast"===t.track.media_kind?a("div",{staticClass:"buttons"},[t.track.play_count>0?a("a",{staticClass:"button is-small",on:{click:t.mark_new}},[t._v("Mark as new")]):t._e(),0===t.track.play_count?a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]):t._e()]):t._e(),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.track.album))])]),t.track.album_artist&&"audiobook"!==t.track.media_kind?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.track.album_artist))])]):t._e(),t.track.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.composer))])]):t._e(),t.track.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.date_released,"L")))])]):t.track.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.year))])]):t._e(),t.track.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.track.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.media_kind)+" - "+t._s(t.track.data_kind)+" "),"spotify"===t.track.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.track.type)+" "),t.track.samplerate?a("span",[t._v(" | "+t._s(t.track.samplerate)+" Hz")]):t._e(),t.track.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.track.channels)))]):t._e(),t.track.bitrate?a("span",[t._v(" | "+t._s(t.track.bitrate)+" Kb/s")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.time_added,"L LT")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Rating")]),a("span",{staticClass:"title is-6"},[t._v(t._s(Math.floor(t.track.rating/10))+" / 10")])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play_track}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ke=[],Ce={name:"ModalDialogTrack",props:["show","track"],data:function(){return{spotify_track:{}}},methods:{play_track:function(){this.$emit("close"),X.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.track.uri)},open_album:function(){this.$emit("close"),"podcast"===this.track.media_kind?this.$router.push({path:"/podcasts/"+this.track.album_id}):"audiobook"===this.track.media_kind?this.$router.push({path:"/audiobooks/"+this.track.album_id}):this.$router.push({path:"/music/albums/"+this.track.album_id})},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.track.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.track.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})},mark_new:function(){var t=this;X.library_track_update(this.track.id,{play_count:"reset"}).then((function(){t.$emit("play-count-changed"),t.$emit("close")}))},mark_played:function(){var t=this;X.library_track_update(this.track.id,{play_count:"increment"}).then((function(){t.$emit("play-count-changed"),t.$emit("close")}))}},watch:{track:function(){var t=this;if(this.track&&"spotify"===this.track.data_kind){var s=new Js.a;s.setAccessToken(this.$store.state.spotify.webapi_token),s.getTrack(this.track.path.slice(this.track.path.lastIndexOf(":")+1)).then((function(s){t.spotify_track=s}))}else this.spotify_track={}}}},we=Ce,xe=Object(R["a"])(we,ge,ke,!1,null,null,null),$e=xe.exports,qe={name:"ListTracks",components:{ListItemTrack:be,ModalDialogTrack:$e},props:["tracks","uris","expression"],data:function(){return{show_details_modal:!1,selected_track:{}}},methods:{play_track:function(t,s){this.uris?X.player_play_uri(this.uris,!1,t):this.expression?X.player_play_expression(this.expression,!1,t):X.player_play_uri(s.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Ae=qe,Se=Object(R["a"])(Ae,pe,_e,!1,null,null,null),je=Se.exports,Pe={load:function(t){return Promise.all([X.search({type:"album",expression:"time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc",limit:3}),X.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:3})])},set:function(t,s){t.recently_added=s[0].data.albums,t.recently_played=s[1].data.tracks}},Oe={name:"PageBrowse",mixins:[Na(Pe)],components:{ContentWithHeading:Ms,TabsMusic:Fa,ListAlbums:ue,ListTracks:je},data:function(){return{recently_added:{items:[]},recently_played:{items:[]},show_track_details_modal:!1,selected_track:{}}},methods:{open_browse:function(t){this.$router.push({path:"/music/browse/"+t})}}},Te=Oe,Le=Object(R["a"])(Te,Da,Ra,!1,null,null,null),Ee=Le.exports,Ie=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},ze=[],De={load:function(t){var s=K.getters.settings_option_recently_added_limit;return X.search({type:"album",expression:"media_kind is music having track_count > 3 order by time_added desc",limit:s})},set:function(t,s){t.recently_added=s.data.albums}},Re={name:"PageBrowseType",mixins:[Na(De)],components:{ContentWithHeading:Ms,TabsMusic:Fa,ListAlbums:ue},data:function(){return{recently_added:{items:[]}}},computed:{albums_list:function(){return new le(this.recently_added.items,{hideSingles:!1,hideSpotify:!1,sort:"Recently added (browse)",group:!0})}}},Ne=Re,Me=Object(R["a"])(Ne,Ie,ze,!1,null,null,null),Ue=Me.exports,He=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1)],2)],1)},We=[],Be={load:function(t){return X.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:50})},set:function(t,s){t.recently_played=s.data.tracks}},Fe={name:"PageBrowseType",mixins:[Na(Be)],components:{ContentWithHeading:Ms,TabsMusic:Fa,ListTracks:je},data:function(){return{recently_played:{}}}},Ge=Fe,Ye=Object(R["a"])(Ge,He,We,!1,null,null,null),Ve=Ye.exports,Qe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_singles=a.concat([n])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear on singles or playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_spotify=a.concat([n])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide artists from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Artists")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},Je=[],Ke=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[a("nav",{staticClass:"buttons is-centered fd-is-square",staticStyle:{"margin-bottom":"16px"}},t._l(t.filtered_index,(function(s){return a("a",{key:s,staticClass:"button is-small",on:{click:function(a){return t.nav(s)}}},[t._v(t._s(s))])})),0)])},Xe=[],Ze={name:"IndexButtonList",props:["index"],computed:{filtered_index:function(){var t="!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~";return this.index.filter((function(s){return!t.includes(s)}))}},methods:{nav:function(t){this.$router.push({path:this.$router.currentRoute.path+"#index_"+t})},scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})}}},ti=Ze,si=Object(R["a"])(ti,Ke,Xe,!1,null,null,null),ai=si.exports,ei=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.artists.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.artists.grouped[s],(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.artists_list,(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-artist",{attrs:{show:t.show_details_modal,artist:t.selected_artist,media_kind:t.media_kind},on:{close:function(s){t.show_details_modal=!1}}})],1)},ii=[],ni=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.artist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},oi=[],li={name:"ListItemArtist",props:["artist"]},ri=li,ci=Object(R["a"])(ri,ni,oi,!0,null,null,null),di=ci.exports,ui=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Albums")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.album_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.artist.time_added,"L LT")))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},pi=[],_i={name:"ModalDialogArtist",props:["show","artist"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.artist.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.artist.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.artist.uri)},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.artist.id})}}},mi=_i,hi=Object(R["a"])(mi,ui,pi,!1,null,null,null),fi=hi.exports,vi=function(){function t(s){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1};Object(wa["a"])(this,t),this.items=s,this.options=a,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}return Object(xa["a"])(t,[{key:"init",value:function(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}},{key:"getArtistIndex",value:function(t){return"Name"===this.options.sort?t.name_sort.charAt(0).toUpperCase():t.time_added.substring(0,4)}},{key:"isArtistVisible",value:function(t){return!(this.options.hideSingles&&t.track_count<=2*t.album_count)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}},{key:"createIndexList",value:function(){var t=this;this.indexList=Object(oe["a"])(new Set(this.sortedAndFiltered.map((function(s){return t.getArtistIndex(s)}))))}},{key:"createSortedAndFilteredList",value:function(){var t=this,s=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(s=s.filter((function(s){return t.isArtistVisible(s)}))),"Recently added"===this.options.sort&&(s=Object(oe["a"])(s).sort((function(t,s){return s.time_added.localeCompare(t.time_added)}))),this.sortedAndFiltered=s}},{key:"createGroupedList",value:function(){var t=this;this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((function(s,a){var e=t.getArtistIndex(a);return s[e]=[].concat(Object(oe["a"])(s[e]||[]),[a]),s}),{})}}]),t}(),yi={name:"ListArtists",components:{ListItemArtist:di,ModalDialogArtist:fi},props:["artists","media_kind"],data:function(){return{show_details_modal:!1,selected_artist:{}}},computed:{media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_artist.media_kind},artists_list:function(){return Array.isArray(this.artists)?this.artists:this.artists.sortedAndFiltered},is_grouped:function(){return this.artists instanceof vi&&this.artists.options.group}},methods:{open_artist:function(t){this.selected_artist=t,"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+t.id}):this.$router.push({path:"/music/artists/"+t.id}))},open_dialog:function(t){this.selected_artist=t,this.show_details_modal=!0}}},bi=yi,gi=Object(R["a"])(bi,ei,ii,!1,null,null,null),ki=gi.exports,Ci=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown",class:{"is-active":t.is_active}},[a("div",{staticClass:"dropdown-trigger"},[a("button",{staticClass:"button",attrs:{"aria-haspopup":"true","aria-controls":"dropdown-menu"},on:{click:function(s){t.is_active=!t.is_active}}},[a("span",[t._v(t._s(t.value))]),t._m(0)])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},t._l(t.options,(function(s){return a("a",{key:s,staticClass:"dropdown-item",class:{"is-active":t.value===s},on:{click:function(a){return t.select(s)}}},[t._v(" "+t._s(s)+" ")])})),0)])])},wi=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down",attrs:{"aria-hidden":"true"}})])}],xi={name:"DropdownMenu",props:["value","options"],data:function(){return{is_active:!1}},methods:{onClickOutside:function(t){this.is_active=!1},select:function(t){this.is_active=!1,this.$emit("input",t)}}},$i=xi,qi=Object(R["a"])($i,Ci,wi,!1,null,null,null),Ai=qi.exports,Si={load:function(t){return X.library_artists("music")},set:function(t,s){t.artists=s.data}},ji={name:"PageArtists",mixins:[Na(Si)],components:{ContentWithHeading:Ms,TabsMusic:Fa,IndexButtonList:ai,ListArtists:ki,DropdownMenu:Ai},data:function(){return{artists:{items:[]},sort_options:["Name","Recently added"]}},computed:{artists_list:function(){return new vi(this.artists.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get:function(){return this.$store.state.hide_singles},set:function(t){this.$store.commit(S,t)}},hide_spotify:{get:function(){return this.$store.state.hide_spotify},set:function(t){this.$store.commit(j,t)}},sort:{get:function(){return this.$store.state.artists_sort},set:function(t){this.$store.commit(P,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Pi=ji,Oi=Object(R["a"])(Pi,Qe,Je,!1,null,null,null),Ti=Oi.exports,Li=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"options"},[a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])]),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v(t._s(t.artist.track_count)+" tracks")])]),a("list-albums",{attrs:{albums:t.albums_list}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},Ei=[],Ii=(a("a15b"),{load:function(t){return Promise.all([X.library_artist(t.params.artist_id),X.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}}),zi={name:"PageArtist",mixins:[Na(Ii)],components:{ContentWithHeading:Ms,ListAlbums:ue,ModalDialogArtist:fi,DropdownMenu:Ai},data:function(){return{artist:{},albums:{items:[]},sort_options:["Name","Release date"],show_artist_details_modal:!1}},computed:{albums_list:function(){return new le(this.albums.items,{sort:this.sort,group:!1})},sort:{get:function(){return this.$store.state.artist_albums_sort},set:function(t){this.$store.commit(O,t)}}},methods:{open_tracks:function(){this.$router.push({path:"/music/artists/"+this.artist.id+"/tracks"})},play:function(){X.player_play_uri(this.albums.items.map((function(t){return t.uri})).join(","),!0)}}},Di=zi,Ri=Object(R["a"])(Di,Li,Ei,!1,null,null,null),Ni=Ri.exports,Mi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_singles=a.concat([n])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides singles and albums with tracks that only appear in playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var n=null,o=t._i(a,n);e.checked?o<0&&(t.hide_spotify=a.concat([n])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide albums from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides albums that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Albums")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},Ui=[],Hi={load:function(t){return X.library_albums("music")},set:function(t,s){t.albums=s.data,t.index_list=Object(oe["a"])(new Set(t.albums.items.filter((function(s){return!t.$store.state.hide_singles||s.track_count>2})).map((function(t){return t.name_sort.charAt(0).toUpperCase()}))))}},Wi={name:"PageAlbums",mixins:[Na(Hi)],components:{ContentWithHeading:Ms,TabsMusic:Fa,IndexButtonList:ai,ListAlbums:ue,DropdownMenu:Ai},data:function(){return{albums:{items:[]},sort_options:["Name","Recently added","Recently released"]}},computed:{albums_list:function(){return new le(this.albums.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get:function(){return this.$store.state.hide_singles},set:function(t){this.$store.commit(S,t)}},hide_spotify:{get:function(){return this.$store.state.hide_spotify},set:function(t){this.$store.commit(j,t)}},sort:{get:function(){return this.$store.state.albums_sort},set:function(t){this.$store.commit(T,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Bi=Wi,Fi=Object(R["a"])(Bi,Mi,Ui,!1,null,null,null),Gi=Fi.exports,Yi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},Vi=[],Qi=a("fd4d"),Ji={load:function(t){return Promise.all([X.library_album(t.params.album_id),X.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}},Ki={name:"PageAlbum",mixins:[Na(Ji)],components:{ContentWithHero:Qi["default"],ListTracks:je,ModalDialogAlbum:ne,CoverArtwork:Ta},data:function(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.album.artist_id})},play:function(){X.player_play_uri(this.album.uri,!0)}}},Xi=Ki,Zi=Object(R["a"])(Xi,Yi,Vi,!1,null,null,null),tn=Zi.exports,sn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Genres")]),a("p",{staticClass:"heading"},[t._v(t._s(t.genres.total)+" genres")])]),a("template",{slot:"content"},[t._l(t.genres.items,(function(s){return a("list-item-genre",{key:s.name,attrs:{genre:s},on:{click:function(a){return t.open_genre(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-genre",{attrs:{show:t.show_details_modal,genre:t.selected_genre},on:{close:function(s){t.show_details_modal=!1}}})],2)],2)],1)},an=[],en=function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.genre.name.charAt(0).toUpperCase()}},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.genre.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},nn=[],on={name:"ListItemGenre",props:["genre"]},ln=on,rn=Object(R["a"])(ln,en,nn,!0,null,null,null),cn=rn.exports,dn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.genre.name))])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},un=[],pn={name:"ModalDialogGenre",props:["show","genre"],methods:{play:function(){this.$emit("close"),X.player_play_expression('genre is "'+this.genre.name+'" and media_kind is music',!1)},queue_add:function(){this.$emit("close"),X.queue_expression_add('genre is "'+this.genre.name+'" and media_kind is music')},queue_add_next:function(){this.$emit("close"),X.queue_expression_add_next('genre is "'+this.genre.name+'" and media_kind is music')},open_genre:function(){this.$emit("close"),this.$router.push({name:"Genre",params:{genre:this.genre.name}})}}},_n=pn,mn=Object(R["a"])(_n,dn,un,!1,null,null,null),hn=mn.exports,fn={load:function(t){return X.library_genres()},set:function(t,s){t.genres=s.data}},vn={name:"PageGenres",mixins:[Na(fn)],components:{ContentWithHeading:Ms,TabsMusic:Fa,IndexButtonList:ai,ListItemGenre:cn,ModalDialogGenre:hn},data:function(){return{genres:{items:[]},show_details_modal:!1,selected_genre:{}}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.genres.items.map((function(t){return t.name.charAt(0).toUpperCase()}))))}},methods:{open_genre:function(t){this.$router.push({name:"Genre",params:{genre:t.name}})},open_dialog:function(t){this.selected_genre=t,this.show_details_modal=!0}}},yn=vn,bn=Object(R["a"])(yn,sn,an,!1,null,null,null),gn=bn.exports,kn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.genre_albums.total)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v("tracks")])]),a("list-albums",{attrs:{albums:t.genre_albums.items}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.name}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},Cn=[],wn={load:function(t){return X.library_genre(t.params.genre)},set:function(t,s){t.name=t.$route.params.genre,t.genre_albums=s.data.albums}},xn={name:"PageGenre",mixins:[Na(wn)],components:{ContentWithHeading:Ms,IndexButtonList:ai,ListAlbums:ue,ModalDialogGenre:hn},data:function(){return{name:"",genre_albums:{items:[]},show_genre_details_modal:!1}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.genre_albums.items.map((function(t){return t.name.charAt(0).toUpperCase()}))))}},methods:{open_tracks:function(){this.show_details_modal=!1,this.$router.push({name:"GenreTracks",params:{genre:this.name}})},play:function(){X.player_play_expression('genre is "'+this.name+'" and media_kind is music',!0)},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0}}},$n=xn,qn=Object(R["a"])($n,kn,Cn,!1,null,null,null),An=qn.exports,Sn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.genre))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v("albums")]),t._v(" | "+t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,expression:t.expression}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.genre}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},jn=[],Pn={load:function(t){return X.library_genre_tracks(t.params.genre)},set:function(t,s){t.genre=t.$route.params.genre,t.tracks=s.data.tracks}},On={name:"PageGenreTracks",mixins:[Na(Pn)],components:{ContentWithHeading:Ms,ListTracks:je,IndexButtonList:ai,ModalDialogGenre:hn},data:function(){return{tracks:{items:[]},genre:"",show_genre_details_modal:!1}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.tracks.items.map((function(t){return t.title_sort.charAt(0).toUpperCase()}))))},expression:function(){return'genre is "'+this.genre+'" and media_kind is music'}},methods:{open_genre:function(){this.show_details_modal=!1,this.$router.push({name:"Genre",params:{genre:this.genre}})},play:function(){X.player_play_expression(this.expression,!0)}}},Tn=On,Ln=Object(R["a"])(Tn,Sn,jn,!1,null,null,null),En=Ln.exports,In=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.album_count)+" albums")]),t._v(" | "+t._s(t.artist.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,uris:t.track_uris}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)],1)},zn=[],Dn={load:function(t){return Promise.all([X.library_artist(t.params.artist_id),X.library_artist_tracks(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.tracks=s[1].data.tracks}},Rn={name:"PageArtistTracks",mixins:[Na(Dn)],components:{ContentWithHeading:Ms,ListTracks:je,IndexButtonList:ai,ModalDialogArtist:fi},data:function(){return{artist:{},tracks:{items:[]},show_artist_details_modal:!1}},computed:{index_list:function(){return Object(oe["a"])(new Set(this.tracks.items.map((function(t){return t.title_sort.charAt(0).toUpperCase()}))))},track_uris:function(){return this.tracks.items.map((function(t){return t.uri})).join(",")}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.artist.id})},play:function(){X.player_play_uri(this.tracks.items.map((function(t){return t.uri})).join(","),!0)}}},Nn=Rn,Mn=Object(R["a"])(Nn,In,zn,!1,null,null,null),Un=Mn.exports,Hn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.new_episodes.items.length>0?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New episodes")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.mark_all_played}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Mark All Played")])])])]),a("template",{slot:"content"},[t._l(t.new_episodes.items,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1},"play-count-changed":t.reload_new_episodes}})],2)],2):t._e(),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums.total)+" podcasts")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.open_add_podcast_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rss"})]),a("span",[t._v("Add Podcast")])])])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items},on:{"play-count-changed":function(s){return t.reload_new_episodes()},"podcast-deleted":function(s){return t.reload_podcasts()}}}),a("modal-dialog-add-rss",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1},"podcast-added":function(s){return t.reload_podcasts()}}})],1)],2)],1)},Wn=[],Bn=(a("4160"),a("159b"),function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v("Add Podcast RSS feed URL")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.add_stream(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-rss",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-rss"})])]),a("p",{staticClass:"help"},[t._v("Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. ")])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item button is-loading"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Processing ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)}),Fn=[],Gn={name:"ModalDialogAddRss",props:["show"],data:function(){return{url:"",loading:!1}},methods:{add_stream:function(){var t=this;this.loading=!0,X.library_add(this.url).then((function(){t.$emit("close"),t.$emit("podcast-added"),t.url=""})).catch((function(){t.loading=!1}))}},watch:{show:function(){var t=this;this.show&&(this.loading=!1,setTimeout((function(){t.$refs.url_field.focus()}),10))}}},Yn=Gn,Vn=Object(R["a"])(Yn,Bn,Fn,!1,null,null,null),Qn=Vn.exports,Jn={load:function(t){return Promise.all([X.library_albums("podcast"),X.library_podcasts_new_episodes()])},set:function(t,s){t.albums=s[0].data,t.new_episodes=s[1].data.tracks}},Kn={name:"PagePodcasts",mixins:[Na(Jn)],components:{ContentWithHeading:Ms,ListItemTrack:be,ListAlbums:ue,ModalDialogTrack:$e,ModalDialogAddRss:Qn,RangeSlider:ct.a},data:function(){return{albums:{items:[]},new_episodes:{items:[]},show_url_modal:!1,show_track_details_modal:!1,selected_track:{}}},methods:{play_track:function(t){X.player_play_uri(t.uri,!1)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},mark_all_played:function(){this.new_episodes.items.forEach((function(t){X.library_track_update(t.id,{play_count:"increment"})})),this.new_episodes.items={}},open_add_podcast_dialog:function(t){this.show_url_modal=!0},reload_new_episodes:function(){var t=this;X.library_podcasts_new_episodes().then((function(s){var a=s.data;t.new_episodes=a.tracks}))},reload_podcasts:function(){var t=this;X.library_albums("podcast").then((function(s){var a=s.data;t.albums=a,t.reload_new_episodes()}))}}},Xn=Kn,Zn=Object(R["a"])(Xn,Hn,Wn,!1,null,null,null),to=Zn.exports,so=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.album.name)+" ")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.album.track_count)+" tracks")]),t._l(t.tracks,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1},"play-count-changed":t.reload_tracks}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"podcast",new_tracks:t.new_tracks},on:{close:function(s){t.show_album_details_modal=!1},"play-count-changed":t.reload_tracks,"remove-podcast":t.open_remove_podcast_dialog}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],2)],2)},ao=[],eo={load:function(t){return Promise.all([X.library_album(t.params.album_id),X.library_podcast_episodes(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.tracks.items}},io={name:"PagePodcast",mixins:[Na(eo)],components:{ContentWithHeading:Ms,ListItemTrack:be,ModalDialogTrack:$e,RangeSlider:ct.a,ModalDialogAlbum:ne,ModalDialog:G},data:function(){return{album:{},tracks:[],show_details_modal:!1,selected_track:{},show_album_details_modal:!1,show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{new_tracks:function(){return this.tracks.filter((function(t){return 0===t.play_count})).length}},methods:{play:function(){X.player_play_uri(this.album.uri,!1)},play_track:function(t){X.player_play_uri(t.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){var t=this;this.show_album_details_modal=!1,X.library_track_playlists(this.tracks[0].id).then((function(s){var a=s.data,e=a.items.filter((function(t){return"rss"===t.type}));1===e.length?(t.rss_playlist_to_remove=e[0],t.show_remove_podcast_modal=!0):t.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})}))},remove_podcast:function(){var t=this;this.show_remove_podcast_modal=!1,X.library_playlist_delete(this.rss_playlist_to_remove.id).then((function(){t.$router.replace({path:"/podcasts"})}))},reload_tracks:function(){var t=this;X.library_podcast_episodes(this.album.id).then((function(s){var a=s.data;t.tracks=a.tracks.items}))}}},no=io,oo=Object(R["a"])(no,so,ao,!1,null,null,null),lo=oo.exports,ro=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},co=[],uo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/audiobooks/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Authors")])])]),a("router-link",{attrs:{tag:"li",to:"/audiobooks/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Audiobooks")])])])],1)])])])])])},po=[],_o={name:"TabsAudiobooks"},mo=_o,ho=Object(R["a"])(mo,uo,po,!1,null,null,null),fo=ho.exports,vo={load:function(t){return X.library_albums("audiobook")},set:function(t,s){t.albums=s.data}},yo={name:"PageAudiobooksAlbums",mixins:[Na(vo)],components:{TabsAudiobooks:fo,ContentWithHeading:Ms,IndexButtonList:ai,ListAlbums:ue},data:function(){return{albums:{items:[]}}},computed:{albums_list:function(){return new le(this.albums.items,{sort:"Name",group:!0})}},methods:{}},bo=yo,go=Object(R["a"])(bo,ro,co,!1,null,null,null),ko=go.exports,Co=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Authors")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Authors")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},wo=[],xo={load:function(t){return X.library_artists("audiobook")},set:function(t,s){t.artists=s.data}},$o={name:"PageAudiobooksArtists",mixins:[Na(xo)],components:{ContentWithHeading:Ms,TabsAudiobooks:fo,IndexButtonList:ai,ListArtists:ki},data:function(){return{artists:{items:[]}}},computed:{artists_list:function(){return new vi(this.artists.items,{sort:"Name",group:!0})}},methods:{}},qo=$o,Ao=Object(R["a"])(qo,Co,wo,!1,null,null,null),So=Ao.exports,jo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums")]),a("list-albums",{attrs:{albums:t.albums.items}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},Po=[],Oo={load:function(t){return Promise.all([X.library_artist(t.params.artist_id),X.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}},To={name:"PageAudiobooksArtist",mixins:[Na(Oo)],components:{ContentWithHeading:Ms,ListAlbums:ue,ModalDialogArtist:fi},data:function(){return{artist:{},albums:{},show_artist_details_modal:!1}},methods:{play:function(){X.player_play_uri(this.albums.items.map((function(t){return t.uri})).join(","),!1)}}},Lo=To,Eo=Object(R["a"])(Lo,jo,Po,!1,null,null,null),Io=Eo.exports,zo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"audiobook"},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},Do=[],Ro={load:function(t){return Promise.all([X.library_album(t.params.album_id),X.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}},No={name:"PageAudiobooksAlbum",mixins:[Na(Ro)],components:{ContentWithHero:Qi["default"],ListTracks:je,ModalDialogAlbum:ne,CoverArtwork:Ta},data:function(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id})},play:function(){X.player_play_uri(this.album.uri,!1)},play_track:function(t){X.player_play_uri(this.album.uri,!1,t)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Mo=No,Uo=Object(R["a"])(Mo,zo,Do,!1,null,null,null),Ho=Uo.exports,Wo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))]),a("p",{staticClass:"heading"},[t._v(t._s(t.playlists.total)+" playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1)],2)},Bo=[],Fo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.playlists,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-library-music":"folder"!==s.type,"mdi-rss":"rss"===s.type,"mdi-folder":"folder"===s.type}})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-playlist",{attrs:{show:t.show_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_details_modal=!1}}})],2)},Go=[],Yo=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.playlist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},Vo=[],Qo={name:"ListItemPlaylist",props:["playlist"]},Jo=Qo,Ko=Object(R["a"])(Jo,Yo,Vo,!0,null,null,null),Xo=Ko.exports,Zo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.type))])])])]),t.playlist.folder?t._e():a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},tl=[],sl={name:"ModalDialogPlaylist",props:["show","playlist","uris"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.uris?this.uris:this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.uris?this.uris:this.playlist.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.uris?this.uris:this.playlist.uri)},open_playlist:function(){this.$emit("close"),this.$router.push({path:"/playlists/"+this.playlist.id+"/tracks"})}}},al=sl,el=Object(R["a"])(al,Zo,tl,!1,null,null,null),il=el.exports,nl={name:"ListPlaylists",components:{ListItemPlaylist:Xo,ModalDialogPlaylist:il},props:["playlists"],data:function(){return{show_details_modal:!1,selected_playlist:{}}},methods:{open_playlist:function(t){"folder"!==t.type?this.$router.push({path:"/playlists/"+t.id+"/tracks"}):this.$router.push({path:"/playlists/"+t.id})},open_dialog:function(t){this.selected_playlist=t,this.show_details_modal=!0}}},ol=nl,ll=Object(R["a"])(ol,Fo,Go,!1,null,null,null),rl=ll.exports,cl={load:function(t){return Promise.all([X.library_playlist(t.params.playlist_id),X.library_playlist_folder(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.playlists=s[1].data}},dl={name:"PagePlaylists",mixins:[Na(cl)],components:{ContentWithHeading:Ms,ListPlaylists:rl},data:function(){return{playlist:{},playlists:{}}}},ul=dl,pl=Object(R["a"])(ul,Wo,Bo,!1,null,null,null),_l=pl.exports,ml=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.length)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.uris}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.playlist,uris:t.uris},on:{close:function(s){t.show_playlist_details_modal=!1}}})],1)],2)},hl=[],fl={load:function(t){return Promise.all([X.library_playlist(t.params.playlist_id),X.library_playlist_tracks(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.tracks=s[1].data.items}},vl={name:"PagePlaylist",mixins:[Na(fl)],components:{ContentWithHeading:Ms,ListTracks:je,ModalDialogPlaylist:il},data:function(){return{playlist:{},tracks:[],show_playlist_details_modal:!1}},computed:{uris:function(){return this.playlist.random?this.tracks.map((function(t){return t.uri})).join(","):this.playlist.uri}},methods:{play:function(){X.player_play_uri(this.uris,!0)}}},yl=vl,bl=Object(R["a"])(yl,ml,hl,!1,null,null,null),gl=bl.exports,kl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Files")]),a("p",{staticClass:"title is-7 has-text-grey"},[t._v(t._s(t.current_directory))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){return t.open_directory_dialog({path:t.current_directory})}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[t.$route.query.directory?a("div",{staticClass:"media",on:{click:function(s){return t.open_parent_directory()}}},[a("figure",{staticClass:"media-left fd-has-action"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-subdirectory-arrow-left"})])]),a("div",{staticClass:"media-content fd-has-action is-clipped"},[a("h1",{staticClass:"title is-6"},[t._v("..")])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e(),t._l(t.files.directories,(function(s){return a("list-item-directory",{key:s.path,attrs:{directory:s},on:{click:function(a){return t.open_directory(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_directory_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.playlists.items,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-library-music"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.tracks.items,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(s){return t.play_track(e)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-file-outline"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-directory",{attrs:{show:t.show_directory_details_modal,directory:t.selected_directory},on:{close:function(s){t.show_directory_details_modal=!1}}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}}),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1}}})],2)],2)],1)},Cl=[],wl=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._m(0)]),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.directory.path.substring(s.props.directory.path.lastIndexOf("/")+1)))]),a("h2",{staticClass:"subtitle is-7 has-text-grey-light"},[s._v(s._s(s.props.directory.path))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},xl=[function(t,s){var a=s._c;return a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-folder"})])}],$l={name:"ListItemDirectory",props:["directory"]},ql=$l,Al=Object(R["a"])(ql,wl,xl,!0,null,null,null),Sl=Al.exports,jl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.directory.path)+" ")])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Pl=[],Ol={name:"ModalDialogDirectory",props:["show","directory"],methods:{play:function(){this.$emit("close"),X.player_play_expression('path starts with "'+this.directory.path+'" order by path asc',!1)},queue_add:function(){this.$emit("close"),X.queue_expression_add('path starts with "'+this.directory.path+'" order by path asc')},queue_add_next:function(){this.$emit("close"),X.queue_expression_add_next('path starts with "'+this.directory.path+'" order by path asc')}}},Tl=Ol,Ll=Object(R["a"])(Tl,jl,Pl,!1,null,null,null),El=Ll.exports,Il={load:function(t){return t.query.directory?X.library_files(t.query.directory):Promise.resolve()},set:function(t,s){t.files=s?s.data:{directories:t.$store.state.config.directories.map((function(t){return{path:t}})),tracks:{items:[]},playlists:{items:[]}}}},zl={name:"PageFiles",mixins:[Na(Il)],components:{ContentWithHeading:Ms,ListItemDirectory:Sl,ListItemPlaylist:Xo,ListItemTrack:be,ModalDialogDirectory:El,ModalDialogPlaylist:il,ModalDialogTrack:$e},data:function(){return{files:{directories:[],tracks:{items:[]},playlists:{items:[]}},show_directory_details_modal:!1,selected_directory:{},show_playlist_details_modal:!1,selected_playlist:{},show_track_details_modal:!1,selected_track:{}}},computed:{current_directory:function(){return this.$route.query&&this.$route.query.directory?this.$route.query.directory:"/"}},methods:{open_parent_directory:function(){var t=this.current_directory.slice(0,this.current_directory.lastIndexOf("/"));""===t||this.$store.state.config.directories.includes(this.current_directory)?this.$router.push({path:"/files"}):this.$router.push({path:"/files",query:{directory:this.current_directory.slice(0,this.current_directory.lastIndexOf("/"))}})},open_directory:function(t){this.$router.push({path:"/files",query:{directory:t.path}})},open_directory_dialog:function(t){this.selected_directory=t,this.show_directory_details_modal=!0},play:function(){X.player_play_expression('path starts with "'+this.current_directory+'" order by path asc',!1)},play_track:function(t){X.player_play_uri(this.files.tracks.items.map((function(t){return t.uri})).join(","),!1,t)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_playlist:function(t){this.$router.push({path:"/playlists/"+t.id+"/tracks"})},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},Dl=zl,Rl=Object(R["a"])(Dl,kl,Cl,!1,null,null,null),Nl=Rl.exports,Ml=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Radio")])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items}})],1)],2)],1)},Ul=[],Hl={load:function(t){return X.library_radio_streams()},set:function(t,s){t.tracks=s.data.tracks}},Wl={name:"PageRadioStreams",mixins:[Na(Hl)],components:{ContentWithHeading:Ms,ListTracks:je},data:function(){return{tracks:{items:[]}}}},Bl=Wl,Fl=Object(R["a"])(Bl,Ml,Ul,!1,null,null,null),Gl=Fl.exports,Yl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)]),t._m(1)])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.tracks.items}})],1),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists.items}})],1),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items}})],1),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e(),t.show_podcasts&&t.podcasts.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.podcasts.items}})],1),a("template",{slot:"footer"},[t.show_all_podcasts_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_podcasts}},[t._v("Show all "+t._s(t.podcasts.total.toLocaleString())+" podcasts")])])]):t._e()])],2):t._e(),t.show_podcasts&&!t.podcasts.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No podcasts found")])])])],2):t._e(),t.show_audiobooks&&t.audiobooks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.audiobooks.items}})],1),a("template",{slot:"footer"},[t.show_all_audiobooks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_audiobooks}},[t._v("Show all "+t._s(t.audiobooks.total.toLocaleString())+" audiobooks")])])]):t._e()])],2):t._e(),t.show_audiobooks&&!t.audiobooks.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No audiobooks found")])])])],2):t._e()],1)},Vl=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"help has-text-centered"},[t._v("Tip: you can search by a smart playlist query language "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md",target:"_blank"}},[t._v("expression")]),t._v(" if you prefix it with "),a("code",[t._v("query:")]),t._v(". ")])}],Ql=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content py-3"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t._t("content")],2)])])])},Jl=[],Kl={name:"ContentText"},Xl=Kl,Zl=Object(R["a"])(Xl,Ql,Jl,!1,null,null,null),tr=Zl.exports,sr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.spotify_enabled?a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small is-toggle is-toggle-rounded"},[a("ul",[a("li",{class:{"is-active":"/search/library"===t.$route.path}},[a("a",{on:{click:t.search_library}},[t._m(0),a("span",{},[t._v("Library")])])]),a("li",{class:{"is-active":"/search/spotify"===t.$route.path}},[a("a",{on:{click:t.search_spotify}},[t._m(1),a("span",{},[t._v("Spotify")])])])])])])])])]):t._e()},ar=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-library-books"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})])}],er={name:"TabsSearch",props:["query"],computed:{spotify_enabled:function(){return this.$store.state.spotify.webapi_token_valid},route_query:function(){return this.query?{type:"track,artist,album,playlist,audiobook,podcast",query:this.query,limit:3,offset:0}:null}},methods:{search_library:function(){this.$router.push({path:"/search/library",query:this.route_query})},search_spotify:function(){this.$router.push({path:"/search/spotify",query:this.route_query})}}},ir=er,nr=Object(R["a"])(ir,sr,ar,!1,null,null,null),or=nr.exports,lr={name:"PageSearch",components:{ContentWithHeading:Ms,ContentText:tr,TabsSearch:or,ListTracks:je,ListArtists:ki,ListAlbums:ue,ListPlaylists:rl},data:function(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},audiobooks:{items:[],total:0},podcasts:{items:[],total:0}}},computed:{recent_searches:function(){return this.$store.state.recent_searches},show_tracks:function(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button:function(){return this.tracks.total>this.tracks.items.length},show_artists:function(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button:function(){return this.artists.total>this.artists.items.length},show_albums:function(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button:function(){return this.albums.total>this.albums.items.length},show_playlists:function(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button:function(){return this.playlists.total>this.playlists.items.length},show_audiobooks:function(){return this.$route.query.type&&this.$route.query.type.includes("audiobook")},show_all_audiobooks_button:function(){return this.audiobooks.total>this.audiobooks.items.length},show_podcasts:function(){return this.$route.query.type&&this.$route.query.type.includes("podcast")},show_all_podcasts_button:function(){return this.podcasts.total>this.podcasts.items.length},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{search:function(t){if(!t.query.query||""===t.query.query)return this.search_query="",void this.$refs.search_field.focus();this.search_query=t.query.query,this.searchMusic(t.query),this.searchAudiobooks(t.query),this.searchPodcasts(t.query),this.$store.commit(A,t.query.query)},searchMusic:function(t){var s=this;if(!(t.type.indexOf("track")<0&&t.type.indexOf("artist")<0&&t.type.indexOf("album")<0&&t.type.indexOf("playlist")<0)){var a={type:t.type,media_kind:"music"};t.query.startsWith("query:")?a.expression=t.query.replace(/^query:/,"").trim():a.query=t.query,t.limit&&(a.limit=t.limit,a.offset=t.offset),X.search(a).then((function(t){var a=t.data;s.tracks=a.tracks?a.tracks:{items:[],total:0},s.artists=a.artists?a.artists:{items:[],total:0},s.albums=a.albums?a.albums:{items:[],total:0},s.playlists=a.playlists?a.playlists:{items:[],total:0}}))}},searchAudiobooks:function(t){var s=this;if(!(t.type.indexOf("audiobook")<0)){var a={type:"album",media_kind:"audiobook"};t.query.startsWith("query:")?a.expression=t.query.replace(/^query:/,"").trim():a.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is audiobook)',t.limit&&(a.limit=t.limit,a.offset=t.offset),X.search(a).then((function(t){var a=t.data;s.audiobooks=a.albums?a.albums:{items:[],total:0}}))}},searchPodcasts:function(t){var s=this;if(!(t.type.indexOf("podcast")<0)){var a={type:"album",media_kind:"podcast"};t.query.startsWith("query:")?a.expression=t.query.replace(/^query:/,"").trim():a.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is podcast)',t.limit&&(a.limit=t.limit,a.offset=t.offset),X.search(a).then((function(t){var a=t.data;s.podcasts=a.albums?a.albums:{items:[],total:0}}))}},new_search:function(){this.search_query&&(this.$router.push({path:"/search/library",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/library",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/library",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/library",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/library",query:{type:"playlist",query:this.$route.query.query}})},open_search_audiobooks:function(){this.$router.push({path:"/search/library",query:{type:"audiobook",query:this.$route.query.query}})},open_search_podcasts:function(){this.$router.push({path:"/search/library",query:{type:"podcast",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()}},mounted:function(){this.search(this.$route)},watch:{$route:function(t,s){this.search(t)}}},rr=lr,cr=Object(R["a"])(rr,Yl,Vl,!1,null,null,null),dr=cr.exports,ur=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths has-text-centered-mobile"},[a("p",{staticClass:"heading"},[a("b",[t._v("forked-daapd")]),t._v(" - version "+t._s(t.config.version))]),a("h1",{staticClass:"title is-4"},[t._v(t._s(t.config.library_name))])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content"},[a("nav",{staticClass:"level is-mobile"},[t._m(0),a("div",{staticClass:"level-right"},[t.library.updating?a("div",[a("a",{staticClass:"button is-small is-loading"},[t._v("Update")])]):a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown is-right",class:{"is-active":t.show_update_dropdown}},[a("div",{staticClass:"dropdown-trigger"},[a("div",{staticClass:"buttons has-addons"},[a("a",{staticClass:"button is-small",on:{click:t.update}},[t._v("Update")]),a("a",{staticClass:"button is-small",on:{click:function(s){t.show_update_dropdown=!t.show_update_dropdown}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-chevron-down":!t.show_update_dropdown,"mdi-chevron-up":t.show_update_dropdown}})])])])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},[a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update}},[a("strong",[t._v("Update")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Adds new, removes deleted and updates modified files.")])])]),a("hr",{staticClass:"dropdown-divider"}),a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update_meta}},[a("strong",[t._v("Rescan metadata")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Same as update, but also rescans unmodified files.")])])])])])])])]),a("table",{staticClass:"table"},[a("tbody",[a("tr",[a("th",[t._v("Artists")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.artists)))])]),a("tr",[a("th",[t._v("Albums")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.albums)))])]),a("tr",[a("th",[t._v("Tracks")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.songs)))])]),a("tr",[a("th",[t._v("Total playtime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("duration")(1e3*t.library.db_playtime,"y [years], d [days], h [hours], m [minutes]")))])]),a("tr",[a("th",[t._v("Library updated")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.updated_at))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.updated_at,"lll"))+")")])])]),a("tr",[a("th",[t._v("Uptime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.started_at,!0))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.started_at,"ll"))+")")])])])])])])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content has-text-centered-mobile"},[a("p",{staticClass:"is-size-7"},[t._v("Compiled with support for "+t._s(t._f("join")(t.config.buildoptions))+".")]),t._m(1)])])])])])])},pr=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item"},[a("h2",{staticClass:"title is-5"},[t._v("Library")])])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"is-size-7"},[t._v("Web interface built with "),a("a",{attrs:{href:"http://bulma.io"}},[t._v("Bulma")]),t._v(", "),a("a",{attrs:{href:"https://materialdesignicons.com/"}},[t._v("Material Design Icons")]),t._v(", "),a("a",{attrs:{href:"https://vuejs.org/"}},[t._v("Vue.js")]),t._v(", "),a("a",{attrs:{href:"https://github.com/mzabriskie/axios"}},[t._v("axios")]),t._v(" and "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/network/dependencies"}},[t._v("more")]),t._v(".")])}],_r={name:"PageAbout",data:function(){return{show_update_dropdown:!1}},computed:{config:function(){return this.$store.state.config},library:function(){return this.$store.state.library}},methods:{onClickOutside:function(t){this.show_update_dropdown=!1},update:function(){this.show_update_dropdown=!1,X.library_update()},update_meta:function(){this.show_update_dropdown=!1,X.library_rescan()}},filters:{join:function(t){return t.join(", ")}}},mr=_r,hr=Object(R["a"])(mr,ur,pr,!1,null,null,null),fr=hr.exports,vr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/new-releases"}},[t._v(" Show more ")])],1)])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/featured-playlists"}},[t._v(" Show more ")])],1)])])],2)],1)},yr=[],br=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artists[0].name))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v("("+s._s(s.props.album.album_type)+", "+s._s(s._f("time")(s.props.album.release_date,"L"))+")")])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},gr=[],kr={name:"SpotifyListItemAlbum",props:["album"]},Cr=kr,wr=Object(R["a"])(Cr,br,gr,!0,null,null,null),xr=wr.exports,$r=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_playlist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.playlist.name))]),a("h2",{staticClass:"subtitle is-7"},[t._v(t._s(t.playlist.owner.display_name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},qr=[],Ar={name:"SpotifyListItemPlaylist",props:["playlist"],methods:{open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},Sr=Ar,jr=Object(R["a"])(Sr,$r,qr,!1,null,null,null),Pr=jr.exports,Or=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("figure",{directives:[{name:"show",rawName:"v-show",value:t.artwork_visible,expression:"artwork_visible"}],staticClass:"image is-square fd-has-margin-bottom"},[a("img",{staticClass:"fd-has-shadow",attrs:{src:t.artwork_url},on:{load:t.artwork_loaded,error:t.artwork_error}})]),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.album_type))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Tr=[],Lr={name:"SpotifyModalDialogAlbum",props:["show","album"],data:function(){return{artwork_visible:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{play:function(){this.$emit("close"),X.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.album.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},Er=Lr,Ir=Object(R["a"])(Er,Or,Tr,!1,null,null,null),zr=Ir.exports,Dr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Owner")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.owner.display_name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.tracks.total))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Rr=[],Nr={name:"SpotifyModalDialogPlaylist",props:["show","playlist"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.playlist.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.playlist.uri)},open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},Mr=Nr,Ur=Object(R["a"])(Mr,Dr,Rr,!1,null,null,null),Hr=Ur.exports,Wr={load:function(t){if(K.state.spotify_new_releases.length>0&&K.state.spotify_featured_playlists.length>0)return Promise.resolve();var s=new Js.a;return s.setAccessToken(K.state.spotify.webapi_token),Promise.all([s.getNewReleases({country:K.state.spotify.webapi_country,limit:50}),s.getFeaturedPlaylists({country:K.state.spotify.webapi_country,limit:50})])},set:function(t,s){s&&(K.commit(w,s[0].albums.items),K.commit(x,s[1].playlists.items))}},Br={name:"SpotifyPageBrowse",mixins:[Na(Wr)],components:{ContentWithHeading:Ms,TabsMusic:Fa,SpotifyListItemAlbum:xr,SpotifyListItemPlaylist:Pr,SpotifyModalDialogAlbum:zr,SpotifyModalDialogPlaylist:Hr,CoverArtwork:Ta},data:function(){return{show_album_details_modal:!1,selected_album:{},show_playlist_details_modal:!1,selected_playlist:{}}},computed:{new_releases:function(){return this.$store.state.spotify_new_releases.slice(0,3)},featured_playlists:function(){return this.$store.state.spotify_featured_playlists.slice(0,3)},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Fr=Br,Gr=Object(R["a"])(Fr,vr,yr,!1,null,null,null),Yr=Gr.exports,Vr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)],1)},Qr=[],Jr={load:function(t){if(K.state.spotify_new_releases.length>0)return Promise.resolve();var s=new Js.a;return s.setAccessToken(K.state.spotify.webapi_token),s.getNewReleases({country:K.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&K.commit(w,s.albums.items)}},Kr={name:"SpotifyPageBrowseNewReleases",mixins:[Na(Jr)],components:{ContentWithHeading:Ms,TabsMusic:Fa,SpotifyListItemAlbum:xr,SpotifyModalDialogAlbum:zr,CoverArtwork:Ta},data:function(){return{show_album_details_modal:!1,selected_album:{}}},computed:{new_releases:function(){return this.$store.state.spotify_new_releases},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Xr=Kr,Zr=Object(R["a"])(Xr,Vr,Qr,!1,null,null,null),tc=Zr.exports,sc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2)],2)],1)},ac=[],ec={load:function(t){if(K.state.spotify_featured_playlists.length>0)return Promise.resolve();var s=new Js.a;s.setAccessToken(K.state.spotify.webapi_token),s.getFeaturedPlaylists({country:K.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&K.commit(x,s.playlists.items)}},ic={name:"SpotifyPageBrowseFeaturedPlaylists",mixins:[Na(ec)],components:{ContentWithHeading:Ms,TabsMusic:Fa,SpotifyListItemPlaylist:Pr,SpotifyModalDialogPlaylist:Hr},data:function(){return{show_playlist_details_modal:!1,selected_playlist:{}}},computed:{featured_playlists:function(){return this.$store.state.spotify_featured_playlists}},methods:{open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},nc=ic,oc=Object(R["a"])(nc,sc,ac,!1,null,null,null),lc=oc.exports,rc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.total)+" albums")]),t._l(t.albums,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset=this.total&&s.complete())},play:function(){this.show_details_modal=!1,X.player_play_uri(this.artist.uri,!0)},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},gc=bc,kc=Object(R["a"])(gc,rc,cc,!1,null,null,null),Cc=kc.exports,wc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.tracks.total)+" tracks")]),t._l(t.album.tracks.items,(function(s,e){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,position:e,album:t.album,context_uri:t.album.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.album},on:{close:function(s){t.show_track_details_modal=!1}}}),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)},xc=[],$c=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.track.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[t._v(t._s(t.track.artists[0].name))])])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},qc=[],Ac={name:"SpotifyListItemTrack",props:["track","position","album","context_uri"],methods:{play:function(){X.player_play_uri(this.context_uri,!1,this.position)}}},Sc=Ac,jc=Object(R["a"])(Sc,$c,qc,!1,null,null,null),Pc=jc.exports,Oc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.name)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artists[0].name)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.duration_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Tc=[],Lc={name:"SpotifyModalDialogTrack",props:["show","track","album"],methods:{play:function(){this.$emit("close"),X.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),X.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),X.queue_add_next(this.track.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})}}},Ec=Lc,Ic=Object(R["a"])(Ec,Oc,Tc,!1,null,null,null),zc=Ic.exports,Dc={load:function(t){var s=new Js.a;return s.setAccessToken(K.state.spotify.webapi_token),s.getAlbum(t.params.album_id)},set:function(t,s){t.album=s}},Rc={name:"PageAlbum",mixins:[Na(Dc)],components:{ContentWithHero:Qi["default"],SpotifyListItemTrack:Pc,SpotifyModalDialogTrack:zc,SpotifyModalDialogAlbum:zr,CoverArtwork:Ta},data:function(){return{album:{artists:[{}],tracks:{}},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},play:function(){this.show_details_modal=!1,X.player_play_uri(this.album.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Nc=Rc,Mc=Object(R["a"])(Nc,wc,xc,!1,null,null,null),Uc=Mc.exports,Hc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.playlist.tracks.total)+" tracks")]),t._l(t.tracks,(function(s,e){return a("spotify-list-item-track",{key:s.track.id,attrs:{track:s.track,album:s.track.album,position:e,context_uri:t.playlist.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s.track)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset=this.total&&s.complete())},play:function(){this.show_details_modal=!1,X.player_play_uri(this.playlist.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Gc=Fc,Yc=Object(R["a"])(Gc,Hc,Wc,!1,null,null,null),Vc=Yc.exports,Qc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)])])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[t._l(t.tracks.items,(function(s){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,album:s.album,position:0,context_uri:s.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"track"===t.query.type?a("infinite-loading",{on:{infinite:t.search_tracks_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.selected_track.album},on:{close:function(s){t.show_track_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[t._l(t.artists.items,(function(s){return a("spotify-list-item-artist",{key:s.id,attrs:{artist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_artist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"artist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_artists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.selected_artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[t._l(t.albums.items,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"album"===t.query.type?a("infinite-loading",{on:{infinite:t.search_albums_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[t._l(t.playlists.items,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"playlist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_playlists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e()],1)},Jc=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])}],Kc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_artist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},Xc=[],Zc={name:"SpotifyListItemArtist",props:["artist"],methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.artist.id})}}},td=Zc,sd=Object(R["a"])(td,Kc,Xc,!1,null,null,null),ad=sd.exports,ed={name:"SpotifyPageSearch",components:{ContentWithHeading:Ms,ContentText:tr,TabsSearch:or,SpotifyListItemTrack:Pc,SpotifyListItemArtist:ad,SpotifyListItemAlbum:xr,SpotifyListItemPlaylist:Pr,SpotifyModalDialogTrack:zc,SpotifyModalDialogArtist:hc,SpotifyModalDialogAlbum:zr,SpotifyModalDialogPlaylist:Hr,InfiniteLoading:vc.a,CoverArtwork:Ta},data:function(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},query:{},search_param:{},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1,selected_album:{},show_artist_details_modal:!1,selected_artist:{},show_playlist_details_modal:!1,selected_playlist:{},validSearchTypes:["track","artist","album","playlist"]}},computed:{recent_searches:function(){return this.$store.state.recent_searches.filter((function(t){return!t.startsWith("query:")}))},show_tracks:function(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button:function(){return this.tracks.total>this.tracks.items.length},show_artists:function(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button:function(){return this.artists.total>this.artists.items.length},show_albums:function(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button:function(){return this.albums.total>this.albums.items.length},show_playlists:function(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button:function(){return this.playlists.total>this.playlists.items.length},is_visible_artwork:function(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{reset:function(){this.tracks={items:[],total:0},this.artists={items:[],total:0},this.albums={items:[],total:0},this.playlists={items:[],total:0}},search:function(){if(this.reset(),!this.query.query||""===this.query.query||this.query.query.startsWith("query:"))return this.search_query="",void this.$refs.search_field.focus();this.search_query=this.query.query,this.search_param.limit=this.query.limit?this.query.limit:50,this.search_param.offset=this.query.offset?this.query.offset:0,this.$store.commit(A,this.query.query),this.search_all()},spotify_search:function(){var t=this;return X.spotify().then((function(s){var a=s.data;t.search_param.market=a.webapi_country;var e=new Js.a;e.setAccessToken(a.webapi_token);var i=t.query.type.split(",").filter((function(s){return t.validSearchTypes.includes(s)}));return e.search(t.query.query,i,t.search_param)}))},search_all:function(){var t=this;this.spotify_search().then((function(s){t.tracks=s.tracks?s.tracks:{items:[],total:0},t.artists=s.artists?s.artists:{items:[],total:0},t.albums=s.albums?s.albums:{items:[],total:0},t.playlists=s.playlists?s.playlists:{items:[],total:0}}))},search_tracks_next:function(t){var s=this;this.spotify_search().then((function(a){s.tracks.items=s.tracks.items.concat(a.tracks.items),s.tracks.total=a.tracks.total,s.search_param.offset+=a.tracks.limit,t.loaded(),s.search_param.offset>=s.tracks.total&&t.complete()}))},search_artists_next:function(t){var s=this;this.spotify_search().then((function(a){s.artists.items=s.artists.items.concat(a.artists.items),s.artists.total=a.artists.total,s.search_param.offset+=a.artists.limit,t.loaded(),s.search_param.offset>=s.artists.total&&t.complete()}))},search_albums_next:function(t){var s=this;this.spotify_search().then((function(a){s.albums.items=s.albums.items.concat(a.albums.items),s.albums.total=a.albums.total,s.search_param.offset+=a.albums.limit,t.loaded(),s.search_param.offset>=s.albums.total&&t.complete()}))},search_playlists_next:function(t){var s=this;this.spotify_search().then((function(a){s.playlists.items=s.playlists.items.concat(a.playlists.items),s.playlists.total=a.playlists.total,s.search_param.offset+=a.playlists.limit,t.loaded(),s.search_param.offset>=s.playlists.total&&t.complete()}))},new_search:function(){this.search_query&&(this.$router.push({path:"/search/spotify",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/spotify",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/spotify",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/spotify",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/spotify",query:{type:"playlist",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_artist_dialog:function(t){this.selected_artist=t,this.show_artist_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}},mounted:function(){this.query=this.$route.query,this.search()},watch:{$route:function(t,s){this.query=t.query,this.search()}}},id=ed,nd=Object(R["a"])(id,Qc,Jc,!1,null,null,null),od=nd.exports,ld=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Navbar items")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" Select the top navigation bar menu items ")]),a("div",{staticClass:"notification is-size-7"},[t._v(" If you select more items than can be shown on your screen then the burger menu will disappear. ")]),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_playlists"}},[a("template",{slot:"label"},[t._v(" Playlists")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_music"}},[a("template",{slot:"label"},[t._v(" Music")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_podcasts"}},[a("template",{slot:"label"},[t._v(" Podcasts")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_audiobooks"}},[a("template",{slot:"label"},[t._v(" Audiobooks")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_radio"}},[a("template",{slot:"label"},[t._v(" Radio")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_files"}},[a("template",{slot:"label"},[t._v(" Files")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_search"}},[a("template",{slot:"label"},[t._v(" Search")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Album lists")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_cover_artwork_in_album_lists"}},[a("template",{slot:"label"},[t._v(" Show cover artwork in album list")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Now playing page")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_composer_now_playing"}},[a("template",{slot:"label"},[t._v(" Show composer")]),a("template",{slot:"info"},[t._v('If enabled the composer of the current playing track is shown on the "now playing page"')])],2),a("settings-textfield",{attrs:{category_name:"webinterface",option_name:"show_composer_for_genre",disabled:!t.settings_option_show_composer_now_playing,placeholder:"Genres"}},[a("template",{slot:"label"},[t._v("Show composer only for listed genres")]),a("template",{slot:"info"},[a("p",{staticClass:"help"},[t._v(' Comma separated list of genres the composer should be displayed on the "now playing page". ')]),a("p",{staticClass:"help"},[t._v(" Leave empty to always show the composer. ")]),a("p",{staticClass:"help"},[t._v(" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to "),a("code",[t._v("classical, soundtrack")]),t._v(' will show the composer for tracks with a genre tag of "Contemporary Classical".'),a("br")])])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Recently added page")])]),a("template",{slot:"content"},[a("settings-intfield",{attrs:{category_name:"webinterface",option_name:"recently_added_limit"}},[a("template",{slot:"label"},[t._v('Limit the number of albums shown on the "Recently Added" page')])],2)],1)],2)],1)},rd=[],cd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/settings/webinterface","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Webinterface")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/remotes-outputs","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Remotes & Outputs")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/artwork","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Artwork")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/online-services","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Online Services")])])])],1)])])])])])},dd=[],ud={name:"TabsSettings",computed:{}},pd=ud,_d=Object(R["a"])(pd,cd,dd,!1,null,null,null),md=_d.exports,hd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"field"},[a("label",{staticClass:"checkbox"},[a("input",{ref:"settings_checkbox",attrs:{type:"checkbox"},domProps:{checked:t.value},on:{change:t.set_update_timer}}),t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])},fd=[],vd={name:"SettingsCheckbox",props:["category_name","option_name"],data:function(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category:function(){var t=this;return this.$store.state.settings.categories.find((function(s){return s.name===t.category_name}))},option:function(){var t=this;return this.category?this.category.options.find((function(s){return s.name===t.option_name})):{}},value:function(){return this.option.value},info:function(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer:function(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";var t=this.$refs.settings_checkbox.checked;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting:function(){var t=this;this.timerId=-1;var s=this.$refs.settings_checkbox.checked;if(s!==this.value){var a={category:this.category.name,name:this.option_name,value:s};X.settings_update(this.category.name,a).then((function(){t.$store.commit(_,a),t.statusUpdate="success"})).catch((function(){t.statusUpdate="error",t.$refs.settings_checkbox.checked=t.value})).finally((function(){t.timerId=window.setTimeout(t.clear_status,t.timerDelay)}))}else this.statusUpdate=""},clear_status:function(){this.statusUpdate=""}}},yd=vd,bd=Object(R["a"])(yd,hd,fd,!1,null,null,null),gd=bd.exports,kd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("fieldset",{attrs:{disabled:t.disabled}},[a("div",{staticClass:"field"},[a("label",{staticClass:"label has-text-weight-normal"},[t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),a("div",{staticClass:"control"},[a("input",{ref:"settings_text",staticClass:"input",attrs:{type:"text",placeholder:t.placeholder},domProps:{value:t.value},on:{input:t.set_update_timer}})]),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])])},Cd=[],wd={name:"SettingsTextfield",props:["category_name","option_name","placeholder","disabled"],data:function(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category:function(){var t=this;return this.$store.state.settings.categories.find((function(s){return s.name===t.category_name}))},option:function(){var t=this;return this.category?this.category.options.find((function(s){return s.name===t.option_name})):{}},value:function(){return this.option.value},info:function(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer:function(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";var t=this.$refs.settings_text.value;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting:function(){var t=this;this.timerId=-1;var s=this.$refs.settings_text.value;if(s!==this.value){var a={category:this.category.name,name:this.option_name,value:s};X.settings_update(this.category.name,a).then((function(){t.$store.commit(_,a),t.statusUpdate="success"})).catch((function(){t.statusUpdate="error",t.$refs.settings_text.value=t.value})).finally((function(){t.timerId=window.setTimeout(t.clear_status,t.timerDelay)}))}else this.statusUpdate=""},clear_status:function(){this.statusUpdate=""}}},xd=wd,$d=Object(R["a"])(xd,kd,Cd,!1,null,null,null),qd=$d.exports,Ad=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("fieldset",{attrs:{disabled:t.disabled}},[a("div",{staticClass:"field"},[a("label",{staticClass:"label has-text-weight-normal"},[t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),a("div",{staticClass:"control"},[a("input",{ref:"settings_number",staticClass:"input",staticStyle:{width:"10em"},attrs:{type:"number",min:"0",placeholder:t.placeholder},domProps:{value:t.value},on:{input:t.set_update_timer}})]),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])])},Sd=[],jd={name:"SettingsIntfield",props:["category_name","option_name","placeholder","disabled"],data:function(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category:function(){var t=this;return this.$store.state.settings.categories.find((function(s){return s.name===t.category_name}))},option:function(){var t=this;return this.category?this.category.options.find((function(s){return s.name===t.option_name})):{}},value:function(){return this.option.value},info:function(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer:function(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";var t=this.$refs.settings_number.value;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting:function(){var t=this;this.timerId=-1;var s=this.$refs.settings_number.value;if(s!==this.value){var a={category:this.category.name,name:this.option_name,value:parseInt(s,10)};X.settings_update(this.category.name,a).then((function(){t.$store.commit(_,a),t.statusUpdate="success"})).catch((function(){t.statusUpdate="error",t.$refs.settings_number.value=t.value})).finally((function(){t.timerId=window.setTimeout(t.clear_status,t.timerDelay)}))}else this.statusUpdate=""},clear_status:function(){this.statusUpdate=""}}},Pd=jd,Od=Object(R["a"])(Pd,Ad,Sd,!1,null,null,null),Td=Od.exports,Ld={name:"SettingsPageWebinterface",components:{ContentWithHeading:Ms,TabsSettings:md,SettingsCheckbox:gd,SettingsTextfield:qd,SettingsIntfield:Td},computed:{settings_option_show_composer_now_playing:function(){return this.$store.getters.settings_option_show_composer_now_playing}}},Ed=Ld,Id=Object(R["a"])(Ed,ld,rd,!1,null,null,null),zd=Id.exports,Dd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Artwork")])]),a("template",{slot:"content"},[a("div",{staticClass:"content"},[a("p",[t._v(" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. ")]),a("p",[t._v("In addition to that, you can enable fetching artwork from the following artwork providers:")])]),t.spotify.libspotify_logged_in?a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_spotify"}},[a("template",{slot:"label"},[t._v(" Spotify")])],2):t._e(),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_discogs"}},[a("template",{slot:"label"},[t._v(" Discogs ("),a("a",{attrs:{href:"https://www.discogs.com/"}},[t._v("https://www.discogs.com/")]),t._v(")")])],2),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_coverartarchive"}},[a("template",{slot:"label"},[t._v(" Cover Art Archive ("),a("a",{attrs:{href:"https://coverartarchive.org/"}},[t._v("https://coverartarchive.org/")]),t._v(")")])],2)],1)],2)],1)},Rd=[],Nd={name:"SettingsPageArtwork",components:{ContentWithHeading:Ms,TabsSettings:md,SettingsCheckbox:gd},computed:{spotify:function(){return this.$store.state.spotify}}},Md=Nd,Ud=Object(R["a"])(Md,Dd,Rd,!1,null,null,null),Hd=Ud.exports,Wd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Spotify")])]),a("template",{slot:"content"},[t.spotify.libspotify_installed?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was either built without support for Spotify or libspotify is not installed.")])]),t.spotify.libspotify_installed?a("div",[a("div",{staticClass:"notification is-size-7"},[a("b",[t._v("You must have a Spotify premium account")]),t._v(". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. ")]),a("div",[a("p",{staticClass:"content"},[a("b",[t._v("libspotify")]),t._v(" - Login with your Spotify username and password ")]),t.spotify.libspotify_logged_in?a("p",{staticClass:"fd-has-margin-bottom"},[t._v(" Logged in as "),a("b",[a("code",[t._v(t._s(t.spotify.libspotify_user))])])]):t._e(),t.spotify.libspotify_installed&&!t.spotify.libspotify_logged_in?a("form",{on:{submit:function(s){return s.preventDefault(),t.login_libspotify(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.user,expression:"libspotify.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.libspotify.user},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.password,expression:"libspotify.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.libspotify.password},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info"},[t._v("Login")])])])]):t._e(),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.error))]),a("p",{staticClass:"help"},[t._v(" libspotify enables forked-daapd to play Spotify tracks. ")]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. ")])]),a("div",{staticClass:"fd-has-margin-top"},[a("p",{staticClass:"content"},[a("b",[t._v("Spotify Web API")]),t._v(" - Grant access to the Spotify Web API ")]),t.spotify.webapi_token_valid?a("p",[t._v(" Access granted for "),a("b",[a("code",[t._v(t._s(t.spotify.webapi_user))])])]):t._e(),t.spotify_missing_scope.length>0?a("p",{staticClass:"help is-danger"},[t._v(" Please reauthorize Web API access to grant forked-daapd the following additional access rights: "),a("b",[a("code",[t._v(t._s(t._f("join")(t.spotify_missing_scope)))])])]):t._e(),a("div",{staticClass:"field fd-has-margin-top "},[a("div",{staticClass:"control"},[a("a",{staticClass:"button",class:{"is-info":!t.spotify.webapi_token_valid||t.spotify_missing_scope.length>0},attrs:{href:t.spotify.oauth_uri}},[t._v("Authorize Web API access")])])]),a("p",{staticClass:"help"},[t._v(" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are "),a("code",[t._v(t._s(t._f("join")(t.spotify_required_scope)))]),t._v(". ")])])]):t._e()])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Last.fm")])]),a("template",{slot:"content"},[t.lastfm.enabled?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was built without support for Last.fm.")])]),t.lastfm.enabled?a("div",[a("p",{staticClass:"content"},[a("b",[t._v("Last.fm")]),t._v(" - Login with your Last.fm username and password to enable scrobbling ")]),t.lastfm.scrobbling_enabled?a("div",[a("a",{staticClass:"button",on:{click:t.logoutLastfm}},[t._v("Stop scrobbling")])]):t._e(),t.lastfm.scrobbling_enabled?t._e():a("div",[a("form",{on:{submit:function(s){return s.preventDefault(),t.login_lastfm(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.user,expression:"lastfm_login.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.lastfm_login.user},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.password,expression:"lastfm_login.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.lastfm_login.password},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Login")])])]),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.error))]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. ")])])])]):t._e()])],2)],1)},Bd=[],Fd={name:"SettingsPageOnlineServices",components:{ContentWithHeading:Ms,TabsSettings:md},data:function(){return{libspotify:{user:"",password:"",errors:{user:"",password:"",error:""}},lastfm_login:{user:"",password:"",errors:{user:"",password:"",error:""}}}},computed:{lastfm:function(){return this.$store.state.lastfm},spotify:function(){return this.$store.state.spotify},spotify_required_scope:function(){return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" "):[]},spotify_missing_scope:function(){var t=this;return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" ").filter((function(s){return t.spotify.webapi_granted_scope.indexOf(s)<0})):[]}},methods:{login_libspotify:function(){var t=this;X.spotify_login(this.libspotify).then((function(s){t.libspotify.user="",t.libspotify.password="",t.libspotify.errors.user="",t.libspotify.errors.password="",t.libspotify.errors.error="",s.data.success||(t.libspotify.errors.user=s.data.errors.user,t.libspotify.errors.password=s.data.errors.password,t.libspotify.errors.error=s.data.errors.error)}))},login_lastfm:function(){var t=this;X.lastfm_login(this.lastfm_login).then((function(s){t.lastfm_login.user="",t.lastfm_login.password="",t.lastfm_login.errors.user="",t.lastfm_login.errors.password="",t.lastfm_login.errors.error="",s.data.success||(t.lastfm_login.errors.user=s.data.errors.user,t.lastfm_login.errors.password=s.data.errors.password,t.lastfm_login.errors.error=s.data.errors.error)}))},logoutLastfm:function(){X.lastfm_logout()}},filters:{join:function(t){return t.join(", ")}}},Gd=Fd,Yd=Object(R["a"])(Gd,Wd,Bd,!1,null,null,null),Vd=Yd.exports,Qd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Remote Pairing")])]),a("template",{slot:"content"},[t.pairing.active?a("div",{staticClass:"notification"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label has-text-weight-normal"},[t._v(" Remote pairing request from "),a("b",[t._v(t._s(t.pairing.remote))])]),a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Send")])])])])]):t._e(),t.pairing.active?t._e():a("div",{staticClass:"content"},[a("p",[t._v("No active pairing request.")])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Device Verification")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. ")]),t._l(t.outputs,(function(s){return a("div",{key:s.id},[a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("label",{staticClass:"checkbox"},[a("input",{directives:[{name:"model",rawName:"v-model",value:s.selected,expression:"output.selected"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(s.selected)?t._i(s.selected,null)>-1:s.selected},on:{change:[function(a){var e=s.selected,i=a.target,n=!!i.checked;if(Array.isArray(e)){var o=null,l=t._i(e,o);i.checked?l<0&&t.$set(s,"selected",e.concat([o])):l>-1&&t.$set(s,"selected",e.slice(0,l).concat(e.slice(l+1)))}else t.$set(s,"selected",n)},function(a){return t.output_toggle(s.id)}]}}),t._v(" "+t._s(s.name)+" ")])])]),s.needs_auth_key?a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(a){return a.preventDefault(),t.kickoff_verification(s.id)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.verification_req.pin,expression:"verification_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter verification code"},domProps:{value:t.verification_req.pin},on:{input:function(s){s.target.composing||t.$set(t.verification_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Verify")])])])]):t._e()])}))],2)],2)],1)},Jd=[],Kd={name:"SettingsPageRemotesOutputs",components:{ContentWithHeading:Ms,TabsSettings:md},data:function(){return{pairing_req:{pin:""},verification_req:{pin:""}}},computed:{pairing:function(){return this.$store.state.pairing},outputs:function(){return this.$store.state.outputs}},methods:{kickoff_pairing:function(){X.pairing_kickoff(this.pairing_req)},output_toggle:function(t){X.output_toggle(t)},kickoff_verification:function(t){X.output_update(t,this.verification_req)}},filters:{}},Xd=Kd,Zd=Object(R["a"])(Xd,Qd,Jd,!1,null,null,null),tu=Zd.exports;i["a"].use(Ts["a"]);var su=new Ts["a"]({routes:[{path:"/",name:"PageQueue",component:ya},{path:"/about",name:"About",component:fr},{path:"/now-playing",name:"Now playing",component:za},{path:"/music",redirect:"/music/browse"},{path:"/music/browse",name:"Browse",component:Ee,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_added",name:"Browse Recently Added",component:Ue,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_played",name:"Browse Recently Played",component:Ve,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/artists",name:"Artists",component:Ti,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/artists/:artist_id",name:"Artist",component:Ni,meta:{show_progress:!0,has_index:!0}},{path:"/music/artists/:artist_id/tracks",name:"Tracks",component:Un,meta:{show_progress:!0,has_index:!0}},{path:"/music/albums",name:"Albums",component:Gi,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/albums/:album_id",name:"Album",component:tn,meta:{show_progress:!0}},{path:"/music/genres",name:"Genres",component:gn,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/genres/:genre",name:"Genre",component:An,meta:{show_progress:!0,has_index:!0}},{path:"/music/genres/:genre/tracks",name:"GenreTracks",component:En,meta:{show_progress:!0,has_index:!0}},{path:"/podcasts",name:"Podcasts",component:to,meta:{show_progress:!0}},{path:"/podcasts/:album_id",name:"Podcast",component:lo,meta:{show_progress:!0}},{path:"/audiobooks",redirect:"/audiobooks/artists"},{path:"/audiobooks/artists",name:"AudiobooksArtists",component:So,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/artists/:artist_id",name:"AudiobooksArtist",component:Io,meta:{show_progress:!0}},{path:"/audiobooks/albums",name:"AudiobooksAlbums",component:ko,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/:album_id",name:"Audiobook",component:Ho,meta:{show_progress:!0}},{path:"/radio",name:"Radio",component:Gl,meta:{show_progress:!0}},{path:"/files",name:"Files",component:Nl,meta:{show_progress:!0}},{path:"/playlists",redirect:"/playlists/0"},{path:"/playlists/:playlist_id",name:"Playlists",component:_l,meta:{show_progress:!0}},{path:"/playlists/:playlist_id/tracks",name:"Playlist",component:gl,meta:{show_progress:!0}},{path:"/search",redirect:"/search/library"},{path:"/search/library",name:"Search Library",component:dr},{path:"/music/spotify",name:"Spotify",component:Yr,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/new-releases",name:"Spotify Browse New Releases",component:tc,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/featured-playlists",name:"Spotify Browse Featured Playlists",component:lc,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/artists/:artist_id",name:"Spotify Artist",component:Cc,meta:{show_progress:!0}},{path:"/music/spotify/albums/:album_id",name:"Spotify Album",component:Uc,meta:{show_progress:!0}},{path:"/music/spotify/playlists/:playlist_id",name:"Spotify Playlist",component:Vc,meta:{show_progress:!0}},{path:"/search/spotify",name:"Spotify Search",component:od},{path:"/settings/webinterface",name:"Settings Webinterface",component:zd},{path:"/settings/artwork",name:"Settings Artwork",component:Hd},{path:"/settings/online-services",name:"Settings Online Services",component:Vd},{path:"/settings/remotes-outputs",name:"Settings Remotes Outputs",component:tu}],scrollBehavior:function(t,s,a){return a?new Promise((function(t,s){setTimeout((function(){t(a)}),10)})):t.path===s.path&&t.hash?{selector:t.hash,offset:{x:0,y:120}}:t.hash?new Promise((function(s,a){setTimeout((function(){s({selector:t.hash,offset:{x:0,y:120}})}),10)})):t.meta.has_index?new Promise((function(s,a){setTimeout((function(){t.meta.has_tabs?s({selector:"#top",offset:{x:0,y:140}}):s({selector:"#top",offset:{x:0,y:100}})}),10)})):{x:0,y:0}}});su.beforeEach((function(t,s,a){return K.state.show_burger_menu?(K.commit(E,!1),void a(!1)):K.state.show_player_menu?(K.commit(I,!1),void a(!1)):void a(!0)}));var au=a("4623"),eu=a.n(au);eu()(As.a),i["a"].filter("duration",(function(t,s){return s?As.a.duration(t).format(s):As.a.duration(t).format("hh:*mm:ss")})),i["a"].filter("time",(function(t,s){return s?As()(t).format(s):As()(t).format()})),i["a"].filter("timeFromNow",(function(t,s){return As()(t).fromNow(s)})),i["a"].filter("number",(function(t){return t.toLocaleString()})),i["a"].filter("channels",(function(t){return 1===t?"mono":2===t?"stereo":t?t+" channels":""}));var iu=a("26b9"),nu=a.n(iu);i["a"].use(nu.a,{color:"hsl(204, 86%, 53%)",failedColor:"red",height:"1px"});var ou=a("c28b"),lu=a.n(ou),ru=a("3659"),cu=a.n(ru),du=a("85fe"),uu=a("f13c"),pu=a.n(uu);a("de2f"),a("2760"),a("a848");i["a"].config.productionTip=!1,i["a"].use(lu.a),i["a"].use(cu.a),i["a"].use(du["a"]),i["a"].use(pu.a),new i["a"]({el:"#app",router:su,store:K,components:{App:Os},template:""})},a848:function(t,s,a){},cf45:function(t,s,a){"use strict";a("53c4")},e6a4:function(t,s){},fd4d:function(t,s,a){"use strict";var e=a("2c75"),i=a("4178"),n=a("2877"),o=Object(n["a"])(i["default"],e["a"],e["b"],!1,null,null,null);s["default"]=o.exports}}); //# sourceMappingURL=app-legacy.js.map \ No newline at end of file diff --git a/htdocs/player/js/app-legacy.js.map b/htdocs/player/js/app-legacy.js.map index e1c294ab..708c3c2e 100644 --- a/htdocs/player/js/app-legacy.js.map +++ b/htdocs/player/js/app-legacy.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/templates/ContentWithHero.vue?4028","webpack:///./src/templates/ContentWithHero.vue?0763","webpack:///./node_modules/moment/locale sync ^\\.\\/.*$","webpack:///./src/App.vue?4cd3","webpack:///./src/components/NavbarTop.vue?de51","webpack:///./src/components/NavbarItemLink.vue?c45b","webpack:///./src/store/mutation_types.js","webpack:///src/components/NavbarItemLink.vue","webpack:///./src/components/NavbarItemLink.vue?7266","webpack:///./src/components/NavbarItemLink.vue","webpack:///./src/components/ModalDialog.vue?5ba1","webpack:///src/components/ModalDialog.vue","webpack:///./src/components/ModalDialog.vue?9194","webpack:///./src/components/ModalDialog.vue","webpack:///./src/store/index.js","webpack:///./src/webapi/index.js","webpack:///src/components/NavbarTop.vue","webpack:///./src/components/NavbarTop.vue?2942","webpack:///./src/components/NavbarTop.vue","webpack:///./src/components/NavbarBottom.vue?c3c1","webpack:///./src/audio.js","webpack:///./src/components/NavbarItemOutput.vue?7298","webpack:///src/components/NavbarItemOutput.vue","webpack:///./src/components/NavbarItemOutput.vue?f284","webpack:///./src/components/NavbarItemOutput.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?fc71","webpack:///src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?7730","webpack:///./src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonNext.vue?c7f9","webpack:///src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonNext.vue?fbd2","webpack:///./src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonPrevious.vue?cace","webpack:///src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonPrevious.vue?7ab3","webpack:///./src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonShuffle.vue?c725","webpack:///src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonShuffle.vue?f823","webpack:///./src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonConsume.vue?0dc5","webpack:///src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonConsume.vue?f19d","webpack:///./src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonRepeat.vue?7f58","webpack:///src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonRepeat.vue?51a7","webpack:///./src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?f8f5","webpack:///src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?de1a","webpack:///./src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?f210","webpack:///src/components/PlayerButtonSeekForward.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?1252","webpack:///./src/components/PlayerButtonSeekForward.vue","webpack:///src/components/NavbarBottom.vue","webpack:///./src/components/NavbarBottom.vue?5719","webpack:///./src/components/NavbarBottom.vue","webpack:///./src/components/Notifications.vue?cba3","webpack:///src/components/Notifications.vue","webpack:///./src/components/Notifications.vue?7a53","webpack:///./src/components/Notifications.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?714a","webpack:///src/components/ModalDialogRemotePairing.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?c5a3","webpack:///./src/components/ModalDialogRemotePairing.vue","webpack:///src/App.vue","webpack:///./src/App.vue?1160","webpack:///./src/App.vue","webpack:///./src/pages/PageQueue.vue?f24e","webpack:///./src/templates/ContentWithHeading.vue?668c","webpack:///src/templates/ContentWithHeading.vue","webpack:///./src/templates/ContentWithHeading.vue?9dc6","webpack:///./src/templates/ContentWithHeading.vue","webpack:///./src/components/ListItemQueueItem.vue?a6e0","webpack:///src/components/ListItemQueueItem.vue","webpack:///./src/components/ListItemQueueItem.vue?ce06","webpack:///./src/components/ListItemQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?3afc","webpack:///src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?f77a","webpack:///./src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?add0","webpack:///src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?1d31","webpack:///./src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?43dc","webpack:///src/components/ModalDialogPlaylistSave.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?2442","webpack:///./src/components/ModalDialogPlaylistSave.vue","webpack:///src/pages/PageQueue.vue","webpack:///./src/pages/PageQueue.vue?adc0","webpack:///./src/pages/PageQueue.vue","webpack:///./src/pages/PageNowPlaying.vue?799b","webpack:///./src/components/CoverArtwork.vue?761c","webpack:///./src/lib/SVGRenderer.js","webpack:///src/components/CoverArtwork.vue","webpack:///./src/components/CoverArtwork.vue?5f40","webpack:///./src/components/CoverArtwork.vue","webpack:///src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageNowPlaying.vue?5a32","webpack:///./src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageBrowse.vue?1373","webpack:///./src/pages/mixin.js","webpack:///./src/components/TabsMusic.vue?40ea","webpack:///src/components/TabsMusic.vue","webpack:///./src/components/TabsMusic.vue?2d68","webpack:///./src/components/TabsMusic.vue","webpack:///./src/components/ListAlbums.vue?929c","webpack:///./src/components/ListItemAlbum.vue?dd10","webpack:///src/components/ListItemAlbum.vue","webpack:///./src/components/ListItemAlbum.vue?b729","webpack:///./src/components/ListItemAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?1c56","webpack:///src/components/ModalDialogAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?f2cf","webpack:///./src/components/ModalDialogAlbum.vue","webpack:///./src/lib/Albums.js","webpack:///src/components/ListAlbums.vue","webpack:///./src/components/ListAlbums.vue?f117","webpack:///./src/components/ListAlbums.vue","webpack:///./src/components/ListTracks.vue?bff4","webpack:///./src/components/ListItemTrack.vue?2efe","webpack:///src/components/ListItemTrack.vue","webpack:///./src/components/ListItemTrack.vue?c143","webpack:///./src/components/ListItemTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?b7c4","webpack:///src/components/ModalDialogTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?b9e3","webpack:///./src/components/ModalDialogTrack.vue","webpack:///src/components/ListTracks.vue","webpack:///./src/components/ListTracks.vue?1a43","webpack:///./src/components/ListTracks.vue","webpack:///src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowse.vue?ac81","webpack:///./src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?09db","webpack:///src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?11a8","webpack:///./src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?d88b","webpack:///src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?b76d","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageArtists.vue?6490","webpack:///./src/components/IndexButtonList.vue?6da6","webpack:///src/components/IndexButtonList.vue","webpack:///./src/components/IndexButtonList.vue?fb40","webpack:///./src/components/IndexButtonList.vue","webpack:///./src/components/ListArtists.vue?847f","webpack:///./src/components/ListItemArtist.vue?f16f","webpack:///src/components/ListItemArtist.vue","webpack:///./src/components/ListItemArtist.vue?e871","webpack:///./src/components/ListItemArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?53d4","webpack:///src/components/ModalDialogArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?3f0b","webpack:///./src/components/ModalDialogArtist.vue","webpack:///./src/lib/Artists.js","webpack:///src/components/ListArtists.vue","webpack:///./src/components/ListArtists.vue?f6f9","webpack:///./src/components/ListArtists.vue","webpack:///./src/components/DropdownMenu.vue?0bb4","webpack:///src/components/DropdownMenu.vue","webpack:///./src/components/DropdownMenu.vue?183a","webpack:///./src/components/DropdownMenu.vue","webpack:///src/pages/PageArtists.vue","webpack:///./src/pages/PageArtists.vue?06ce","webpack:///./src/pages/PageArtists.vue","webpack:///./src/pages/PageArtist.vue?e48c","webpack:///src/pages/PageArtist.vue","webpack:///./src/pages/PageArtist.vue?54da","webpack:///./src/pages/PageArtist.vue","webpack:///./src/pages/PageAlbums.vue?ef39","webpack:///src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbums.vue?dd41","webpack:///./src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbum.vue?18f1","webpack:///src/pages/PageAlbum.vue","webpack:///./src/pages/PageAlbum.vue?07be","webpack:///./src/pages/PageAlbum.vue","webpack:///./src/pages/PageGenres.vue?fa46","webpack:///./src/components/ListItemGenre.vue?6932","webpack:///src/components/ListItemGenre.vue","webpack:///./src/components/ListItemGenre.vue?50b2","webpack:///./src/components/ListItemGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?a9a8","webpack:///src/components/ModalDialogGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?0658","webpack:///./src/components/ModalDialogGenre.vue","webpack:///src/pages/PageGenres.vue","webpack:///./src/pages/PageGenres.vue?9722","webpack:///./src/pages/PageGenres.vue","webpack:///./src/pages/PageGenre.vue?acc7","webpack:///src/pages/PageGenre.vue","webpack:///./src/pages/PageGenre.vue?4090","webpack:///./src/pages/PageGenre.vue","webpack:///./src/pages/PageGenreTracks.vue?1aa9","webpack:///src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageGenreTracks.vue?0317","webpack:///./src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?2ab7","webpack:///src/pages/PageArtistTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?7e28","webpack:///./src/pages/PageArtistTracks.vue","webpack:///./src/pages/PagePodcasts.vue?dee5","webpack:///./src/components/ModalDialogAddRss.vue?a4d8","webpack:///src/components/ModalDialogAddRss.vue","webpack:///./src/components/ModalDialogAddRss.vue?3bb2","webpack:///./src/components/ModalDialogAddRss.vue","webpack:///src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcasts.vue?ec36","webpack:///./src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcast.vue?aef1","webpack:///src/pages/PagePodcast.vue","webpack:///./src/pages/PagePodcast.vue?7353","webpack:///./src/pages/PagePodcast.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?bd14","webpack:///./src/components/TabsAudiobooks.vue?023a","webpack:///src/components/TabsAudiobooks.vue","webpack:///./src/components/TabsAudiobooks.vue?b63b","webpack:///./src/components/TabsAudiobooks.vue","webpack:///src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?5019","webpack:///./src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?bdc7","webpack:///src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?35bb","webpack:///./src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?64b2","webpack:///src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?2426","webpack:///./src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?fc45","webpack:///src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?49ae","webpack:///./src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PagePlaylists.vue?3525","webpack:///./src/components/ListPlaylists.vue?5821","webpack:///./src/components/ListItemPlaylist.vue?bf8b","webpack:///src/components/ListItemPlaylist.vue","webpack:///./src/components/ListItemPlaylist.vue?5b1a","webpack:///./src/components/ListItemPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?d8c7","webpack:///src/components/ModalDialogPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?8ac7","webpack:///./src/components/ModalDialogPlaylist.vue","webpack:///src/components/ListPlaylists.vue","webpack:///./src/components/ListPlaylists.vue?d5a9","webpack:///./src/components/ListPlaylists.vue","webpack:///src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylists.vue?5936","webpack:///./src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylist.vue?56d6","webpack:///src/pages/PagePlaylist.vue","webpack:///./src/pages/PagePlaylist.vue?f646","webpack:///./src/pages/PagePlaylist.vue","webpack:///./src/pages/PageFiles.vue?8429","webpack:///./src/components/ListItemDirectory.vue?871c","webpack:///src/components/ListItemDirectory.vue","webpack:///./src/components/ListItemDirectory.vue?7c5d","webpack:///./src/components/ListItemDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?114d","webpack:///src/components/ModalDialogDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?cef6","webpack:///./src/components/ModalDialogDirectory.vue","webpack:///src/pages/PageFiles.vue","webpack:///./src/pages/PageFiles.vue?c791","webpack:///./src/pages/PageFiles.vue","webpack:///./src/pages/PageRadioStreams.vue?89c3","webpack:///src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageRadioStreams.vue?16e0","webpack:///./src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageSearch.vue?1bde","webpack:///./src/templates/ContentText.vue?c7ba","webpack:///src/templates/ContentText.vue","webpack:///./src/templates/ContentText.vue?bdf7","webpack:///./src/templates/ContentText.vue","webpack:///./src/components/TabsSearch.vue?66c5","webpack:///src/components/TabsSearch.vue","webpack:///./src/components/TabsSearch.vue?6aa8","webpack:///./src/components/TabsSearch.vue","webpack:///src/pages/PageSearch.vue","webpack:///./src/pages/PageSearch.vue?3d2a","webpack:///./src/pages/PageSearch.vue","webpack:///./src/pages/PageAbout.vue?f2d3","webpack:///src/pages/PageAbout.vue","webpack:///./src/pages/PageAbout.vue?4563","webpack:///./src/pages/PageAbout.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?d50e","webpack:///./src/components/SpotifyListItemAlbum.vue?a03a","webpack:///src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemAlbum.vue?cf43","webpack:///./src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?7b43","webpack:///src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?308c","webpack:///./src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?c353","webpack:///src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?7978","webpack:///./src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?ceed","webpack:///src/components/SpotifyModalDialogPlaylist.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?3b0b","webpack:///./src/components/SpotifyModalDialogPlaylist.vue","webpack:///src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?0c73","webpack:///./src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?52c5","webpack:///src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?d8c2","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?aa20","webpack:///src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?a73a","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageArtist.vue?d1c4","webpack:///./src/components/SpotifyModalDialogArtist.vue?ec63","webpack:///src/components/SpotifyModalDialogArtist.vue","webpack:///./src/components/SpotifyModalDialogArtist.vue?62f6","webpack:///./src/components/SpotifyModalDialogArtist.vue","webpack:///src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageArtist.vue?beba","webpack:///./src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?3600","webpack:///./src/components/SpotifyListItemTrack.vue?c4fc","webpack:///src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyListItemTrack.vue?d9dc","webpack:///./src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?c6ae","webpack:///src/components/SpotifyModalDialogTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?60d1","webpack:///./src/components/SpotifyModalDialogTrack.vue","webpack:///src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?af1e","webpack:///./src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?0611","webpack:///src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?4d63","webpack:///./src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPageSearch.vue?598b","webpack:///./src/components/SpotifyListItemArtist.vue?6e92","webpack:///src/components/SpotifyListItemArtist.vue","webpack:///./src/components/SpotifyListItemArtist.vue?afa1","webpack:///./src/components/SpotifyListItemArtist.vue","webpack:///src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SpotifyPageSearch.vue?f792","webpack:///./src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?32f4","webpack:///./src/components/TabsSettings.vue?b72a","webpack:///src/components/TabsSettings.vue","webpack:///./src/components/TabsSettings.vue?e341","webpack:///./src/components/TabsSettings.vue","webpack:///./src/components/SettingsCheckbox.vue?f680","webpack:///src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsCheckbox.vue?4dd0","webpack:///./src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsTextfield.vue?a254","webpack:///src/components/SettingsTextfield.vue","webpack:///./src/components/SettingsTextfield.vue?aae5","webpack:///./src/components/SettingsTextfield.vue","webpack:///src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?b41a","webpack:///./src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageArtwork.vue?9535","webpack:///src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageArtwork.vue?4d58","webpack:///./src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?60b0","webpack:///src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?e878","webpack:///./src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?dabe","webpack:///src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?69f8","webpack:///./src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/router/index.js","webpack:///./src/filter/index.js","webpack:///./src/progress/index.js","webpack:///./src/main.js","webpack:///./src/components/Notifications.vue?838a","webpack:///./src/templates/ContentWithHero.vue"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","render","_vm","this","_h","$createElement","_c","_self","staticClass","staticStyle","_t","staticRenderFns","map","webpackContext","req","id","webpackContextResolve","e","Error","code","keys","resolve","attrs","directives","rawName","expression","pairing_active","on","$event","show_burger_menu","show_player_menu","style","_e","class","show_settings_menu","on_click_outside_settings","_m","_v","stopPropagation","preventDefault","show_update_library","library","updating","update_library","slot","domProps","Array","isArray","rescan_metadata","_i","$$a","$$el","target","$$c","checked","$$v","$$i","concat","is_active","full_path","open_link","UPDATE_CONFIG","UPDATE_SETTINGS","UPDATE_SETTINGS_OPTION","UPDATE_LIBRARY_STATS","UPDATE_LIBRARY_AUDIOBOOKS_COUNT","UPDATE_LIBRARY_PODCASTS_COUNT","UPDATE_OUTPUTS","UPDATE_PLAYER_STATUS","UPDATE_QUEUE","UPDATE_LASTFM","UPDATE_SPOTIFY","UPDATE_PAIRING","SPOTIFY_NEW_RELEASES","SPOTIFY_FEATURED_PLAYLISTS","ADD_NOTIFICATION","DELETE_NOTIFICATION","ADD_RECENT_SEARCH","HIDE_SINGLES","HIDE_SPOTIFY","ARTISTS_SORT","ARTIST_ALBUMS_SORT","ALBUMS_SORT","SHOW_ONLY_NEXT_ITEMS","SHOW_BURGER_MENU","SHOW_PLAYER_MENU","props","to","String","exact","Boolean","computed","$route","path","startsWith","$store","state","set","commit","methods","$router","resolved","href","component","$emit","_s","title","close_action","delete_action","ok_action","Vue","use","Vuex","Store","config","websocket_port","version","buildoptions","settings","categories","artists","albums","songs","db_playtime","audiobooks_count","podcasts_count","outputs","player","repeat","consume","shuffle","volume","item_id","item_length_ms","item_progress_ms","queue","count","items","lastfm","spotify","pairing","spotify_new_releases","spotify_featured_playlists","notifications","next_id","list","recent_searches","hide_singles","hide_spotify","artists_sort","artist_albums_sort","albums_sort","show_only_next_items","getters","now_playing","item","find","undefined","settings_webinterface","elem","settings_option_show_composer_now_playing","option","options","settings_option_show_composer_for_genre","settings_category","categoryName","settings_option","optionName","category","mutations","types","settingCategory","settingOption","libraryStats","playerStatus","newReleases","featuredPlaylists","notification","topic","index","findIndex","indexOf","query","pop","hideSingles","hideSpotify","sort","showOnlyNextItems","showBurgerMenu","showPlayerMenu","actions","add_notification","newNotification","type","text","timeout","setTimeout","axios","interceptors","response","error","request","status","responseURL","store","dispatch","statusText","Promise","reject","settings_update","put","library_stats","library_update","library_rescan","library_count","queue_clear","queue_remove","itemId","delete","queue_move","newPosition","queue_add","uri","post","then","queue_add_next","position","queue_expression_add","params","queue_expression_add_next","queue_save_playlist","player_status","player_play_uri","uris","clear","playback","playback_from_position","player_play_expression","player_play","player_playpos","player_playid","player_pause","player_stop","player_next","player_previous","player_shuffle","newState","player_consume","player_repeat","newRepeatMode","player_volume","player_output_volume","outputId","outputVolume","player_seek_to_pos","player_seek","seekMs","output_update","output","output_toggle","library_artists","media_kind","library_artist","artistId","library_artist_albums","library_albums","library_album","albumId","library_album_tracks","filter","limit","offset","library_album_track_update","attributes","library_genres","library_genre","genre","genreParams","library_genre_tracks","library_radio_streams","library_artist_tracks","artist","artistParams","library_podcasts_new_episodes","episodesParams","library_podcast_episodes","library_add","url","library_playlist_delete","playlistId","library_playlists","library_playlist_folder","library_playlist","library_playlist_tracks","library_track","trackId","library_track_playlists","library_track_update","library_files","directory","filesParams","search","searchParams","spotify_login","credentials","lastfm_login","lastfm_logout","pairing_kickoff","pairingReq","artwork_url_append_size_params","artworkUrl","maxwidth","maxheight","includes","components","is_visible_playlists","is_visible_music","is_visible_podcasts","is_visible_audiobooks","is_visible_radio","is_visible_files","is_visible_search","audiobooks","podcasts","spotify_enabled","webapi_token_valid","zindex","webapi","watch","is_now_playing_page","data_kind","album","toggle_mute_volume","set_volume","_l","loading","playing","togglePlay","stream_volume","set_stream_volume","_audio","Audio","_context","_source","_gain","setupAudio","AudioContext","webkitAudioContext","createMediaElementSource","createGain","connect","destination","addEventListener","play","setVolume","parseFloat","gain","playSource","source","stopAudio","resume","src","Date","now","crossOrigin","load","pause","stop","close","selected","set_enabled","type_class","play_next","newVolume","values","disabled","toggle_play_pause","icon_style","is_playing","is_pause_allowed","show_disabled_message","play_previous","is_shuffle","toggle_shuffle_mode","is_consume","toggle_consume_mode","is_repeat_off","toggle_repeat_mode","is_repeat_all","is_repeat_single","seek","is_stopped","visible","seek_ms","NavbarItemLink","NavbarItemOutput","RangeSlider","PlayerButtonPlayPause","PlayerButtonNext","PlayerButtonPrevious","PlayerButtonShuffle","PlayerButtonConsume","PlayerButtonRepeat","PlayerButtonSeekForward","PlayerButtonSeekBack","old_volume","show_outputs_menu","show_desktop_outputs_menu","on_click_outside_outputs","a","closeAudio","playChannel","mounted","destroyed","remove","kickoff_pairing","remote","pairing_req","ref","composing","$set","show","template","token_timer_id","reconnect_attempts","created","$Progress","start","beforeEach","meta","show_progress","progress","next","afterEach","document","library_name","open_ws","protocol","location","wsUrl","hostname","vm","socket","onopen","send","JSON","stringify","update_outputs","update_player_status","update_library_stats","update_settings","update_queue","update_spotify","update_lastfm","update_pairing","onclose","onerror","onmessage","parse","notify","clearTimeout","webapi_token_expires_in","webapi_token","update_is_clipped","querySelector","classList","add","update_show_next_items","open_add_stream_dialog","edit_mode","queue_items","save_dialog","move_item","model","callback","current_position","open_dialog","show_details_modal","selected_item","show_url_modal","show_pls_save_modal","$slots","options_visible","scroll_to_content","scroll_to_top","observer_options","visibilityChanged","intersection","rootMargin","threshold","scrollTo","has_tabs","$scrollTo","isVisible","is_next","open_album","open_album_artist","album_artist","composer","year","open_genre","track_number","disc_number","_f","length_ms","open_spotify_artist","open_spotify_album","samplerate","channels","bitrate","spotify_track","spotifyApi","setAccessToken","getTrack","lastIndexOf","add_stream","save","playlist_name","is_queue_save_allowed","allow_modifying_stored_playlists","default_playlist_directory","nowPlaying","oldPosition","oldIndex","newIndex","artwork_url","artwork_url_with_size","dataURI","SVGRenderer","svg","width","height","textColor","fontFamily","fontSize","fontWeight","backgroundColor","caption","encodeURIComponent","font_family","font_size","font_weight","alt_text","substring","background_color","is_background_light","luma","text_color","rendererParams","interval_id","tick","catch","setInterval","recently_added","open_browse","recently_played","LoadDataBeforeEnterMixin","dataObject","beforeRouteEnter","from","beforeRouteUpdate","idx","grouped","selected_album","open_remove_podcast_dialog","show_remove_podcast_modal","remove_podcast","rss_playlist_to_remove","name_sort","charAt","toUpperCase","listeners","click","date_released","media_kind_resolved","mark_played","open_artist","track_count","time_added","artwork_visible","artwork_loaded","artwork_error","Albums","group","sortedAndFiltered","indexList","init","createSortedAndFilteredList","createGroupedList","createIndexList","Set","getAlbumIndex","albumsSorted","hideOther","isAlbumVisible","b","localeCompare","reduce","is_visible_artwork","albums_list","is_grouped","rssPlaylists","track","play_track","selected_track","slots","title_sort","play_count","mark_new","Math","floor","rating","all","tracks","mixins","browseData","show_track_details_modal","artists_list","sort_options","char","nav","filtered_index","selected_artist","album_count","Artists","getArtistIndex","artistsSorted","isArtistVisible","select","onClickOutside","artistsData","scrollToTop","show_artist_details_modal","open_tracks","artistData","index_list","albumsData","show_album_details_modal","albumData","genres","total","selected_genre","genresData","show_genre_details_modal","genre_albums","genreData","tracksData","track_uris","new_episodes","mark_all_played","open_track_dialog","reload_new_episodes","open_add_podcast_dialog","reload_podcasts","forEach","ep","reload_tracks","new_tracks","playlist","playlists","open_playlist","selected_playlist","folder","playlistsData","show_playlist_details_modal","playlistData","random","current_directory","open_directory_dialog","open_parent_directory","files","open_directory","open_playlist_dialog","show_directory_details_modal","selected_directory","directories","filesData","parent","streamsData","new_search","search_query","recent_search","open_recent_search","show_tracks","open_search_tracks","toLocaleString","show_artists","open_search_artists","show_albums","open_search_albums","show_playlists","open_search_playlists","show_podcasts","open_search_podcasts","show_audiobooks","open_search_audiobooks","search_library","search_spotify","route_query","show_all_tracks_button","show_all_artists_button","show_all_albums_button","show_all_playlists_button","show_all_audiobooks_button","show_all_podcasts_button","route","$refs","search_field","focus","searchMusic","searchAudiobooks","searchPodcasts","replace","trim","blur","show_update_dropdown","update","update_meta","updated_at","started_at","filters","join","array","open_album_dialog","album_type","release_date","owner","display_name","images","new_releases","featured_playlists","getNewReleases","getFeaturedPlaylists","load_next","popularity","followers","append_albums","getArtistAlbums","$state","loaded","complete","context_uri","duration_ms","getAlbum","album_id","append_tracks","getPlaylistTracks","search_tracks_next","open_artist_dialog","search_artists_next","search_albums_next","search_playlists_next","search_param","validSearchTypes","reset","search_all","spotify_search","set_update_timer","statusUpdate","info","timerDelay","timerId","newValue","update_setting","option_name","clear_status","placeholder","libspotify_installed","libspotify_user","libspotify_logged_in","login_libspotify","libspotify","errors","user","password","webapi_user","spotify_missing_scope","oauth_uri","spotify_required_scope","enabled","logoutLastfm","scrobbling_enabled","login_lastfm","webapi_granted_scope","webapi_required_scope","split","success","active","kickoff_verification","verification_req","VueRouter","router","routes","PageQueue","PageAbout","PageNowPlaying","redirect","PageBrowse","PageBrowseRecentlyAdded","PageBrowseRecentlyPlayed","PageArtists","has_index","PageArtist","PageArtistTracks","PageAlbums","PageAlbum","PageGenres","PageGenre","PageGenreTracks","PagePodcasts","PagePodcast","PageAudiobooksArtists","PageAudiobooksArtist","PageAudiobooksAlbums","PageAudiobooksAlbum","PageRadioStreams","PageFiles","PagePlaylists","PagePlaylist","PageSearch","SpotifyPageBrowse","SpotifyPageBrowseNewReleases","SpotifyPageBrowseFeaturedPlaylists","SpotifyPageArtist","SpotifyPageAlbum","SpotifyPagePlaylist","SpotifyPageSearch","SettingsPageWebinterface","SettingsPageArtwork","SettingsPageOnlineServices","SettingsPageRemotesOutputs","scrollBehavior","savedPosition","hash","selector","x","y","momentDurationFormatSetup","moment","format","duration","withoutSuffix","fromNow","VueProgressBar","color","failedColor","productionTip","vClickOutside","VueTinyLazyloadImg","VueObserveVisibility","VueScrollTo","el","App"],"mappings":"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","file":"player/js/app-legacy.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\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 = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && 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(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"app\": 0\n \t};\n\n \tvar deferredModules = [];\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, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\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 \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([0,\"chunk-vendors\"]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"hero is-light is-bold fd-content\"},[_c('div',{staticClass:\"hero-body\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"columns\",staticStyle:{\"flex-direction\":\"row-reverse\"}},[_c('div',{staticClass:\"column fd-has-cover\"},[_vm._t(\"heading-right\")],2),_c('div',{staticClass:\"column is-three-fifths has-text-centered-mobile\",staticStyle:{\"margin\":\"auto 0\"}},[_vm._t(\"heading-left\")],2)])])])])])]),_c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"","var map = {\n\t\"./af\": \"2bfb\",\n\t\"./af.js\": \"2bfb\",\n\t\"./ar\": \"8e73\",\n\t\"./ar-dz\": \"a356\",\n\t\"./ar-dz.js\": \"a356\",\n\t\"./ar-kw\": \"423e\",\n\t\"./ar-kw.js\": \"423e\",\n\t\"./ar-ly\": \"1cfd\",\n\t\"./ar-ly.js\": \"1cfd\",\n\t\"./ar-ma\": \"0a84\",\n\t\"./ar-ma.js\": \"0a84\",\n\t\"./ar-sa\": \"8230\",\n\t\"./ar-sa.js\": \"8230\",\n\t\"./ar-tn\": \"6d83\",\n\t\"./ar-tn.js\": \"6d83\",\n\t\"./ar.js\": \"8e73\",\n\t\"./az\": \"485c\",\n\t\"./az.js\": \"485c\",\n\t\"./be\": \"1fc1\",\n\t\"./be.js\": \"1fc1\",\n\t\"./bg\": \"84aa\",\n\t\"./bg.js\": \"84aa\",\n\t\"./bm\": \"a7fa\",\n\t\"./bm.js\": \"a7fa\",\n\t\"./bn\": \"9043\",\n\t\"./bn-bd\": \"9686\",\n\t\"./bn-bd.js\": \"9686\",\n\t\"./bn.js\": \"9043\",\n\t\"./bo\": \"d26a\",\n\t\"./bo.js\": \"d26a\",\n\t\"./br\": \"6887\",\n\t\"./br.js\": \"6887\",\n\t\"./bs\": \"2554\",\n\t\"./bs.js\": \"2554\",\n\t\"./ca\": \"d716\",\n\t\"./ca.js\": \"d716\",\n\t\"./cs\": \"3c0d\",\n\t\"./cs.js\": \"3c0d\",\n\t\"./cv\": \"03ec\",\n\t\"./cv.js\": \"03ec\",\n\t\"./cy\": \"9797\",\n\t\"./cy.js\": \"9797\",\n\t\"./da\": \"0f14\",\n\t\"./da.js\": \"0f14\",\n\t\"./de\": \"b469\",\n\t\"./de-at\": \"b3eb\",\n\t\"./de-at.js\": \"b3eb\",\n\t\"./de-ch\": \"bb71\",\n\t\"./de-ch.js\": \"bb71\",\n\t\"./de.js\": \"b469\",\n\t\"./dv\": \"598a\",\n\t\"./dv.js\": \"598a\",\n\t\"./el\": \"8d47\",\n\t\"./el.js\": \"8d47\",\n\t\"./en-au\": \"0e6b\",\n\t\"./en-au.js\": \"0e6b\",\n\t\"./en-ca\": \"3886\",\n\t\"./en-ca.js\": \"3886\",\n\t\"./en-gb\": \"39a6\",\n\t\"./en-gb.js\": \"39a6\",\n\t\"./en-ie\": \"e1d3\",\n\t\"./en-ie.js\": \"e1d3\",\n\t\"./en-il\": \"7333\",\n\t\"./en-il.js\": \"7333\",\n\t\"./en-in\": \"ec2e\",\n\t\"./en-in.js\": \"ec2e\",\n\t\"./en-nz\": \"6f50\",\n\t\"./en-nz.js\": \"6f50\",\n\t\"./en-sg\": \"b7e9\",\n\t\"./en-sg.js\": \"b7e9\",\n\t\"./eo\": \"65db\",\n\t\"./eo.js\": \"65db\",\n\t\"./es\": \"898b\",\n\t\"./es-do\": \"0a3c\",\n\t\"./es-do.js\": \"0a3c\",\n\t\"./es-mx\": \"b5b7\",\n\t\"./es-mx.js\": \"b5b7\",\n\t\"./es-us\": \"55c9\",\n\t\"./es-us.js\": \"55c9\",\n\t\"./es.js\": \"898b\",\n\t\"./et\": \"ec18\",\n\t\"./et.js\": \"ec18\",\n\t\"./eu\": \"0ff2\",\n\t\"./eu.js\": \"0ff2\",\n\t\"./fa\": \"8df4\",\n\t\"./fa.js\": \"8df4\",\n\t\"./fi\": \"81e9\",\n\t\"./fi.js\": \"81e9\",\n\t\"./fil\": \"d69a\",\n\t\"./fil.js\": \"d69a\",\n\t\"./fo\": \"0721\",\n\t\"./fo.js\": \"0721\",\n\t\"./fr\": \"9f26\",\n\t\"./fr-ca\": \"d9f8\",\n\t\"./fr-ca.js\": \"d9f8\",\n\t\"./fr-ch\": \"0e49\",\n\t\"./fr-ch.js\": \"0e49\",\n\t\"./fr.js\": \"9f26\",\n\t\"./fy\": \"7118\",\n\t\"./fy.js\": \"7118\",\n\t\"./ga\": \"5120\",\n\t\"./ga.js\": \"5120\",\n\t\"./gd\": \"f6b4\",\n\t\"./gd.js\": \"f6b4\",\n\t\"./gl\": \"8840\",\n\t\"./gl.js\": \"8840\",\n\t\"./gom-deva\": \"aaf2\",\n\t\"./gom-deva.js\": \"aaf2\",\n\t\"./gom-latn\": \"0caa\",\n\t\"./gom-latn.js\": \"0caa\",\n\t\"./gu\": \"e0c5\",\n\t\"./gu.js\": \"e0c5\",\n\t\"./he\": \"c7aa\",\n\t\"./he.js\": \"c7aa\",\n\t\"./hi\": \"dc4d\",\n\t\"./hi.js\": \"dc4d\",\n\t\"./hr\": \"4ba9\",\n\t\"./hr.js\": \"4ba9\",\n\t\"./hu\": \"5b14\",\n\t\"./hu.js\": \"5b14\",\n\t\"./hy-am\": \"d6b6\",\n\t\"./hy-am.js\": \"d6b6\",\n\t\"./id\": \"5038\",\n\t\"./id.js\": \"5038\",\n\t\"./is\": \"0558\",\n\t\"./is.js\": \"0558\",\n\t\"./it\": \"6e98\",\n\t\"./it-ch\": \"6f12\",\n\t\"./it-ch.js\": \"6f12\",\n\t\"./it.js\": \"6e98\",\n\t\"./ja\": \"079e\",\n\t\"./ja.js\": \"079e\",\n\t\"./jv\": \"b540\",\n\t\"./jv.js\": \"b540\",\n\t\"./ka\": \"201b\",\n\t\"./ka.js\": \"201b\",\n\t\"./kk\": \"6d79\",\n\t\"./kk.js\": \"6d79\",\n\t\"./km\": \"e81d\",\n\t\"./km.js\": \"e81d\",\n\t\"./kn\": \"3e92\",\n\t\"./kn.js\": \"3e92\",\n\t\"./ko\": \"22f8\",\n\t\"./ko.js\": \"22f8\",\n\t\"./ku\": \"2421\",\n\t\"./ku.js\": \"2421\",\n\t\"./ky\": \"9609\",\n\t\"./ky.js\": \"9609\",\n\t\"./lb\": \"440c\",\n\t\"./lb.js\": \"440c\",\n\t\"./lo\": \"b29d\",\n\t\"./lo.js\": \"b29d\",\n\t\"./lt\": \"26f9\",\n\t\"./lt.js\": \"26f9\",\n\t\"./lv\": \"b97c\",\n\t\"./lv.js\": \"b97c\",\n\t\"./me\": \"293c\",\n\t\"./me.js\": \"293c\",\n\t\"./mi\": \"688b\",\n\t\"./mi.js\": \"688b\",\n\t\"./mk\": \"6909\",\n\t\"./mk.js\": \"6909\",\n\t\"./ml\": \"02fb\",\n\t\"./ml.js\": \"02fb\",\n\t\"./mn\": \"958b\",\n\t\"./mn.js\": \"958b\",\n\t\"./mr\": \"39bd\",\n\t\"./mr.js\": \"39bd\",\n\t\"./ms\": \"ebe4\",\n\t\"./ms-my\": \"6403\",\n\t\"./ms-my.js\": \"6403\",\n\t\"./ms.js\": \"ebe4\",\n\t\"./mt\": \"1b45\",\n\t\"./mt.js\": \"1b45\",\n\t\"./my\": \"8689\",\n\t\"./my.js\": \"8689\",\n\t\"./nb\": \"6ce3\",\n\t\"./nb.js\": \"6ce3\",\n\t\"./ne\": \"3a39\",\n\t\"./ne.js\": \"3a39\",\n\t\"./nl\": \"facd\",\n\t\"./nl-be\": \"db29\",\n\t\"./nl-be.js\": \"db29\",\n\t\"./nl.js\": \"facd\",\n\t\"./nn\": \"b84c\",\n\t\"./nn.js\": \"b84c\",\n\t\"./oc-lnc\": \"167b\",\n\t\"./oc-lnc.js\": \"167b\",\n\t\"./pa-in\": \"f3ff\",\n\t\"./pa-in.js\": \"f3ff\",\n\t\"./pl\": \"8d57\",\n\t\"./pl.js\": \"8d57\",\n\t\"./pt\": \"f260\",\n\t\"./pt-br\": \"d2d4\",\n\t\"./pt-br.js\": \"d2d4\",\n\t\"./pt.js\": \"f260\",\n\t\"./ro\": \"972c\",\n\t\"./ro.js\": \"972c\",\n\t\"./ru\": \"957c\",\n\t\"./ru.js\": \"957c\",\n\t\"./sd\": \"6784\",\n\t\"./sd.js\": \"6784\",\n\t\"./se\": \"ffff\",\n\t\"./se.js\": \"ffff\",\n\t\"./si\": \"eda5\",\n\t\"./si.js\": \"eda5\",\n\t\"./sk\": \"7be6\",\n\t\"./sk.js\": \"7be6\",\n\t\"./sl\": \"8155\",\n\t\"./sl.js\": \"8155\",\n\t\"./sq\": \"c8f3\",\n\t\"./sq.js\": \"c8f3\",\n\t\"./sr\": \"cf1e\",\n\t\"./sr-cyrl\": \"13e9\",\n\t\"./sr-cyrl.js\": \"13e9\",\n\t\"./sr.js\": \"cf1e\",\n\t\"./ss\": \"52bd\",\n\t\"./ss.js\": \"52bd\",\n\t\"./sv\": \"5fbd\",\n\t\"./sv.js\": \"5fbd\",\n\t\"./sw\": \"74dc\",\n\t\"./sw.js\": \"74dc\",\n\t\"./ta\": \"3de5\",\n\t\"./ta.js\": \"3de5\",\n\t\"./te\": \"5cbb\",\n\t\"./te.js\": \"5cbb\",\n\t\"./tet\": \"576c\",\n\t\"./tet.js\": \"576c\",\n\t\"./tg\": \"3b1b\",\n\t\"./tg.js\": \"3b1b\",\n\t\"./th\": \"10e8\",\n\t\"./th.js\": \"10e8\",\n\t\"./tk\": \"5aff\",\n\t\"./tk.js\": \"5aff\",\n\t\"./tl-ph\": \"0f38\",\n\t\"./tl-ph.js\": \"0f38\",\n\t\"./tlh\": \"cf75\",\n\t\"./tlh.js\": \"cf75\",\n\t\"./tr\": \"0e81\",\n\t\"./tr.js\": \"0e81\",\n\t\"./tzl\": \"cf51\",\n\t\"./tzl.js\": \"cf51\",\n\t\"./tzm\": \"c109\",\n\t\"./tzm-latn\": \"b53d\",\n\t\"./tzm-latn.js\": \"b53d\",\n\t\"./tzm.js\": \"c109\",\n\t\"./ug-cn\": \"6117\",\n\t\"./ug-cn.js\": \"6117\",\n\t\"./uk\": \"ada2\",\n\t\"./uk.js\": \"ada2\",\n\t\"./ur\": \"5294\",\n\t\"./ur.js\": \"5294\",\n\t\"./uz\": \"2e8c\",\n\t\"./uz-latn\": \"010e\",\n\t\"./uz-latn.js\": \"010e\",\n\t\"./uz.js\": \"2e8c\",\n\t\"./vi\": \"2921\",\n\t\"./vi.js\": \"2921\",\n\t\"./x-pseudo\": \"fd7e\",\n\t\"./x-pseudo.js\": \"fd7e\",\n\t\"./yo\": \"7f33\",\n\t\"./yo.js\": \"7f33\",\n\t\"./zh-cn\": \"5c3a\",\n\t\"./zh-cn.js\": \"5c3a\",\n\t\"./zh-hk\": \"49ab\",\n\t\"./zh-hk.js\": \"49ab\",\n\t\"./zh-mo\": \"3a6c\",\n\t\"./zh-mo.js\": \"3a6c\",\n\t\"./zh-tw\": \"90ea\",\n\t\"./zh-tw.js\": \"90ea\"\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = \"4678\";","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('navbar-top'),_c('vue-progress-bar',{staticClass:\"fd-progress-bar\"}),_c('transition',{attrs:{\"name\":\"fade\"}},[_c('router-view',{directives:[{name:\"show\",rawName:\"v-show\",value:(true),expression:\"true\"}]})],1),_c('modal-dialog-remote-pairing',{attrs:{\"show\":_vm.pairing_active},on:{\"close\":function($event){_vm.pairing_active = false}}}),_c('notifications',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.show_burger_menu),expression:\"!show_burger_menu\"}]}),_c('navbar-bottom'),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_burger_menu || _vm.show_player_menu),expression:\"show_burger_menu || show_player_menu\"}],staticClass:\"fd-overlay-fullscreen\",on:{\"click\":function($event){_vm.show_burger_menu = _vm.show_player_menu = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-top-navbar navbar is-light is-fixed-top\",style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"main navigation\"}},[_c('div',{staticClass:\"navbar-brand\"},[(_vm.is_visible_playlists)?_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]):_vm._e(),(_vm.is_visible_music)?_c('navbar-item-link',{attrs:{\"to\":\"/music\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})])]):_vm._e(),(_vm.is_visible_podcasts)?_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})])]):_vm._e(),(_vm.is_visible_audiobooks)?_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})])]):_vm._e(),(_vm.is_visible_radio)?_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})])]):_vm._e(),(_vm.is_visible_files)?_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})])]):_vm._e(),(_vm.is_visible_search)?_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])]):_vm._e(),_c('div',{staticClass:\"navbar-burger\",class:{ 'is-active': _vm.show_burger_menu },on:{\"click\":function($event){_vm.show_burger_menu = !_vm.show_burger_menu}}},[_c('span'),_c('span'),_c('span')])],1),_c('div',{staticClass:\"navbar-menu\",class:{ 'is-active': _vm.show_burger_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item has-dropdown is-hoverable\",class:{ 'is-active': _vm.show_settings_menu },on:{\"click\":_vm.on_click_outside_settings}},[_vm._m(0),_c('div',{staticClass:\"navbar-dropdown is-right\"},[_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Playlists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Music\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/artists\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Artists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/albums\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Albums\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/genres\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Genres\")])]),(_vm.spotify_enabled)?_c('navbar-item-link',{attrs:{\"to\":\"/music/spotify\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Spotify\")])]):_vm._e(),_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Podcasts\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Audiobooks\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Radio\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Files\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Search\")])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('navbar-item-link',{attrs:{\"to\":\"/settings/webinterface\"}},[_vm._v(\"Settings\")]),_c('a',{staticClass:\"navbar-item\",on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();_vm.show_update_library = true; _vm.show_settings_menu = false; _vm.show_burger_menu = false}}},[_vm._v(\" Update Library \")]),_c('navbar-item-link',{attrs:{\"to\":\"/about\"}},[_vm._v(\"About\")]),_c('div',{staticClass:\"navbar-item is-hidden-desktop\",staticStyle:{\"margin-bottom\":\"2.5rem\"}})],1)])])]),_c('modal-dialog',{attrs:{\"show\":_vm.show_update_library,\"title\":\"Update library\",\"ok_action\":_vm.library.updating ? '' : 'Rescan',\"close_action\":\"Close\"},on:{\"ok\":_vm.update_library,\"close\":function($event){_vm.show_update_library = false}}},[_c('template',{slot:\"modal-content\"},[(!_vm.library.updating)?_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Scan for new, deleted and modified files\")]),_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox is-size-7 is-small\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.rescan_metadata),expression:\"rescan_metadata\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(_vm.rescan_metadata)?_vm._i(_vm.rescan_metadata,null)>-1:(_vm.rescan_metadata)},on:{\"change\":function($event){var $$a=_vm.rescan_metadata,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.rescan_metadata=$$a.concat([$$v]))}else{$$i>-1&&(_vm.rescan_metadata=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.rescan_metadata=$$c}}}}),_vm._v(\" Rescan metadata for unmodified files \")])])]):_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Library update in progress ...\")])])])],2),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_settings_menu),expression:\"show_settings_menu\"}],staticClass:\"is-overlay\",staticStyle:{\"z-index\":\"10\",\"width\":\"100vw\",\"height\":\"100vh\"},on:{\"click\":function($event){_vm.show_settings_menu = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-link is-arrowless\"},[_c('span',{staticClass:\"icon is-hidden-touch\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-menu\"})]),_c('span',{staticClass:\"is-hidden-desktop has-text-weight-bold\"},[_vm._v(\"forked-daapd\")])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-item\",class:{ 'is-active': _vm.is_active },attrs:{\"href\":_vm.full_path()},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.open_link()}}},[_vm._t(\"default\")],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","export const UPDATE_CONFIG = 'UPDATE_CONFIG'\nexport const UPDATE_SETTINGS = 'UPDATE_SETTINGS'\nexport const UPDATE_SETTINGS_OPTION = 'UPDATE_SETTINGS_OPTION'\nexport const UPDATE_LIBRARY_STATS = 'UPDATE_LIBRARY_STATS'\nexport const UPDATE_LIBRARY_AUDIOBOOKS_COUNT = 'UPDATE_LIBRARY_AUDIOBOOKS_COUNT'\nexport const UPDATE_LIBRARY_PODCASTS_COUNT = 'UPDATE_LIBRARY_PODCASTS_COUNT'\nexport const UPDATE_OUTPUTS = 'UPDATE_OUTPUTS'\nexport const UPDATE_PLAYER_STATUS = 'UPDATE_PLAYER_STATUS'\nexport const UPDATE_QUEUE = 'UPDATE_QUEUE'\nexport const UPDATE_LASTFM = 'UPDATE_LASTFM'\nexport const UPDATE_SPOTIFY = 'UPDATE_SPOTIFY'\nexport const UPDATE_PAIRING = 'UPDATE_PAIRING'\n\nexport const SPOTIFY_NEW_RELEASES = 'SPOTIFY_NEW_RELEASES'\nexport const SPOTIFY_FEATURED_PLAYLISTS = 'SPOTIFY_FEATURED_PLAYLISTS'\n\nexport const ADD_NOTIFICATION = 'ADD_NOTIFICATION'\nexport const DELETE_NOTIFICATION = 'DELETE_NOTIFICATION'\nexport const ADD_RECENT_SEARCH = 'ADD_RECENT_SEARCH'\n\nexport const HIDE_SINGLES = 'HIDE_SINGLES'\nexport const HIDE_SPOTIFY = 'HIDE_SPOTIFY'\nexport const ARTISTS_SORT = 'ARTISTS_SORT'\nexport const ARTIST_ALBUMS_SORT = 'ARTIST_ALBUMS_SORT'\nexport const ALBUMS_SORT = 'ALBUMS_SORT'\nexport const SHOW_ONLY_NEXT_ITEMS = 'SHOW_ONLY_NEXT_ITEMS'\nexport const SHOW_BURGER_MENU = 'SHOW_BURGER_MENU'\nexport const SHOW_PLAYER_MENU = 'SHOW_PLAYER_MENU'\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemLink.vue?vue&type=template&id=69134921&\"\nimport script from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[(_vm.title)?_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.title)+\" \")]):_vm._e(),_vm._t(\"modal-content\")],2),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.close_action ? _vm.close_action : 'Cancel'))])]),(_vm.delete_action)?_c('a',{staticClass:\"card-footer-item has-background-danger has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('delete')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.delete_action))])]):_vm._e(),(_vm.ok_action)?_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('ok')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-check\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.ok_action))])]):_vm._e()])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialog.vue?vue&type=template&id=5739f0bd&\"\nimport script from \"./ModalDialog.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialog.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport Vuex from 'vuex'\nimport * as types from './mutation_types'\n\nVue.use(Vuex)\n\nexport default new Vuex.Store({\n state: {\n config: {\n websocket_port: 0,\n version: '',\n buildoptions: []\n },\n settings: {\n categories: []\n },\n library: {\n artists: 0,\n albums: 0,\n songs: 0,\n db_playtime: 0,\n updating: false\n },\n audiobooks_count: { },\n podcasts_count: { },\n outputs: [],\n player: {\n state: 'stop',\n repeat: 'off',\n consume: false,\n shuffle: false,\n volume: 0,\n item_id: 0,\n item_length_ms: 0,\n item_progress_ms: 0\n },\n queue: {\n version: 0,\n count: 0,\n items: []\n },\n lastfm: {},\n spotify: {},\n pairing: {},\n\n spotify_new_releases: [],\n spotify_featured_playlists: [],\n\n notifications: {\n next_id: 1,\n list: []\n },\n recent_searches: [],\n\n hide_singles: false,\n hide_spotify: false,\n artists_sort: 'Name',\n artist_albums_sort: 'Name',\n albums_sort: 'Name',\n show_only_next_items: false,\n show_burger_menu: false,\n show_player_menu: false\n },\n\n getters: {\n now_playing: state => {\n var item = state.queue.items.find(function (item) {\n return item.id === state.player.item_id\n })\n return (item === undefined) ? {} : item\n },\n\n settings_webinterface: state => {\n if (state.settings) {\n return state.settings.categories.find(elem => elem.name === 'webinterface')\n }\n return null\n },\n\n settings_option_show_composer_now_playing: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_now_playing')\n if (option) {\n return option.value\n }\n }\n return false\n },\n\n settings_option_show_composer_for_genre: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_for_genre')\n if (option) {\n return option.value\n }\n }\n return null\n },\n\n settings_category: (state) => (categoryName) => {\n return state.settings.categories.find(elem => elem.name === categoryName)\n },\n\n settings_option: (state) => (categoryName, optionName) => {\n const category = state.settings.categories.find(elem => elem.name === categoryName)\n if (!category) {\n return {}\n }\n return category.options.find(elem => elem.name === optionName)\n }\n },\n\n mutations: {\n [types.UPDATE_CONFIG] (state, config) {\n state.config = config\n },\n [types.UPDATE_SETTINGS] (state, settings) {\n state.settings = settings\n },\n [types.UPDATE_SETTINGS_OPTION] (state, option) {\n const settingCategory = state.settings.categories.find(elem => elem.name === option.category)\n const settingOption = settingCategory.options.find(elem => elem.name === option.name)\n settingOption.value = option.value\n },\n [types.UPDATE_LIBRARY_STATS] (state, libraryStats) {\n state.library = libraryStats\n },\n [types.UPDATE_LIBRARY_AUDIOBOOKS_COUNT] (state, count) {\n state.audiobooks_count = count\n },\n [types.UPDATE_LIBRARY_PODCASTS_COUNT] (state, count) {\n state.podcasts_count = count\n },\n [types.UPDATE_OUTPUTS] (state, outputs) {\n state.outputs = outputs\n },\n [types.UPDATE_PLAYER_STATUS] (state, playerStatus) {\n state.player = playerStatus\n },\n [types.UPDATE_QUEUE] (state, queue) {\n state.queue = queue\n },\n [types.UPDATE_LASTFM] (state, lastfm) {\n state.lastfm = lastfm\n },\n [types.UPDATE_SPOTIFY] (state, spotify) {\n state.spotify = spotify\n },\n [types.UPDATE_PAIRING] (state, pairing) {\n state.pairing = pairing\n },\n [types.SPOTIFY_NEW_RELEASES] (state, newReleases) {\n state.spotify_new_releases = newReleases\n },\n [types.SPOTIFY_FEATURED_PLAYLISTS] (state, featuredPlaylists) {\n state.spotify_featured_playlists = featuredPlaylists\n },\n [types.ADD_NOTIFICATION] (state, notification) {\n if (notification.topic) {\n var index = state.notifications.list.findIndex(elem => elem.topic === notification.topic)\n if (index >= 0) {\n state.notifications.list.splice(index, 1, notification)\n return\n }\n }\n state.notifications.list.push(notification)\n },\n [types.DELETE_NOTIFICATION] (state, notification) {\n const index = state.notifications.list.indexOf(notification)\n\n if (index !== -1) {\n state.notifications.list.splice(index, 1)\n }\n },\n [types.ADD_RECENT_SEARCH] (state, query) {\n var index = state.recent_searches.findIndex(elem => elem === query)\n if (index >= 0) {\n state.recent_searches.splice(index, 1)\n }\n\n state.recent_searches.splice(0, 0, query)\n\n if (state.recent_searches.length > 5) {\n state.recent_searches.pop()\n }\n },\n [types.HIDE_SINGLES] (state, hideSingles) {\n state.hide_singles = hideSingles\n },\n [types.HIDE_SPOTIFY] (state, hideSpotify) {\n state.hide_spotify = hideSpotify\n },\n [types.ARTISTS_SORT] (state, sort) {\n state.artists_sort = sort\n },\n [types.ARTIST_ALBUMS_SORT] (state, sort) {\n state.artist_albums_sort = sort\n },\n [types.ALBUMS_SORT] (state, sort) {\n state.albums_sort = sort\n },\n [types.SHOW_ONLY_NEXT_ITEMS] (state, showOnlyNextItems) {\n state.show_only_next_items = showOnlyNextItems\n },\n [types.SHOW_BURGER_MENU] (state, showBurgerMenu) {\n state.show_burger_menu = showBurgerMenu\n },\n [types.SHOW_PLAYER_MENU] (state, showPlayerMenu) {\n state.show_player_menu = showPlayerMenu\n }\n },\n\n actions: {\n add_notification ({ commit, state }, notification) {\n const newNotification = {\n id: state.notifications.next_id++,\n type: notification.type,\n text: notification.text,\n topic: notification.topic,\n timeout: notification.timeout\n }\n\n commit(types.ADD_NOTIFICATION, newNotification)\n\n if (notification.timeout > 0) {\n setTimeout(() => {\n commit(types.DELETE_NOTIFICATION, newNotification)\n }, notification.timeout)\n }\n }\n }\n})\n","import axios from 'axios'\nimport store from '@/store'\n\naxios.interceptors.response.use(function (response) {\n return response\n}, function (error) {\n if (error.request.status && error.request.responseURL) {\n store.dispatch('add_notification', { text: 'Request failed (status: ' + error.request.status + ' ' + error.request.statusText + ', url: ' + error.request.responseURL + ')', type: 'danger' })\n }\n return Promise.reject(error)\n})\n\nexport default {\n config () {\n return axios.get('./api/config')\n },\n\n settings () {\n return axios.get('./api/settings')\n },\n\n settings_update (categoryName, option) {\n return axios.put('./api/settings/' + categoryName + '/' + option.name, option)\n },\n\n library_stats () {\n return axios.get('./api/library')\n },\n\n library_update () {\n return axios.put('./api/update')\n },\n\n library_rescan () {\n return axios.put('./api/rescan')\n },\n\n library_count (expression) {\n return axios.get('./api/library/count?expression=' + expression)\n },\n\n queue () {\n return axios.get('./api/queue')\n },\n\n queue_clear () {\n return axios.put('./api/queue/clear')\n },\n\n queue_remove (itemId) {\n return axios.delete('./api/queue/items/' + itemId)\n },\n\n queue_move (itemId, newPosition) {\n return axios.put('./api/queue/items/' + itemId + '?new_position=' + newPosition)\n },\n\n queue_add (uri) {\n return axios.post('./api/queue/items/add?uris=' + uri).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_add_next (uri) {\n var position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n position = store.getters.now_playing.position + 1\n }\n return axios.post('./api/queue/items/add?uris=' + uri + '&position=' + position).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add (expression) {\n var options = {}\n options.expression = expression\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add_next (expression) {\n var options = {}\n options.expression = expression\n options.position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n options.position = store.getters.now_playing.position + 1\n }\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_save_playlist (name) {\n return axios.post('./api/queue/save', undefined, { params: { name: name } }).then((response) => {\n store.dispatch('add_notification', { text: 'Queue saved to playlist \"' + name + '\"', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n player_status () {\n return axios.get('./api/player')\n },\n\n player_play_uri (uris, shuffle, position = undefined) {\n var options = {}\n options.uris = uris\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play_expression (expression, shuffle, position = undefined) {\n var options = {}\n options.expression = expression\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play (options = {}) {\n return axios.put('./api/player/play', undefined, { params: options })\n },\n\n player_playpos (position) {\n return axios.put('./api/player/play?position=' + position)\n },\n\n player_playid (itemId) {\n return axios.put('./api/player/play?item_id=' + itemId)\n },\n\n player_pause () {\n return axios.put('./api/player/pause')\n },\n\n player_stop () {\n return axios.put('./api/player/stop')\n },\n\n player_next () {\n return axios.put('./api/player/next')\n },\n\n player_previous () {\n return axios.put('./api/player/previous')\n },\n\n player_shuffle (newState) {\n var shuffle = newState ? 'true' : 'false'\n return axios.put('./api/player/shuffle?state=' + shuffle)\n },\n\n player_consume (newState) {\n var consume = newState ? 'true' : 'false'\n return axios.put('./api/player/consume?state=' + consume)\n },\n\n player_repeat (newRepeatMode) {\n return axios.put('./api/player/repeat?state=' + newRepeatMode)\n },\n\n player_volume (volume) {\n return axios.put('./api/player/volume?volume=' + volume)\n },\n\n player_output_volume (outputId, outputVolume) {\n return axios.put('./api/player/volume?volume=' + outputVolume + '&output_id=' + outputId)\n },\n\n player_seek_to_pos (newPosition) {\n return axios.put('./api/player/seek?position_ms=' + newPosition)\n },\n\n player_seek (seekMs) {\n return axios.put('./api/player/seek?seek_ms=' + seekMs)\n },\n\n outputs () {\n return axios.get('./api/outputs')\n },\n\n output_update (outputId, output) {\n return axios.put('./api/outputs/' + outputId, output)\n },\n\n output_toggle (outputId) {\n return axios.put('./api/outputs/' + outputId + '/toggle')\n },\n\n library_artists (media_kind = undefined) {\n return axios.get('./api/library/artists', { params: { media_kind: media_kind } })\n },\n\n library_artist (artistId) {\n return axios.get('./api/library/artists/' + artistId)\n },\n\n library_artist_albums (artistId) {\n return axios.get('./api/library/artists/' + artistId + '/albums')\n },\n\n library_albums (media_kind = undefined) {\n return axios.get('./api/library/albums', { params: { media_kind: media_kind } })\n },\n\n library_album (albumId) {\n return axios.get('./api/library/albums/' + albumId)\n },\n\n library_album_tracks (albumId, filter = { limit: -1, offset: 0 }) {\n return axios.get('./api/library/albums/' + albumId + '/tracks', {\n params: filter\n })\n },\n\n library_album_track_update (albumId, attributes) {\n return axios.put('./api/library/albums/' + albumId + '/tracks', undefined, { params: attributes })\n },\n\n library_genres () {\n return axios.get('./api/library/genres')\n },\n\n library_genre (genre) {\n var genreParams = {\n type: 'albums',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_genre_tracks (genre) {\n var genreParams = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_radio_streams () {\n var params = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'data_kind is url and song_length = 0'\n }\n return axios.get('./api/search', {\n params: params\n })\n },\n\n library_artist_tracks (artist) {\n if (artist) {\n var artistParams = {\n type: 'tracks',\n expression: 'songartistid is \"' + artist + '\"'\n }\n return axios.get('./api/search', {\n params: artistParams\n })\n }\n },\n\n library_podcasts_new_episodes () {\n var episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and play_count = 0 ORDER BY time_added DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_podcast_episodes (albumId) {\n var episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and songalbumid is \"' + albumId + '\" ORDER BY date_released DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_add (url) {\n return axios.post('./api/library/add', undefined, { params: { url: url } })\n },\n\n library_playlist_delete (playlistId) {\n return axios.delete('./api/library/playlists/' + playlistId, undefined)\n },\n\n library_playlists () {\n return axios.get('./api/library/playlists')\n },\n\n library_playlist_folder (playlistId = 0) {\n return axios.get('./api/library/playlists/' + playlistId + '/playlists')\n },\n\n library_playlist (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId)\n },\n\n library_playlist_tracks (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId + '/tracks')\n },\n\n library_track (trackId) {\n return axios.get('./api/library/tracks/' + trackId)\n },\n\n library_track_playlists (trackId) {\n return axios.get('./api/library/tracks/' + trackId + '/playlists')\n },\n\n library_track_update (trackId, attributes = {}) {\n return axios.put('./api/library/tracks/' + trackId, undefined, { params: attributes })\n },\n\n library_files (directory = undefined) {\n var filesParams = { directory: directory }\n return axios.get('./api/library/files', {\n params: filesParams\n })\n },\n\n search (searchParams) {\n return axios.get('./api/search', {\n params: searchParams\n })\n },\n\n spotify () {\n return axios.get('./api/spotify')\n },\n\n spotify_login (credentials) {\n return axios.post('./api/spotify-login', credentials)\n },\n\n lastfm () {\n return axios.get('./api/lastfm')\n },\n\n lastfm_login (credentials) {\n return axios.post('./api/lastfm-login', credentials)\n },\n\n lastfm_logout (credentials) {\n return axios.get('./api/lastfm-logout')\n },\n\n pairing () {\n return axios.get('./api/pairing')\n },\n\n pairing_kickoff (pairingReq) {\n return axios.post('./api/pairing', pairingReq)\n },\n\n artwork_url_append_size_params (artworkUrl, maxwidth = 600, maxheight = 600) {\n if (artworkUrl && artworkUrl.startsWith('/')) {\n if (artworkUrl.includes('?')) {\n return artworkUrl + '&maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl + '?maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarTop.vue?vue&type=template&id=bf9ea990&\"\nimport script from \"./NavbarTop.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarTop.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-bottom-navbar navbar is-white is-fixed-bottom\",class:{ 'is-transparent': _vm.is_now_playing_page, 'is-dark': !_vm.is_now_playing_page },style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"player controls\"}},[_c('div',{staticClass:\"navbar-brand fd-expanded\"},[_c('navbar-item-link',{attrs:{\"to\":\"/\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-playlist-play\"})])]),(!_vm.is_now_playing_page)?_c('router-link',{staticClass:\"navbar-item is-expanded is-clipped\",attrs:{\"to\":\"/now-playing\",\"active-class\":\"is-active\",\"exact\":\"\"}},[_c('div',{staticClass:\"is-clipped\"},[_c('p',{staticClass:\"is-size-7 fd-is-text-clipped\"},[_c('strong',[_vm._v(_vm._s(_vm.now_playing.title))]),_c('br'),_vm._v(\" \"+_vm._s(_vm.now_playing.artist)),(_vm.now_playing.data_kind === 'url')?_c('span',[_vm._v(\" - \"+_vm._s(_vm.now_playing.album))]):_vm._e()])])]):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-previous',{staticClass:\"navbar-item fd-margin-left-auto\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-seek-back',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"10000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('player-button-play-pause',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-36px\",\"show_disabled_message\":\"\"}}),(_vm.is_now_playing_page)?_c('player-button-seek-forward',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"30000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-next',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('a',{staticClass:\"navbar-item fd-margin-left-auto is-hidden-desktop\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch\",class:{ 'is-active': _vm.show_player_menu }},[_c('a',{staticClass:\"navbar-link is-arrowless\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-dropdown is-right is-boxed\",staticStyle:{\"margin-right\":\"6px\",\"margin-bottom\":\"6px\",\"border-radius\":\"6px\"}},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(0)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile fd-expanded\"},[_c('div',{staticClass:\"level-item\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('player-button-repeat',{staticClass:\"button\"}),_c('player-button-shuffle',{staticClass:\"button\"}),_c('player-button-consume',{staticClass:\"button\"})],1)])])])],2)])],1),_c('div',{staticClass:\"navbar-menu is-hidden-desktop\",class:{ 'is-active': _vm.show_player_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('player-button-repeat',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-shuffle',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-consume',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}})],1)]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item fd-has-margin-bottom\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(1)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])])],2)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])}]\n\nexport { render, staticRenderFns }","/**\n * Audio handler object\n * Taken from https://github.com/rainner/soma-fm-player (released under MIT licence)\n */\nexport default {\n _audio: new Audio(),\n _context: null,\n _source: null,\n _gain: null,\n\n // setup audio routing\n setupAudio () {\n var AudioContext = window.AudioContext || window.webkitAudioContext\n this._context = new AudioContext()\n this._source = this._context.createMediaElementSource(this._audio)\n this._gain = this._context.createGain()\n\n this._source.connect(this._gain)\n this._gain.connect(this._context.destination)\n\n this._audio.addEventListener('canplaythrough', e => {\n this._audio.play()\n })\n this._audio.addEventListener('canplay', e => {\n this._audio.play()\n })\n return this._audio\n },\n\n // set audio volume\n setVolume (volume) {\n if (!this._gain) return\n volume = parseFloat(volume) || 0.0\n volume = (volume < 0) ? 0 : volume\n volume = (volume > 1) ? 1 : volume\n this._gain.gain.value = volume\n },\n\n // play audio source url\n playSource (source) {\n this.stopAudio()\n this._context.resume().then(() => {\n this._audio.src = String(source || '') + '?x=' + Date.now()\n this._audio.crossOrigin = 'anonymous'\n this._audio.load()\n })\n },\n\n // stop playing audio\n stopAudio () {\n try { this._audio.pause() } catch (e) {}\n try { this._audio.stop() } catch (e) {}\n try { this._audio.close() } catch (e) {}\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\"},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.output.selected },on:{\"click\":_vm.set_enabled}},[_c('i',{staticClass:\"mdi mdi-18px\",class:_vm.type_class})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.output.selected }},[_vm._v(_vm._s(_vm.output.name))]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.output.selected,\"value\":_vm.volume},on:{\"change\":_vm.set_volume}})],1)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemOutput.vue?vue&type=template&id=16ee9e13&\"\nimport script from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.toggle_play_pause}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-play': !_vm.is_playing, 'mdi-pause': _vm.is_playing && _vm.is_pause_allowed, 'mdi-stop': _vm.is_playing && !_vm.is_pause_allowed }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPlayPause.vue?vue&type=template&id=160e1e94&\"\nimport script from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-forward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonNext.vue?vue&type=template&id=105fa0b7&\"\nimport script from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_previous}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-backward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPrevious.vue?vue&type=template&id=de93cb4e&\"\nimport script from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_shuffle },on:{\"click\":_vm.toggle_shuffle_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-shuffle': _vm.is_shuffle, 'mdi-shuffle-disabled': !_vm.is_shuffle }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonShuffle.vue?vue&type=template&id=6c682bca&\"\nimport script from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_consume },on:{\"click\":_vm.toggle_consume_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fire\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonConsume.vue?vue&type=template&id=652605a0&\"\nimport script from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': !_vm.is_repeat_off },on:{\"click\":_vm.toggle_repeat_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-repeat': _vm.is_repeat_all, 'mdi-repeat-once': _vm.is_repeat_single, 'mdi-repeat-off': _vm.is_repeat_off }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonRepeat.vue?vue&type=template&id=76c131bd&\"\nimport script from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rewind\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekBack.vue?vue&type=template&id=6e68196d&\"\nimport script from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fast-forward\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekForward.vue?vue&type=template&id=2f43a35a&\"\nimport script from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarBottom.vue?vue&type=template&id=7bc29059&\"\nimport script from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"fd-notifications\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-half\"},_vm._l((_vm.notifications),function(notification){return _c('div',{key:notification.id,staticClass:\"notification has-shadow \",class:['notification', notification.type ? (\"is-\" + (notification.type)) : '']},[_c('button',{staticClass:\"delete\",on:{\"click\":function($event){return _vm.remove(notification)}}}),_vm._v(\" \"+_vm._s(notification.text)+\" \")])}),0)])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Notifications.vue?vue&type=template&id=45b704a5&\"\nimport script from \"./Notifications.vue?vue&type=script&lang=js&\"\nexport * from \"./Notifications.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Notifications.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Remote pairing request \")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label\"},[_vm._v(\" \"+_vm._s(_vm.pairing.remote)+\" \")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],ref:\"pin_field\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.kickoff_pairing}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cellphone-iphone\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Pair Remote\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogRemotePairing.vue?vue&type=template&id=4491cb33&\"\nimport script from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=4b81045b&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.queue.count)+\" tracks\")]),_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Queue\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.show_only_next_items },on:{\"click\":_vm.update_show_next_items}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-arrow-collapse-down\"})]),_c('span',[_vm._v(\"Hide previous\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_stream_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',[_vm._v(\"Add Stream\")])]),_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.edit_mode },on:{\"click\":function($event){_vm.edit_mode = !_vm.edit_mode}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Edit\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.queue_clear}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete-empty\"})]),_c('span',[_vm._v(\"Clear\")])]),(_vm.is_queue_save_allowed)?_c('a',{staticClass:\"button is-small\",attrs:{\"disabled\":_vm.queue_items.length === 0},on:{\"click\":_vm.save_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_c('span',[_vm._v(\"Save\")])]):_vm._e()])]),_c('template',{slot:\"content\"},[_c('draggable',{attrs:{\"handle\":\".handle\"},on:{\"end\":_vm.move_item},model:{value:(_vm.queue_items),callback:function ($$v) {_vm.queue_items=$$v},expression:\"queue_items\"}},_vm._l((_vm.queue_items),function(item,index){return _c('list-item-queue-item',{key:item.id,attrs:{\"item\":item,\"position\":index,\"current_position\":_vm.current_position,\"show_only_next_items\":_vm.show_only_next_items,\"edit_mode\":_vm.edit_mode}},[_c('template',{slot:\"actions\"},[(!_vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.open_dialog(item)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])]):_vm._e(),(item.id !== _vm.state.item_id && _vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.remove(item)}}},[_c('span',{staticClass:\"icon has-text-grey\"},[_c('i',{staticClass:\"mdi mdi-delete mdi-18px\"})])]):_vm._e()])],2)}),1),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog-add-url-stream',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false}}}),(_vm.is_queue_save_allowed)?_c('modal-dialog-playlist-save',{attrs:{\"show\":_vm.show_pls_save_modal},on:{\"close\":function($event){_vm.show_pls_save_modal = false}}}):_vm._e()],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[(_vm.$slots['options'])?_c('section',[_c('div',{directives:[{name:\"observe-visibility\",rawName:\"v-observe-visibility\",value:(_vm.observer_options),expression:\"observer_options\"}],staticStyle:{\"height\":\"2px\"}}),_vm._t(\"options\"),_c('nav',{staticClass:\"buttons is-centered\",staticStyle:{\"margin-bottom\":\"6px\",\"margin-top\":\"16px\"}},[(!_vm.options_visible)?_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_top}},[_vm._m(0)]):_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_content}},[_vm._m(1)])])],2):_vm._e(),_c('div',{class:{'fd-content-with-option': _vm.$slots['options']}},[_c('nav',{staticClass:\"level\",attrs:{\"id\":\"top\"}},[_c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item has-text-centered-mobile\"},[_c('div',[_vm._t(\"heading-left\")],2)])]),_c('div',{staticClass:\"level-right has-text-centered-mobile\"},[_vm._t(\"heading-right\")],2)]),_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-up\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentWithHeading.vue?vue&type=template&id=94dfd75a&\"\nimport script from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.is_next || !_vm.show_only_next_items)?_c('div',{staticClass:\"media\"},[(_vm.edit_mode)?_c('div',{staticClass:\"media-left\"},[_vm._m(0)]):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next }},[_vm._v(_vm._s(_vm.item.title))]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_c('b',[_vm._v(_vm._s(_vm.item.artist))])]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_vm._v(_vm._s(_vm.item.album))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon has-text-grey fd-is-movable handle\"},[_c('i',{staticClass:\"mdi mdi-drag-horizontal mdi-18px\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemQueueItem.vue?vue&type=template&id=58363490&\"\nimport script from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.item.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.item.artist)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),(_vm.item.album_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.item.album))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album))])]),(_vm.item.album_artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),(_vm.item.album_artist_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album_artist}},[_vm._v(_vm._s(_vm.item.album_artist))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album_artist))])]):_vm._e(),(_vm.item.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.composer))])]):_vm._e(),(_vm.item.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.year))])]):_vm._e(),(_vm.item.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.item.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.track_number)+\" / \"+_vm._s(_vm.item.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.media_kind)+\" - \"+_vm._s(_vm.item.data_kind)+\" \"),(_vm.item.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.item.type)+\" \"),(_vm.item.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.samplerate)+\" Hz\")]):_vm._e(),(_vm.item.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.item.channels)))]):_vm._e(),(_vm.item.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.bitrate)+\" Kb/s\")]):_vm._e()])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.remove}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Remove\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogQueueItem.vue?vue&type=template&id=5521a6c4&\"\nimport script from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Add stream URL \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.play($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-stream\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-web\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Loading ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddUrlStream.vue?vue&type=template&id=1c92eee2&\"\nimport script from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Save queue to playlist \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.save($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.playlist_name),expression:\"playlist_name\"}],ref:\"playlist_name_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Playlist name\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.playlist_name)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.playlist_name=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-file-music\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Saving ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.save}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Save\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylistSave.vue?vue&type=template&id=5f414a1b&\"\nimport script from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageQueue.vue?vue&type=template&id=36691282&\"\nimport script from \"./PageQueue.vue?vue&type=script&lang=js&\"\nexport * from \"./PageQueue.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[(_vm.now_playing.id > 0)?_c('div',{staticClass:\"fd-is-fullheight\"},[_c('div',{staticClass:\"fd-is-expanded\"},[_c('cover-artwork',{staticClass:\"fd-cover-image fd-has-action\",attrs:{\"artwork_url\":_vm.now_playing.artwork_url,\"artist\":_vm.now_playing.artist,\"album\":_vm.now_playing.album},on:{\"click\":function($event){return _vm.open_dialog(_vm.now_playing)}}})],1),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered\"},[_c('p',{staticClass:\"control has-text-centered fd-progress-now-playing\"},[_c('range-slider',{staticClass:\"seek-slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":_vm.state.item_length_ms,\"value\":_vm.item_progress_ms,\"disabled\":_vm.state.state === 'stop',\"step\":\"1000\"},on:{\"change\":_vm.seek}})],1),_c('p',{staticClass:\"content\"},[_c('span',[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item_progress_ms))+\" / \"+_vm._s(_vm._f(\"duration\")(_vm.now_playing.length_ms)))])])])]),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered fd-has-margin-top\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.title)+\" \")]),_c('h2',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.artist)+\" \")]),(_vm.composer)?_c('h2',{staticClass:\"subtitle is-6 has-text-grey has-text-weight-bold\"},[_vm._v(\" \"+_vm._s(_vm.composer)+\" \")]):_vm._e(),_c('h3',{staticClass:\"subtitle is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.album)+\" \")])])])]):_c('div',{staticClass:\"fd-is-fullheight\"},[_vm._m(0)]),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"fd-is-expanded fd-has-padding-left-right\",staticStyle:{\"flex-direction\":\"column\"}},[_c('div',{staticClass:\"content has-text-centered\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" Your play queue is empty \")]),_c('p',[_vm._v(\" Add some tracks by browsing your library \")])])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('figure',[_c('img',{directives:[{name:\"lazyload\",rawName:\"v-lazyload\"}],key:_vm.artwork_url_with_size,attrs:{\"data-src\":_vm.artwork_url_with_size,\"data-err\":_vm.dataURI},on:{\"click\":function($event){return _vm.$emit('click')}}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/*\n * SVGRenderer taken from https://github.com/bendera/placeholder published under MIT License\n * Copyright (c) 2017 Adam Bender\n * https://github.com/bendera/placeholder/blob/master/LICENSE\n */\nclass SVGRenderer {\n render (data) {\n const svg = '' +\n '' +\n '' +\n '' +\n '' +\n ' ' +\n ' ' +\n ' ' + data.caption + '' +\n ' ' +\n '' +\n ''\n\n return 'data:image/svg+xml;charset=UTF-8,' + encodeURIComponent(svg)\n }\n}\n\nexport default SVGRenderer\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./CoverArtwork.vue?vue&type=template&id=377ab7d4&\"\nimport script from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageNowPlaying.vue?vue&type=template&id=734899dc&\"\nimport script from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\nexport * from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.recently_added.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_added')}}},[_vm._v(\"Show more\")])])])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_played')}}},[_vm._v(\"Show more\")])])])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\nexport const LoadDataBeforeEnterMixin = function (dataObject) {\n return {\n beforeRouteEnter (to, from, next) {\n dataObject.load(to).then((response) => {\n next(vm => dataObject.set(vm, response))\n })\n },\n beforeRouteUpdate (to, from, next) {\n const vm = this\n dataObject.load(to).then((response) => {\n dataObject.set(vm, response)\n next()\n })\n }\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/browse\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',{},[_vm._v(\"Browse\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Artists\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Albums\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/genres\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-speaker\"})]),_c('span',{},[_vm._v(\"Genres\")])])]),(_vm.spotify_enabled)?_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/spotify\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})]),_c('span',{},[_vm._v(\"Spotify\")])])]):_vm._e()],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsMusic.vue?vue&type=template&id=f9ae6826&\"\nimport script from \"./TabsMusic.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsMusic.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.albums.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.albums.grouped[idx]),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.albums_list),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album,\"media_kind\":_vm.media_kind},on:{\"remove-podcast\":function($event){return _vm.open_remove_podcast_dialog()},\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.album.name_sort.charAt(0).toUpperCase()}},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('div',{staticStyle:{\"margin-top\":\"0.7rem\"}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artist))])]),(_vm.props.album.date_released && _vm.props.album.media_kind === 'music')?_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\" \"+_vm._s(_vm._f(\"time\")(_vm.props.album.date_released,'L'))+\" \")]):_vm._e()])]),_c('div',{staticClass:\"media-right\",staticStyle:{\"padding-top\":\"0.7rem\"}},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemAlbum.vue?vue&type=template&id=0d4ab83f&functional=true&\"\nimport script from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('cover-artwork',{staticClass:\"image is-square fd-has-margin-bottom fd-has-shadow\",attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name}}),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),(_vm.media_kind_resolved === 'podcast')?_c('div',{staticClass:\"buttons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.$emit('remove-podcast')}}},[_vm._v(\"Remove podcast\")])]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[(_vm.album.artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]):_vm._e(),(_vm.album.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.date_released,'L')))])]):(_vm.album.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.year))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.album.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.media_kind)+\" - \"+_vm._s(_vm.album.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.time_added,'L LT')))])])])],1),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAlbum.vue?vue&type=template&id=43881b14&\"\nimport script from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Albums {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getAlbumIndex (album) {\n if (this.options.sort === 'Recently added') {\n return album.time_added.substring(0, 4)\n } else if (this.options.sort === 'Recently released') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n } else if (this.options.sort === 'Release date') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n }\n return album.name_sort.charAt(0).toUpperCase()\n }\n\n isAlbumVisible (album) {\n if (this.options.hideSingles && album.track_count <= 2) {\n return false\n }\n if (this.options.hideSpotify && album.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(album => this.getAlbumIndex(album)))]\n }\n\n createSortedAndFilteredList () {\n var albumsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n albumsSorted = albumsSorted.filter(album => this.isAlbumVisible(album))\n }\n if (this.options.sort === 'Recently added') {\n albumsSorted = [...albumsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n } else if (this.options.sort === 'Recently released') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return 1\n }\n if (!b.date_released) {\n return -1\n }\n return b.date_released.localeCompare(a.date_released)\n })\n } else if (this.options.sort === 'Release date') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return -1\n }\n if (!b.date_released) {\n return 1\n }\n return a.date_released.localeCompare(b.date_released)\n })\n }\n this.sortedAndFiltered = albumsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, album) => {\n const idx = this.getAlbumIndex(album)\n r[idx] = [...r[idx] || [], album]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListAlbums.vue?vue&type=template&id=4c4c1fd6&\"\nimport script from \"./ListAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./ListAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.tracks),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index, track)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",class:{ 'with-progress': _vm.slots().progress },attrs:{\"id\":'index_' + _vm.props.track.title_sort.charAt(0).toUpperCase()}},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-grey': _vm.props.track.media_kind === 'podcast' && _vm.props.track.play_count > 0 }},[_vm._v(_vm._s(_vm.props.track.title))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.track.artist))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.props.track.album))]),_vm._t(\"progress\")],2),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemTrack.vue?vue&type=template&id=b15cd80c&functional=true&\"\nimport script from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artist)+\" \")]),(_vm.track.media_kind === 'podcast')?_c('div',{staticClass:\"buttons\"},[(_vm.track.play_count > 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_new}},[_vm._v(\"Mark as new\")]):_vm._e(),(_vm.track.play_count === 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]):_vm._e()]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.track.album))])]),(_vm.track.album_artist && _vm.track.media_kind !== 'audiobook')?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.track.album_artist))])]):_vm._e(),(_vm.track.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.composer))])]):_vm._e(),(_vm.track.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.date_released,'L')))])]):(_vm.track.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.year))])]):_vm._e(),(_vm.track.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.track.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.media_kind)+\" - \"+_vm._s(_vm.track.data_kind)+\" \"),(_vm.track.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.track.type)+\" \"),(_vm.track.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.samplerate)+\" Hz\")]):_vm._e(),(_vm.track.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.track.channels)))]):_vm._e(),(_vm.track.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.bitrate)+\" Kb/s\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.time_added,'L LT')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Rating\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(Math.floor(_vm.track.rating / 10))+\" / 10\")])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play_track}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogTrack.vue?vue&type=template&id=2c4c4585&\"\nimport script from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListTracks.vue?vue&type=template&id=39565e8c&\"\nimport script from \"./ListTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./ListTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowse.vue?vue&type=template&id=377ad592&\"\nimport script from \"./PageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.recently_added.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyAdded.vue?vue&type=template&id=3bc00af8&\"\nimport script from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyPlayed.vue?vue&type=template&id=6755b6f8&\"\nimport script from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear on singles or playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide artists from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Artists\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[_c('nav',{staticClass:\"buttons is-centered fd-is-square\",staticStyle:{\"margin-bottom\":\"16px\"}},_vm._l((_vm.filtered_index),function(char){return _c('a',{key:char,staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.nav(char)}}},[_vm._v(_vm._s(char))])}),0)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./IndexButtonList.vue?vue&type=template&id=4b37eeb5&\"\nimport script from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\nexport * from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.artists.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.artists.grouped[idx]),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.artists_list),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_details_modal,\"artist\":_vm.selected_artist,\"media_kind\":_vm.media_kind},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemArtist.vue?vue&type=template&id=6f373e4f&functional=true&\"\nimport script from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Albums\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.album_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.artist.time_added,'L LT')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogArtist.vue?vue&type=template&id=c563adce&\"\nimport script from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Artists {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getArtistIndex (artist) {\n if (this.options.sort === 'Name') {\n return artist.name_sort.charAt(0).toUpperCase()\n }\n return artist.time_added.substring(0, 4)\n }\n\n isArtistVisible (artist) {\n if (this.options.hideSingles && artist.track_count <= (artist.album_count * 2)) {\n return false\n }\n if (this.options.hideSpotify && artist.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(artist => this.getArtistIndex(artist)))]\n }\n\n createSortedAndFilteredList () {\n var artistsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n artistsSorted = artistsSorted.filter(artist => this.isArtistVisible(artist))\n }\n if (this.options.sort === 'Recently added') {\n artistsSorted = [...artistsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n }\n this.sortedAndFiltered = artistsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, artist) => {\n const idx = this.getArtistIndex(artist)\n r[idx] = [...r[idx] || [], artist]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListArtists.vue?vue&type=template&id=a9a21416&\"\nimport script from \"./ListArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown\",class:{ 'is-active': _vm.is_active }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('button',{staticClass:\"button\",attrs:{\"aria-haspopup\":\"true\",\"aria-controls\":\"dropdown-menu\"},on:{\"click\":function($event){_vm.is_active = !_vm.is_active}}},[_c('span',[_vm._v(_vm._s(_vm.value))]),_vm._m(0)])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},_vm._l((_vm.options),function(option){return _c('a',{key:option,staticClass:\"dropdown-item\",class:{'is-active': _vm.value === option},on:{\"click\":function($event){return _vm.select(option)}}},[_vm._v(\" \"+_vm._s(option)+\" \")])}),0)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\",attrs:{\"aria-hidden\":\"true\"}})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./DropdownMenu.vue?vue&type=template&id=56ac032b&\"\nimport script from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtists.vue?vue&type=template&id=3d4c8b43&\"\nimport script from \"./PageArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"options\"},[_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])]),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(_vm._s(_vm.artist.track_count)+\" tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.albums_list}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtist.vue?vue&type=template&id=03dca38a&\"\nimport script from \"./PageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides singles and albums with tracks that only appear in playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide albums from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides albums that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Albums\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbums.vue?vue&type=template&id=f8e2027c&\"\nimport script from \"./PageAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbum.vue?vue&type=template&id=ad2b3a70&\"\nimport script from \"./PageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Genres\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.genres.total)+\" genres\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.genres.items),function(genre){return _c('list-item-genre',{key:genre.name,attrs:{\"genre\":genre},on:{\"click\":function($event){return _vm.open_genre(genre)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(genre)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_details_modal,\"genre\":_vm.selected_genre},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.genre.name.charAt(0).toUpperCase()}},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.genre.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemGenre.vue?vue&type=template&id=526e97c7&functional=true&\"\nimport script from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.genre.name))])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogGenre.vue?vue&type=template&id=f6ef5fb8&\"\nimport script from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenres.vue?vue&type=template&id=9a23c802&\"\nimport script from \"./PageGenres.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenres.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.genre_albums.total)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(\"tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.genre_albums.items}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.name }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenre.vue?vue&type=template&id=2268caa3&\"\nimport script from \"./PageGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.genre))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(\"albums\")]),_vm._v(\" | \"+_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"expression\":_vm.expression}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.genre }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenreTracks.vue?vue&type=template&id=0fff7765&\"\nimport script from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_vm._v(\" | \"+_vm._s(_vm.artist.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"uris\":_vm.track_uris}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtistTracks.vue?vue&type=template&id=6da2b51e&\"\nimport script from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.new_episodes.items.length > 0)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New episodes\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_all_played}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Mark All Played\")])])])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_episodes.items),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false},\"play-count-changed\":_vm.reload_new_episodes}})],2)],2):_vm._e(),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums.total)+\" podcasts\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_podcast_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rss\"})]),_c('span',[_vm._v(\"Add Podcast\")])])])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items},on:{\"play-count-changed\":function($event){return _vm.reload_new_episodes()},\"podcast-deleted\":function($event){return _vm.reload_podcasts()}}}),_c('modal-dialog-add-rss',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false},\"podcast-added\":function($event){return _vm.reload_podcasts()}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Add Podcast RSS feed URL\")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.add_stream($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-rss\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-rss\"})])]),_c('p',{staticClass:\"help\"},[_vm._v(\"Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. \")])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item button is-loading\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Processing ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddRss.vue?vue&type=template&id=21695499&\"\nimport script from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcasts.vue?vue&type=template&id=aa493f06&\"\nimport script from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.album.name)+\" \")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_vm._l((_vm.tracks),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false},\"play-count-changed\":_vm.reload_tracks}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'podcast',\"new_tracks\":_vm.new_tracks},on:{\"close\":function($event){_vm.show_album_details_modal = false},\"play-count-changed\":_vm.reload_tracks,\"remove-podcast\":_vm.open_remove_podcast_dialog}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcast.vue?vue&type=template&id=f135dc2e&\"\nimport script from \"./PagePodcast.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcast.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Authors\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Audiobooks\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsAudiobooks.vue?vue&type=template&id=0cda5528&\"\nimport script from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbums.vue?vue&type=template&id=35fdc4d3&\"\nimport script from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Authors\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Authors\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtists.vue?vue&type=template&id=57e179cc&\"\nimport script from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_c('list-albums',{attrs:{\"albums\":_vm.albums.items}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtist.vue?vue&type=template&id=1d8187dc&\"\nimport script from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'audiobook'},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbum.vue?vue&type=template&id=efa1b7f2&\"\nimport script from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.playlists.total)+\" playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.playlists),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-library-music': playlist.type !== 'folder', 'mdi-rss': playlist.type === 'rss', 'mdi-folder': playlist.type === 'folder' }})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.playlist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemPlaylist.vue?vue&type=template&id=70e1d159&functional=true&\"\nimport script from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.type))])])])]),(!_vm.playlist.folder)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])]):_vm._e()])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylist.vue?vue&type=template&id=eed38c78&\"\nimport script from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListPlaylists.vue?vue&type=template&id=cb1e7e92&\"\nimport script from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylists.vue?vue&type=template&id=3470ce91&\"\nimport script from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.length)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.uris}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist,\"uris\":_vm.uris},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylist.vue?vue&type=template&id=71750814&\"\nimport script from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Files\")]),_c('p',{staticClass:\"title is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.current_directory))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){return _vm.open_directory_dialog({ 'path': _vm.current_directory })}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[(_vm.$route.query.directory)?_c('div',{staticClass:\"media\",on:{\"click\":function($event){return _vm.open_parent_directory()}}},[_c('figure',{staticClass:\"media-left fd-has-action\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-subdirectory-arrow-left\"})])]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\"},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(\"..\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e(),_vm._l((_vm.files.directories),function(directory){return _c('list-item-directory',{key:directory.path,attrs:{\"directory\":directory},on:{\"click\":function($event){return _vm.open_directory(directory)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_directory_dialog(directory)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.playlists.items),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.tracks.items),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-file-outline\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-directory',{attrs:{\"show\":_vm.show_directory_details_modal,\"directory\":_vm.selected_directory},on:{\"close\":function($event){_vm.show_directory_details_modal = false}}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._m(0)]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.directory.path.substring(_vm.props.directory.path.lastIndexOf('/') + 1)))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey-light\"},[_vm._v(_vm._s(_vm.props.directory.path))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = [function (_h,_vm) {var _c=_vm._c;return _c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemDirectory.vue?vue&type=template&id=fc5a981a&functional=true&\"\nimport script from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.directory.path)+\" \")])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogDirectory.vue?vue&type=template&id=47bd3efd&\"\nimport script from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageFiles.vue?vue&type=template&id=2cd0e99e&\"\nimport script from \"./PageFiles.vue?vue&type=script&lang=js&\"\nexport * from \"./PageFiles.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Radio\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageRadioStreams.vue?vue&type=template&id=6286e82d&\"\nimport script from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\nexport * from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)]),_vm._m(1)])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e(),(_vm.show_podcasts && _vm.podcasts.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.podcasts.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_podcasts_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_podcasts}},[_vm._v(\"Show all \"+_vm._s(_vm.podcasts.total.toLocaleString())+\" podcasts\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_podcasts && !_vm.podcasts.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No podcasts found\")])])])],2):_vm._e(),(_vm.show_audiobooks && _vm.audiobooks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.audiobooks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_audiobooks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_audiobooks}},[_vm._v(\"Show all \"+_vm._s(_vm.audiobooks.total.toLocaleString())+\" audiobooks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_audiobooks && !_vm.audiobooks.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No audiobooks found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"help has-text-centered\"},[_vm._v(\"Tip: you can search by a smart playlist query language \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md\",\"target\":\"_blank\"}},[_vm._v(\"expression\")]),_vm._v(\" if you prefix it with \"),_c('code',[_vm._v(\"query:\")]),_vm._v(\". \")])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content py-3\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\")],2)])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentText.vue?vue&type=template&id=bfc5ab0a&\"\nimport script from \"./ContentText.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentText.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.spotify_enabled)?_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small is-toggle is-toggle-rounded\"},[_c('ul',[_c('li',{class:{ 'is-active': _vm.$route.path === '/search/library' }},[_c('a',{on:{\"click\":_vm.search_library}},[_vm._m(0),_c('span',{},[_vm._v(\"Library\")])])]),_c('li',{class:{ 'is-active': _vm.$route.path === '/search/spotify' }},[_c('a',{on:{\"click\":_vm.search_spotify}},[_vm._m(1),_c('span',{},[_vm._v(\"Spotify\")])])])])])])])])]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-library-books\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSearch.vue?vue&type=template&id=3392045a&\"\nimport script from \"./TabsSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageSearch.vue?vue&type=template&id=43848b0d&\"\nimport script from \"./PageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./PageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths has-text-centered-mobile\"},[_c('p',{staticClass:\"heading\"},[_c('b',[_vm._v(\"forked-daapd\")]),_vm._v(\" - version \"+_vm._s(_vm.config.version))]),_c('h1',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.config.library_name))])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content\"},[_c('nav',{staticClass:\"level is-mobile\"},[_vm._m(0),_c('div',{staticClass:\"level-right\"},[(_vm.library.updating)?_c('div',[_c('a',{staticClass:\"button is-small is-loading\"},[_vm._v(\"Update\")])]):_c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown is-right\",class:{ 'is-active': _vm.show_update_dropdown }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.update}},[_vm._v(\"Update\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){_vm.show_update_dropdown = !_vm.show_update_dropdown}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-chevron-down': !_vm.show_update_dropdown, 'mdi-chevron-up': _vm.show_update_dropdown }})])])])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},[_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update}},[_c('strong',[_vm._v(\"Update\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Adds new, removes deleted and updates modified files.\")])])]),_c('hr',{staticClass:\"dropdown-divider\"}),_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update_meta}},[_c('strong',[_vm._v(\"Rescan metadata\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Same as update, but also rescans unmodified files.\")])])])])])])])]),_c('table',{staticClass:\"table\"},[_c('tbody',[_c('tr',[_c('th',[_vm._v(\"Artists\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.artists)))])]),_c('tr',[_c('th',[_vm._v(\"Albums\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.albums)))])]),_c('tr',[_c('th',[_vm._v(\"Tracks\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.songs)))])]),_c('tr',[_c('th',[_vm._v(\"Total playtime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.library.db_playtime * 1000,'y [years], d [days], h [hours], m [minutes]')))])]),_c('tr',[_c('th',[_vm._v(\"Library updated\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.updated_at))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.updated_at,'lll'))+\")\")])])]),_c('tr',[_c('th',[_vm._v(\"Uptime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.started_at,true))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.started_at,'ll'))+\")\")])])])])])])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content has-text-centered-mobile\"},[_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Compiled with support for \"+_vm._s(_vm._f(\"join\")(_vm.config.buildoptions))+\".\")]),_vm._m(1)])])])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item\"},[_c('h2',{staticClass:\"title is-5\"},[_vm._v(\"Library\")])])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Web interface built with \"),_c('a',{attrs:{\"href\":\"http://bulma.io\"}},[_vm._v(\"Bulma\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://materialdesignicons.com/\"}},[_vm._v(\"Material Design Icons\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://vuejs.org/\"}},[_vm._v(\"Vue.js\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://github.com/mzabriskie/axios\"}},[_vm._v(\"axios\")]),_vm._v(\" and \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/network/dependencies\"}},[_vm._v(\"more\")]),_vm._v(\".\")])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAbout.vue?vue&type=template&id=474a48e7&\"\nimport script from \"./PageAbout.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAbout.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/new-releases\"}},[_vm._v(\" Show more \")])],1)])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/featured-playlists\"}},[_vm._v(\" Show more \")])],1)])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artists[0].name))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\"(\"+_vm._s(_vm.props.album.album_type)+\", \"+_vm._s(_vm._f(\"time\")(_vm.props.album.release_date,'L'))+\")\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemAlbum.vue?vue&type=template&id=62c75d12&functional=true&\"\nimport script from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_playlist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('h2',{staticClass:\"subtitle is-7\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemPlaylist.vue?vue&type=template&id=5f06cfec&\"\nimport script from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('figure',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.artwork_visible),expression:\"artwork_visible\"}],staticClass:\"image is-square fd-has-margin-bottom\"},[_c('img',{staticClass:\"fd-has-shadow\",attrs:{\"src\":_vm.artwork_url},on:{\"load\":_vm.artwork_loaded,\"error\":_vm.artwork_error}})]),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.album_type))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogAlbum.vue?vue&type=template&id=c74b0d5a&\"\nimport script from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Owner\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.tracks.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogPlaylist.vue?vue&type=template&id=306ad148&\"\nimport script from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowse.vue?vue&type=template&id=55573f08&\"\nimport script from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseNewReleases.vue?vue&type=template&id=81c5055e&\"\nimport script from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=template&id=0258f289&\"\nimport script from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.total)+\" albums\")]),_vm._l((_vm.albums),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Popularity / Followers\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.popularity)+\" / \"+_vm._s(_vm.artist.followers.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genres\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.genres.join(', ')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogArtist.vue?vue&type=template&id=7a611bba&\"\nimport script from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageArtist.vue?vue&type=template&id=b2a152d8&\"\nimport script from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.tracks.total)+\" tracks\")]),_vm._l((_vm.album.tracks.items),function(track,index){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"position\":index,\"album\":_vm.album,\"context_uri\":_vm.album.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.track.artists[0].name))])])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemTrack.vue?vue&type=template&id=28c7eaa1&\"\nimport script from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.name)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artists[0].name)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.duration_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogTrack.vue?vue&type=template&id=094bebe4&\"\nimport script from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageAlbum.vue?vue&type=template&id=63d70974&\"\nimport script from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.playlist.tracks.total)+\" tracks\")]),_vm._l((_vm.tracks),function(item,index){return _c('spotify-list-item-track',{key:item.track.id,attrs:{\"track\":item.track,\"album\":item.track.album,\"position\":index,\"context_uri\":_vm.playlist.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(item.track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPagePlaylist.vue?vue&type=template&id=c72f0fb2&\"\nimport script from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)])])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.tracks.items),function(track){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"album\":track.album,\"position\":0,\"context_uri\":track.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'track')?_c('infinite-loading',{on:{\"infinite\":_vm.search_tracks_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.artists.items),function(artist){return _c('spotify-list-item-artist',{key:artist.id,attrs:{\"artist\":artist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_artist_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'artist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_artists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.selected_artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.albums.items),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'album')?_c('infinite-loading',{on:{\"infinite\":_vm.search_albums_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.playlists.items),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'playlist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_playlists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_artist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemArtist.vue?vue&type=template&id=59bc374f&\"\nimport script from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageSearch.vue?vue&type=template&id=49e65ea6&\"\nimport script from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Navbar items\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" Select the top navigation bar menu items \")]),_c('div',{staticClass:\"notification is-size-7\"},[_vm._v(\" If you select more items than can be shown on your screen then the burger menu will disappear. \")]),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_playlists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Playlists\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_music\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Music\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_podcasts\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Podcasts\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_audiobooks\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Audiobooks\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_radio\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Radio\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_files\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Files\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_search\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Search\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Album lists\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_cover_artwork_in_album_lists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show cover artwork in album list\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Now playing page\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_now_playing\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show composer\")]),_c('template',{slot:\"info\"},[_vm._v(\"If enabled the composer of the current playing track is shown on the \\\"now playing page\\\"\")])],2),_c('settings-textfield',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_for_genre\",\"disabled\":!_vm.settings_option_show_composer_now_playing,\"placeholder\":\"Genres\"}},[_c('template',{slot:\"label\"},[_vm._v(\"Show composer only for listed genres\")]),_c('template',{slot:\"info\"},[_c('p',{staticClass:\"help\"},[_vm._v(\" Comma separated list of genres the composer should be displayed on the \\\"now playing page\\\". \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" Leave empty to always show the composer. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to \"),_c('code',[_vm._v(\"classical, soundtrack\")]),_vm._v(\" will show the composer for tracks with a genre tag of \\\"Contemporary Classical\\\".\"),_c('br')])])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/webinterface\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Webinterface\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/remotes-outputs\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Remotes & Outputs\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/artwork\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Artwork\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/online-services\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Online Services\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSettings.vue?vue&type=template&id=6c0a7918&\"\nimport script from \"./TabsSettings.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSettings.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{ref:\"settings_checkbox\",attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":_vm.value},on:{\"change\":_vm.set_update_timer}}),_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsCheckbox.vue?vue&type=template&id=f722b06c&\"\nimport script from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('fieldset',{attrs:{\"disabled\":_vm.disabled}},[_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),_c('div',{staticClass:\"control\"},[_c('input',{ref:\"settings_text\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":_vm.placeholder},domProps:{\"value\":_vm.value},on:{\"input\":_vm.set_update_timer}})]),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsTextfield.vue?vue&type=template&id=4cc6d5ec&\"\nimport script from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageWebinterface.vue?vue&type=template&id=23484b31&\"\nimport script from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Artwork\")])]),_c('template',{slot:\"content\"},[_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. \")]),_c('p',[_vm._v(\"In addition to that, you can enable fetching artwork from the following artwork providers:\")])]),(_vm.spotify.libspotify_logged_in)?_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_spotify\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Spotify\")])],2):_vm._e(),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_discogs\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Discogs (\"),_c('a',{attrs:{\"href\":\"https://www.discogs.com/\"}},[_vm._v(\"https://www.discogs.com/\")]),_vm._v(\")\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_coverartarchive\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Cover Art Archive (\"),_c('a',{attrs:{\"href\":\"https://coverartarchive.org/\"}},[_vm._v(\"https://coverartarchive.org/\")]),_vm._v(\")\")])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageArtwork.vue?vue&type=template&id=41b3d8bf&\"\nimport script from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Spotify\")])]),_c('template',{slot:\"content\"},[(!_vm.spotify.libspotify_installed)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was either built without support for Spotify or libspotify is not installed.\")])]):_vm._e(),(_vm.spotify.libspotify_installed)?_c('div',[_c('div',{staticClass:\"notification is-size-7\"},[_c('b',[_vm._v(\"You must have a Spotify premium account\")]),_vm._v(\". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. \")]),_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"libspotify\")]),_vm._v(\" - Login with your Spotify username and password \")]),(_vm.spotify.libspotify_logged_in)?_c('p',{staticClass:\"fd-has-margin-bottom\"},[_vm._v(\" Logged in as \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.libspotify_user))])])]):_vm._e(),(_vm.spotify.libspotify_installed && !_vm.spotify.libspotify_logged_in)?_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_libspotify($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.user),expression:\"libspotify.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.libspotify.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.password),expression:\"libspotify.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.libspotify.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\"},[_vm._v(\"Login\")])])])]):_vm._e(),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" libspotify enables forked-daapd to play Spotify tracks. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. \")])]),_c('div',{staticClass:\"fd-has-margin-top\"},[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Spotify Web API\")]),_vm._v(\" - Grant access to the Spotify Web API \")]),(_vm.spotify.webapi_token_valid)?_c('p',[_vm._v(\" Access granted for \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.webapi_user))])])]):_vm._e(),(_vm.spotify_missing_scope.length > 0)?_c('p',{staticClass:\"help is-danger\"},[_vm._v(\" Please reauthorize Web API access to grant forked-daapd the following additional access rights: \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_missing_scope)))])])]):_vm._e(),_c('div',{staticClass:\"field fd-has-margin-top \"},[_c('div',{staticClass:\"control\"},[_c('a',{staticClass:\"button\",class:{ 'is-info': !_vm.spotify.webapi_token_valid || _vm.spotify_missing_scope.length > 0 },attrs:{\"href\":_vm.spotify.oauth_uri}},[_vm._v(\"Authorize Web API access\")])])]),_c('p',{staticClass:\"help\"},[_vm._v(\" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are \"),_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_required_scope)))]),_vm._v(\". \")])])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Last.fm\")])]),_c('template',{slot:\"content\"},[(!_vm.lastfm.enabled)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was built without support for Last.fm.\")])]):_vm._e(),(_vm.lastfm.enabled)?_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Last.fm\")]),_vm._v(\" - Login with your Last.fm username and password to enable scrobbling \")]),(_vm.lastfm.scrobbling_enabled)?_c('div',[_c('a',{staticClass:\"button\",on:{\"click\":_vm.logoutLastfm}},[_vm._v(\"Stop scrobbling\")])]):_vm._e(),(!_vm.lastfm.scrobbling_enabled)?_c('div',[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_lastfm($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.user),expression:\"lastfm_login.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.lastfm_login.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.password),expression:\"lastfm_login.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.lastfm_login.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Login\")])])]),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. \")])])]):_vm._e()]):_vm._e()])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageOnlineServices.vue?vue&type=template&id=da8f0386&\"\nimport script from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Remote Pairing\")])]),_c('template',{slot:\"content\"},[(_vm.pairing.active)?_c('div',{staticClass:\"notification\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._v(\" Remote pairing request from \"),_c('b',[_vm._v(_vm._s(_vm.pairing.remote))])]),_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Send\")])])])])]):_vm._e(),(!_vm.pairing.active)?_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\"No active pairing request.\")])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Device Verification\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. \")]),_vm._l((_vm.outputs),function(output){return _c('div',{key:output.id},[_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(output.selected),expression:\"output.selected\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(output.selected)?_vm._i(output.selected,null)>-1:(output.selected)},on:{\"change\":[function($event){var $$a=output.selected,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.$set(output, \"selected\", $$a.concat([$$v])))}else{$$i>-1&&(_vm.$set(output, \"selected\", $$a.slice(0,$$i).concat($$a.slice($$i+1))))}}else{_vm.$set(output, \"selected\", $$c)}},function($event){return _vm.output_toggle(output.id)}]}}),_vm._v(\" \"+_vm._s(output.name)+\" \")])])]),(output.needs_auth_key)?_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_verification(output.id)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.verification_req.pin),expression:\"verification_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter verification code\"},domProps:{\"value\":(_vm.verification_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.verification_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Verify\")])])])]):_vm._e()])})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageRemotesOutputs.vue?vue&type=template&id=2356d137&\"\nimport script from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport VueRouter from 'vue-router'\nimport store from '@/store'\nimport * as types from '@/store/mutation_types'\nimport PageQueue from '@/pages/PageQueue'\nimport PageNowPlaying from '@/pages/PageNowPlaying'\nimport PageBrowse from '@/pages/PageBrowse'\nimport PageBrowseRecentlyAdded from '@/pages/PageBrowseRecentlyAdded'\nimport PageBrowseRecentlyPlayed from '@/pages/PageBrowseRecentlyPlayed'\nimport PageArtists from '@/pages/PageArtists'\nimport PageArtist from '@/pages/PageArtist'\nimport PageAlbums from '@/pages/PageAlbums'\nimport PageAlbum from '@/pages/PageAlbum'\nimport PageGenres from '@/pages/PageGenres'\nimport PageGenre from '@/pages/PageGenre'\nimport PageGenreTracks from '@/pages/PageGenreTracks'\nimport PageArtistTracks from '@/pages/PageArtistTracks'\nimport PagePodcasts from '@/pages/PagePodcasts'\nimport PagePodcast from '@/pages/PagePodcast'\nimport PageAudiobooksAlbums from '@/pages/PageAudiobooksAlbums'\nimport PageAudiobooksArtists from '@/pages/PageAudiobooksArtists'\nimport PageAudiobooksArtist from '@/pages/PageAudiobooksArtist'\nimport PageAudiobooksAlbum from '@/pages/PageAudiobooksAlbum'\nimport PagePlaylists from '@/pages/PagePlaylists'\nimport PagePlaylist from '@/pages/PagePlaylist'\nimport PageFiles from '@/pages/PageFiles'\nimport PageRadioStreams from '@/pages/PageRadioStreams'\nimport PageSearch from '@/pages/PageSearch'\nimport PageAbout from '@/pages/PageAbout'\nimport SpotifyPageBrowse from '@/pages/SpotifyPageBrowse'\nimport SpotifyPageBrowseNewReleases from '@/pages/SpotifyPageBrowseNewReleases'\nimport SpotifyPageBrowseFeaturedPlaylists from '@/pages/SpotifyPageBrowseFeaturedPlaylists'\nimport SpotifyPageArtist from '@/pages/SpotifyPageArtist'\nimport SpotifyPageAlbum from '@/pages/SpotifyPageAlbum'\nimport SpotifyPagePlaylist from '@/pages/SpotifyPagePlaylist'\nimport SpotifyPageSearch from '@/pages/SpotifyPageSearch'\nimport SettingsPageWebinterface from '@/pages/SettingsPageWebinterface'\nimport SettingsPageArtwork from '@/pages/SettingsPageArtwork'\nimport SettingsPageOnlineServices from '@/pages/SettingsPageOnlineServices'\nimport SettingsPageRemotesOutputs from '@/pages/SettingsPageRemotesOutputs'\n\nVue.use(VueRouter)\n\nexport const router = new VueRouter({\n routes: [\n {\n path: '/',\n name: 'PageQueue',\n component: PageQueue\n },\n {\n path: '/about',\n name: 'About',\n component: PageAbout\n },\n {\n path: '/now-playing',\n name: 'Now playing',\n component: PageNowPlaying\n },\n {\n path: '/music',\n redirect: '/music/browse'\n },\n {\n path: '/music/browse',\n name: 'Browse',\n component: PageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_added',\n name: 'Browse Recently Added',\n component: PageBrowseRecentlyAdded,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_played',\n name: 'Browse Recently Played',\n component: PageBrowseRecentlyPlayed,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/artists',\n name: 'Artists',\n component: PageArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id',\n name: 'Artist',\n component: PageArtist,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id/tracks',\n name: 'Tracks',\n component: PageArtistTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/albums',\n name: 'Albums',\n component: PageAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/albums/:album_id',\n name: 'Album',\n component: PageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/genres',\n name: 'Genres',\n component: PageGenres,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/genres/:genre',\n name: 'Genre',\n component: PageGenre,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/genres/:genre/tracks',\n name: 'GenreTracks',\n component: PageGenreTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/podcasts',\n name: 'Podcasts',\n component: PagePodcasts,\n meta: { show_progress: true }\n },\n {\n path: '/podcasts/:album_id',\n name: 'Podcast',\n component: PagePodcast,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks',\n redirect: '/audiobooks/artists'\n },\n {\n path: '/audiobooks/artists',\n name: 'AudiobooksArtists',\n component: PageAudiobooksArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/artists/:artist_id',\n name: 'AudiobooksArtist',\n component: PageAudiobooksArtist,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks/albums',\n name: 'AudiobooksAlbums',\n component: PageAudiobooksAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/:album_id',\n name: 'Audiobook',\n component: PageAudiobooksAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/radio',\n name: 'Radio',\n component: PageRadioStreams,\n meta: { show_progress: true }\n },\n {\n path: '/files',\n name: 'Files',\n component: PageFiles,\n meta: { show_progress: true }\n },\n {\n path: '/playlists',\n redirect: '/playlists/0'\n },\n {\n path: '/playlists/:playlist_id',\n name: 'Playlists',\n component: PagePlaylists,\n meta: { show_progress: true }\n },\n {\n path: '/playlists/:playlist_id/tracks',\n name: 'Playlist',\n component: PagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search',\n redirect: '/search/library'\n },\n {\n path: '/search/library',\n name: 'Search Library',\n component: PageSearch\n },\n {\n path: '/music/spotify',\n name: 'Spotify',\n component: SpotifyPageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/new-releases',\n name: 'Spotify Browse New Releases',\n component: SpotifyPageBrowseNewReleases,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/featured-playlists',\n name: 'Spotify Browse Featured Playlists',\n component: SpotifyPageBrowseFeaturedPlaylists,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/artists/:artist_id',\n name: 'Spotify Artist',\n component: SpotifyPageArtist,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/albums/:album_id',\n name: 'Spotify Album',\n component: SpotifyPageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/playlists/:playlist_id',\n name: 'Spotify Playlist',\n component: SpotifyPagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search/spotify',\n name: 'Spotify Search',\n component: SpotifyPageSearch\n },\n {\n path: '/settings/webinterface',\n name: 'Settings Webinterface',\n component: SettingsPageWebinterface\n },\n {\n path: '/settings/artwork',\n name: 'Settings Artwork',\n component: SettingsPageArtwork\n },\n {\n path: '/settings/online-services',\n name: 'Settings Online Services',\n component: SettingsPageOnlineServices\n },\n {\n path: '/settings/remotes-outputs',\n name: 'Settings Remotes Outputs',\n component: SettingsPageRemotesOutputs\n }\n ],\n scrollBehavior (to, from, savedPosition) {\n // console.log(to.path + '_' + from.path + '__' + to.hash + ' savedPosition:' + savedPosition)\n if (savedPosition) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve(savedPosition)\n }, 10)\n })\n } else if (to.path === from.path && to.hash) {\n return { selector: to.hash, offset: { x: 0, y: 120 } }\n } else if (to.hash) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve({ selector: to.hash, offset: { x: 0, y: 120 } })\n }, 10)\n })\n } else if (to.meta.has_index) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n if (to.meta.has_tabs) {\n resolve({ selector: '#top', offset: { x: 0, y: 140 } })\n } else {\n resolve({ selector: '#top', offset: { x: 0, y: 100 } })\n }\n }, 10)\n })\n } else {\n return { x: 0, y: 0 }\n }\n }\n})\n\nrouter.beforeEach((to, from, next) => {\n if (store.state.show_burger_menu) {\n store.commit(types.SHOW_BURGER_MENU, false)\n next(false)\n return\n }\n if (store.state.show_player_menu) {\n store.commit(types.SHOW_PLAYER_MENU, false)\n next(false)\n return\n }\n next(true)\n})\n","import Vue from 'vue'\nimport moment from 'moment'\nimport momentDurationFormatSetup from 'moment-duration-format'\n\nmomentDurationFormatSetup(moment)\nVue.filter('duration', function (value, format) {\n if (format) {\n return moment.duration(value).format(format)\n }\n return moment.duration(value).format('hh:*mm:ss')\n})\n\nVue.filter('time', function (value, format) {\n if (format) {\n return moment(value).format(format)\n }\n return moment(value).format()\n})\n\nVue.filter('timeFromNow', function (value, withoutSuffix) {\n return moment(value).fromNow(withoutSuffix)\n})\n\nVue.filter('number', function (value) {\n return value.toLocaleString()\n})\n\nVue.filter('channels', function (value) {\n if (value === 1) {\n return 'mono'\n }\n if (value === 2) {\n return 'stereo'\n }\n if (!value) {\n return ''\n }\n return value + ' channels'\n})\n","import Vue from 'vue'\nimport VueProgressBar from 'vue-progressbar'\n\nVue.use(VueProgressBar, {\n color: 'hsl(204, 86%, 53%)',\n failedColor: 'red',\n height: '1px'\n})\n","// The Vue build version to load with the `import` command\n// (runtime-only or standalone) has been set in webpack.base.conf with an alias.\nimport Vue from 'vue'\nimport App from './App'\nimport { router } from './router'\nimport store from './store'\nimport './filter'\nimport './progress'\nimport vClickOutside from 'v-click-outside'\nimport VueTinyLazyloadImg from 'vue-tiny-lazyload-img'\nimport VueObserveVisibility from 'vue-observe-visibility'\nimport VueScrollTo from 'vue-scrollto'\nimport 'mdi/css/materialdesignicons.css'\nimport 'vue-range-slider/dist/vue-range-slider.css'\nimport './mystyles.scss'\n\nVue.config.productionTip = false\n\nVue.use(vClickOutside)\nVue.use(VueTinyLazyloadImg)\nVue.use(VueObserveVisibility)\nVue.use(VueScrollTo)\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n store,\n components: { App },\n template: ''\n})\n","export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=style&index=0&lang=css&\"","import { render, staticRenderFns } from \"./ContentWithHero.vue?vue&type=template&id=357bedaa&\"\nimport script from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/templates/ContentWithHero.vue?6919","webpack:///./src/templates/ContentWithHero.vue?0763","webpack:///./node_modules/moment/locale sync ^\\.\\/.*$","webpack:///./src/App.vue?a927","webpack:///./src/components/NavbarTop.vue?8a7f","webpack:///./src/components/NavbarItemLink.vue?3ea1","webpack:///./src/store/mutation_types.js","webpack:///src/components/NavbarItemLink.vue","webpack:///./src/components/NavbarItemLink.vue?7266","webpack:///./src/components/NavbarItemLink.vue","webpack:///./src/components/ModalDialog.vue?7e85","webpack:///src/components/ModalDialog.vue","webpack:///./src/components/ModalDialog.vue?9194","webpack:///./src/components/ModalDialog.vue","webpack:///./src/store/index.js","webpack:///./src/webapi/index.js","webpack:///src/components/NavbarTop.vue","webpack:///./src/components/NavbarTop.vue?2942","webpack:///./src/components/NavbarTop.vue","webpack:///./src/components/NavbarBottom.vue?4d13","webpack:///./src/audio.js","webpack:///./src/components/NavbarItemOutput.vue?644a","webpack:///src/components/NavbarItemOutput.vue","webpack:///./src/components/NavbarItemOutput.vue?f284","webpack:///./src/components/NavbarItemOutput.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?10da","webpack:///src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?7730","webpack:///./src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonNext.vue?b09b","webpack:///src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonNext.vue?fbd2","webpack:///./src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonPrevious.vue?dfcb","webpack:///src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonPrevious.vue?7ab3","webpack:///./src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonShuffle.vue?d8e2","webpack:///src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonShuffle.vue?f823","webpack:///./src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonConsume.vue?d535","webpack:///src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonConsume.vue?f19d","webpack:///./src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonRepeat.vue?3f70","webpack:///src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonRepeat.vue?51a7","webpack:///./src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?b878","webpack:///src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?de1a","webpack:///./src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?48c2","webpack:///src/components/PlayerButtonSeekForward.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?1252","webpack:///./src/components/PlayerButtonSeekForward.vue","webpack:///src/components/NavbarBottom.vue","webpack:///./src/components/NavbarBottom.vue?5719","webpack:///./src/components/NavbarBottom.vue","webpack:///./src/components/Notifications.vue?6cdc","webpack:///src/components/Notifications.vue","webpack:///./src/components/Notifications.vue?7a53","webpack:///./src/components/Notifications.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?e47b","webpack:///src/components/ModalDialogRemotePairing.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?c5a3","webpack:///./src/components/ModalDialogRemotePairing.vue","webpack:///src/App.vue","webpack:///./src/App.vue?1160","webpack:///./src/App.vue","webpack:///./src/pages/PageQueue.vue?4d5e","webpack:///./src/templates/ContentWithHeading.vue?84d8","webpack:///src/templates/ContentWithHeading.vue","webpack:///./src/templates/ContentWithHeading.vue?9dc6","webpack:///./src/templates/ContentWithHeading.vue","webpack:///./src/components/ListItemQueueItem.vue?a258","webpack:///src/components/ListItemQueueItem.vue","webpack:///./src/components/ListItemQueueItem.vue?ce06","webpack:///./src/components/ListItemQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?2e8c","webpack:///src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?f77a","webpack:///./src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?f541","webpack:///src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?1d31","webpack:///./src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?1cde","webpack:///src/components/ModalDialogPlaylistSave.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?2442","webpack:///./src/components/ModalDialogPlaylistSave.vue","webpack:///src/pages/PageQueue.vue","webpack:///./src/pages/PageQueue.vue?adc0","webpack:///./src/pages/PageQueue.vue","webpack:///./src/pages/PageNowPlaying.vue?d3fb","webpack:///./src/components/CoverArtwork.vue?4059","webpack:///./src/lib/SVGRenderer.js","webpack:///src/components/CoverArtwork.vue","webpack:///./src/components/CoverArtwork.vue?5f40","webpack:///./src/components/CoverArtwork.vue","webpack:///src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageNowPlaying.vue?5a32","webpack:///./src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageBrowse.vue?856e","webpack:///./src/pages/mixin.js","webpack:///./src/components/TabsMusic.vue?d269","webpack:///src/components/TabsMusic.vue","webpack:///./src/components/TabsMusic.vue?2d68","webpack:///./src/components/TabsMusic.vue","webpack:///./src/components/ListAlbums.vue?c127","webpack:///./src/components/ListItemAlbum.vue?8d6c","webpack:///src/components/ListItemAlbum.vue","webpack:///./src/components/ListItemAlbum.vue?b729","webpack:///./src/components/ListItemAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?3f44","webpack:///src/components/ModalDialogAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?f2cf","webpack:///./src/components/ModalDialogAlbum.vue","webpack:///./src/lib/Albums.js","webpack:///src/components/ListAlbums.vue","webpack:///./src/components/ListAlbums.vue?f117","webpack:///./src/components/ListAlbums.vue","webpack:///./src/components/ListTracks.vue?0c32","webpack:///./src/components/ListItemTrack.vue?99a1","webpack:///src/components/ListItemTrack.vue","webpack:///./src/components/ListItemTrack.vue?c143","webpack:///./src/components/ListItemTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?7961","webpack:///src/components/ModalDialogTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?b9e3","webpack:///./src/components/ModalDialogTrack.vue","webpack:///src/components/ListTracks.vue","webpack:///./src/components/ListTracks.vue?1a43","webpack:///./src/components/ListTracks.vue","webpack:///src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowse.vue?ac81","webpack:///./src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?512d","webpack:///src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?11a8","webpack:///./src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?f81f","webpack:///src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?b76d","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageArtists.vue?7bfc","webpack:///./src/components/IndexButtonList.vue?a6c7","webpack:///src/components/IndexButtonList.vue","webpack:///./src/components/IndexButtonList.vue?fb40","webpack:///./src/components/IndexButtonList.vue","webpack:///./src/components/ListArtists.vue?c951","webpack:///./src/components/ListItemArtist.vue?9e4e","webpack:///src/components/ListItemArtist.vue","webpack:///./src/components/ListItemArtist.vue?e871","webpack:///./src/components/ListItemArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?72b0","webpack:///src/components/ModalDialogArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?3f0b","webpack:///./src/components/ModalDialogArtist.vue","webpack:///./src/lib/Artists.js","webpack:///src/components/ListArtists.vue","webpack:///./src/components/ListArtists.vue?f6f9","webpack:///./src/components/ListArtists.vue","webpack:///./src/components/DropdownMenu.vue?ae51","webpack:///src/components/DropdownMenu.vue","webpack:///./src/components/DropdownMenu.vue?183a","webpack:///./src/components/DropdownMenu.vue","webpack:///src/pages/PageArtists.vue","webpack:///./src/pages/PageArtists.vue?06ce","webpack:///./src/pages/PageArtists.vue","webpack:///./src/pages/PageArtist.vue?dc22","webpack:///src/pages/PageArtist.vue","webpack:///./src/pages/PageArtist.vue?54da","webpack:///./src/pages/PageArtist.vue","webpack:///./src/pages/PageAlbums.vue?dc23","webpack:///src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbums.vue?dd41","webpack:///./src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbum.vue?0414","webpack:///src/pages/PageAlbum.vue","webpack:///./src/pages/PageAlbum.vue?07be","webpack:///./src/pages/PageAlbum.vue","webpack:///./src/pages/PageGenres.vue?7461","webpack:///./src/components/ListItemGenre.vue?71a2","webpack:///src/components/ListItemGenre.vue","webpack:///./src/components/ListItemGenre.vue?50b2","webpack:///./src/components/ListItemGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?2faf","webpack:///src/components/ModalDialogGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?0658","webpack:///./src/components/ModalDialogGenre.vue","webpack:///src/pages/PageGenres.vue","webpack:///./src/pages/PageGenres.vue?9722","webpack:///./src/pages/PageGenres.vue","webpack:///./src/pages/PageGenre.vue?8a9b","webpack:///src/pages/PageGenre.vue","webpack:///./src/pages/PageGenre.vue?4090","webpack:///./src/pages/PageGenre.vue","webpack:///./src/pages/PageGenreTracks.vue?e991","webpack:///src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageGenreTracks.vue?0317","webpack:///./src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?14e6","webpack:///src/pages/PageArtistTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?7e28","webpack:///./src/pages/PageArtistTracks.vue","webpack:///./src/pages/PagePodcasts.vue?c19e","webpack:///./src/components/ModalDialogAddRss.vue?6856","webpack:///src/components/ModalDialogAddRss.vue","webpack:///./src/components/ModalDialogAddRss.vue?3bb2","webpack:///./src/components/ModalDialogAddRss.vue","webpack:///src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcasts.vue?ec36","webpack:///./src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcast.vue?da51","webpack:///src/pages/PagePodcast.vue","webpack:///./src/pages/PagePodcast.vue?7353","webpack:///./src/pages/PagePodcast.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?4c49","webpack:///./src/components/TabsAudiobooks.vue?5007","webpack:///src/components/TabsAudiobooks.vue","webpack:///./src/components/TabsAudiobooks.vue?b63b","webpack:///./src/components/TabsAudiobooks.vue","webpack:///src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?5019","webpack:///./src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?ac69","webpack:///src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?35bb","webpack:///./src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?aa53","webpack:///src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?2426","webpack:///./src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?64fa","webpack:///src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?49ae","webpack:///./src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PagePlaylists.vue?6b16","webpack:///./src/components/ListPlaylists.vue?ad8b","webpack:///./src/components/ListItemPlaylist.vue?fba7","webpack:///src/components/ListItemPlaylist.vue","webpack:///./src/components/ListItemPlaylist.vue?5b1a","webpack:///./src/components/ListItemPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?3fef","webpack:///src/components/ModalDialogPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?8ac7","webpack:///./src/components/ModalDialogPlaylist.vue","webpack:///src/components/ListPlaylists.vue","webpack:///./src/components/ListPlaylists.vue?d5a9","webpack:///./src/components/ListPlaylists.vue","webpack:///src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylists.vue?5936","webpack:///./src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylist.vue?61d3","webpack:///src/pages/PagePlaylist.vue","webpack:///./src/pages/PagePlaylist.vue?f646","webpack:///./src/pages/PagePlaylist.vue","webpack:///./src/pages/PageFiles.vue?0bd8","webpack:///./src/components/ListItemDirectory.vue?ad53","webpack:///src/components/ListItemDirectory.vue","webpack:///./src/components/ListItemDirectory.vue?7c5d","webpack:///./src/components/ListItemDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?a98f","webpack:///src/components/ModalDialogDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?cef6","webpack:///./src/components/ModalDialogDirectory.vue","webpack:///src/pages/PageFiles.vue","webpack:///./src/pages/PageFiles.vue?c791","webpack:///./src/pages/PageFiles.vue","webpack:///./src/pages/PageRadioStreams.vue?96d0","webpack:///src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageRadioStreams.vue?16e0","webpack:///./src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageSearch.vue?2a82","webpack:///./src/templates/ContentText.vue?5186","webpack:///src/templates/ContentText.vue","webpack:///./src/templates/ContentText.vue?bdf7","webpack:///./src/templates/ContentText.vue","webpack:///./src/components/TabsSearch.vue?d883","webpack:///src/components/TabsSearch.vue","webpack:///./src/components/TabsSearch.vue?6aa8","webpack:///./src/components/TabsSearch.vue","webpack:///src/pages/PageSearch.vue","webpack:///./src/pages/PageSearch.vue?3d2a","webpack:///./src/pages/PageSearch.vue","webpack:///./src/pages/PageAbout.vue?a87c","webpack:///src/pages/PageAbout.vue","webpack:///./src/pages/PageAbout.vue?4563","webpack:///./src/pages/PageAbout.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?389c","webpack:///./src/components/SpotifyListItemAlbum.vue?c834","webpack:///src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemAlbum.vue?cf43","webpack:///./src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?490e","webpack:///src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?308c","webpack:///./src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?3bfe","webpack:///src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?7978","webpack:///./src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?c0c9","webpack:///src/components/SpotifyModalDialogPlaylist.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?3b0b","webpack:///./src/components/SpotifyModalDialogPlaylist.vue","webpack:///src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?0c73","webpack:///./src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?6d95","webpack:///src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?d8c2","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?332a","webpack:///src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?a73a","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageArtist.vue?b296","webpack:///./src/components/SpotifyModalDialogArtist.vue?24b5","webpack:///src/components/SpotifyModalDialogArtist.vue","webpack:///./src/components/SpotifyModalDialogArtist.vue?62f6","webpack:///./src/components/SpotifyModalDialogArtist.vue","webpack:///src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageArtist.vue?beba","webpack:///./src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?0bdc","webpack:///./src/components/SpotifyListItemTrack.vue?0b3f","webpack:///src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyListItemTrack.vue?d9dc","webpack:///./src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?d852","webpack:///src/components/SpotifyModalDialogTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?60d1","webpack:///./src/components/SpotifyModalDialogTrack.vue","webpack:///src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?af1e","webpack:///./src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?be9d","webpack:///src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?4d63","webpack:///./src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPageSearch.vue?eb0b","webpack:///./src/components/SpotifyListItemArtist.vue?2a21","webpack:///src/components/SpotifyListItemArtist.vue","webpack:///./src/components/SpotifyListItemArtist.vue?afa1","webpack:///./src/components/SpotifyListItemArtist.vue","webpack:///src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SpotifyPageSearch.vue?f792","webpack:///./src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?0929","webpack:///./src/components/TabsSettings.vue?fba9","webpack:///src/components/TabsSettings.vue","webpack:///./src/components/TabsSettings.vue?e341","webpack:///./src/components/TabsSettings.vue","webpack:///./src/components/SettingsCheckbox.vue?d7e1","webpack:///src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsCheckbox.vue?4dd0","webpack:///./src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsTextfield.vue?1720","webpack:///src/components/SettingsTextfield.vue","webpack:///./src/components/SettingsTextfield.vue?aae5","webpack:///./src/components/SettingsTextfield.vue","webpack:///./src/components/SettingsIntfield.vue?7f96","webpack:///src/components/SettingsIntfield.vue","webpack:///./src/components/SettingsIntfield.vue?938e","webpack:///./src/components/SettingsIntfield.vue","webpack:///src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?b41a","webpack:///./src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageArtwork.vue?ea46","webpack:///src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageArtwork.vue?4d58","webpack:///./src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?2504","webpack:///src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?e878","webpack:///./src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?75ab","webpack:///src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?69f8","webpack:///./src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/router/index.js","webpack:///./src/filter/index.js","webpack:///./src/progress/index.js","webpack:///./src/main.js","webpack:///./src/components/Notifications.vue?838a","webpack:///./src/templates/ContentWithHero.vue"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","render","_vm","this","_h","$createElement","_c","_self","staticClass","staticStyle","_t","staticRenderFns","map","webpackContext","req","id","webpackContextResolve","e","Error","code","keys","resolve","attrs","directives","rawName","expression","pairing_active","on","$event","show_burger_menu","show_player_menu","style","_e","class","show_settings_menu","on_click_outside_settings","_m","_v","stopPropagation","preventDefault","show_update_library","library","updating","update_library","slot","domProps","Array","isArray","rescan_metadata","_i","$$a","$$el","target","$$c","checked","$$v","$$i","concat","is_active","full_path","open_link","UPDATE_CONFIG","UPDATE_SETTINGS","UPDATE_SETTINGS_OPTION","UPDATE_LIBRARY_STATS","UPDATE_LIBRARY_AUDIOBOOKS_COUNT","UPDATE_LIBRARY_PODCASTS_COUNT","UPDATE_OUTPUTS","UPDATE_PLAYER_STATUS","UPDATE_QUEUE","UPDATE_LASTFM","UPDATE_SPOTIFY","UPDATE_PAIRING","SPOTIFY_NEW_RELEASES","SPOTIFY_FEATURED_PLAYLISTS","ADD_NOTIFICATION","DELETE_NOTIFICATION","ADD_RECENT_SEARCH","HIDE_SINGLES","HIDE_SPOTIFY","ARTISTS_SORT","ARTIST_ALBUMS_SORT","ALBUMS_SORT","SHOW_ONLY_NEXT_ITEMS","SHOW_BURGER_MENU","SHOW_PLAYER_MENU","props","to","String","exact","Boolean","computed","$route","path","startsWith","$store","state","set","commit","methods","$router","resolved","href","component","$emit","_s","title","close_action","delete_action","ok_action","Vue","use","Vuex","Store","config","websocket_port","version","buildoptions","settings","categories","artists","albums","songs","db_playtime","audiobooks_count","podcasts_count","outputs","player","repeat","consume","shuffle","volume","item_id","item_length_ms","item_progress_ms","queue","count","items","lastfm","spotify","pairing","spotify_new_releases","spotify_featured_playlists","notifications","next_id","list","recent_searches","hide_singles","hide_spotify","artists_sort","artist_albums_sort","albums_sort","show_only_next_items","getters","now_playing","item","find","undefined","settings_webinterface","elem","settings_option_recently_added_limit","option","options","settings_option_show_composer_now_playing","settings_option_show_composer_for_genre","settings_category","categoryName","settings_option","optionName","category","mutations","types","settingCategory","settingOption","libraryStats","playerStatus","newReleases","featuredPlaylists","notification","topic","index","findIndex","indexOf","query","pop","hideSingles","hideSpotify","sort","showOnlyNextItems","showBurgerMenu","showPlayerMenu","actions","add_notification","newNotification","type","text","timeout","setTimeout","axios","interceptors","response","error","request","status","responseURL","store","dispatch","statusText","Promise","reject","settings_update","put","library_stats","library_update","library_rescan","library_count","queue_clear","queue_remove","itemId","delete","queue_move","newPosition","queue_add","uri","post","then","queue_add_next","position","queue_expression_add","params","queue_expression_add_next","queue_save_playlist","player_status","player_play_uri","uris","clear","playback","playback_from_position","player_play_expression","player_play","player_playpos","player_playid","player_pause","player_stop","player_next","player_previous","player_shuffle","newState","player_consume","player_repeat","newRepeatMode","player_volume","player_output_volume","outputId","outputVolume","player_seek_to_pos","player_seek","seekMs","output_update","output","output_toggle","library_artists","media_kind","library_artist","artistId","library_artist_albums","library_albums","library_album","albumId","library_album_tracks","filter","limit","offset","library_album_track_update","attributes","library_genres","library_genre","genre","genreParams","library_genre_tracks","library_radio_streams","library_artist_tracks","artist","artistParams","library_podcasts_new_episodes","episodesParams","library_podcast_episodes","library_add","url","library_playlist_delete","playlistId","library_playlists","library_playlist_folder","library_playlist","library_playlist_tracks","library_track","trackId","library_track_playlists","library_track_update","library_files","directory","filesParams","search","searchParams","spotify_login","credentials","lastfm_login","lastfm_logout","pairing_kickoff","pairingReq","artwork_url_append_size_params","artworkUrl","maxwidth","maxheight","includes","components","is_visible_playlists","is_visible_music","is_visible_podcasts","is_visible_audiobooks","is_visible_radio","is_visible_files","is_visible_search","audiobooks","podcasts","spotify_enabled","webapi_token_valid","zindex","webapi","watch","is_now_playing_page","data_kind","album","toggle_mute_volume","set_volume","_l","loading","playing","togglePlay","stream_volume","set_stream_volume","_audio","Audio","_context","_source","_gain","setupAudio","AudioContext","webkitAudioContext","createMediaElementSource","createGain","connect","destination","addEventListener","play","setVolume","parseFloat","gain","playSource","source","stopAudio","resume","src","Date","now","crossOrigin","load","pause","stop","close","selected","set_enabled","type_class","play_next","newVolume","values","disabled","toggle_play_pause","icon_style","is_playing","is_pause_allowed","show_disabled_message","play_previous","is_shuffle","toggle_shuffle_mode","is_consume","toggle_consume_mode","is_repeat_off","toggle_repeat_mode","is_repeat_all","is_repeat_single","seek","is_stopped","visible","seek_ms","NavbarItemLink","NavbarItemOutput","RangeSlider","PlayerButtonPlayPause","PlayerButtonNext","PlayerButtonPrevious","PlayerButtonShuffle","PlayerButtonConsume","PlayerButtonRepeat","PlayerButtonSeekForward","PlayerButtonSeekBack","old_volume","show_outputs_menu","show_desktop_outputs_menu","on_click_outside_outputs","a","closeAudio","playChannel","mounted","destroyed","remove","kickoff_pairing","remote","pairing_req","ref","composing","$set","show","template","token_timer_id","reconnect_attempts","created","$Progress","start","beforeEach","meta","show_progress","progress","next","afterEach","document","library_name","open_ws","location","protocol","socket","onopen","vm","send","JSON","stringify","update_outputs","update_player_status","update_library_stats","update_settings","update_queue","update_spotify","update_lastfm","update_pairing","onclose","onerror","onmessage","notify","clearTimeout","webapi_token_expires_in","webapi_token","update_is_clipped","querySelector","classList","add","update_show_next_items","open_add_stream_dialog","edit_mode","queue_items","save_dialog","move_item","model","callback","current_position","open_dialog","show_details_modal","selected_item","show_url_modal","show_pls_save_modal","$slots","options_visible","scroll_to_content","scroll_to_top","observer_options","visibilityChanged","intersection","rootMargin","threshold","scrollTo","has_tabs","$scrollTo","isVisible","is_next","open_album","open_album_artist","album_artist","composer","year","open_genre","track_number","disc_number","_f","length_ms","open_spotify_artist","open_spotify_album","samplerate","channels","bitrate","spotify_track","spotifyApi","setAccessToken","getTrack","lastIndexOf","add_stream","save","playlist_name","is_queue_save_allowed","allow_modifying_stored_playlists","default_playlist_directory","nowPlaying","oldPosition","artwork_url","artwork_url_with_size","dataURI","SVGRenderer","svg","width","height","textColor","fontFamily","fontSize","fontWeight","backgroundColor","caption","encodeURIComponent","font_family","font_size","font_weight","alt_text","substring","background_color","is_background_light","luma","text_color","rendererParams","interval_id","tick","catch","setInterval","recently_added","open_browse","recently_played","LoadDataBeforeEnterMixin","dataObject","beforeRouteEnter","from","beforeRouteUpdate","idx","grouped","selected_album","open_remove_podcast_dialog","show_remove_podcast_modal","remove_podcast","rss_playlist_to_remove","name_sort","charAt","toUpperCase","listeners","click","date_released","media_kind_resolved","mark_played","open_artist","track_count","time_added","artwork_visible","artwork_loaded","artwork_error","Albums","group","sortedAndFiltered","indexList","init","createSortedAndFilteredList","createGroupedList","createIndexList","getRecentlyAddedBrowseIndex","recentlyAdded","diff","getTime","Set","getAlbumIndex","albumsSorted","hideOther","isAlbumVisible","b","localeCompare","reduce","is_visible_artwork","albums_list","is_grouped","rssPlaylists","track","play_track","selected_track","slots","title_sort","play_count","mark_new","Math","floor","rating","all","tracks","mixins","browseData","show_track_details_modal","artists_list","sort_options","char","nav","filtered_index","selected_artist","album_count","Artists","getArtistIndex","artistsSorted","isArtistVisible","select","onClickOutside","artistsData","scrollToTop","show_artist_details_modal","open_tracks","artistData","index_list","albumsData","show_album_details_modal","albumData","genres","total","selected_genre","genresData","show_genre_details_modal","genre_albums","genreData","tracksData","track_uris","new_episodes","mark_all_played","open_track_dialog","reload_new_episodes","open_add_podcast_dialog","reload_podcasts","forEach","ep","reload_tracks","new_tracks","playlist","playlists","open_playlist","selected_playlist","folder","playlistsData","show_playlist_details_modal","playlistData","random","current_directory","open_directory_dialog","open_parent_directory","files","open_directory","open_playlist_dialog","show_directory_details_modal","selected_directory","directories","filesData","parent","streamsData","new_search","search_query","recent_search","open_recent_search","show_tracks","open_search_tracks","toLocaleString","show_artists","open_search_artists","show_albums","open_search_albums","show_playlists","open_search_playlists","show_podcasts","open_search_podcasts","show_audiobooks","open_search_audiobooks","search_library","search_spotify","route_query","show_all_tracks_button","show_all_artists_button","show_all_albums_button","show_all_playlists_button","show_all_audiobooks_button","show_all_podcasts_button","route","$refs","search_field","focus","searchMusic","searchAudiobooks","searchPodcasts","replace","trim","blur","show_update_dropdown","update","update_meta","updated_at","started_at","filters","join","array","open_album_dialog","album_type","release_date","owner","display_name","images","new_releases","featured_playlists","getNewReleases","getFeaturedPlaylists","load_next","popularity","followers","append_albums","getArtistAlbums","$state","loaded","complete","context_uri","duration_ms","getAlbum","album_id","append_tracks","getPlaylistTracks","search_tracks_next","open_artist_dialog","search_artists_next","search_albums_next","search_playlists_next","search_param","validSearchTypes","reset","search_all","spotify_search","set_update_timer","statusUpdate","info","timerDelay","timerId","newValue","update_setting","option_name","clear_status","placeholder","parseInt","libspotify_installed","libspotify_user","libspotify_logged_in","login_libspotify","libspotify","errors","user","password","webapi_user","spotify_missing_scope","oauth_uri","spotify_required_scope","enabled","logoutLastfm","scrobbling_enabled","login_lastfm","webapi_granted_scope","webapi_required_scope","split","success","active","kickoff_verification","verification_req","VueRouter","router","routes","PageQueue","PageAbout","PageNowPlaying","redirect","PageBrowse","PageBrowseRecentlyAdded","PageBrowseRecentlyPlayed","PageArtists","has_index","PageArtist","PageArtistTracks","PageAlbums","PageAlbum","PageGenres","PageGenre","PageGenreTracks","PagePodcasts","PagePodcast","PageAudiobooksArtists","PageAudiobooksArtist","PageAudiobooksAlbums","PageAudiobooksAlbum","PageRadioStreams","PageFiles","PagePlaylists","PagePlaylist","PageSearch","SpotifyPageBrowse","SpotifyPageBrowseNewReleases","SpotifyPageBrowseFeaturedPlaylists","SpotifyPageArtist","SpotifyPageAlbum","SpotifyPagePlaylist","SpotifyPageSearch","SettingsPageWebinterface","SettingsPageArtwork","SettingsPageOnlineServices","SettingsPageRemotesOutputs","scrollBehavior","savedPosition","hash","selector","x","y","momentDurationFormatSetup","moment","format","duration","withoutSuffix","fromNow","VueProgressBar","color","failedColor","productionTip","vClickOutside","VueTinyLazyloadImg","VueObserveVisibility","VueScrollTo","el","App"],"mappings":"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","file":"player/js/app-legacy.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\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 = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && 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(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"app\": 0\n \t};\n\n \tvar deferredModules = [];\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, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\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 \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([0,\"chunk-vendors\"]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"hero is-light is-bold fd-content\"},[_c('div',{staticClass:\"hero-body\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"columns\",staticStyle:{\"flex-direction\":\"row-reverse\"}},[_c('div',{staticClass:\"column fd-has-cover\"},[_vm._t(\"heading-right\")],2),_c('div',{staticClass:\"column is-three-fifths has-text-centered-mobile\",staticStyle:{\"margin\":\"auto 0\"}},[_vm._t(\"heading-left\")],2)])])])])])]),_c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"","var map = {\n\t\"./af\": \"2bfb\",\n\t\"./af.js\": \"2bfb\",\n\t\"./ar\": \"8e73\",\n\t\"./ar-dz\": \"a356\",\n\t\"./ar-dz.js\": \"a356\",\n\t\"./ar-kw\": \"423e\",\n\t\"./ar-kw.js\": \"423e\",\n\t\"./ar-ly\": \"1cfd\",\n\t\"./ar-ly.js\": \"1cfd\",\n\t\"./ar-ma\": \"0a84\",\n\t\"./ar-ma.js\": \"0a84\",\n\t\"./ar-sa\": \"8230\",\n\t\"./ar-sa.js\": \"8230\",\n\t\"./ar-tn\": \"6d83\",\n\t\"./ar-tn.js\": \"6d83\",\n\t\"./ar.js\": \"8e73\",\n\t\"./az\": \"485c\",\n\t\"./az.js\": \"485c\",\n\t\"./be\": \"1fc1\",\n\t\"./be.js\": \"1fc1\",\n\t\"./bg\": \"84aa\",\n\t\"./bg.js\": \"84aa\",\n\t\"./bm\": \"a7fa\",\n\t\"./bm.js\": \"a7fa\",\n\t\"./bn\": \"9043\",\n\t\"./bn-bd\": \"9686\",\n\t\"./bn-bd.js\": \"9686\",\n\t\"./bn.js\": \"9043\",\n\t\"./bo\": \"d26a\",\n\t\"./bo.js\": \"d26a\",\n\t\"./br\": \"6887\",\n\t\"./br.js\": \"6887\",\n\t\"./bs\": \"2554\",\n\t\"./bs.js\": \"2554\",\n\t\"./ca\": \"d716\",\n\t\"./ca.js\": \"d716\",\n\t\"./cs\": \"3c0d\",\n\t\"./cs.js\": \"3c0d\",\n\t\"./cv\": \"03ec\",\n\t\"./cv.js\": \"03ec\",\n\t\"./cy\": \"9797\",\n\t\"./cy.js\": \"9797\",\n\t\"./da\": \"0f14\",\n\t\"./da.js\": \"0f14\",\n\t\"./de\": \"b469\",\n\t\"./de-at\": \"b3eb\",\n\t\"./de-at.js\": \"b3eb\",\n\t\"./de-ch\": \"bb71\",\n\t\"./de-ch.js\": \"bb71\",\n\t\"./de.js\": \"b469\",\n\t\"./dv\": \"598a\",\n\t\"./dv.js\": \"598a\",\n\t\"./el\": \"8d47\",\n\t\"./el.js\": \"8d47\",\n\t\"./en-au\": \"0e6b\",\n\t\"./en-au.js\": \"0e6b\",\n\t\"./en-ca\": \"3886\",\n\t\"./en-ca.js\": \"3886\",\n\t\"./en-gb\": \"39a6\",\n\t\"./en-gb.js\": \"39a6\",\n\t\"./en-ie\": \"e1d3\",\n\t\"./en-ie.js\": \"e1d3\",\n\t\"./en-il\": \"7333\",\n\t\"./en-il.js\": \"7333\",\n\t\"./en-in\": \"ec2e\",\n\t\"./en-in.js\": \"ec2e\",\n\t\"./en-nz\": \"6f50\",\n\t\"./en-nz.js\": \"6f50\",\n\t\"./en-sg\": \"b7e9\",\n\t\"./en-sg.js\": \"b7e9\",\n\t\"./eo\": \"65db\",\n\t\"./eo.js\": \"65db\",\n\t\"./es\": \"898b\",\n\t\"./es-do\": \"0a3c\",\n\t\"./es-do.js\": \"0a3c\",\n\t\"./es-mx\": \"b5b7\",\n\t\"./es-mx.js\": \"b5b7\",\n\t\"./es-us\": \"55c9\",\n\t\"./es-us.js\": \"55c9\",\n\t\"./es.js\": \"898b\",\n\t\"./et\": \"ec18\",\n\t\"./et.js\": \"ec18\",\n\t\"./eu\": \"0ff2\",\n\t\"./eu.js\": \"0ff2\",\n\t\"./fa\": \"8df4\",\n\t\"./fa.js\": \"8df4\",\n\t\"./fi\": \"81e9\",\n\t\"./fi.js\": \"81e9\",\n\t\"./fil\": \"d69a\",\n\t\"./fil.js\": \"d69a\",\n\t\"./fo\": \"0721\",\n\t\"./fo.js\": \"0721\",\n\t\"./fr\": \"9f26\",\n\t\"./fr-ca\": \"d9f8\",\n\t\"./fr-ca.js\": \"d9f8\",\n\t\"./fr-ch\": \"0e49\",\n\t\"./fr-ch.js\": \"0e49\",\n\t\"./fr.js\": \"9f26\",\n\t\"./fy\": \"7118\",\n\t\"./fy.js\": \"7118\",\n\t\"./ga\": \"5120\",\n\t\"./ga.js\": \"5120\",\n\t\"./gd\": \"f6b4\",\n\t\"./gd.js\": \"f6b4\",\n\t\"./gl\": \"8840\",\n\t\"./gl.js\": \"8840\",\n\t\"./gom-deva\": \"aaf2\",\n\t\"./gom-deva.js\": \"aaf2\",\n\t\"./gom-latn\": \"0caa\",\n\t\"./gom-latn.js\": \"0caa\",\n\t\"./gu\": \"e0c5\",\n\t\"./gu.js\": \"e0c5\",\n\t\"./he\": \"c7aa\",\n\t\"./he.js\": \"c7aa\",\n\t\"./hi\": \"dc4d\",\n\t\"./hi.js\": \"dc4d\",\n\t\"./hr\": \"4ba9\",\n\t\"./hr.js\": \"4ba9\",\n\t\"./hu\": \"5b14\",\n\t\"./hu.js\": \"5b14\",\n\t\"./hy-am\": \"d6b6\",\n\t\"./hy-am.js\": \"d6b6\",\n\t\"./id\": \"5038\",\n\t\"./id.js\": \"5038\",\n\t\"./is\": \"0558\",\n\t\"./is.js\": \"0558\",\n\t\"./it\": \"6e98\",\n\t\"./it-ch\": \"6f12\",\n\t\"./it-ch.js\": \"6f12\",\n\t\"./it.js\": \"6e98\",\n\t\"./ja\": \"079e\",\n\t\"./ja.js\": \"079e\",\n\t\"./jv\": \"b540\",\n\t\"./jv.js\": \"b540\",\n\t\"./ka\": \"201b\",\n\t\"./ka.js\": \"201b\",\n\t\"./kk\": \"6d79\",\n\t\"./kk.js\": \"6d79\",\n\t\"./km\": \"e81d\",\n\t\"./km.js\": \"e81d\",\n\t\"./kn\": \"3e92\",\n\t\"./kn.js\": \"3e92\",\n\t\"./ko\": \"22f8\",\n\t\"./ko.js\": \"22f8\",\n\t\"./ku\": \"2421\",\n\t\"./ku.js\": \"2421\",\n\t\"./ky\": \"9609\",\n\t\"./ky.js\": \"9609\",\n\t\"./lb\": \"440c\",\n\t\"./lb.js\": \"440c\",\n\t\"./lo\": \"b29d\",\n\t\"./lo.js\": \"b29d\",\n\t\"./lt\": \"26f9\",\n\t\"./lt.js\": \"26f9\",\n\t\"./lv\": \"b97c\",\n\t\"./lv.js\": \"b97c\",\n\t\"./me\": \"293c\",\n\t\"./me.js\": \"293c\",\n\t\"./mi\": \"688b\",\n\t\"./mi.js\": \"688b\",\n\t\"./mk\": \"6909\",\n\t\"./mk.js\": \"6909\",\n\t\"./ml\": \"02fb\",\n\t\"./ml.js\": \"02fb\",\n\t\"./mn\": \"958b\",\n\t\"./mn.js\": \"958b\",\n\t\"./mr\": \"39bd\",\n\t\"./mr.js\": \"39bd\",\n\t\"./ms\": \"ebe4\",\n\t\"./ms-my\": \"6403\",\n\t\"./ms-my.js\": \"6403\",\n\t\"./ms.js\": \"ebe4\",\n\t\"./mt\": \"1b45\",\n\t\"./mt.js\": \"1b45\",\n\t\"./my\": \"8689\",\n\t\"./my.js\": \"8689\",\n\t\"./nb\": \"6ce3\",\n\t\"./nb.js\": \"6ce3\",\n\t\"./ne\": \"3a39\",\n\t\"./ne.js\": \"3a39\",\n\t\"./nl\": \"facd\",\n\t\"./nl-be\": \"db29\",\n\t\"./nl-be.js\": \"db29\",\n\t\"./nl.js\": \"facd\",\n\t\"./nn\": \"b84c\",\n\t\"./nn.js\": \"b84c\",\n\t\"./oc-lnc\": \"167b\",\n\t\"./oc-lnc.js\": \"167b\",\n\t\"./pa-in\": \"f3ff\",\n\t\"./pa-in.js\": \"f3ff\",\n\t\"./pl\": \"8d57\",\n\t\"./pl.js\": \"8d57\",\n\t\"./pt\": \"f260\",\n\t\"./pt-br\": \"d2d4\",\n\t\"./pt-br.js\": \"d2d4\",\n\t\"./pt.js\": \"f260\",\n\t\"./ro\": \"972c\",\n\t\"./ro.js\": \"972c\",\n\t\"./ru\": \"957c\",\n\t\"./ru.js\": \"957c\",\n\t\"./sd\": \"6784\",\n\t\"./sd.js\": \"6784\",\n\t\"./se\": \"ffff\",\n\t\"./se.js\": \"ffff\",\n\t\"./si\": \"eda5\",\n\t\"./si.js\": \"eda5\",\n\t\"./sk\": \"7be6\",\n\t\"./sk.js\": \"7be6\",\n\t\"./sl\": \"8155\",\n\t\"./sl.js\": \"8155\",\n\t\"./sq\": \"c8f3\",\n\t\"./sq.js\": \"c8f3\",\n\t\"./sr\": \"cf1e\",\n\t\"./sr-cyrl\": \"13e9\",\n\t\"./sr-cyrl.js\": \"13e9\",\n\t\"./sr.js\": \"cf1e\",\n\t\"./ss\": \"52bd\",\n\t\"./ss.js\": \"52bd\",\n\t\"./sv\": \"5fbd\",\n\t\"./sv.js\": \"5fbd\",\n\t\"./sw\": \"74dc\",\n\t\"./sw.js\": \"74dc\",\n\t\"./ta\": \"3de5\",\n\t\"./ta.js\": \"3de5\",\n\t\"./te\": \"5cbb\",\n\t\"./te.js\": \"5cbb\",\n\t\"./tet\": \"576c\",\n\t\"./tet.js\": \"576c\",\n\t\"./tg\": \"3b1b\",\n\t\"./tg.js\": \"3b1b\",\n\t\"./th\": \"10e8\",\n\t\"./th.js\": \"10e8\",\n\t\"./tk\": \"5aff\",\n\t\"./tk.js\": \"5aff\",\n\t\"./tl-ph\": \"0f38\",\n\t\"./tl-ph.js\": \"0f38\",\n\t\"./tlh\": \"cf75\",\n\t\"./tlh.js\": \"cf75\",\n\t\"./tr\": \"0e81\",\n\t\"./tr.js\": \"0e81\",\n\t\"./tzl\": \"cf51\",\n\t\"./tzl.js\": \"cf51\",\n\t\"./tzm\": \"c109\",\n\t\"./tzm-latn\": \"b53d\",\n\t\"./tzm-latn.js\": \"b53d\",\n\t\"./tzm.js\": \"c109\",\n\t\"./ug-cn\": \"6117\",\n\t\"./ug-cn.js\": \"6117\",\n\t\"./uk\": \"ada2\",\n\t\"./uk.js\": \"ada2\",\n\t\"./ur\": \"5294\",\n\t\"./ur.js\": \"5294\",\n\t\"./uz\": \"2e8c\",\n\t\"./uz-latn\": \"010e\",\n\t\"./uz-latn.js\": \"010e\",\n\t\"./uz.js\": \"2e8c\",\n\t\"./vi\": \"2921\",\n\t\"./vi.js\": \"2921\",\n\t\"./x-pseudo\": \"fd7e\",\n\t\"./x-pseudo.js\": \"fd7e\",\n\t\"./yo\": \"7f33\",\n\t\"./yo.js\": \"7f33\",\n\t\"./zh-cn\": \"5c3a\",\n\t\"./zh-cn.js\": \"5c3a\",\n\t\"./zh-hk\": \"49ab\",\n\t\"./zh-hk.js\": \"49ab\",\n\t\"./zh-mo\": \"3a6c\",\n\t\"./zh-mo.js\": \"3a6c\",\n\t\"./zh-tw\": \"90ea\",\n\t\"./zh-tw.js\": \"90ea\"\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = \"4678\";","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('navbar-top'),_c('vue-progress-bar',{staticClass:\"fd-progress-bar\"}),_c('transition',{attrs:{\"name\":\"fade\"}},[_c('router-view',{directives:[{name:\"show\",rawName:\"v-show\",value:(true),expression:\"true\"}]})],1),_c('modal-dialog-remote-pairing',{attrs:{\"show\":_vm.pairing_active},on:{\"close\":function($event){_vm.pairing_active = false}}}),_c('notifications',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.show_burger_menu),expression:\"!show_burger_menu\"}]}),_c('navbar-bottom'),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_burger_menu || _vm.show_player_menu),expression:\"show_burger_menu || show_player_menu\"}],staticClass:\"fd-overlay-fullscreen\",on:{\"click\":function($event){_vm.show_burger_menu = _vm.show_player_menu = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-top-navbar navbar is-light is-fixed-top\",style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"main navigation\"}},[_c('div',{staticClass:\"navbar-brand\"},[(_vm.is_visible_playlists)?_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]):_vm._e(),(_vm.is_visible_music)?_c('navbar-item-link',{attrs:{\"to\":\"/music\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})])]):_vm._e(),(_vm.is_visible_podcasts)?_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})])]):_vm._e(),(_vm.is_visible_audiobooks)?_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})])]):_vm._e(),(_vm.is_visible_radio)?_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})])]):_vm._e(),(_vm.is_visible_files)?_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})])]):_vm._e(),(_vm.is_visible_search)?_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])]):_vm._e(),_c('div',{staticClass:\"navbar-burger\",class:{ 'is-active': _vm.show_burger_menu },on:{\"click\":function($event){_vm.show_burger_menu = !_vm.show_burger_menu}}},[_c('span'),_c('span'),_c('span')])],1),_c('div',{staticClass:\"navbar-menu\",class:{ 'is-active': _vm.show_burger_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item has-dropdown is-hoverable\",class:{ 'is-active': _vm.show_settings_menu },on:{\"click\":_vm.on_click_outside_settings}},[_vm._m(0),_c('div',{staticClass:\"navbar-dropdown is-right\"},[_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Playlists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Music\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/artists\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Artists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/albums\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Albums\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/genres\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Genres\")])]),(_vm.spotify_enabled)?_c('navbar-item-link',{attrs:{\"to\":\"/music/spotify\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Spotify\")])]):_vm._e(),_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Podcasts\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Audiobooks\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Radio\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Files\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Search\")])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('navbar-item-link',{attrs:{\"to\":\"/settings/webinterface\"}},[_vm._v(\"Settings\")]),_c('a',{staticClass:\"navbar-item\",on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();_vm.show_update_library = true; _vm.show_settings_menu = false; _vm.show_burger_menu = false}}},[_vm._v(\" Update Library \")]),_c('navbar-item-link',{attrs:{\"to\":\"/about\"}},[_vm._v(\"About\")]),_c('div',{staticClass:\"navbar-item is-hidden-desktop\",staticStyle:{\"margin-bottom\":\"2.5rem\"}})],1)])])]),_c('modal-dialog',{attrs:{\"show\":_vm.show_update_library,\"title\":\"Update library\",\"ok_action\":_vm.library.updating ? '' : 'Rescan',\"close_action\":\"Close\"},on:{\"ok\":_vm.update_library,\"close\":function($event){_vm.show_update_library = false}}},[_c('template',{slot:\"modal-content\"},[(!_vm.library.updating)?_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Scan for new, deleted and modified files\")]),_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox is-size-7 is-small\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.rescan_metadata),expression:\"rescan_metadata\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(_vm.rescan_metadata)?_vm._i(_vm.rescan_metadata,null)>-1:(_vm.rescan_metadata)},on:{\"change\":function($event){var $$a=_vm.rescan_metadata,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.rescan_metadata=$$a.concat([$$v]))}else{$$i>-1&&(_vm.rescan_metadata=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.rescan_metadata=$$c}}}}),_vm._v(\" Rescan metadata for unmodified files \")])])]):_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Library update in progress ...\")])])])],2),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_settings_menu),expression:\"show_settings_menu\"}],staticClass:\"is-overlay\",staticStyle:{\"z-index\":\"10\",\"width\":\"100vw\",\"height\":\"100vh\"},on:{\"click\":function($event){_vm.show_settings_menu = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-link is-arrowless\"},[_c('span',{staticClass:\"icon is-hidden-touch\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-menu\"})]),_c('span',{staticClass:\"is-hidden-desktop has-text-weight-bold\"},[_vm._v(\"forked-daapd\")])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-item\",class:{ 'is-active': _vm.is_active },attrs:{\"href\":_vm.full_path()},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.open_link()}}},[_vm._t(\"default\")],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","export const UPDATE_CONFIG = 'UPDATE_CONFIG'\nexport const UPDATE_SETTINGS = 'UPDATE_SETTINGS'\nexport const UPDATE_SETTINGS_OPTION = 'UPDATE_SETTINGS_OPTION'\nexport const UPDATE_LIBRARY_STATS = 'UPDATE_LIBRARY_STATS'\nexport const UPDATE_LIBRARY_AUDIOBOOKS_COUNT = 'UPDATE_LIBRARY_AUDIOBOOKS_COUNT'\nexport const UPDATE_LIBRARY_PODCASTS_COUNT = 'UPDATE_LIBRARY_PODCASTS_COUNT'\nexport const UPDATE_OUTPUTS = 'UPDATE_OUTPUTS'\nexport const UPDATE_PLAYER_STATUS = 'UPDATE_PLAYER_STATUS'\nexport const UPDATE_QUEUE = 'UPDATE_QUEUE'\nexport const UPDATE_LASTFM = 'UPDATE_LASTFM'\nexport const UPDATE_SPOTIFY = 'UPDATE_SPOTIFY'\nexport const UPDATE_PAIRING = 'UPDATE_PAIRING'\n\nexport const SPOTIFY_NEW_RELEASES = 'SPOTIFY_NEW_RELEASES'\nexport const SPOTIFY_FEATURED_PLAYLISTS = 'SPOTIFY_FEATURED_PLAYLISTS'\n\nexport const ADD_NOTIFICATION = 'ADD_NOTIFICATION'\nexport const DELETE_NOTIFICATION = 'DELETE_NOTIFICATION'\nexport const ADD_RECENT_SEARCH = 'ADD_RECENT_SEARCH'\n\nexport const HIDE_SINGLES = 'HIDE_SINGLES'\nexport const HIDE_SPOTIFY = 'HIDE_SPOTIFY'\nexport const ARTISTS_SORT = 'ARTISTS_SORT'\nexport const ARTIST_ALBUMS_SORT = 'ARTIST_ALBUMS_SORT'\nexport const ALBUMS_SORT = 'ALBUMS_SORT'\nexport const SHOW_ONLY_NEXT_ITEMS = 'SHOW_ONLY_NEXT_ITEMS'\nexport const SHOW_BURGER_MENU = 'SHOW_BURGER_MENU'\nexport const SHOW_PLAYER_MENU = 'SHOW_PLAYER_MENU'\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemLink.vue?vue&type=template&id=69134921&\"\nimport script from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[(_vm.title)?_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.title)+\" \")]):_vm._e(),_vm._t(\"modal-content\")],2),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.close_action ? _vm.close_action : 'Cancel'))])]),(_vm.delete_action)?_c('a',{staticClass:\"card-footer-item has-background-danger has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('delete')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.delete_action))])]):_vm._e(),(_vm.ok_action)?_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('ok')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-check\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.ok_action))])]):_vm._e()])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialog.vue?vue&type=template&id=5739f0bd&\"\nimport script from \"./ModalDialog.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialog.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport Vuex from 'vuex'\nimport * as types from './mutation_types'\n\nVue.use(Vuex)\n\nexport default new Vuex.Store({\n state: {\n config: {\n websocket_port: 0,\n version: '',\n buildoptions: []\n },\n settings: {\n categories: []\n },\n library: {\n artists: 0,\n albums: 0,\n songs: 0,\n db_playtime: 0,\n updating: false\n },\n audiobooks_count: { },\n podcasts_count: { },\n outputs: [],\n player: {\n state: 'stop',\n repeat: 'off',\n consume: false,\n shuffle: false,\n volume: 0,\n item_id: 0,\n item_length_ms: 0,\n item_progress_ms: 0\n },\n queue: {\n version: 0,\n count: 0,\n items: []\n },\n lastfm: {},\n spotify: {},\n pairing: {},\n\n spotify_new_releases: [],\n spotify_featured_playlists: [],\n\n notifications: {\n next_id: 1,\n list: []\n },\n recent_searches: [],\n\n hide_singles: false,\n hide_spotify: false,\n artists_sort: 'Name',\n artist_albums_sort: 'Name',\n albums_sort: 'Name',\n show_only_next_items: false,\n show_burger_menu: false,\n show_player_menu: false\n },\n\n getters: {\n now_playing: state => {\n const item = state.queue.items.find(function (item) {\n return item.id === state.player.item_id\n })\n return (item === undefined) ? {} : item\n },\n\n settings_webinterface: state => {\n if (state.settings) {\n return state.settings.categories.find(elem => elem.name === 'webinterface')\n }\n return null\n },\n\n settings_option_recently_added_limit: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'recently_added_limit')\n if (option) {\n return option.value\n }\n }\n return 100\n },\n\n settings_option_show_composer_now_playing: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_now_playing')\n if (option) {\n return option.value\n }\n }\n return false\n },\n\n settings_option_show_composer_for_genre: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_for_genre')\n if (option) {\n return option.value\n }\n }\n return null\n },\n\n settings_category: (state) => (categoryName) => {\n return state.settings.categories.find(elem => elem.name === categoryName)\n },\n\n settings_option: (state) => (categoryName, optionName) => {\n const category = state.settings.categories.find(elem => elem.name === categoryName)\n if (!category) {\n return {}\n }\n return category.options.find(elem => elem.name === optionName)\n }\n },\n\n mutations: {\n [types.UPDATE_CONFIG] (state, config) {\n state.config = config\n },\n [types.UPDATE_SETTINGS] (state, settings) {\n state.settings = settings\n },\n [types.UPDATE_SETTINGS_OPTION] (state, option) {\n const settingCategory = state.settings.categories.find(elem => elem.name === option.category)\n const settingOption = settingCategory.options.find(elem => elem.name === option.name)\n settingOption.value = option.value\n },\n [types.UPDATE_LIBRARY_STATS] (state, libraryStats) {\n state.library = libraryStats\n },\n [types.UPDATE_LIBRARY_AUDIOBOOKS_COUNT] (state, count) {\n state.audiobooks_count = count\n },\n [types.UPDATE_LIBRARY_PODCASTS_COUNT] (state, count) {\n state.podcasts_count = count\n },\n [types.UPDATE_OUTPUTS] (state, outputs) {\n state.outputs = outputs\n },\n [types.UPDATE_PLAYER_STATUS] (state, playerStatus) {\n state.player = playerStatus\n },\n [types.UPDATE_QUEUE] (state, queue) {\n state.queue = queue\n },\n [types.UPDATE_LASTFM] (state, lastfm) {\n state.lastfm = lastfm\n },\n [types.UPDATE_SPOTIFY] (state, spotify) {\n state.spotify = spotify\n },\n [types.UPDATE_PAIRING] (state, pairing) {\n state.pairing = pairing\n },\n [types.SPOTIFY_NEW_RELEASES] (state, newReleases) {\n state.spotify_new_releases = newReleases\n },\n [types.SPOTIFY_FEATURED_PLAYLISTS] (state, featuredPlaylists) {\n state.spotify_featured_playlists = featuredPlaylists\n },\n [types.ADD_NOTIFICATION] (state, notification) {\n if (notification.topic) {\n const index = state.notifications.list.findIndex(elem => elem.topic === notification.topic)\n if (index >= 0) {\n state.notifications.list.splice(index, 1, notification)\n return\n }\n }\n state.notifications.list.push(notification)\n },\n [types.DELETE_NOTIFICATION] (state, notification) {\n const index = state.notifications.list.indexOf(notification)\n\n if (index !== -1) {\n state.notifications.list.splice(index, 1)\n }\n },\n [types.ADD_RECENT_SEARCH] (state, query) {\n const index = state.recent_searches.findIndex(elem => elem === query)\n if (index >= 0) {\n state.recent_searches.splice(index, 1)\n }\n\n state.recent_searches.splice(0, 0, query)\n\n if (state.recent_searches.length > 5) {\n state.recent_searches.pop()\n }\n },\n [types.HIDE_SINGLES] (state, hideSingles) {\n state.hide_singles = hideSingles\n },\n [types.HIDE_SPOTIFY] (state, hideSpotify) {\n state.hide_spotify = hideSpotify\n },\n [types.ARTISTS_SORT] (state, sort) {\n state.artists_sort = sort\n },\n [types.ARTIST_ALBUMS_SORT] (state, sort) {\n state.artist_albums_sort = sort\n },\n [types.ALBUMS_SORT] (state, sort) {\n state.albums_sort = sort\n },\n [types.SHOW_ONLY_NEXT_ITEMS] (state, showOnlyNextItems) {\n state.show_only_next_items = showOnlyNextItems\n },\n [types.SHOW_BURGER_MENU] (state, showBurgerMenu) {\n state.show_burger_menu = showBurgerMenu\n },\n [types.SHOW_PLAYER_MENU] (state, showPlayerMenu) {\n state.show_player_menu = showPlayerMenu\n }\n },\n\n actions: {\n add_notification ({ commit, state }, notification) {\n const newNotification = {\n id: state.notifications.next_id++,\n type: notification.type,\n text: notification.text,\n topic: notification.topic,\n timeout: notification.timeout\n }\n\n commit(types.ADD_NOTIFICATION, newNotification)\n\n if (notification.timeout > 0) {\n setTimeout(() => {\n commit(types.DELETE_NOTIFICATION, newNotification)\n }, notification.timeout)\n }\n }\n }\n})\n","import axios from 'axios'\nimport store from '@/store'\n\naxios.interceptors.response.use(function (response) {\n return response\n}, function (error) {\n if (error.request.status && error.request.responseURL) {\n store.dispatch('add_notification', { text: 'Request failed (status: ' + error.request.status + ' ' + error.request.statusText + ', url: ' + error.request.responseURL + ')', type: 'danger' })\n }\n return Promise.reject(error)\n})\n\nexport default {\n config () {\n return axios.get('./api/config')\n },\n\n settings () {\n return axios.get('./api/settings')\n },\n\n settings_update (categoryName, option) {\n return axios.put('./api/settings/' + categoryName + '/' + option.name, option)\n },\n\n library_stats () {\n return axios.get('./api/library')\n },\n\n library_update () {\n return axios.put('./api/update')\n },\n\n library_rescan () {\n return axios.put('./api/rescan')\n },\n\n library_count (expression) {\n return axios.get('./api/library/count?expression=' + expression)\n },\n\n queue () {\n return axios.get('./api/queue')\n },\n\n queue_clear () {\n return axios.put('./api/queue/clear')\n },\n\n queue_remove (itemId) {\n return axios.delete('./api/queue/items/' + itemId)\n },\n\n queue_move (itemId, newPosition) {\n return axios.put('./api/queue/items/' + itemId + '?new_position=' + newPosition)\n },\n\n queue_add (uri) {\n return axios.post('./api/queue/items/add?uris=' + uri).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_add_next (uri) {\n let position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n position = store.getters.now_playing.position + 1\n }\n return axios.post('./api/queue/items/add?uris=' + uri + '&position=' + position).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add (expression) {\n const options = {}\n options.expression = expression\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add_next (expression) {\n const options = {}\n options.expression = expression\n options.position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n options.position = store.getters.now_playing.position + 1\n }\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_save_playlist (name) {\n return axios.post('./api/queue/save', undefined, { params: { name: name } }).then((response) => {\n store.dispatch('add_notification', { text: 'Queue saved to playlist \"' + name + '\"', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n player_status () {\n return axios.get('./api/player')\n },\n\n player_play_uri (uris, shuffle, position = undefined) {\n const options = {}\n options.uris = uris\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play_expression (expression, shuffle, position = undefined) {\n const options = {}\n options.expression = expression\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play (options = {}) {\n return axios.put('./api/player/play', undefined, { params: options })\n },\n\n player_playpos (position) {\n return axios.put('./api/player/play?position=' + position)\n },\n\n player_playid (itemId) {\n return axios.put('./api/player/play?item_id=' + itemId)\n },\n\n player_pause () {\n return axios.put('./api/player/pause')\n },\n\n player_stop () {\n return axios.put('./api/player/stop')\n },\n\n player_next () {\n return axios.put('./api/player/next')\n },\n\n player_previous () {\n return axios.put('./api/player/previous')\n },\n\n player_shuffle (newState) {\n const shuffle = newState ? 'true' : 'false'\n return axios.put('./api/player/shuffle?state=' + shuffle)\n },\n\n player_consume (newState) {\n const consume = newState ? 'true' : 'false'\n return axios.put('./api/player/consume?state=' + consume)\n },\n\n player_repeat (newRepeatMode) {\n return axios.put('./api/player/repeat?state=' + newRepeatMode)\n },\n\n player_volume (volume) {\n return axios.put('./api/player/volume?volume=' + volume)\n },\n\n player_output_volume (outputId, outputVolume) {\n return axios.put('./api/player/volume?volume=' + outputVolume + '&output_id=' + outputId)\n },\n\n player_seek_to_pos (newPosition) {\n return axios.put('./api/player/seek?position_ms=' + newPosition)\n },\n\n player_seek (seekMs) {\n return axios.put('./api/player/seek?seek_ms=' + seekMs)\n },\n\n outputs () {\n return axios.get('./api/outputs')\n },\n\n output_update (outputId, output) {\n return axios.put('./api/outputs/' + outputId, output)\n },\n\n output_toggle (outputId) {\n return axios.put('./api/outputs/' + outputId + '/toggle')\n },\n\n library_artists (media_kind = undefined) {\n return axios.get('./api/library/artists', { params: { media_kind: media_kind } })\n },\n\n library_artist (artistId) {\n return axios.get('./api/library/artists/' + artistId)\n },\n\n library_artist_albums (artistId) {\n return axios.get('./api/library/artists/' + artistId + '/albums')\n },\n\n library_albums (media_kind = undefined) {\n return axios.get('./api/library/albums', { params: { media_kind: media_kind } })\n },\n\n library_album (albumId) {\n return axios.get('./api/library/albums/' + albumId)\n },\n\n library_album_tracks (albumId, filter = { limit: -1, offset: 0 }) {\n return axios.get('./api/library/albums/' + albumId + '/tracks', {\n params: filter\n })\n },\n\n library_album_track_update (albumId, attributes) {\n return axios.put('./api/library/albums/' + albumId + '/tracks', undefined, { params: attributes })\n },\n\n library_genres () {\n return axios.get('./api/library/genres')\n },\n\n library_genre (genre) {\n const genreParams = {\n type: 'albums',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_genre_tracks (genre) {\n const genreParams = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_radio_streams () {\n const params = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'data_kind is url and song_length = 0'\n }\n return axios.get('./api/search', {\n params: params\n })\n },\n\n library_artist_tracks (artist) {\n if (artist) {\n const artistParams = {\n type: 'tracks',\n expression: 'songartistid is \"' + artist + '\"'\n }\n return axios.get('./api/search', {\n params: artistParams\n })\n }\n },\n\n library_podcasts_new_episodes () {\n const episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and play_count = 0 ORDER BY time_added DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_podcast_episodes (albumId) {\n const episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and songalbumid is \"' + albumId + '\" ORDER BY date_released DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_add (url) {\n return axios.post('./api/library/add', undefined, { params: { url: url } })\n },\n\n library_playlist_delete (playlistId) {\n return axios.delete('./api/library/playlists/' + playlistId, undefined)\n },\n\n library_playlists () {\n return axios.get('./api/library/playlists')\n },\n\n library_playlist_folder (playlistId = 0) {\n return axios.get('./api/library/playlists/' + playlistId + '/playlists')\n },\n\n library_playlist (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId)\n },\n\n library_playlist_tracks (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId + '/tracks')\n },\n\n library_track (trackId) {\n return axios.get('./api/library/tracks/' + trackId)\n },\n\n library_track_playlists (trackId) {\n return axios.get('./api/library/tracks/' + trackId + '/playlists')\n },\n\n library_track_update (trackId, attributes = {}) {\n return axios.put('./api/library/tracks/' + trackId, undefined, { params: attributes })\n },\n\n library_files (directory = undefined) {\n const filesParams = { directory: directory }\n return axios.get('./api/library/files', {\n params: filesParams\n })\n },\n\n search (searchParams) {\n return axios.get('./api/search', {\n params: searchParams\n })\n },\n\n spotify () {\n return axios.get('./api/spotify')\n },\n\n spotify_login (credentials) {\n return axios.post('./api/spotify-login', credentials)\n },\n\n lastfm () {\n return axios.get('./api/lastfm')\n },\n\n lastfm_login (credentials) {\n return axios.post('./api/lastfm-login', credentials)\n },\n\n lastfm_logout (credentials) {\n return axios.get('./api/lastfm-logout')\n },\n\n pairing () {\n return axios.get('./api/pairing')\n },\n\n pairing_kickoff (pairingReq) {\n return axios.post('./api/pairing', pairingReq)\n },\n\n artwork_url_append_size_params (artworkUrl, maxwidth = 600, maxheight = 600) {\n if (artworkUrl && artworkUrl.startsWith('/')) {\n if (artworkUrl.includes('?')) {\n return artworkUrl + '&maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl + '?maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarTop.vue?vue&type=template&id=bf9ea990&\"\nimport script from \"./NavbarTop.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarTop.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-bottom-navbar navbar is-white is-fixed-bottom\",class:{ 'is-transparent': _vm.is_now_playing_page, 'is-dark': !_vm.is_now_playing_page },style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"player controls\"}},[_c('div',{staticClass:\"navbar-brand fd-expanded\"},[_c('navbar-item-link',{attrs:{\"to\":\"/\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-playlist-play\"})])]),(!_vm.is_now_playing_page)?_c('router-link',{staticClass:\"navbar-item is-expanded is-clipped\",attrs:{\"to\":\"/now-playing\",\"active-class\":\"is-active\",\"exact\":\"\"}},[_c('div',{staticClass:\"is-clipped\"},[_c('p',{staticClass:\"is-size-7 fd-is-text-clipped\"},[_c('strong',[_vm._v(_vm._s(_vm.now_playing.title))]),_c('br'),_vm._v(\" \"+_vm._s(_vm.now_playing.artist)),(_vm.now_playing.data_kind === 'url')?_c('span',[_vm._v(\" - \"+_vm._s(_vm.now_playing.album))]):_vm._e()])])]):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-previous',{staticClass:\"navbar-item fd-margin-left-auto\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-seek-back',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"10000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('player-button-play-pause',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-36px\",\"show_disabled_message\":\"\"}}),(_vm.is_now_playing_page)?_c('player-button-seek-forward',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"30000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-next',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('a',{staticClass:\"navbar-item fd-margin-left-auto is-hidden-desktop\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch\",class:{ 'is-active': _vm.show_player_menu }},[_c('a',{staticClass:\"navbar-link is-arrowless\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-dropdown is-right is-boxed\",staticStyle:{\"margin-right\":\"6px\",\"margin-bottom\":\"6px\",\"border-radius\":\"6px\"}},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(0)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile fd-expanded\"},[_c('div',{staticClass:\"level-item\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('player-button-repeat',{staticClass:\"button\"}),_c('player-button-shuffle',{staticClass:\"button\"}),_c('player-button-consume',{staticClass:\"button\"})],1)])])])],2)])],1),_c('div',{staticClass:\"navbar-menu is-hidden-desktop\",class:{ 'is-active': _vm.show_player_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('player-button-repeat',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-shuffle',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-consume',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}})],1)]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item fd-has-margin-bottom\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(1)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])])],2)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])}]\n\nexport { render, staticRenderFns }","/**\n * Audio handler object\n * Taken from https://github.com/rainner/soma-fm-player (released under MIT licence)\n */\nexport default {\n _audio: new Audio(),\n _context: null,\n _source: null,\n _gain: null,\n\n // setup audio routing\n setupAudio () {\n const AudioContext = window.AudioContext || window.webkitAudioContext\n this._context = new AudioContext()\n this._source = this._context.createMediaElementSource(this._audio)\n this._gain = this._context.createGain()\n\n this._source.connect(this._gain)\n this._gain.connect(this._context.destination)\n\n this._audio.addEventListener('canplaythrough', e => {\n this._audio.play()\n })\n this._audio.addEventListener('canplay', e => {\n this._audio.play()\n })\n return this._audio\n },\n\n // set audio volume\n setVolume (volume) {\n if (!this._gain) return\n volume = parseFloat(volume) || 0.0\n volume = (volume < 0) ? 0 : volume\n volume = (volume > 1) ? 1 : volume\n this._gain.gain.value = volume\n },\n\n // play audio source url\n playSource (source) {\n this.stopAudio()\n this._context.resume().then(() => {\n this._audio.src = String(source || '') + '?x=' + Date.now()\n this._audio.crossOrigin = 'anonymous'\n this._audio.load()\n })\n },\n\n // stop playing audio\n stopAudio () {\n try { this._audio.pause() } catch (e) {}\n try { this._audio.stop() } catch (e) {}\n try { this._audio.close() } catch (e) {}\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\"},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.output.selected },on:{\"click\":_vm.set_enabled}},[_c('i',{staticClass:\"mdi mdi-18px\",class:_vm.type_class,attrs:{\"title\":_vm.output.type}})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.output.selected }},[_vm._v(_vm._s(_vm.output.name))]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.output.selected,\"value\":_vm.volume},on:{\"change\":_vm.set_volume}})],1)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemOutput.vue?vue&type=template&id=df9b1590&\"\nimport script from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.toggle_play_pause}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-play': !_vm.is_playing, 'mdi-pause': _vm.is_playing && _vm.is_pause_allowed, 'mdi-stop': _vm.is_playing && !_vm.is_pause_allowed }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPlayPause.vue?vue&type=template&id=160e1e94&\"\nimport script from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-forward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonNext.vue?vue&type=template&id=105fa0b7&\"\nimport script from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_previous}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-backward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPrevious.vue?vue&type=template&id=de93cb4e&\"\nimport script from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_shuffle },on:{\"click\":_vm.toggle_shuffle_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-shuffle': _vm.is_shuffle, 'mdi-shuffle-disabled': !_vm.is_shuffle }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonShuffle.vue?vue&type=template&id=6c682bca&\"\nimport script from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_consume },on:{\"click\":_vm.toggle_consume_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fire\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonConsume.vue?vue&type=template&id=652605a0&\"\nimport script from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': !_vm.is_repeat_off },on:{\"click\":_vm.toggle_repeat_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-repeat': _vm.is_repeat_all, 'mdi-repeat-once': _vm.is_repeat_single, 'mdi-repeat-off': _vm.is_repeat_off }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonRepeat.vue?vue&type=template&id=76c131bd&\"\nimport script from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rewind\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekBack.vue?vue&type=template&id=6e68196d&\"\nimport script from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fast-forward\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekForward.vue?vue&type=template&id=2f43a35a&\"\nimport script from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarBottom.vue?vue&type=template&id=7bc29059&\"\nimport script from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"fd-notifications\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-half\"},_vm._l((_vm.notifications),function(notification){return _c('div',{key:notification.id,staticClass:\"notification has-shadow \",class:['notification', notification.type ? (\"is-\" + (notification.type)) : '']},[_c('button',{staticClass:\"delete\",on:{\"click\":function($event){return _vm.remove(notification)}}}),_vm._v(\" \"+_vm._s(notification.text)+\" \")])}),0)])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Notifications.vue?vue&type=template&id=45b704a5&\"\nimport script from \"./Notifications.vue?vue&type=script&lang=js&\"\nexport * from \"./Notifications.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Notifications.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Remote pairing request \")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label\"},[_vm._v(\" \"+_vm._s(_vm.pairing.remote)+\" \")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],ref:\"pin_field\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.kickoff_pairing}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cellphone-iphone\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Pair Remote\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogRemotePairing.vue?vue&type=template&id=4491cb33&\"\nimport script from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=d36cdf4a&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.queue.count)+\" tracks\")]),_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Queue\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.show_only_next_items },on:{\"click\":_vm.update_show_next_items}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-arrow-collapse-down\"})]),_c('span',[_vm._v(\"Hide previous\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_stream_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',[_vm._v(\"Add Stream\")])]),_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.edit_mode },on:{\"click\":function($event){_vm.edit_mode = !_vm.edit_mode}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Edit\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.queue_clear}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete-empty\"})]),_c('span',[_vm._v(\"Clear\")])]),(_vm.is_queue_save_allowed)?_c('a',{staticClass:\"button is-small\",attrs:{\"disabled\":_vm.queue_items.length === 0},on:{\"click\":_vm.save_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_c('span',[_vm._v(\"Save\")])]):_vm._e()])]),_c('template',{slot:\"content\"},[_c('draggable',{attrs:{\"handle\":\".handle\"},on:{\"end\":_vm.move_item},model:{value:(_vm.queue_items),callback:function ($$v) {_vm.queue_items=$$v},expression:\"queue_items\"}},_vm._l((_vm.queue_items),function(item,index){return _c('list-item-queue-item',{key:item.id,attrs:{\"item\":item,\"position\":index,\"current_position\":_vm.current_position,\"show_only_next_items\":_vm.show_only_next_items,\"edit_mode\":_vm.edit_mode}},[_c('template',{slot:\"actions\"},[(!_vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.open_dialog(item)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])]):_vm._e(),(item.id !== _vm.state.item_id && _vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.remove(item)}}},[_c('span',{staticClass:\"icon has-text-grey\"},[_c('i',{staticClass:\"mdi mdi-delete mdi-18px\"})])]):_vm._e()])],2)}),1),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog-add-url-stream',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false}}}),(_vm.is_queue_save_allowed)?_c('modal-dialog-playlist-save',{attrs:{\"show\":_vm.show_pls_save_modal},on:{\"close\":function($event){_vm.show_pls_save_modal = false}}}):_vm._e()],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[(_vm.$slots['options'])?_c('section',[_c('div',{directives:[{name:\"observe-visibility\",rawName:\"v-observe-visibility\",value:(_vm.observer_options),expression:\"observer_options\"}],staticStyle:{\"height\":\"2px\"}}),_vm._t(\"options\"),_c('nav',{staticClass:\"buttons is-centered\",staticStyle:{\"margin-bottom\":\"6px\",\"margin-top\":\"16px\"}},[(!_vm.options_visible)?_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_top}},[_vm._m(0)]):_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_content}},[_vm._m(1)])])],2):_vm._e(),_c('div',{class:{'fd-content-with-option': _vm.$slots['options']}},[_c('nav',{staticClass:\"level\",attrs:{\"id\":\"top\"}},[_c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item has-text-centered-mobile\"},[_c('div',[_vm._t(\"heading-left\")],2)])]),_c('div',{staticClass:\"level-right has-text-centered-mobile\"},[_vm._t(\"heading-right\")],2)]),_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-up\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentWithHeading.vue?vue&type=template&id=94dfd75a&\"\nimport script from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.is_next || !_vm.show_only_next_items)?_c('div',{staticClass:\"media\"},[(_vm.edit_mode)?_c('div',{staticClass:\"media-left\"},[_vm._m(0)]):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next }},[_vm._v(_vm._s(_vm.item.title))]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_c('b',[_vm._v(_vm._s(_vm.item.artist))])]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_vm._v(_vm._s(_vm.item.album))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon has-text-grey fd-is-movable handle\"},[_c('i',{staticClass:\"mdi mdi-drag-horizontal mdi-18px\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemQueueItem.vue?vue&type=template&id=58363490&\"\nimport script from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.item.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.item.artist)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),(_vm.item.album_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.item.album))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album))])]),(_vm.item.album_artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),(_vm.item.album_artist_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album_artist}},[_vm._v(_vm._s(_vm.item.album_artist))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album_artist))])]):_vm._e(),(_vm.item.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.composer))])]):_vm._e(),(_vm.item.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.year))])]):_vm._e(),(_vm.item.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.item.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.track_number)+\" / \"+_vm._s(_vm.item.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.media_kind)+\" - \"+_vm._s(_vm.item.data_kind)+\" \"),(_vm.item.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.item.type)+\" \"),(_vm.item.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.samplerate)+\" Hz\")]):_vm._e(),(_vm.item.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.item.channels)))]):_vm._e(),(_vm.item.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.bitrate)+\" Kb/s\")]):_vm._e()])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.remove}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Remove\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogQueueItem.vue?vue&type=template&id=5521a6c4&\"\nimport script from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Add stream URL \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.play($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-stream\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-web\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Loading ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddUrlStream.vue?vue&type=template&id=1c92eee2&\"\nimport script from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Save queue to playlist \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.save($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.playlist_name),expression:\"playlist_name\"}],ref:\"playlist_name_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Playlist name\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.playlist_name)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.playlist_name=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-file-music\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Saving ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.save}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Save\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylistSave.vue?vue&type=template&id=5f414a1b&\"\nimport script from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageQueue.vue?vue&type=template&id=4b30cd46&\"\nimport script from \"./PageQueue.vue?vue&type=script&lang=js&\"\nexport * from \"./PageQueue.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[(_vm.now_playing.id > 0)?_c('div',{staticClass:\"fd-is-fullheight\"},[_c('div',{staticClass:\"fd-is-expanded\"},[_c('cover-artwork',{staticClass:\"fd-cover-image fd-has-action\",attrs:{\"artwork_url\":_vm.now_playing.artwork_url,\"artist\":_vm.now_playing.artist,\"album\":_vm.now_playing.album},on:{\"click\":function($event){return _vm.open_dialog(_vm.now_playing)}}})],1),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered\"},[_c('p',{staticClass:\"control has-text-centered fd-progress-now-playing\"},[_c('range-slider',{staticClass:\"seek-slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":_vm.state.item_length_ms,\"value\":_vm.item_progress_ms,\"disabled\":_vm.state.state === 'stop',\"step\":\"1000\"},on:{\"change\":_vm.seek}})],1),_c('p',{staticClass:\"content\"},[_c('span',[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item_progress_ms))+\" / \"+_vm._s(_vm._f(\"duration\")(_vm.now_playing.length_ms)))])])])]),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered fd-has-margin-top\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.title)+\" \")]),_c('h2',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.artist)+\" \")]),(_vm.composer)?_c('h2',{staticClass:\"subtitle is-6 has-text-grey has-text-weight-bold\"},[_vm._v(\" \"+_vm._s(_vm.composer)+\" \")]):_vm._e(),_c('h3',{staticClass:\"subtitle is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.album)+\" \")])])])]):_c('div',{staticClass:\"fd-is-fullheight\"},[_vm._m(0)]),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"fd-is-expanded fd-has-padding-left-right\",staticStyle:{\"flex-direction\":\"column\"}},[_c('div',{staticClass:\"content has-text-centered\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" Your play queue is empty \")]),_c('p',[_vm._v(\" Add some tracks by browsing your library \")])])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('figure',[_c('img',{directives:[{name:\"lazyload\",rawName:\"v-lazyload\"}],key:_vm.artwork_url_with_size,attrs:{\"data-src\":_vm.artwork_url_with_size,\"data-err\":_vm.dataURI},on:{\"click\":function($event){return _vm.$emit('click')}}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/*\n * SVGRenderer taken from https://github.com/bendera/placeholder published under MIT License\n * Copyright (c) 2017 Adam Bender\n * https://github.com/bendera/placeholder/blob/master/LICENSE\n */\nclass SVGRenderer {\n render (data) {\n const svg = '' +\n '' +\n '' +\n '' +\n '' +\n ' ' +\n ' ' +\n ' ' + data.caption + '' +\n ' ' +\n '' +\n ''\n\n return 'data:image/svg+xml;charset=UTF-8,' + encodeURIComponent(svg)\n }\n}\n\nexport default SVGRenderer\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./CoverArtwork.vue?vue&type=template&id=377ab7d4&\"\nimport script from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageNowPlaying.vue?vue&type=template&id=734899dc&\"\nimport script from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\nexport * from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.recently_added.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_added')}}},[_vm._v(\"Show more\")])])])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_played')}}},[_vm._v(\"Show more\")])])])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\nexport const LoadDataBeforeEnterMixin = function (dataObject) {\n return {\n beforeRouteEnter (to, from, next) {\n dataObject.load(to).then((response) => {\n next(vm => dataObject.set(vm, response))\n })\n },\n beforeRouteUpdate (to, from, next) {\n const vm = this\n dataObject.load(to).then((response) => {\n dataObject.set(vm, response)\n next()\n })\n }\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/browse\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',{},[_vm._v(\"Browse\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Artists\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Albums\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/genres\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-speaker\"})]),_c('span',{},[_vm._v(\"Genres\")])])]),(_vm.spotify_enabled)?_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/spotify\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})]),_c('span',{},[_vm._v(\"Spotify\")])])]):_vm._e()],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsMusic.vue?vue&type=template&id=f9ae6826&\"\nimport script from \"./TabsMusic.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsMusic.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.albums.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.albums.grouped[idx]),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.albums_list),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album,\"media_kind\":_vm.media_kind},on:{\"remove-podcast\":function($event){return _vm.open_remove_podcast_dialog()},\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.album.name_sort.charAt(0).toUpperCase()}},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('div',{staticStyle:{\"margin-top\":\"0.7rem\"}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artist))])]),(_vm.props.album.date_released && _vm.props.album.media_kind === 'music')?_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\" \"+_vm._s(_vm._f(\"time\")(_vm.props.album.date_released,'L'))+\" \")]):_vm._e()])]),_c('div',{staticClass:\"media-right\",staticStyle:{\"padding-top\":\"0.7rem\"}},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemAlbum.vue?vue&type=template&id=0d4ab83f&functional=true&\"\nimport script from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('cover-artwork',{staticClass:\"image is-square fd-has-margin-bottom fd-has-shadow\",attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name}}),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),(_vm.media_kind_resolved === 'podcast')?_c('div',{staticClass:\"buttons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.$emit('remove-podcast')}}},[_vm._v(\"Remove podcast\")])]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[(_vm.album.artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]):_vm._e(),(_vm.album.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.date_released,'L')))])]):(_vm.album.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.year))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.album.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.media_kind)+\" - \"+_vm._s(_vm.album.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.time_added,'L LT')))])])])],1),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAlbum.vue?vue&type=template&id=43881b14&\"\nimport script from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Albums {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getAlbumIndex (album) {\n if (this.options.sort === 'Recently added') {\n return album.time_added.substring(0, 4)\n } else if (this.options.sort === 'Recently added (browse)') {\n return this.getRecentlyAddedBrowseIndex(album.time_added)\n } else if (this.options.sort === 'Recently released') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n } else if (this.options.sort === 'Release date') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n }\n return album.name_sort.charAt(0).toUpperCase()\n }\n\n getRecentlyAddedBrowseIndex (recentlyAdded) {\n if (!recentlyAdded) {\n return '0000'\n }\n\n const diff = new Date().getTime() - new Date(recentlyAdded).getTime()\n\n if (diff < 86400000) { // 24h\n return 'Today'\n } else if (diff < 604800000) { // 7 days\n return 'Last week'\n } else if (diff < 2592000000) { // 30 days\n return 'Last month'\n }\n return recentlyAdded.substring(0, 4)\n }\n\n isAlbumVisible (album) {\n if (this.options.hideSingles && album.track_count <= 2) {\n return false\n }\n if (this.options.hideSpotify && album.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(album => this.getAlbumIndex(album)))]\n }\n\n createSortedAndFilteredList () {\n let albumsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n albumsSorted = albumsSorted.filter(album => this.isAlbumVisible(album))\n }\n if (this.options.sort === 'Recently added' || this.options.sort === 'Recently added (browse)') {\n albumsSorted = [...albumsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n } else if (this.options.sort === 'Recently released') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return 1\n }\n if (!b.date_released) {\n return -1\n }\n return b.date_released.localeCompare(a.date_released)\n })\n } else if (this.options.sort === 'Release date') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return -1\n }\n if (!b.date_released) {\n return 1\n }\n return a.date_released.localeCompare(b.date_released)\n })\n }\n this.sortedAndFiltered = albumsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, album) => {\n const idx = this.getAlbumIndex(album)\n r[idx] = [...r[idx] || [], album]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListAlbums.vue?vue&type=template&id=4c4c1fd6&\"\nimport script from \"./ListAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./ListAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.tracks),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index, track)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",class:{ 'with-progress': _vm.slots().progress },attrs:{\"id\":'index_' + _vm.props.track.title_sort.charAt(0).toUpperCase()}},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-grey': _vm.props.track.media_kind === 'podcast' && _vm.props.track.play_count > 0 }},[_vm._v(_vm._s(_vm.props.track.title))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.track.artist))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.props.track.album))]),_vm._t(\"progress\")],2),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemTrack.vue?vue&type=template&id=b15cd80c&functional=true&\"\nimport script from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artist)+\" \")]),(_vm.track.media_kind === 'podcast')?_c('div',{staticClass:\"buttons\"},[(_vm.track.play_count > 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_new}},[_vm._v(\"Mark as new\")]):_vm._e(),(_vm.track.play_count === 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]):_vm._e()]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.track.album))])]),(_vm.track.album_artist && _vm.track.media_kind !== 'audiobook')?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.track.album_artist))])]):_vm._e(),(_vm.track.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.composer))])]):_vm._e(),(_vm.track.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.date_released,'L')))])]):(_vm.track.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.year))])]):_vm._e(),(_vm.track.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.track.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.media_kind)+\" - \"+_vm._s(_vm.track.data_kind)+\" \"),(_vm.track.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.track.type)+\" \"),(_vm.track.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.samplerate)+\" Hz\")]):_vm._e(),(_vm.track.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.track.channels)))]):_vm._e(),(_vm.track.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.bitrate)+\" Kb/s\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.time_added,'L LT')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Rating\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(Math.floor(_vm.track.rating / 10))+\" / 10\")])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play_track}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogTrack.vue?vue&type=template&id=2c4c4585&\"\nimport script from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListTracks.vue?vue&type=template&id=39565e8c&\"\nimport script from \"./ListTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./ListTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowse.vue?vue&type=template&id=377ad592&\"\nimport script from \"./PageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyAdded.vue?vue&type=template&id=669b1b24&\"\nimport script from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyPlayed.vue?vue&type=template&id=6755b6f8&\"\nimport script from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear on singles or playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide artists from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Artists\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[_c('nav',{staticClass:\"buttons is-centered fd-is-square\",staticStyle:{\"margin-bottom\":\"16px\"}},_vm._l((_vm.filtered_index),function(char){return _c('a',{key:char,staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.nav(char)}}},[_vm._v(_vm._s(char))])}),0)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./IndexButtonList.vue?vue&type=template&id=4b37eeb5&\"\nimport script from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\nexport * from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.artists.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.artists.grouped[idx]),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.artists_list),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_details_modal,\"artist\":_vm.selected_artist,\"media_kind\":_vm.media_kind},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemArtist.vue?vue&type=template&id=6f373e4f&functional=true&\"\nimport script from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Albums\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.album_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.artist.time_added,'L LT')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogArtist.vue?vue&type=template&id=c563adce&\"\nimport script from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Artists {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getArtistIndex (artist) {\n if (this.options.sort === 'Name') {\n return artist.name_sort.charAt(0).toUpperCase()\n }\n return artist.time_added.substring(0, 4)\n }\n\n isArtistVisible (artist) {\n if (this.options.hideSingles && artist.track_count <= (artist.album_count * 2)) {\n return false\n }\n if (this.options.hideSpotify && artist.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(artist => this.getArtistIndex(artist)))]\n }\n\n createSortedAndFilteredList () {\n let artistsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n artistsSorted = artistsSorted.filter(artist => this.isArtistVisible(artist))\n }\n if (this.options.sort === 'Recently added') {\n artistsSorted = [...artistsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n }\n this.sortedAndFiltered = artistsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, artist) => {\n const idx = this.getArtistIndex(artist)\n r[idx] = [...r[idx] || [], artist]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListArtists.vue?vue&type=template&id=a9a21416&\"\nimport script from \"./ListArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown\",class:{ 'is-active': _vm.is_active }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('button',{staticClass:\"button\",attrs:{\"aria-haspopup\":\"true\",\"aria-controls\":\"dropdown-menu\"},on:{\"click\":function($event){_vm.is_active = !_vm.is_active}}},[_c('span',[_vm._v(_vm._s(_vm.value))]),_vm._m(0)])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},_vm._l((_vm.options),function(option){return _c('a',{key:option,staticClass:\"dropdown-item\",class:{'is-active': _vm.value === option},on:{\"click\":function($event){return _vm.select(option)}}},[_vm._v(\" \"+_vm._s(option)+\" \")])}),0)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\",attrs:{\"aria-hidden\":\"true\"}})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./DropdownMenu.vue?vue&type=template&id=56ac032b&\"\nimport script from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtists.vue?vue&type=template&id=3d4c8b43&\"\nimport script from \"./PageArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"options\"},[_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])]),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(_vm._s(_vm.artist.track_count)+\" tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.albums_list}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtist.vue?vue&type=template&id=03dca38a&\"\nimport script from \"./PageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides singles and albums with tracks that only appear in playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide albums from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides albums that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Albums\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbums.vue?vue&type=template&id=f8e2027c&\"\nimport script from \"./PageAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbum.vue?vue&type=template&id=ad2b3a70&\"\nimport script from \"./PageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Genres\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.genres.total)+\" genres\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.genres.items),function(genre){return _c('list-item-genre',{key:genre.name,attrs:{\"genre\":genre},on:{\"click\":function($event){return _vm.open_genre(genre)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(genre)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_details_modal,\"genre\":_vm.selected_genre},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.genre.name.charAt(0).toUpperCase()}},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.genre.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemGenre.vue?vue&type=template&id=526e97c7&functional=true&\"\nimport script from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.genre.name))])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogGenre.vue?vue&type=template&id=f6ef5fb8&\"\nimport script from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenres.vue?vue&type=template&id=9a23c802&\"\nimport script from \"./PageGenres.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenres.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.genre_albums.total)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(\"tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.genre_albums.items}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.name }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenre.vue?vue&type=template&id=2268caa3&\"\nimport script from \"./PageGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.genre))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(\"albums\")]),_vm._v(\" | \"+_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"expression\":_vm.expression}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.genre }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenreTracks.vue?vue&type=template&id=0fff7765&\"\nimport script from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_vm._v(\" | \"+_vm._s(_vm.artist.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"uris\":_vm.track_uris}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtistTracks.vue?vue&type=template&id=6da2b51e&\"\nimport script from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.new_episodes.items.length > 0)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New episodes\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_all_played}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Mark All Played\")])])])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_episodes.items),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false},\"play-count-changed\":_vm.reload_new_episodes}})],2)],2):_vm._e(),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums.total)+\" podcasts\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_podcast_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rss\"})]),_c('span',[_vm._v(\"Add Podcast\")])])])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items},on:{\"play-count-changed\":function($event){return _vm.reload_new_episodes()},\"podcast-deleted\":function($event){return _vm.reload_podcasts()}}}),_c('modal-dialog-add-rss',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false},\"podcast-added\":function($event){return _vm.reload_podcasts()}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Add Podcast RSS feed URL\")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.add_stream($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-rss\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-rss\"})])]),_c('p',{staticClass:\"help\"},[_vm._v(\"Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. \")])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item button is-loading\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Processing ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddRss.vue?vue&type=template&id=21695499&\"\nimport script from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcasts.vue?vue&type=template&id=aa493f06&\"\nimport script from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.album.name)+\" \")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_vm._l((_vm.tracks),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false},\"play-count-changed\":_vm.reload_tracks}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'podcast',\"new_tracks\":_vm.new_tracks},on:{\"close\":function($event){_vm.show_album_details_modal = false},\"play-count-changed\":_vm.reload_tracks,\"remove-podcast\":_vm.open_remove_podcast_dialog}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcast.vue?vue&type=template&id=f135dc2e&\"\nimport script from \"./PagePodcast.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcast.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Authors\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Audiobooks\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsAudiobooks.vue?vue&type=template&id=0cda5528&\"\nimport script from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbums.vue?vue&type=template&id=35fdc4d3&\"\nimport script from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Authors\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Authors\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtists.vue?vue&type=template&id=57e179cc&\"\nimport script from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_c('list-albums',{attrs:{\"albums\":_vm.albums.items}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtist.vue?vue&type=template&id=1d8187dc&\"\nimport script from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'audiobook'},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbum.vue?vue&type=template&id=efa1b7f2&\"\nimport script from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.playlists.total)+\" playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.playlists),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-library-music': playlist.type !== 'folder', 'mdi-rss': playlist.type === 'rss', 'mdi-folder': playlist.type === 'folder' }})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.playlist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemPlaylist.vue?vue&type=template&id=70e1d159&functional=true&\"\nimport script from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.type))])])])]),(!_vm.playlist.folder)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])]):_vm._e()])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylist.vue?vue&type=template&id=eed38c78&\"\nimport script from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListPlaylists.vue?vue&type=template&id=cb1e7e92&\"\nimport script from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylists.vue?vue&type=template&id=3470ce91&\"\nimport script from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.length)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.uris}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist,\"uris\":_vm.uris},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylist.vue?vue&type=template&id=71750814&\"\nimport script from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Files\")]),_c('p',{staticClass:\"title is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.current_directory))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){return _vm.open_directory_dialog({ 'path': _vm.current_directory })}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[(_vm.$route.query.directory)?_c('div',{staticClass:\"media\",on:{\"click\":function($event){return _vm.open_parent_directory()}}},[_c('figure',{staticClass:\"media-left fd-has-action\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-subdirectory-arrow-left\"})])]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\"},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(\"..\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e(),_vm._l((_vm.files.directories),function(directory){return _c('list-item-directory',{key:directory.path,attrs:{\"directory\":directory},on:{\"click\":function($event){return _vm.open_directory(directory)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_directory_dialog(directory)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.playlists.items),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.tracks.items),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-file-outline\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-directory',{attrs:{\"show\":_vm.show_directory_details_modal,\"directory\":_vm.selected_directory},on:{\"close\":function($event){_vm.show_directory_details_modal = false}}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._m(0)]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.directory.path.substring(_vm.props.directory.path.lastIndexOf('/') + 1)))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey-light\"},[_vm._v(_vm._s(_vm.props.directory.path))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = [function (_h,_vm) {var _c=_vm._c;return _c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemDirectory.vue?vue&type=template&id=fc5a981a&functional=true&\"\nimport script from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.directory.path)+\" \")])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogDirectory.vue?vue&type=template&id=47bd3efd&\"\nimport script from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageFiles.vue?vue&type=template&id=52f9641a&\"\nimport script from \"./PageFiles.vue?vue&type=script&lang=js&\"\nexport * from \"./PageFiles.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Radio\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageRadioStreams.vue?vue&type=template&id=6286e82d&\"\nimport script from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\nexport * from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)]),_vm._m(1)])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e(),(_vm.show_podcasts && _vm.podcasts.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.podcasts.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_podcasts_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_podcasts}},[_vm._v(\"Show all \"+_vm._s(_vm.podcasts.total.toLocaleString())+\" podcasts\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_podcasts && !_vm.podcasts.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No podcasts found\")])])])],2):_vm._e(),(_vm.show_audiobooks && _vm.audiobooks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.audiobooks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_audiobooks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_audiobooks}},[_vm._v(\"Show all \"+_vm._s(_vm.audiobooks.total.toLocaleString())+\" audiobooks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_audiobooks && !_vm.audiobooks.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No audiobooks found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"help has-text-centered\"},[_vm._v(\"Tip: you can search by a smart playlist query language \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md\",\"target\":\"_blank\"}},[_vm._v(\"expression\")]),_vm._v(\" if you prefix it with \"),_c('code',[_vm._v(\"query:\")]),_vm._v(\". \")])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content py-3\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\")],2)])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentText.vue?vue&type=template&id=bfc5ab0a&\"\nimport script from \"./ContentText.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentText.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.spotify_enabled)?_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small is-toggle is-toggle-rounded\"},[_c('ul',[_c('li',{class:{ 'is-active': _vm.$route.path === '/search/library' }},[_c('a',{on:{\"click\":_vm.search_library}},[_vm._m(0),_c('span',{},[_vm._v(\"Library\")])])]),_c('li',{class:{ 'is-active': _vm.$route.path === '/search/spotify' }},[_c('a',{on:{\"click\":_vm.search_spotify}},[_vm._m(1),_c('span',{},[_vm._v(\"Spotify\")])])])])])])])])]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-library-books\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSearch.vue?vue&type=template&id=3392045a&\"\nimport script from \"./TabsSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageSearch.vue?vue&type=template&id=29849e51&\"\nimport script from \"./PageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./PageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths has-text-centered-mobile\"},[_c('p',{staticClass:\"heading\"},[_c('b',[_vm._v(\"forked-daapd\")]),_vm._v(\" - version \"+_vm._s(_vm.config.version))]),_c('h1',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.config.library_name))])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content\"},[_c('nav',{staticClass:\"level is-mobile\"},[_vm._m(0),_c('div',{staticClass:\"level-right\"},[(_vm.library.updating)?_c('div',[_c('a',{staticClass:\"button is-small is-loading\"},[_vm._v(\"Update\")])]):_c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown is-right\",class:{ 'is-active': _vm.show_update_dropdown }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.update}},[_vm._v(\"Update\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){_vm.show_update_dropdown = !_vm.show_update_dropdown}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-chevron-down': !_vm.show_update_dropdown, 'mdi-chevron-up': _vm.show_update_dropdown }})])])])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},[_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update}},[_c('strong',[_vm._v(\"Update\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Adds new, removes deleted and updates modified files.\")])])]),_c('hr',{staticClass:\"dropdown-divider\"}),_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update_meta}},[_c('strong',[_vm._v(\"Rescan metadata\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Same as update, but also rescans unmodified files.\")])])])])])])])]),_c('table',{staticClass:\"table\"},[_c('tbody',[_c('tr',[_c('th',[_vm._v(\"Artists\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.artists)))])]),_c('tr',[_c('th',[_vm._v(\"Albums\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.albums)))])]),_c('tr',[_c('th',[_vm._v(\"Tracks\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.songs)))])]),_c('tr',[_c('th',[_vm._v(\"Total playtime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.library.db_playtime * 1000,'y [years], d [days], h [hours], m [minutes]')))])]),_c('tr',[_c('th',[_vm._v(\"Library updated\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.updated_at))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.updated_at,'lll'))+\")\")])])]),_c('tr',[_c('th',[_vm._v(\"Uptime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.started_at,true))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.started_at,'ll'))+\")\")])])])])])])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content has-text-centered-mobile\"},[_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Compiled with support for \"+_vm._s(_vm._f(\"join\")(_vm.config.buildoptions))+\".\")]),_vm._m(1)])])])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item\"},[_c('h2',{staticClass:\"title is-5\"},[_vm._v(\"Library\")])])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Web interface built with \"),_c('a',{attrs:{\"href\":\"http://bulma.io\"}},[_vm._v(\"Bulma\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://materialdesignicons.com/\"}},[_vm._v(\"Material Design Icons\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://vuejs.org/\"}},[_vm._v(\"Vue.js\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://github.com/mzabriskie/axios\"}},[_vm._v(\"axios\")]),_vm._v(\" and \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/network/dependencies\"}},[_vm._v(\"more\")]),_vm._v(\".\")])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAbout.vue?vue&type=template&id=474a48e7&\"\nimport script from \"./PageAbout.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAbout.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/new-releases\"}},[_vm._v(\" Show more \")])],1)])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/featured-playlists\"}},[_vm._v(\" Show more \")])],1)])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artists[0].name))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\"(\"+_vm._s(_vm.props.album.album_type)+\", \"+_vm._s(_vm._f(\"time\")(_vm.props.album.release_date,'L'))+\")\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemAlbum.vue?vue&type=template&id=62c75d12&functional=true&\"\nimport script from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_playlist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('h2',{staticClass:\"subtitle is-7\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemPlaylist.vue?vue&type=template&id=5f06cfec&\"\nimport script from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('figure',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.artwork_visible),expression:\"artwork_visible\"}],staticClass:\"image is-square fd-has-margin-bottom\"},[_c('img',{staticClass:\"fd-has-shadow\",attrs:{\"src\":_vm.artwork_url},on:{\"load\":_vm.artwork_loaded,\"error\":_vm.artwork_error}})]),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.album_type))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogAlbum.vue?vue&type=template&id=c74b0d5a&\"\nimport script from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Owner\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.tracks.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogPlaylist.vue?vue&type=template&id=306ad148&\"\nimport script from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowse.vue?vue&type=template&id=55573f08&\"\nimport script from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseNewReleases.vue?vue&type=template&id=81c5055e&\"\nimport script from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=template&id=0258f289&\"\nimport script from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.total)+\" albums\")]),_vm._l((_vm.albums),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Popularity / Followers\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.popularity)+\" / \"+_vm._s(_vm.artist.followers.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genres\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.genres.join(', ')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogArtist.vue?vue&type=template&id=7a611bba&\"\nimport script from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageArtist.vue?vue&type=template&id=b2a152d8&\"\nimport script from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.tracks.total)+\" tracks\")]),_vm._l((_vm.album.tracks.items),function(track,index){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"position\":index,\"album\":_vm.album,\"context_uri\":_vm.album.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.track.artists[0].name))])])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemTrack.vue?vue&type=template&id=28c7eaa1&\"\nimport script from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.name)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artists[0].name)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.duration_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogTrack.vue?vue&type=template&id=094bebe4&\"\nimport script from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageAlbum.vue?vue&type=template&id=63d70974&\"\nimport script from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.playlist.tracks.total)+\" tracks\")]),_vm._l((_vm.tracks),function(item,index){return _c('spotify-list-item-track',{key:item.track.id,attrs:{\"track\":item.track,\"album\":item.track.album,\"position\":index,\"context_uri\":_vm.playlist.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(item.track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPagePlaylist.vue?vue&type=template&id=c72f0fb2&\"\nimport script from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)])])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.tracks.items),function(track){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"album\":track.album,\"position\":0,\"context_uri\":track.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'track')?_c('infinite-loading',{on:{\"infinite\":_vm.search_tracks_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.artists.items),function(artist){return _c('spotify-list-item-artist',{key:artist.id,attrs:{\"artist\":artist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_artist_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'artist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_artists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.selected_artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.albums.items),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'album')?_c('infinite-loading',{on:{\"infinite\":_vm.search_albums_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.playlists.items),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'playlist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_playlists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_artist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemArtist.vue?vue&type=template&id=59bc374f&\"\nimport script from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageSearch.vue?vue&type=template&id=6fd13a6d&\"\nimport script from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Navbar items\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" Select the top navigation bar menu items \")]),_c('div',{staticClass:\"notification is-size-7\"},[_vm._v(\" If you select more items than can be shown on your screen then the burger menu will disappear. \")]),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_playlists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Playlists\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_music\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Music\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_podcasts\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Podcasts\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_audiobooks\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Audiobooks\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_radio\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Radio\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_files\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Files\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_search\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Search\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Album lists\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_cover_artwork_in_album_lists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show cover artwork in album list\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Now playing page\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_now_playing\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show composer\")]),_c('template',{slot:\"info\"},[_vm._v(\"If enabled the composer of the current playing track is shown on the \\\"now playing page\\\"\")])],2),_c('settings-textfield',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_for_genre\",\"disabled\":!_vm.settings_option_show_composer_now_playing,\"placeholder\":\"Genres\"}},[_c('template',{slot:\"label\"},[_vm._v(\"Show composer only for listed genres\")]),_c('template',{slot:\"info\"},[_c('p',{staticClass:\"help\"},[_vm._v(\" Comma separated list of genres the composer should be displayed on the \\\"now playing page\\\". \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" Leave empty to always show the composer. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to \"),_c('code',[_vm._v(\"classical, soundtrack\")]),_vm._v(\" will show the composer for tracks with a genre tag of \\\"Contemporary Classical\\\".\"),_c('br')])])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Recently added page\")])]),_c('template',{slot:\"content\"},[_c('settings-intfield',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"recently_added_limit\"}},[_c('template',{slot:\"label\"},[_vm._v(\"Limit the number of albums shown on the \\\"Recently Added\\\" page\")])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/webinterface\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Webinterface\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/remotes-outputs\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Remotes & Outputs\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/artwork\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Artwork\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/online-services\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Online Services\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSettings.vue?vue&type=template&id=6c0a7918&\"\nimport script from \"./TabsSettings.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSettings.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{ref:\"settings_checkbox\",attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":_vm.value},on:{\"change\":_vm.set_update_timer}}),_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsCheckbox.vue?vue&type=template&id=f722b06c&\"\nimport script from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('fieldset',{attrs:{\"disabled\":_vm.disabled}},[_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),_c('div',{staticClass:\"control\"},[_c('input',{ref:\"settings_text\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":_vm.placeholder},domProps:{\"value\":_vm.value},on:{\"input\":_vm.set_update_timer}})]),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsTextfield.vue?vue&type=template&id=4cc6d5ec&\"\nimport script from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('fieldset',{attrs:{\"disabled\":_vm.disabled}},[_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),_c('div',{staticClass:\"control\"},[_c('input',{ref:\"settings_number\",staticClass:\"input\",staticStyle:{\"width\":\"10em\"},attrs:{\"type\":\"number\",\"min\":\"0\",\"placeholder\":_vm.placeholder},domProps:{\"value\":_vm.value},on:{\"input\":_vm.set_update_timer}})]),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsIntfield.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsIntfield.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsIntfield.vue?vue&type=template&id=3bf31942&\"\nimport script from \"./SettingsIntfield.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsIntfield.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageWebinterface.vue?vue&type=template&id=caf7e2e0&\"\nimport script from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Artwork\")])]),_c('template',{slot:\"content\"},[_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. \")]),_c('p',[_vm._v(\"In addition to that, you can enable fetching artwork from the following artwork providers:\")])]),(_vm.spotify.libspotify_logged_in)?_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_spotify\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Spotify\")])],2):_vm._e(),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_discogs\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Discogs (\"),_c('a',{attrs:{\"href\":\"https://www.discogs.com/\"}},[_vm._v(\"https://www.discogs.com/\")]),_vm._v(\")\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_coverartarchive\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Cover Art Archive (\"),_c('a',{attrs:{\"href\":\"https://coverartarchive.org/\"}},[_vm._v(\"https://coverartarchive.org/\")]),_vm._v(\")\")])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageArtwork.vue?vue&type=template&id=41b3d8bf&\"\nimport script from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Spotify\")])]),_c('template',{slot:\"content\"},[(!_vm.spotify.libspotify_installed)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was either built without support for Spotify or libspotify is not installed.\")])]):_vm._e(),(_vm.spotify.libspotify_installed)?_c('div',[_c('div',{staticClass:\"notification is-size-7\"},[_c('b',[_vm._v(\"You must have a Spotify premium account\")]),_vm._v(\". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. \")]),_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"libspotify\")]),_vm._v(\" - Login with your Spotify username and password \")]),(_vm.spotify.libspotify_logged_in)?_c('p',{staticClass:\"fd-has-margin-bottom\"},[_vm._v(\" Logged in as \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.libspotify_user))])])]):_vm._e(),(_vm.spotify.libspotify_installed && !_vm.spotify.libspotify_logged_in)?_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_libspotify($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.user),expression:\"libspotify.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.libspotify.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.password),expression:\"libspotify.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.libspotify.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\"},[_vm._v(\"Login\")])])])]):_vm._e(),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" libspotify enables forked-daapd to play Spotify tracks. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. \")])]),_c('div',{staticClass:\"fd-has-margin-top\"},[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Spotify Web API\")]),_vm._v(\" - Grant access to the Spotify Web API \")]),(_vm.spotify.webapi_token_valid)?_c('p',[_vm._v(\" Access granted for \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.webapi_user))])])]):_vm._e(),(_vm.spotify_missing_scope.length > 0)?_c('p',{staticClass:\"help is-danger\"},[_vm._v(\" Please reauthorize Web API access to grant forked-daapd the following additional access rights: \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_missing_scope)))])])]):_vm._e(),_c('div',{staticClass:\"field fd-has-margin-top \"},[_c('div',{staticClass:\"control\"},[_c('a',{staticClass:\"button\",class:{ 'is-info': !_vm.spotify.webapi_token_valid || _vm.spotify_missing_scope.length > 0 },attrs:{\"href\":_vm.spotify.oauth_uri}},[_vm._v(\"Authorize Web API access\")])])]),_c('p',{staticClass:\"help\"},[_vm._v(\" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are \"),_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_required_scope)))]),_vm._v(\". \")])])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Last.fm\")])]),_c('template',{slot:\"content\"},[(!_vm.lastfm.enabled)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was built without support for Last.fm.\")])]):_vm._e(),(_vm.lastfm.enabled)?_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Last.fm\")]),_vm._v(\" - Login with your Last.fm username and password to enable scrobbling \")]),(_vm.lastfm.scrobbling_enabled)?_c('div',[_c('a',{staticClass:\"button\",on:{\"click\":_vm.logoutLastfm}},[_vm._v(\"Stop scrobbling\")])]):_vm._e(),(!_vm.lastfm.scrobbling_enabled)?_c('div',[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_lastfm($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.user),expression:\"lastfm_login.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.lastfm_login.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.password),expression:\"lastfm_login.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.lastfm_login.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Login\")])])]),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. \")])])]):_vm._e()]):_vm._e()])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageOnlineServices.vue?vue&type=template&id=da8f0386&\"\nimport script from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Remote Pairing\")])]),_c('template',{slot:\"content\"},[(_vm.pairing.active)?_c('div',{staticClass:\"notification\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._v(\" Remote pairing request from \"),_c('b',[_vm._v(_vm._s(_vm.pairing.remote))])]),_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Send\")])])])])]):_vm._e(),(!_vm.pairing.active)?_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\"No active pairing request.\")])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Device Verification\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. \")]),_vm._l((_vm.outputs),function(output){return _c('div',{key:output.id},[_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(output.selected),expression:\"output.selected\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(output.selected)?_vm._i(output.selected,null)>-1:(output.selected)},on:{\"change\":[function($event){var $$a=output.selected,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.$set(output, \"selected\", $$a.concat([$$v])))}else{$$i>-1&&(_vm.$set(output, \"selected\", $$a.slice(0,$$i).concat($$a.slice($$i+1))))}}else{_vm.$set(output, \"selected\", $$c)}},function($event){return _vm.output_toggle(output.id)}]}}),_vm._v(\" \"+_vm._s(output.name)+\" \")])])]),(output.needs_auth_key)?_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_verification(output.id)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.verification_req.pin),expression:\"verification_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter verification code\"},domProps:{\"value\":(_vm.verification_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.verification_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Verify\")])])])]):_vm._e()])})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageRemotesOutputs.vue?vue&type=template&id=2356d137&\"\nimport script from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport VueRouter from 'vue-router'\nimport store from '@/store'\nimport * as types from '@/store/mutation_types'\nimport PageQueue from '@/pages/PageQueue'\nimport PageNowPlaying from '@/pages/PageNowPlaying'\nimport PageBrowse from '@/pages/PageBrowse'\nimport PageBrowseRecentlyAdded from '@/pages/PageBrowseRecentlyAdded'\nimport PageBrowseRecentlyPlayed from '@/pages/PageBrowseRecentlyPlayed'\nimport PageArtists from '@/pages/PageArtists'\nimport PageArtist from '@/pages/PageArtist'\nimport PageAlbums from '@/pages/PageAlbums'\nimport PageAlbum from '@/pages/PageAlbum'\nimport PageGenres from '@/pages/PageGenres'\nimport PageGenre from '@/pages/PageGenre'\nimport PageGenreTracks from '@/pages/PageGenreTracks'\nimport PageArtistTracks from '@/pages/PageArtistTracks'\nimport PagePodcasts from '@/pages/PagePodcasts'\nimport PagePodcast from '@/pages/PagePodcast'\nimport PageAudiobooksAlbums from '@/pages/PageAudiobooksAlbums'\nimport PageAudiobooksArtists from '@/pages/PageAudiobooksArtists'\nimport PageAudiobooksArtist from '@/pages/PageAudiobooksArtist'\nimport PageAudiobooksAlbum from '@/pages/PageAudiobooksAlbum'\nimport PagePlaylists from '@/pages/PagePlaylists'\nimport PagePlaylist from '@/pages/PagePlaylist'\nimport PageFiles from '@/pages/PageFiles'\nimport PageRadioStreams from '@/pages/PageRadioStreams'\nimport PageSearch from '@/pages/PageSearch'\nimport PageAbout from '@/pages/PageAbout'\nimport SpotifyPageBrowse from '@/pages/SpotifyPageBrowse'\nimport SpotifyPageBrowseNewReleases from '@/pages/SpotifyPageBrowseNewReleases'\nimport SpotifyPageBrowseFeaturedPlaylists from '@/pages/SpotifyPageBrowseFeaturedPlaylists'\nimport SpotifyPageArtist from '@/pages/SpotifyPageArtist'\nimport SpotifyPageAlbum from '@/pages/SpotifyPageAlbum'\nimport SpotifyPagePlaylist from '@/pages/SpotifyPagePlaylist'\nimport SpotifyPageSearch from '@/pages/SpotifyPageSearch'\nimport SettingsPageWebinterface from '@/pages/SettingsPageWebinterface'\nimport SettingsPageArtwork from '@/pages/SettingsPageArtwork'\nimport SettingsPageOnlineServices from '@/pages/SettingsPageOnlineServices'\nimport SettingsPageRemotesOutputs from '@/pages/SettingsPageRemotesOutputs'\n\nVue.use(VueRouter)\n\nexport const router = new VueRouter({\n routes: [\n {\n path: '/',\n name: 'PageQueue',\n component: PageQueue\n },\n {\n path: '/about',\n name: 'About',\n component: PageAbout\n },\n {\n path: '/now-playing',\n name: 'Now playing',\n component: PageNowPlaying\n },\n {\n path: '/music',\n redirect: '/music/browse'\n },\n {\n path: '/music/browse',\n name: 'Browse',\n component: PageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_added',\n name: 'Browse Recently Added',\n component: PageBrowseRecentlyAdded,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_played',\n name: 'Browse Recently Played',\n component: PageBrowseRecentlyPlayed,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/artists',\n name: 'Artists',\n component: PageArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id',\n name: 'Artist',\n component: PageArtist,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id/tracks',\n name: 'Tracks',\n component: PageArtistTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/albums',\n name: 'Albums',\n component: PageAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/albums/:album_id',\n name: 'Album',\n component: PageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/genres',\n name: 'Genres',\n component: PageGenres,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/genres/:genre',\n name: 'Genre',\n component: PageGenre,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/genres/:genre/tracks',\n name: 'GenreTracks',\n component: PageGenreTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/podcasts',\n name: 'Podcasts',\n component: PagePodcasts,\n meta: { show_progress: true }\n },\n {\n path: '/podcasts/:album_id',\n name: 'Podcast',\n component: PagePodcast,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks',\n redirect: '/audiobooks/artists'\n },\n {\n path: '/audiobooks/artists',\n name: 'AudiobooksArtists',\n component: PageAudiobooksArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/artists/:artist_id',\n name: 'AudiobooksArtist',\n component: PageAudiobooksArtist,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks/albums',\n name: 'AudiobooksAlbums',\n component: PageAudiobooksAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/:album_id',\n name: 'Audiobook',\n component: PageAudiobooksAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/radio',\n name: 'Radio',\n component: PageRadioStreams,\n meta: { show_progress: true }\n },\n {\n path: '/files',\n name: 'Files',\n component: PageFiles,\n meta: { show_progress: true }\n },\n {\n path: '/playlists',\n redirect: '/playlists/0'\n },\n {\n path: '/playlists/:playlist_id',\n name: 'Playlists',\n component: PagePlaylists,\n meta: { show_progress: true }\n },\n {\n path: '/playlists/:playlist_id/tracks',\n name: 'Playlist',\n component: PagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search',\n redirect: '/search/library'\n },\n {\n path: '/search/library',\n name: 'Search Library',\n component: PageSearch\n },\n {\n path: '/music/spotify',\n name: 'Spotify',\n component: SpotifyPageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/new-releases',\n name: 'Spotify Browse New Releases',\n component: SpotifyPageBrowseNewReleases,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/featured-playlists',\n name: 'Spotify Browse Featured Playlists',\n component: SpotifyPageBrowseFeaturedPlaylists,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/artists/:artist_id',\n name: 'Spotify Artist',\n component: SpotifyPageArtist,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/albums/:album_id',\n name: 'Spotify Album',\n component: SpotifyPageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/playlists/:playlist_id',\n name: 'Spotify Playlist',\n component: SpotifyPagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search/spotify',\n name: 'Spotify Search',\n component: SpotifyPageSearch\n },\n {\n path: '/settings/webinterface',\n name: 'Settings Webinterface',\n component: SettingsPageWebinterface\n },\n {\n path: '/settings/artwork',\n name: 'Settings Artwork',\n component: SettingsPageArtwork\n },\n {\n path: '/settings/online-services',\n name: 'Settings Online Services',\n component: SettingsPageOnlineServices\n },\n {\n path: '/settings/remotes-outputs',\n name: 'Settings Remotes Outputs',\n component: SettingsPageRemotesOutputs\n }\n ],\n scrollBehavior (to, from, savedPosition) {\n // console.log(to.path + '_' + from.path + '__' + to.hash + ' savedPosition:' + savedPosition)\n if (savedPosition) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve(savedPosition)\n }, 10)\n })\n } else if (to.path === from.path && to.hash) {\n return { selector: to.hash, offset: { x: 0, y: 120 } }\n } else if (to.hash) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve({ selector: to.hash, offset: { x: 0, y: 120 } })\n }, 10)\n })\n } else if (to.meta.has_index) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n if (to.meta.has_tabs) {\n resolve({ selector: '#top', offset: { x: 0, y: 140 } })\n } else {\n resolve({ selector: '#top', offset: { x: 0, y: 100 } })\n }\n }, 10)\n })\n } else {\n return { x: 0, y: 0 }\n }\n }\n})\n\nrouter.beforeEach((to, from, next) => {\n if (store.state.show_burger_menu) {\n store.commit(types.SHOW_BURGER_MENU, false)\n next(false)\n return\n }\n if (store.state.show_player_menu) {\n store.commit(types.SHOW_PLAYER_MENU, false)\n next(false)\n return\n }\n next(true)\n})\n","import Vue from 'vue'\nimport moment from 'moment'\nimport momentDurationFormatSetup from 'moment-duration-format'\n\nmomentDurationFormatSetup(moment)\nVue.filter('duration', function (value, format) {\n if (format) {\n return moment.duration(value).format(format)\n }\n return moment.duration(value).format('hh:*mm:ss')\n})\n\nVue.filter('time', function (value, format) {\n if (format) {\n return moment(value).format(format)\n }\n return moment(value).format()\n})\n\nVue.filter('timeFromNow', function (value, withoutSuffix) {\n return moment(value).fromNow(withoutSuffix)\n})\n\nVue.filter('number', function (value) {\n return value.toLocaleString()\n})\n\nVue.filter('channels', function (value) {\n if (value === 1) {\n return 'mono'\n }\n if (value === 2) {\n return 'stereo'\n }\n if (!value) {\n return ''\n }\n return value + ' channels'\n})\n","import Vue from 'vue'\nimport VueProgressBar from 'vue-progressbar'\n\nVue.use(VueProgressBar, {\n color: 'hsl(204, 86%, 53%)',\n failedColor: 'red',\n height: '1px'\n})\n","// The Vue build version to load with the `import` command\n// (runtime-only or standalone) has been set in webpack.base.conf with an alias.\nimport Vue from 'vue'\nimport App from './App'\nimport { router } from './router'\nimport store from './store'\nimport './filter'\nimport './progress'\nimport vClickOutside from 'v-click-outside'\nimport VueTinyLazyloadImg from 'vue-tiny-lazyload-img'\nimport VueObserveVisibility from 'vue-observe-visibility'\nimport VueScrollTo from 'vue-scrollto'\nimport 'mdi/css/materialdesignicons.css'\nimport 'vue-range-slider/dist/vue-range-slider.css'\nimport './mystyles.scss'\n\nVue.config.productionTip = false\n\nVue.use(vClickOutside)\nVue.use(VueTinyLazyloadImg)\nVue.use(VueObserveVisibility)\nVue.use(VueScrollTo)\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n store,\n components: { App },\n template: ''\n})\n","export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=style&index=0&lang=css&\"","import { render, staticRenderFns } from \"./ContentWithHero.vue?vue&type=template&id=357bedaa&\"\nimport script from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""} \ No newline at end of file diff --git a/htdocs/player/js/app.js b/htdocs/player/js/app.js index 0733df91..780bc879 100644 --- a/htdocs/player/js/app.js +++ b/htdocs/player/js/app.js @@ -1,2 +1,2 @@ -(function(t){function s(s){for(var e,o,n=s[0],r=s[1],c=s[2],u=0,p=[];u-1:t.rescan_metadata},on:{change:function(s){var a=t.rescan_metadata,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.rescan_metadata=a.concat([l])):o>-1&&(t.rescan_metadata=a.slice(0,o).concat(a.slice(o+1)))}else t.rescan_metadata=i}}}),t._v(" Rescan metadata for unmodified files ")])])])])],2),a("div",{directives:[{name:"show",rawName:"v-show",value:t.show_settings_menu,expression:"show_settings_menu"}],staticClass:"is-overlay",staticStyle:{"z-index":"10",width:"100vw",height:"100vh"},on:{click:function(s){t.show_settings_menu=!1}}})],1)}),n=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-link is-arrowless"},[a("span",{staticClass:"icon is-hidden-touch"},[a("i",{staticClass:"mdi mdi-24px mdi-menu"})]),a("span",{staticClass:"is-hidden-desktop has-text-weight-bold"},[t._v("forked-daapd")])])}],r=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-item",class:{"is-active":t.is_active},attrs:{href:t.full_path()},on:{click:function(s){return s.stopPropagation(),s.preventDefault(),t.open_link()}}},[t._t("default")],2)},c=[];a("2ca0");const d="UPDATE_CONFIG",u="UPDATE_SETTINGS",p="UPDATE_SETTINGS_OPTION",_="UPDATE_LIBRARY_STATS",m="UPDATE_LIBRARY_AUDIOBOOKS_COUNT",h="UPDATE_LIBRARY_PODCASTS_COUNT",f="UPDATE_OUTPUTS",y="UPDATE_PLAYER_STATUS",v="UPDATE_QUEUE",b="UPDATE_LASTFM",g="UPDATE_SPOTIFY",k="UPDATE_PAIRING",C="SPOTIFY_NEW_RELEASES",w="SPOTIFY_FEATURED_PLAYLISTS",x="ADD_NOTIFICATION",$="DELETE_NOTIFICATION",q="ADD_RECENT_SEARCH",A="HIDE_SINGLES",S="HIDE_SPOTIFY",j="ARTISTS_SORT",P="ARTIST_ALBUMS_SORT",T="ALBUMS_SORT",L="SHOW_ONLY_NEXT_ITEMS",O="SHOW_BURGER_MENU",E="SHOW_PLAYER_MENU";var I={name:"NavbarItemLink",props:{to:String,exact:Boolean},computed:{is_active(){return this.exact?this.$route.path===this.to:this.$route.path.startsWith(this.to)},show_player_menu:{get(){return this.$store.state.show_player_menu},set(t){this.$store.commit(E,t)}},show_burger_menu:{get(){return this.$store.state.show_burger_menu},set(t){this.$store.commit(O,t)}}},methods:{open_link:function(){this.show_burger_menu&&this.$store.commit(O,!1),this.show_player_menu&&this.$store.commit(E,!1),this.$router.push({path:this.to})},full_path:function(){const t=this.$router.resolve(this.to);return t.href}}},z=I,D=a("2877"),N=Object(D["a"])(z,r,c,!1,null,null,null),R=N.exports,M=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[t.title?a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.title)+" ")]):t._e(),t._t("modal-content")],2),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.close_action?t.close_action:"Cancel"))])]),t.delete_action?a("a",{staticClass:"card-footer-item has-background-danger has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("delete")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.delete_action))])]):t._e(),t.ok_action?a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("ok")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-check"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.ok_action))])]):t._e()])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},U=[],H={name:"ModalDialog",props:["show","title","ok_action","delete_action","close_action"]},W=H,B=Object(D["a"])(W,M,U,!1,null,null,null),F=B.exports,G=a("bc3a"),Y=a.n(G),V=(a("c975"),a("a434"),a("2f62"));e["a"].use(V["a"]);var Q=new V["a"].Store({state:{config:{websocket_port:0,version:"",buildoptions:[]},settings:{categories:[]},library:{artists:0,albums:0,songs:0,db_playtime:0,updating:!1},audiobooks_count:{},podcasts_count:{},outputs:[],player:{state:"stop",repeat:"off",consume:!1,shuffle:!1,volume:0,item_id:0,item_length_ms:0,item_progress_ms:0},queue:{version:0,count:0,items:[]},lastfm:{},spotify:{},pairing:{},spotify_new_releases:[],spotify_featured_playlists:[],notifications:{next_id:1,list:[]},recent_searches:[],hide_singles:!1,hide_spotify:!1,artists_sort:"Name",artist_albums_sort:"Name",albums_sort:"Name",show_only_next_items:!1,show_burger_menu:!1,show_player_menu:!1},getters:{now_playing:t=>{var s=t.queue.items.find((function(s){return s.id===t.player.item_id}));return void 0===s?{}:s},settings_webinterface:t=>t.settings?t.settings.categories.find(t=>"webinterface"===t.name):null,settings_option_show_composer_now_playing:(t,s)=>{if(s.settings_webinterface){const t=s.settings_webinterface.options.find(t=>"show_composer_now_playing"===t.name);if(t)return t.value}return!1},settings_option_show_composer_for_genre:(t,s)=>{if(s.settings_webinterface){const t=s.settings_webinterface.options.find(t=>"show_composer_for_genre"===t.name);if(t)return t.value}return null},settings_category:t=>s=>t.settings.categories.find(t=>t.name===s),settings_option:t=>(s,a)=>{const e=t.settings.categories.find(t=>t.name===s);return e?e.options.find(t=>t.name===a):{}}},mutations:{[d](t,s){t.config=s},[u](t,s){t.settings=s},[p](t,s){const a=t.settings.categories.find(t=>t.name===s.category),e=a.options.find(t=>t.name===s.name);e.value=s.value},[_](t,s){t.library=s},[m](t,s){t.audiobooks_count=s},[h](t,s){t.podcasts_count=s},[f](t,s){t.outputs=s},[y](t,s){t.player=s},[v](t,s){t.queue=s},[b](t,s){t.lastfm=s},[g](t,s){t.spotify=s},[k](t,s){t.pairing=s},[C](t,s){t.spotify_new_releases=s},[w](t,s){t.spotify_featured_playlists=s},[x](t,s){if(s.topic){var a=t.notifications.list.findIndex(t=>t.topic===s.topic);if(a>=0)return void t.notifications.list.splice(a,1,s)}t.notifications.list.push(s)},[$](t,s){const a=t.notifications.list.indexOf(s);-1!==a&&t.notifications.list.splice(a,1)},[q](t,s){var a=t.recent_searches.findIndex(t=>t===s);a>=0&&t.recent_searches.splice(a,1),t.recent_searches.splice(0,0,s),t.recent_searches.length>5&&t.recent_searches.pop()},[A](t,s){t.hide_singles=s},[S](t,s){t.hide_spotify=s},[j](t,s){t.artists_sort=s},[P](t,s){t.artist_albums_sort=s},[T](t,s){t.albums_sort=s},[L](t,s){t.show_only_next_items=s},[O](t,s){t.show_burger_menu=s},[E](t,s){t.show_player_menu=s}},actions:{add_notification({commit:t,state:s},a){const e={id:s.notifications.next_id++,type:a.type,text:a.text,topic:a.topic,timeout:a.timeout};t(x,e),a.timeout>0&&setTimeout(()=>{t($,e)},a.timeout)}}});Y.a.interceptors.response.use((function(t){return t}),(function(t){return t.request.status&&t.request.responseURL&&Q.dispatch("add_notification",{text:"Request failed (status: "+t.request.status+" "+t.request.statusText+", url: "+t.request.responseURL+")",type:"danger"}),Promise.reject(t)}));var J={config(){return Y.a.get("./api/config")},settings(){return Y.a.get("./api/settings")},settings_update(t,s){return Y.a.put("./api/settings/"+t+"/"+s.name,s)},library_stats(){return Y.a.get("./api/library")},library_update(){return Y.a.put("./api/update")},library_rescan(){return Y.a.put("./api/rescan")},library_count(t){return Y.a.get("./api/library/count?expression="+t)},queue(){return Y.a.get("./api/queue")},queue_clear(){return Y.a.put("./api/queue/clear")},queue_remove(t){return Y.a.delete("./api/queue/items/"+t)},queue_move(t,s){return Y.a.put("./api/queue/items/"+t+"?new_position="+s)},queue_add(t){return Y.a.post("./api/queue/items/add?uris="+t).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_add_next(t){var s=0;return Q.getters.now_playing&&Q.getters.now_playing.id&&(s=Q.getters.now_playing.position+1),Y.a.post("./api/queue/items/add?uris="+t+"&position="+s).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_expression_add(t){var s={};return s.expression=t,Y.a.post("./api/queue/items/add",void 0,{params:s}).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_expression_add_next(t){var s={};return s.expression=t,s.position=0,Q.getters.now_playing&&Q.getters.now_playing.id&&(s.position=Q.getters.now_playing.position+1),Y.a.post("./api/queue/items/add",void 0,{params:s}).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_save_playlist(t){return Y.a.post("./api/queue/save",void 0,{params:{name:t}}).then(s=>(Q.dispatch("add_notification",{text:'Queue saved to playlist "'+t+'"',type:"info",timeout:2e3}),Promise.resolve(s)))},player_status(){return Y.a.get("./api/player")},player_play_uri(t,s,a){var e={};return e.uris=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,Y.a.post("./api/queue/items/add",void 0,{params:e})},player_play_expression(t,s,a){var e={};return e.expression=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,Y.a.post("./api/queue/items/add",void 0,{params:e})},player_play(t={}){return Y.a.put("./api/player/play",void 0,{params:t})},player_playpos(t){return Y.a.put("./api/player/play?position="+t)},player_playid(t){return Y.a.put("./api/player/play?item_id="+t)},player_pause(){return Y.a.put("./api/player/pause")},player_stop(){return Y.a.put("./api/player/stop")},player_next(){return Y.a.put("./api/player/next")},player_previous(){return Y.a.put("./api/player/previous")},player_shuffle(t){var s=t?"true":"false";return Y.a.put("./api/player/shuffle?state="+s)},player_consume(t){var s=t?"true":"false";return Y.a.put("./api/player/consume?state="+s)},player_repeat(t){return Y.a.put("./api/player/repeat?state="+t)},player_volume(t){return Y.a.put("./api/player/volume?volume="+t)},player_output_volume(t,s){return Y.a.put("./api/player/volume?volume="+s+"&output_id="+t)},player_seek_to_pos(t){return Y.a.put("./api/player/seek?position_ms="+t)},player_seek(t){return Y.a.put("./api/player/seek?seek_ms="+t)},outputs(){return Y.a.get("./api/outputs")},output_update(t,s){return Y.a.put("./api/outputs/"+t,s)},output_toggle(t){return Y.a.put("./api/outputs/"+t+"/toggle")},library_artists(t){return Y.a.get("./api/library/artists",{params:{media_kind:t}})},library_artist(t){return Y.a.get("./api/library/artists/"+t)},library_artist_albums(t){return Y.a.get("./api/library/artists/"+t+"/albums")},library_albums(t){return Y.a.get("./api/library/albums",{params:{media_kind:t}})},library_album(t){return Y.a.get("./api/library/albums/"+t)},library_album_tracks(t,s={limit:-1,offset:0}){return Y.a.get("./api/library/albums/"+t+"/tracks",{params:s})},library_album_track_update(t,s){return Y.a.put("./api/library/albums/"+t+"/tracks",void 0,{params:s})},library_genres(){return Y.a.get("./api/library/genres")},library_genre(t){var s={type:"albums",media_kind:"music",expression:'genre is "'+t+'"'};return Y.a.get("./api/search",{params:s})},library_genre_tracks(t){var s={type:"tracks",media_kind:"music",expression:'genre is "'+t+'"'};return Y.a.get("./api/search",{params:s})},library_radio_streams(){var t={type:"tracks",media_kind:"music",expression:"data_kind is url and song_length = 0"};return Y.a.get("./api/search",{params:t})},library_artist_tracks(t){if(t){var s={type:"tracks",expression:'songartistid is "'+t+'"'};return Y.a.get("./api/search",{params:s})}},library_podcasts_new_episodes(){var t={type:"tracks",expression:"media_kind is podcast and play_count = 0 ORDER BY time_added DESC"};return Y.a.get("./api/search",{params:t})},library_podcast_episodes(t){var s={type:"tracks",expression:'media_kind is podcast and songalbumid is "'+t+'" ORDER BY date_released DESC'};return Y.a.get("./api/search",{params:s})},library_add(t){return Y.a.post("./api/library/add",void 0,{params:{url:t}})},library_playlist_delete(t){return Y.a.delete("./api/library/playlists/"+t,void 0)},library_playlists(){return Y.a.get("./api/library/playlists")},library_playlist_folder(t=0){return Y.a.get("./api/library/playlists/"+t+"/playlists")},library_playlist(t){return Y.a.get("./api/library/playlists/"+t)},library_playlist_tracks(t){return Y.a.get("./api/library/playlists/"+t+"/tracks")},library_track(t){return Y.a.get("./api/library/tracks/"+t)},library_track_playlists(t){return Y.a.get("./api/library/tracks/"+t+"/playlists")},library_track_update(t,s={}){return Y.a.put("./api/library/tracks/"+t,void 0,{params:s})},library_files(t){var s={directory:t};return Y.a.get("./api/library/files",{params:s})},search(t){return Y.a.get("./api/search",{params:t})},spotify(){return Y.a.get("./api/spotify")},spotify_login(t){return Y.a.post("./api/spotify-login",t)},lastfm(){return Y.a.get("./api/lastfm")},lastfm_login(t){return Y.a.post("./api/lastfm-login",t)},lastfm_logout(t){return Y.a.get("./api/lastfm-logout")},pairing(){return Y.a.get("./api/pairing")},pairing_kickoff(t){return Y.a.post("./api/pairing",t)},artwork_url_append_size_params(t,s=600,a=600){return t&&t.startsWith("/")?t.includes("?")?t+"&maxwidth="+s+"&maxheight="+a:t+"?maxwidth="+s+"&maxheight="+a:t}},K={name:"NavbarTop",components:{NavbarItemLink:R,ModalDialog:F},data(){return{show_settings_menu:!1,show_update_library:!1,rescan_metadata:!1}},computed:{is_visible_playlists(){return this.$store.getters.settings_option("webinterface","show_menu_item_playlists").value},is_visible_music(){return this.$store.getters.settings_option("webinterface","show_menu_item_music").value},is_visible_podcasts(){return this.$store.getters.settings_option("webinterface","show_menu_item_podcasts").value},is_visible_audiobooks(){return this.$store.getters.settings_option("webinterface","show_menu_item_audiobooks").value},is_visible_radio(){return this.$store.getters.settings_option("webinterface","show_menu_item_radio").value},is_visible_files(){return this.$store.getters.settings_option("webinterface","show_menu_item_files").value},is_visible_search(){return this.$store.getters.settings_option("webinterface","show_menu_item_search").value},player(){return this.$store.state.player},config(){return this.$store.state.config},library(){return this.$store.state.library},audiobooks(){return this.$store.state.audiobooks_count},podcasts(){return this.$store.state.podcasts_count},spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},show_burger_menu:{get(){return this.$store.state.show_burger_menu},set(t){this.$store.commit(O,t)}},show_player_menu(){return this.$store.state.show_player_menu},zindex(){return this.show_player_menu?"z-index: 20":""}},methods:{on_click_outside_settings(){this.show_settings_menu=!this.show_settings_menu},update_library(){this.rescan_metadata?J.library_rescan():J.library_update()}},watch:{$route(t,s){this.show_settings_menu=!1}}},X=K,Z=Object(D["a"])(X,o,n,!1,null,null,null),tt=Z.exports,st=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("nav",{staticClass:"fd-bottom-navbar navbar is-white is-fixed-bottom",class:{"is-transparent":t.is_now_playing_page,"is-dark":!t.is_now_playing_page},style:t.zindex,attrs:{role:"navigation","aria-label":"player controls"}},[a("div",{staticClass:"navbar-brand fd-expanded"},[a("navbar-item-link",{attrs:{to:"/",exact:""}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-24px mdi-playlist-play"})])]),t.is_now_playing_page?t._e():a("router-link",{staticClass:"navbar-item is-expanded is-clipped",attrs:{to:"/now-playing","active-class":"is-active",exact:""}},[a("div",{staticClass:"is-clipped"},[a("p",{staticClass:"is-size-7 fd-is-text-clipped"},[a("strong",[t._v(t._s(t.now_playing.title))]),a("br"),t._v(" "+t._s(t.now_playing.artist)),"url"===t.now_playing.data_kind?a("span",[t._v(" - "+t._s(t.now_playing.album))]):t._e()])])]),t.is_now_playing_page?a("player-button-previous",{staticClass:"navbar-item fd-margin-left-auto",attrs:{icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-seek-back",{staticClass:"navbar-item",attrs:{seek_ms:"10000",icon_style:"mdi-24px"}}):t._e(),a("player-button-play-pause",{staticClass:"navbar-item",attrs:{icon_style:"mdi-36px",show_disabled_message:""}}),t.is_now_playing_page?a("player-button-seek-forward",{staticClass:"navbar-item",attrs:{seek_ms:"30000",icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-next",{staticClass:"navbar-item",attrs:{icon_style:"mdi-24px"}}):t._e(),a("a",{staticClass:"navbar-item fd-margin-left-auto is-hidden-desktop",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch",class:{"is-active":t.show_player_menu}},[a("a",{staticClass:"navbar-link is-arrowless",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-dropdown is-right is-boxed",staticStyle:{"margin-right":"6px","margin-bottom":"6px","border-radius":"6px"}},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(0)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile fd-expanded"},[a("div",{staticClass:"level-item"},[a("div",{staticClass:"buttons has-addons"},[a("player-button-repeat",{staticClass:"button"}),a("player-button-shuffle",{staticClass:"button"}),a("player-button-consume",{staticClass:"button"})],1)])])])],2)])],1),a("div",{staticClass:"navbar-menu is-hidden-desktop",class:{"is-active":t.show_player_menu}},[a("div",{staticClass:"navbar-start"}),a("div",{staticClass:"navbar-end"},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"buttons is-centered"},[a("player-button-repeat",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-shuffle",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-consume",{staticClass:"button",attrs:{icon_style:"mdi-18px"}})],1)]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item fd-has-margin-bottom"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(1)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])])],2)])])},at=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])}],et={_audio:new Audio,_context:null,_source:null,_gain:null,setupAudio(){var t=window.AudioContext||window.webkitAudioContext;return this._context=new t,this._source=this._context.createMediaElementSource(this._audio),this._gain=this._context.createGain(),this._source.connect(this._gain),this._gain.connect(this._context.destination),this._audio.addEventListener("canplaythrough",t=>{this._audio.play()}),this._audio.addEventListener("canplay",t=>{this._audio.play()}),this._audio},setVolume(t){this._gain&&(t=parseFloat(t)||0,t=t<0?0:t,t=t>1?1:t,this._gain.gain.value=t)},playSource(t){this.stopAudio(),this._context.resume().then(()=>{this._audio.src=String(t||"")+"?x="+Date.now(),this._audio.crossOrigin="anonymous",this._audio.load()})},stopAudio(){try{this._audio.pause()}catch(t){}try{this._audio.stop()}catch(t){}try{this._audio.close()}catch(t){}}},it=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small"},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.output.selected},on:{click:t.set_enabled}},[a("i",{staticClass:"mdi mdi-18px",class:t.type_class})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.output.selected}},[t._v(t._s(t.output.name))]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.output.selected,value:t.volume},on:{change:t.set_volume}})],1)])])])])},lt=[],ot=a("c7e3"),nt=a.n(ot),rt={name:"NavbarItemOutput",components:{RangeSlider:nt.a},props:["output"],computed:{type_class(){return"AirPlay"===this.output.type?"mdi-airplay":"Chromecast"===this.output.type?"mdi-cast":"fifo"===this.output.type?"mdi-pipe":"mdi-server"},volume(){return this.output.selected?this.output.volume:0}},methods:{play_next:function(){J.player_next()},set_volume:function(t){J.player_output_volume(this.output.id,t)},set_enabled:function(){const t={selected:!this.output.selected};J.output_update(this.output.id,t)}}},ct=rt,dt=Object(D["a"])(ct,it,lt,!1,null,null,null),ut=dt.exports,pt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.toggle_play_pause}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-play":!t.is_playing,"mdi-pause":t.is_playing&&t.is_pause_allowed,"mdi-stop":t.is_playing&&!t.is_pause_allowed}]})])])},_t=[],mt={name:"PlayerButtonPlayPause",props:{icon_style:String,show_disabled_message:Boolean},computed:{is_playing(){return"play"===this.$store.state.player.state},is_pause_allowed(){return this.$store.getters.now_playing&&"pipe"!==this.$store.getters.now_playing.data_kind},disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{toggle_play_pause:function(){this.disabled?this.show_disabled_message&&this.$store.dispatch("add_notification",{text:"Queue is empty",type:"info",topic:"connection",timeout:2e3}):this.is_playing&&this.is_pause_allowed?J.player_pause():this.is_playing&&!this.is_pause_allowed?J.player_stop():J.player_play()}}},ht=mt,ft=Object(D["a"])(ht,pt,_t,!1,null,null,null),yt=ft.exports,vt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-forward",class:t.icon_style})])])},bt=[],gt={name:"PlayerButtonNext",props:{icon_style:String},computed:{disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_next:function(){this.disabled||J.player_next()}}},kt=gt,Ct=Object(D["a"])(kt,vt,bt,!1,null,null,null),wt=Ct.exports,xt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_previous}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-backward",class:t.icon_style})])])},$t=[],qt={name:"PlayerButtonPrevious",props:{icon_style:String},computed:{disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_previous:function(){this.disabled||J.player_previous()}}},At=qt,St=Object(D["a"])(At,xt,$t,!1,null,null,null),jt=St.exports,Pt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_shuffle},on:{click:t.toggle_shuffle_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-shuffle":t.is_shuffle,"mdi-shuffle-disabled":!t.is_shuffle}]})])])},Tt=[],Lt={name:"PlayerButtonShuffle",props:{icon_style:String},computed:{is_shuffle(){return this.$store.state.player.shuffle}},methods:{toggle_shuffle_mode:function(){J.player_shuffle(!this.is_shuffle)}}},Ot=Lt,Et=Object(D["a"])(Ot,Pt,Tt,!1,null,null,null),It=Et.exports,zt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_consume},on:{click:t.toggle_consume_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fire",class:t.icon_style})])])},Dt=[],Nt={name:"PlayerButtonConsume",props:{icon_style:String},computed:{is_consume(){return this.$store.state.player.consume}},methods:{toggle_consume_mode:function(){J.player_consume(!this.is_consume)}}},Rt=Nt,Mt=Object(D["a"])(Rt,zt,Dt,!1,null,null,null),Ut=Mt.exports,Ht=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":!t.is_repeat_off},on:{click:t.toggle_repeat_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-repeat":t.is_repeat_all,"mdi-repeat-once":t.is_repeat_single,"mdi-repeat-off":t.is_repeat_off}]})])])},Wt=[],Bt={name:"PlayerButtonRepeat",props:{icon_style:String},computed:{is_repeat_all(){return"all"===this.$store.state.player.repeat},is_repeat_single(){return"single"===this.$store.state.player.repeat},is_repeat_off(){return!this.is_repeat_all&&!this.is_repeat_single}},methods:{toggle_repeat_mode:function(){this.is_repeat_all?J.player_repeat("single"):this.is_repeat_single?J.player_repeat("off"):J.player_repeat("all")}}},Ft=Bt,Gt=Object(D["a"])(Ft,Ht,Wt,!1,null,null,null),Yt=Gt.exports,Vt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rewind",class:t.icon_style})])]):t._e()},Qt=[],Jt={name:"PlayerButtonSeekBack",props:["seek_ms","icon_style"],computed:{now_playing(){return this.$store.getters.now_playing},is_stopped(){return"stop"===this.$store.state.player.state},disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||J.player_seek(-1*this.seek_ms)}}},Kt=Jt,Xt=Object(D["a"])(Kt,Vt,Qt,!1,null,null,null),Zt=Xt.exports,ts=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fast-forward",class:t.icon_style})])]):t._e()},ss=[],as={name:"PlayerButtonSeekForward",props:["seek_ms","icon_style"],computed:{now_playing(){return this.$store.getters.now_playing},is_stopped(){return"stop"===this.$store.state.player.state},disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||J.player_seek(this.seek_ms)}}},es=as,is=Object(D["a"])(es,ts,ss,!1,null,null,null),ls=is.exports,os={name:"NavbarBottom",components:{NavbarItemLink:R,NavbarItemOutput:ut,RangeSlider:nt.a,PlayerButtonPlayPause:yt,PlayerButtonNext:wt,PlayerButtonPrevious:jt,PlayerButtonShuffle:It,PlayerButtonConsume:Ut,PlayerButtonRepeat:Yt,PlayerButtonSeekForward:ls,PlayerButtonSeekBack:Zt},data(){return{old_volume:0,playing:!1,loading:!1,stream_volume:10,show_outputs_menu:!1,show_desktop_outputs_menu:!1}},computed:{show_player_menu:{get(){return this.$store.state.show_player_menu},set(t){this.$store.commit(E,t)}},show_burger_menu(){return this.$store.state.show_burger_menu},zindex(){return this.show_burger_menu?"z-index: 20":""},state(){return this.$store.state.player},now_playing(){return this.$store.getters.now_playing},is_now_playing_page(){return"/now-playing"===this.$route.path},outputs(){return this.$store.state.outputs},player(){return this.$store.state.player},config(){return this.$store.state.config}},methods:{on_click_outside_outputs(){this.show_outputs_menu=!1},set_volume:function(t){J.player_volume(t)},toggle_mute_volume:function(){this.player.volume>0?this.set_volume(0):this.set_volume(this.old_volume)},setupAudio:function(){const t=et.setupAudio();t.addEventListener("waiting",t=>{this.playing=!1,this.loading=!0}),t.addEventListener("playing",t=>{this.playing=!0,this.loading=!1}),t.addEventListener("ended",t=>{this.playing=!1,this.loading=!1}),t.addEventListener("error",t=>{this.closeAudio(),this.$store.dispatch("add_notification",{text:"HTTP stream error: failed to load stream or stopped loading due to network problem",type:"danger"}),this.playing=!1,this.loading=!1})},closeAudio:function(){et.stopAudio(),this.playing=!1},playChannel:function(){if(this.playing)return;const t="/stream.mp3";this.loading=!0,et.playSource(t),et.setVolume(this.stream_volume/100)},togglePlay:function(){if(!this.loading)return this.playing?this.closeAudio():this.playChannel()},set_stream_volume:function(t){this.stream_volume=t,et.setVolume(this.stream_volume/100)}},watch:{"$store.state.player.volume"(){this.player.volume>0&&(this.old_volume=this.player.volume)}},mounted(){this.setupAudio()},destroyed(){this.closeAudio()}},ns=os,rs=Object(D["a"])(ns,st,at,!1,null,null,null),cs=rs.exports,ds=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"fd-notifications"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-half"},t._l(t.notifications,(function(s){return a("div",{key:s.id,staticClass:"notification has-shadow ",class:["notification",s.type?"is-"+s.type:""]},[a("button",{staticClass:"delete",on:{click:function(a){return t.remove(s)}}}),t._v(" "+t._s(s.text)+" ")])})),0)])])},us=[],ps={name:"Notifications",components:{},data(){return{showNav:!1}},computed:{notifications(){return this.$store.state.notifications.list}},methods:{remove:function(t){this.$store.commit($,t)}}},_s=ps,ms=(a("cf45"),Object(D["a"])(_s,ds,us,!1,null,null,null)),hs=ms.exports,fs=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Remote pairing request ")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label"},[t._v(" "+t._s(t.pairing.remote)+" ")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],ref:"pin_field",staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.kickoff_pairing}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cellphone-iphone"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Pair Remote")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ys=[],vs={name:"ModalDialogRemotePairing",props:["show"],data(){return{pairing_req:{pin:""}}},computed:{pairing(){return this.$store.state.pairing}},methods:{kickoff_pairing(){J.pairing_kickoff(this.pairing_req).then(()=>{this.pairing_req.pin=""})}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.pin_field.focus()},10))}}},bs=vs,gs=Object(D["a"])(bs,fs,ys,!1,null,null,null),ks=gs.exports,Cs=a("d04d"),ws=a.n(Cs),xs=a("c1df"),$s=a.n(xs),qs={name:"App",components:{NavbarTop:tt,NavbarBottom:cs,Notifications:hs,ModalDialogRemotePairing:ks},template:"",data(){return{token_timer_id:0,reconnect_attempts:0,pairing_active:!1}},computed:{show_burger_menu:{get(){return this.$store.state.show_burger_menu},set(t){this.$store.commit(O,t)}},show_player_menu:{get(){return this.$store.state.show_player_menu},set(t){this.$store.commit(E,t)}}},created:function(){$s.a.locale(navigator.language),this.connect(),this.$Progress.start(),this.$router.beforeEach((t,s,a)=>{if(t.meta.show_progress){if(void 0!==t.meta.progress){const s=t.meta.progress;this.$Progress.parseMeta(s)}this.$Progress.start()}a()}),this.$router.afterEach((t,s)=>{t.meta.show_progress&&this.$Progress.finish()})},methods:{connect:function(){this.$store.dispatch("add_notification",{text:"Connecting to forked-daapd",type:"info",topic:"connection",timeout:2e3}),J.config().then(({data:t})=>{this.$store.commit(d,t),this.$store.commit(A,t.hide_singles),document.title=t.library_name,this.open_ws(),this.$Progress.finish()}).catch(()=>{this.$store.dispatch("add_notification",{text:"Failed to connect to forked-daapd",type:"danger",topic:"connection"})})},open_ws:function(){if(this.$store.state.config.websocket_port<=0)return void this.$store.dispatch("add_notification",{text:"Missing websocket port",type:"danger"});const t=this;var s="ws://";"https:"===window.location.protocol&&(s="wss://");var a=s+window.location.hostname+":"+t.$store.state.config.websocket_port;var e=new ws.a(a,"notify",{reconnectInterval:3e3});e.onopen=function(){t.$store.dispatch("add_notification",{text:"Connection to server established",type:"primary",topic:"connection",timeout:2e3}),t.reconnect_attempts=0,e.send(JSON.stringify({notify:["update","database","player","options","outputs","volume","spotify","lastfm","pairing"]})),t.update_outputs(),t.update_player_status(),t.update_library_stats(),t.update_settings(),t.update_queue(),t.update_spotify(),t.update_lastfm(),t.update_pairing()},e.onclose=function(){},e.onerror=function(){t.reconnect_attempts++,t.$store.dispatch("add_notification",{text:"Connection lost. Reconnecting ... ("+t.reconnect_attempts+")",type:"danger",topic:"connection"})},e.onmessage=function(s){var a=JSON.parse(s.data);(a.notify.includes("update")||a.notify.includes("database"))&&t.update_library_stats(),(a.notify.includes("player")||a.notify.includes("options")||a.notify.includes("volume"))&&t.update_player_status(),(a.notify.includes("outputs")||a.notify.includes("volume"))&&t.update_outputs(),a.notify.includes("queue")&&t.update_queue(),a.notify.includes("spotify")&&t.update_spotify(),a.notify.includes("lastfm")&&t.update_lastfm(),a.notify.includes("pairing")&&t.update_pairing()}},update_library_stats:function(){J.library_stats().then(({data:t})=>{this.$store.commit(_,t)}),J.library_count("media_kind is audiobook").then(({data:t})=>{this.$store.commit(m,t)}),J.library_count("media_kind is podcast").then(({data:t})=>{this.$store.commit(h,t)})},update_outputs:function(){J.outputs().then(({data:t})=>{this.$store.commit(f,t.outputs)})},update_player_status:function(){J.player_status().then(({data:t})=>{this.$store.commit(y,t)})},update_queue:function(){J.queue().then(({data:t})=>{this.$store.commit(v,t)})},update_settings:function(){J.settings().then(({data:t})=>{this.$store.commit(u,t)})},update_lastfm:function(){J.lastfm().then(({data:t})=>{this.$store.commit(b,t)})},update_spotify:function(){J.spotify().then(({data:t})=>{this.$store.commit(g,t),this.token_timer_id>0&&(window.clearTimeout(this.token_timer_id),this.token_timer_id=0),t.webapi_token_expires_in>0&&t.webapi_token&&(this.token_timer_id=window.setTimeout(this.update_spotify,1e3*t.webapi_token_expires_in))})},update_pairing:function(){J.pairing().then(({data:t})=>{this.$store.commit(k,t),this.pairing_active=t.active})},update_is_clipped:function(){this.show_burger_menu||this.show_player_menu?document.querySelector("html").classList.add("is-clipped"):document.querySelector("html").classList.remove("is-clipped")}},watch:{show_burger_menu(){this.update_is_clipped()},show_player_menu(){this.update_is_clipped()}}},As=qs,Ss=Object(D["a"])(As,i,l,!1,null,null,null),js=Ss.exports,Ps=a("8c4f"),Ts=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"heading"},[t._v(t._s(t.queue.count)+" tracks")]),a("p",{staticClass:"title is-4"},[t._v("Queue")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",class:{"is-info":t.show_only_next_items},on:{click:t.update_show_next_items}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-arrow-collapse-down"})]),a("span",[t._v("Hide previous")])]),a("a",{staticClass:"button is-small",on:{click:t.open_add_stream_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",[t._v("Add Stream")])]),a("a",{staticClass:"button is-small",class:{"is-info":t.edit_mode},on:{click:function(s){t.edit_mode=!t.edit_mode}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Edit")])]),a("a",{staticClass:"button is-small",on:{click:t.queue_clear}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete-empty"})]),a("span",[t._v("Clear")])]),t.is_queue_save_allowed?a("a",{staticClass:"button is-small",attrs:{disabled:0===t.queue_items.length},on:{click:t.save_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),a("span",[t._v("Save")])]):t._e()])]),a("template",{slot:"content"},[a("draggable",{attrs:{handle:".handle"},on:{end:t.move_item},model:{value:t.queue_items,callback:function(s){t.queue_items=s},expression:"queue_items"}},t._l(t.queue_items,(function(s,e){return a("list-item-queue-item",{key:s.id,attrs:{item:s,position:e,current_position:t.current_position,show_only_next_items:t.show_only_next_items,edit_mode:t.edit_mode}},[a("template",{slot:"actions"},[t.edit_mode?t._e():a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])]),s.id!==t.state.item_id&&t.edit_mode?a("a",{on:{click:function(a){return t.remove(s)}}},[a("span",{staticClass:"icon has-text-grey"},[a("i",{staticClass:"mdi mdi-delete mdi-18px"})])]):t._e()])],2)})),1),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}}),a("modal-dialog-add-url-stream",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1}}}),t.is_queue_save_allowed?a("modal-dialog-playlist-save",{attrs:{show:t.show_pls_save_modal},on:{close:function(s){t.show_pls_save_modal=!1}}}):t._e()],1)],2)},Ls=[],Os=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t.$slots["options"]?a("section",[a("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:t.observer_options,expression:"observer_options"}],staticStyle:{height:"2px"}}),t._t("options"),a("nav",{staticClass:"buttons is-centered",staticStyle:{"margin-bottom":"6px","margin-top":"16px"}},[t.options_visible?a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_content}},[t._m(1)]):a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_top}},[t._m(0)])])],2):t._e(),a("div",{class:{"fd-content-with-option":t.$slots["options"]}},[a("nav",{staticClass:"level",attrs:{id:"top"}},[a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item has-text-centered-mobile"},[a("div",[t._t("heading-left")],2)])]),a("div",{staticClass:"level-right has-text-centered-mobile"},[t._t("heading-right")],2)]),t._t("content"),a("div",{staticStyle:{"margin-top":"16px"}},[t._t("footer")],2)],2)])])])])},Es=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-up"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down"})])}],Is={name:"ContentWithHeading",data(){return{options_visible:!1,observer_options:{callback:this.visibilityChanged,intersection:{rootMargin:"-100px",threshold:.3}}}},methods:{scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})},scroll_to_content:function(){this.$route.meta.has_tabs?this.$scrollTo("#top",{offset:-140}):this.$scrollTo("#top",{offset:-100})},visibilityChanged:function(t){this.options_visible=t}}},zs=Is,Ds=Object(D["a"])(zs,Os,Es,!1,null,null,null),Ns=Ds.exports,Rs=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.is_next||!t.show_only_next_items?a("div",{staticClass:"media"},[t.edit_mode?a("div",{staticClass:"media-left"},[t._m(0)]):t._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next}},[t._v(t._s(t.item.title))]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[a("b",[t._v(t._s(t.item.artist))])]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[t._v(t._s(t.item.album))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e()},Ms=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon has-text-grey fd-is-movable handle"},[a("i",{staticClass:"mdi mdi-drag-horizontal mdi-18px"})])}],Us={name:"ListItemQueueItem",props:["item","position","current_position","show_only_next_items","edit_mode"],computed:{state(){return this.$store.state.player},is_next(){return this.current_position<0||this.position>=this.current_position}},methods:{play:function(){J.player_play({item_id:this.item.id})}}},Hs=Us,Ws=Object(D["a"])(Hs,Rs,Ms,!1,null,null,null),Bs=Ws.exports,Fs=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.item.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.item.artist)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),t.item.album_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.item.album))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album))])]),t.item.album_artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),t.item.album_artist_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album_artist}},[t._v(t._s(t.item.album_artist))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album_artist))])]):t._e(),t.item.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.composer))])]):t._e(),t.item.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.year))])]):t._e(),t.item.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.item.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.track_number)+" / "+t._s(t.item.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.item.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.media_kind)+" - "+t._s(t.item.data_kind)+" "),"spotify"===t.item.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.item.type)+" "),t.item.samplerate?a("span",[t._v(" | "+t._s(t.item.samplerate)+" Hz")]):t._e(),t.item.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.item.channels)))]):t._e(),t.item.bitrate?a("span",[t._v(" | "+t._s(t.item.bitrate)+" Kb/s")]):t._e()])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.remove}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Remove")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Gs=[],Ys=(a("baa5"),a("fb6a"),a("be8d")),Vs=a.n(Ys),Qs={name:"ModalDialogQueueItem",props:["show","item"],data(){return{spotify_track:{}}},methods:{remove:function(){this.$emit("close"),J.queue_remove(this.item.id)},play:function(){this.$emit("close"),J.player_play({item_id:this.item.id})},open_album:function(){"podcast"===this.media_kind?this.$router.push({path:"/podcasts/"+this.item.album_id}):"audiobook"===this.media_kind?this.$router.push({path:"/audiobooks/"+this.item.album_id}):this.$router.push({path:"/music/albums/"+this.item.album_id})},open_album_artist:function(){this.$router.push({path:"/music/artists/"+this.item.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.item.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})}},watch:{item(){if(this.item&&"spotify"===this.item.data_kind){const t=new Vs.a;t.setAccessToken(this.$store.state.spotify.webapi_token),t.getTrack(this.item.path.slice(this.item.path.lastIndexOf(":")+1)).then(t=>{this.spotify_track=t})}else this.spotify_track={}}}},Js=Qs,Ks=Object(D["a"])(Js,Fs,Gs,!1,null,null,null),Xs=Ks.exports,Zs=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Add stream URL ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.play(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-stream",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-web"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Loading ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ta=[],sa={name:"ModalDialogAddUrlStream",props:["show"],data(){return{url:"",loading:!1}},methods:{add_stream:function(){this.loading=!0,J.queue_add(this.url).then(()=>{this.$emit("close"),this.url=""}).catch(()=>{this.loading=!1})},play:function(){this.loading=!0,J.player_play_uri(this.url,!1).then(()=>{this.$emit("close"),this.url=""}).catch(()=>{this.loading=!1})}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.url_field.focus()},10))}}},aa=sa,ea=Object(D["a"])(aa,Zs,ta,!1,null,null,null),ia=ea.exports,la=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Save queue to playlist ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.save(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.playlist_name,expression:"playlist_name"}],ref:"playlist_name_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"Playlist name",disabled:t.loading},domProps:{value:t.playlist_name},on:{input:function(s){s.target.composing||(t.playlist_name=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-file-music"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Saving ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.save}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Save")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},oa=[],na={name:"ModalDialogPlaylistSave",props:["show"],data(){return{playlist_name:"",loading:!1}},methods:{save:function(){this.playlist_name.length<1||(this.loading=!0,J.queue_save_playlist(this.playlist_name).then(()=>{this.$emit("close"),this.playlist_name=""}).catch(()=>{this.loading=!1}))}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.playlist_name_field.focus()},10))}}},ra=na,ca=Object(D["a"])(ra,la,oa,!1,null,null,null),da=ca.exports,ua=a("b76a"),pa=a.n(ua),_a={name:"PageQueue",components:{ContentWithHeading:Ns,ListItemQueueItem:Bs,draggable:pa.a,ModalDialogQueueItem:Xs,ModalDialogAddUrlStream:ia,ModalDialogPlaylistSave:da},data(){return{edit_mode:!1,show_details_modal:!1,show_url_modal:!1,show_pls_save_modal:!1,selected_item:{}}},computed:{state(){return this.$store.state.player},is_queue_save_allowed(){return this.$store.state.config.allow_modifying_stored_playlists&&this.$store.state.config.default_playlist_directory},queue(){return this.$store.state.queue},queue_items:{get(){return this.$store.state.queue.items},set(t){}},current_position(){const t=this.$store.getters.now_playing;return void 0===t||void 0===t.position?-1:this.$store.getters.now_playing.position},show_only_next_items(){return this.$store.state.show_only_next_items}},methods:{queue_clear:function(){J.queue_clear()},update_show_next_items:function(t){this.$store.commit(L,!this.show_only_next_items)},remove:function(t){J.queue_remove(t.id)},move_item:function(t){var s=this.show_only_next_items?t.oldIndex+this.current_position:t.oldIndex,a=this.queue_items[s],e=a.position+(t.newIndex-t.oldIndex);e!==s&&J.queue_move(a.id,e)},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0},open_add_stream_dialog:function(t){this.show_url_modal=!0},save_dialog:function(t){this.queue_items.length>0&&(this.show_pls_save_modal=!0)}}},ma=_a,ha=Object(D["a"])(ma,Ts,Ls,!1,null,null,null),fa=ha.exports,ya=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[t.now_playing.id>0?a("div",{staticClass:"fd-is-fullheight"},[a("div",{staticClass:"fd-is-expanded"},[a("cover-artwork",{staticClass:"fd-cover-image fd-has-action",attrs:{artwork_url:t.now_playing.artwork_url,artist:t.now_playing.artist,album:t.now_playing.album},on:{click:function(s){return t.open_dialog(t.now_playing)}}})],1),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered"},[a("p",{staticClass:"control has-text-centered fd-progress-now-playing"},[a("range-slider",{staticClass:"seek-slider fd-has-action",attrs:{min:"0",max:t.state.item_length_ms,value:t.item_progress_ms,disabled:"stop"===t.state.state,step:"1000"},on:{change:t.seek}})],1),a("p",{staticClass:"content"},[a("span",[t._v(t._s(t._f("duration")(t.item_progress_ms))+" / "+t._s(t._f("duration")(t.now_playing.length_ms)))])])])]),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered fd-has-margin-top"},[a("h1",{staticClass:"title is-5"},[t._v(" "+t._s(t.now_playing.title)+" ")]),a("h2",{staticClass:"title is-6"},[t._v(" "+t._s(t.now_playing.artist)+" ")]),t.composer?a("h2",{staticClass:"subtitle is-6 has-text-grey has-text-weight-bold"},[t._v(" "+t._s(t.composer)+" ")]):t._e(),a("h3",{staticClass:"subtitle is-6"},[t._v(" "+t._s(t.now_playing.album)+" ")])])])]):a("div",{staticClass:"fd-is-fullheight"},[t._m(0)]),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}})],1)},va=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"fd-is-expanded fd-has-padding-left-right",staticStyle:{"flex-direction":"column"}},[a("div",{staticClass:"content has-text-centered"},[a("h1",{staticClass:"title is-5"},[t._v(" Your play queue is empty ")]),a("p",[t._v(" Add some tracks by browsing your library ")])])])}],ba=(a("1276"),a("498a"),function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("figure",[a("img",{directives:[{name:"lazyload",rawName:"v-lazyload"}],key:t.artwork_url_with_size,attrs:{"data-src":t.artwork_url_with_size,"data-err":t.dataURI},on:{click:function(s){return t.$emit("click")}}})])}),ga=[];a("13d5"),a("5319");class ka{render(t){const s=' '+t.caption+" ";return"data:image/svg+xml;charset=UTF-8,"+encodeURIComponent(s)}}var Ca=ka,wa=a("5d8a"),xa=a.n(wa),$a={name:"CoverArtwork",props:["artist","album","artwork_url","maxwidth","maxheight"],data(){return{svg:new Ca,width:600,height:600,font_family:"sans-serif",font_size:200,font_weight:600}},computed:{artwork_url_with_size:function(){return this.maxwidth>0&&this.maxheight>0?J.artwork_url_append_size_params(this.artwork_url,this.maxwidth,this.maxheight):J.artwork_url_append_size_params(this.artwork_url)},alt_text(){return this.artist+" - "+this.album},caption(){return this.album?this.album.substring(0,2):this.artist?this.artist.substring(0,2):""},background_color(){return xa()(this.alt_text)},is_background_light(){const t=this.background_color.replace(/#/,""),s=parseInt(t.substr(0,2),16),a=parseInt(t.substr(2,2),16),e=parseInt(t.substr(4,2),16),i=[.299*s,.587*a,.114*e].reduce((t,s)=>t+s)/255;return i>.5},text_color(){return this.is_background_light?"#000000":"#ffffff"},rendererParams(){return{width:this.width,height:this.height,textColor:this.text_color,backgroundColor:this.background_color,caption:this.caption,fontFamily:this.font_family,fontSize:this.font_size,fontWeight:this.font_weight}},dataURI(){return this.svg.render(this.rendererParams)}}},qa=$a,Aa=Object(D["a"])(qa,ba,ga,!1,null,null,null),Sa=Aa.exports,ja={name:"PageNowPlaying",components:{ModalDialogQueueItem:Xs,RangeSlider:nt.a,CoverArtwork:Sa},data(){return{item_progress_ms:0,interval_id:0,show_details_modal:!1,selected_item:{}}},created(){this.item_progress_ms=this.state.item_progress_ms,J.player_status().then(({data:t})=>{this.$store.commit(y,t),"play"===this.state.state&&(this.interval_id=window.setInterval(this.tick,1e3))})},destroyed(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0)},computed:{state(){return this.$store.state.player},now_playing(){return this.$store.getters.now_playing},settings_option_show_composer_now_playing(){return this.$store.getters.settings_option_show_composer_now_playing},settings_option_show_composer_for_genre(){return this.$store.getters.settings_option_show_composer_for_genre},composer(){return this.settings_option_show_composer_now_playing&&(!this.settings_option_show_composer_for_genre||this.now_playing.genre&&this.settings_option_show_composer_for_genre.toLowerCase().split(",").findIndex(t=>this.now_playing.genre.toLowerCase().indexOf(t.trim())>=0)>=0)?this.now_playing.composer:null}},methods:{tick:function(){this.item_progress_ms+=1e3},seek:function(t){J.player_seek_to_pos(t).catch(()=>{this.item_progress_ms=this.state.item_progress_ms})},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0}},watch:{state(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0),this.item_progress_ms=this.state.item_progress_ms,"play"===this.state.state&&(this.interval_id=window.setInterval(this.tick,1e3))}}},Pa=ja,Ta=Object(D["a"])(Pa,ya,va,!1,null,null,null),La=Ta.exports,Oa=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.recently_added.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_added")}}},[t._v("Show more")])])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_played")}}},[t._v("Show more")])])])])],2)],1)},Ea=[];a("841c"),a("ddb0");const Ia=function(t){return{beforeRouteEnter(s,a,e){t.load(s).then(s=>{e(a=>t.set(a,s))})},beforeRouteUpdate(s,a,e){const i=this;t.load(s).then(s=>{t.set(i,s),e()})}}};var za=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/music/browse","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",{},[t._v("Browse")])])]),a("router-link",{attrs:{tag:"li",to:"/music/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Artists")])])]),a("router-link",{attrs:{tag:"li",to:"/music/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Albums")])])]),a("router-link",{attrs:{tag:"li",to:"/music/genres","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-speaker"})]),a("span",{},[t._v("Genres")])])]),t.spotify_enabled?a("router-link",{attrs:{tag:"li",to:"/music/spotify","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})]),a("span",{},[t._v("Spotify")])])]):t._e()],1)])])])])])},Da=[],Na={name:"TabsMusic",computed:{spotify_enabled(){return this.$store.state.spotify.webapi_token_valid}}},Ra=Na,Ma=Object(D["a"])(Ra,za,Da,!1,null,null,null),Ua=Ma.exports,Ha=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.albums.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.albums.grouped[s],(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.albums_list,(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-album",{attrs:{show:t.show_details_modal,album:t.selected_album,media_kind:t.media_kind},on:{"remove-podcast":function(s){return t.open_remove_podcast_dialog()},close:function(s){t.show_details_modal=!1}}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],1)},Wa=[],Ba=function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.album.name_sort.charAt(0).toUpperCase()}},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("div",{staticStyle:{"margin-top":"0.7rem"}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artist))])]),s.props.album.date_released&&"music"===s.props.album.media_kind?a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v(" "+s._s(s._f("time")(s.props.album.date_released,"L"))+" ")]):s._e()])]),a("div",{staticClass:"media-right",staticStyle:{"padding-top":"0.7rem"}},[s._t("actions")],2)])},Fa=[],Ga={name:"ListItemAlbum",props:["album","media_kind"]},Ya=Ga,Va=Object(D["a"])(Ya,Ba,Fa,!0,null,null,null),Qa=Va.exports,Ja=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("cover-artwork",{staticClass:"image is-square fd-has-margin-bottom fd-has-shadow",attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name}}),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),"podcast"===t.media_kind_resolved?a("div",{staticClass:"buttons"},[a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]),a("a",{staticClass:"button is-small",on:{click:function(s){return t.$emit("remove-podcast")}}},[t._v("Remove podcast")])]):t._e(),a("div",{staticClass:"content is-small"},[t.album.artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]):t._e(),t.album.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.date_released,"L")))])]):t.album.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.year))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.album.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.media_kind)+" - "+t._s(t.album.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.time_added,"L LT")))])])])],1),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Ka=[],Xa={name:"ModalDialogAlbum",components:{CoverArtwork:Sa},props:["show","album","media_kind","new_tracks"],data(){return{artwork_visible:!1}},computed:{artwork_url:function(){return J.artwork_url_append_size_params(this.album.artwork_url)},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.album.media_kind}},methods:{play:function(){this.$emit("close"),J.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.album.uri)},open_album:function(){"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+this.album.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+this.album.id}):this.$router.push({path:"/music/albums/"+this.album.id})},open_artist:function(){"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id}):this.$router.push({path:"/music/artists/"+this.album.artist_id}))},mark_played:function(){J.library_album_track_update(this.album.id,{play_count:"played"}).then(({data:t})=>{this.$emit("play-count-changed"),this.$emit("close")})},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},Za=Xa,te=Object(D["a"])(Za,Ja,Ka,!1,null,null,null),se=te.exports;a("4e82");class ae{constructor(t,s={hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1}){this.items=t,this.options=s,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}init(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}getAlbumIndex(t){return"Recently added"===this.options.sort?t.time_added.substring(0,4):"Recently released"===this.options.sort||"Release date"===this.options.sort?t.date_released?t.date_released.substring(0,4):"0000":t.name_sort.charAt(0).toUpperCase()}isAlbumVisible(t){return!(this.options.hideSingles&&t.track_count<=2)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}createIndexList(){this.indexList=[...new Set(this.sortedAndFiltered.map(t=>this.getAlbumIndex(t)))]}createSortedAndFilteredList(){var t=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(t=t.filter(t=>this.isAlbumVisible(t))),"Recently added"===this.options.sort?t=[...t].sort((t,s)=>s.time_added.localeCompare(t.time_added)):"Recently released"===this.options.sort?t=[...t].sort((t,s)=>t.date_released?s.date_released?s.date_released.localeCompare(t.date_released):-1:1):"Release date"===this.options.sort&&(t=[...t].sort((t,s)=>t.date_released?s.date_released?t.date_released.localeCompare(s.date_released):1:-1)),this.sortedAndFiltered=t}createGroupedList(){this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((t,s)=>{const a=this.getAlbumIndex(s);return t[a]=[...t[a]||[],s],t},{})}}var ee={name:"ListAlbums",components:{ListItemAlbum:Qa,ModalDialogAlbum:se,ModalDialog:F,CoverArtwork:Sa},props:["albums","media_kind"],data(){return{show_details_modal:!1,selected_album:{},show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_album.media_kind},albums_list:function(){return Array.isArray(this.albums)?this.albums:this.albums.sortedAndFiltered},is_grouped:function(){return this.albums instanceof ae&&this.albums.options.group}},methods:{open_album:function(t){this.selected_album=t,"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+t.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+t.id}):this.$router.push({path:"/music/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){J.library_album_tracks(this.selected_album.id,{limit:1}).then(({data:t})=>{J.library_track_playlists(t.items[0].id).then(({data:t})=>{const s=t.items.filter(t=>"rss"===t.type);1===s.length?(this.rss_playlist_to_remove=s[0],this.show_remove_podcast_modal=!0,this.show_details_modal=!1):this.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})})})},remove_podcast:function(){this.show_remove_podcast_modal=!1,J.library_playlist_delete(this.rss_playlist_to_remove.id).then(()=>{this.$emit("podcast-deleted")})}}},ie=ee,le=Object(D["a"])(ie,Ha,Wa,!1,null,null,null),oe=le.exports,ne=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.tracks,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(e,s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1}}})],2)},re=[],ce=function(t,s){var a=s._c;return a("div",{staticClass:"media",class:{"with-progress":s.slots().progress},attrs:{id:"index_"+s.props.track.title_sort.charAt(0).toUpperCase()}},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6",class:{"has-text-grey":"podcast"===s.props.track.media_kind&&s.props.track.play_count>0}},[s._v(s._s(s.props.track.title))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.track.artist))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[s._v(s._s(s.props.track.album))]),s._t("progress")],2),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},de=[],ue={name:"ListItemTrack",props:["track"]},pe=ue,_e=Object(D["a"])(pe,ce,de,!0,null,null,null),me=_e.exports,he=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artist)+" ")]),"podcast"===t.track.media_kind?a("div",{staticClass:"buttons"},[t.track.play_count>0?a("a",{staticClass:"button is-small",on:{click:t.mark_new}},[t._v("Mark as new")]):t._e(),0===t.track.play_count?a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]):t._e()]):t._e(),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.track.album))])]),t.track.album_artist&&"audiobook"!==t.track.media_kind?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.track.album_artist))])]):t._e(),t.track.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.composer))])]):t._e(),t.track.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.date_released,"L")))])]):t.track.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.year))])]):t._e(),t.track.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.track.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.media_kind)+" - "+t._s(t.track.data_kind)+" "),"spotify"===t.track.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.track.type)+" "),t.track.samplerate?a("span",[t._v(" | "+t._s(t.track.samplerate)+" Hz")]):t._e(),t.track.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.track.channels)))]):t._e(),t.track.bitrate?a("span",[t._v(" | "+t._s(t.track.bitrate)+" Kb/s")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.time_added,"L LT")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Rating")]),a("span",{staticClass:"title is-6"},[t._v(t._s(Math.floor(t.track.rating/10))+" / 10")])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play_track}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},fe=[],ye={name:"ModalDialogTrack",props:["show","track"],data(){return{spotify_track:{}}},methods:{play_track:function(){this.$emit("close"),J.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.track.uri)},open_album:function(){this.$emit("close"),"podcast"===this.track.media_kind?this.$router.push({path:"/podcasts/"+this.track.album_id}):"audiobook"===this.track.media_kind?this.$router.push({path:"/audiobooks/"+this.track.album_id}):this.$router.push({path:"/music/albums/"+this.track.album_id})},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.track.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.track.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})},mark_new:function(){J.library_track_update(this.track.id,{play_count:"reset"}).then(()=>{this.$emit("play-count-changed"),this.$emit("close")})},mark_played:function(){J.library_track_update(this.track.id,{play_count:"increment"}).then(()=>{this.$emit("play-count-changed"),this.$emit("close")})}},watch:{track(){if(this.track&&"spotify"===this.track.data_kind){const t=new Vs.a;t.setAccessToken(this.$store.state.spotify.webapi_token),t.getTrack(this.track.path.slice(this.track.path.lastIndexOf(":")+1)).then(t=>{this.spotify_track=t})}else this.spotify_track={}}}},ve=ye,be=Object(D["a"])(ve,he,fe,!1,null,null,null),ge=be.exports,ke={name:"ListTracks",components:{ListItemTrack:me,ModalDialogTrack:ge},props:["tracks","uris","expression"],data(){return{show_details_modal:!1,selected_track:{}}},methods:{play_track:function(t,s){this.uris?J.player_play_uri(this.uris,!1,t):this.expression?J.player_play_expression(this.expression,!1,t):J.player_play_uri(s.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Ce=ke,we=Object(D["a"])(Ce,ne,re,!1,null,null,null),xe=we.exports;const $e={load:function(t){return Promise.all([J.search({type:"album",expression:"time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc",limit:3}),J.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:3})])},set:function(t,s){t.recently_added=s[0].data.albums,t.recently_played=s[1].data.tracks}};var qe={name:"PageBrowse",mixins:[Ia($e)],components:{ContentWithHeading:Ns,TabsMusic:Ua,ListAlbums:oe,ListTracks:xe},data(){return{recently_added:{items:[]},recently_played:{items:[]},show_track_details_modal:!1,selected_track:{}}},methods:{open_browse:function(t){this.$router.push({path:"/music/browse/"+t})}}},Ae=qe,Se=Object(D["a"])(Ae,Oa,Ea,!1,null,null,null),je=Se.exports,Pe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.recently_added.items}})],1)],2)],1)},Te=[];const Le={load:function(t){return J.search({type:"album",expression:"time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc",limit:50})},set:function(t,s){t.recently_added=s.data.albums}};var Oe={name:"PageBrowseType",mixins:[Ia(Le)],components:{ContentWithHeading:Ns,TabsMusic:Ua,ListAlbums:oe},data(){return{recently_added:{}}}},Ee=Oe,Ie=Object(D["a"])(Ee,Pe,Te,!1,null,null,null),ze=Ie.exports,De=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1)],2)],1)},Ne=[];const Re={load:function(t){return J.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:50})},set:function(t,s){t.recently_played=s.data.tracks}};var Me={name:"PageBrowseType",mixins:[Ia(Re)],components:{ContentWithHeading:Ns,TabsMusic:Ua,ListTracks:xe},data(){return{recently_played:{}}}},Ue=Me,He=Object(D["a"])(Ue,De,Ne,!1,null,null,null),We=He.exports,Be=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_singles=a.concat([l])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear on singles or playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_spotify=a.concat([l])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide artists from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Artists")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},Fe=[],Ge=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[a("nav",{staticClass:"buttons is-centered fd-is-square",staticStyle:{"margin-bottom":"16px"}},t._l(t.filtered_index,(function(s){return a("a",{key:s,staticClass:"button is-small",on:{click:function(a){return t.nav(s)}}},[t._v(t._s(s))])})),0)])},Ye=[],Ve={name:"IndexButtonList",props:["index"],computed:{filtered_index(){const t="!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~";return this.index.filter(s=>!t.includes(s))}},methods:{nav:function(t){this.$router.push({path:this.$router.currentRoute.path+"#index_"+t})},scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Qe=Ve,Je=Object(D["a"])(Qe,Ge,Ye,!1,null,null,null),Ke=Je.exports,Xe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.artists.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.artists.grouped[s],(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.artists_list,(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-artist",{attrs:{show:t.show_details_modal,artist:t.selected_artist,media_kind:t.media_kind},on:{close:function(s){t.show_details_modal=!1}}})],1)},Ze=[],ti=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.artist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},si=[],ai={name:"ListItemArtist",props:["artist"]},ei=ai,ii=Object(D["a"])(ei,ti,si,!0,null,null,null),li=ii.exports,oi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Albums")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.album_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.artist.time_added,"L LT")))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ni=[],ri={name:"ModalDialogArtist",props:["show","artist"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.artist.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.artist.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.artist.uri)},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.artist.id})}}},ci=ri,di=Object(D["a"])(ci,oi,ni,!1,null,null,null),ui=di.exports;class pi{constructor(t,s={hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1}){this.items=t,this.options=s,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}init(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}getArtistIndex(t){return"Name"===this.options.sort?t.name_sort.charAt(0).toUpperCase():t.time_added.substring(0,4)}isArtistVisible(t){return!(this.options.hideSingles&&t.track_count<=2*t.album_count)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}createIndexList(){this.indexList=[...new Set(this.sortedAndFiltered.map(t=>this.getArtistIndex(t)))]}createSortedAndFilteredList(){var t=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(t=t.filter(t=>this.isArtistVisible(t))),"Recently added"===this.options.sort&&(t=[...t].sort((t,s)=>s.time_added.localeCompare(t.time_added))),this.sortedAndFiltered=t}createGroupedList(){this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((t,s)=>{const a=this.getArtistIndex(s);return t[a]=[...t[a]||[],s],t},{})}}var _i={name:"ListArtists",components:{ListItemArtist:li,ModalDialogArtist:ui},props:["artists","media_kind"],data(){return{show_details_modal:!1,selected_artist:{}}},computed:{media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_artist.media_kind},artists_list:function(){return Array.isArray(this.artists)?this.artists:this.artists.sortedAndFiltered},is_grouped:function(){return this.artists instanceof pi&&this.artists.options.group}},methods:{open_artist:function(t){this.selected_artist=t,"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+t.id}):this.$router.push({path:"/music/artists/"+t.id}))},open_dialog:function(t){this.selected_artist=t,this.show_details_modal=!0}}},mi=_i,hi=Object(D["a"])(mi,Xe,Ze,!1,null,null,null),fi=hi.exports,yi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown",class:{"is-active":t.is_active}},[a("div",{staticClass:"dropdown-trigger"},[a("button",{staticClass:"button",attrs:{"aria-haspopup":"true","aria-controls":"dropdown-menu"},on:{click:function(s){t.is_active=!t.is_active}}},[a("span",[t._v(t._s(t.value))]),t._m(0)])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},t._l(t.options,(function(s){return a("a",{key:s,staticClass:"dropdown-item",class:{"is-active":t.value===s},on:{click:function(a){return t.select(s)}}},[t._v(" "+t._s(s)+" ")])})),0)])])},vi=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down",attrs:{"aria-hidden":"true"}})])}],bi={name:"DropdownMenu",props:["value","options"],data(){return{is_active:!1}},methods:{onClickOutside(t){this.is_active=!1},select(t){this.is_active=!1,this.$emit("input",t)}}},gi=bi,ki=Object(D["a"])(gi,yi,vi,!1,null,null,null),Ci=ki.exports;const wi={load:function(t){return J.library_artists("music")},set:function(t,s){t.artists=s.data}};var xi={name:"PageArtists",mixins:[Ia(wi)],components:{ContentWithHeading:Ns,TabsMusic:Ua,IndexButtonList:Ke,ListArtists:fi,DropdownMenu:Ci},data(){return{artists:{items:[]},sort_options:["Name","Recently added"]}},computed:{artists_list(){return new pi(this.artists.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get(){return this.$store.state.hide_singles},set(t){this.$store.commit(A,t)}},hide_spotify:{get(){return this.$store.state.hide_spotify},set(t){this.$store.commit(S,t)}},sort:{get(){return this.$store.state.artists_sort},set(t){this.$store.commit(j,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},$i=xi,qi=Object(D["a"])($i,Be,Fe,!1,null,null,null),Ai=qi.exports,Si=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"options"},[a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])]),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v(t._s(t.artist.track_count)+" tracks")])]),a("list-albums",{attrs:{albums:t.albums_list}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},ji=[];const Pi={load:function(t){return Promise.all([J.library_artist(t.params.artist_id),J.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}};var Ti={name:"PageArtist",mixins:[Ia(Pi)],components:{ContentWithHeading:Ns,ListAlbums:oe,ModalDialogArtist:ui,DropdownMenu:Ci},data(){return{artist:{},albums:{items:[]},sort_options:["Name","Release date"],show_artist_details_modal:!1}},computed:{albums_list(){return new ae(this.albums.items,{sort:this.sort,group:!1})},sort:{get(){return this.$store.state.artist_albums_sort},set(t){this.$store.commit(P,t)}}},methods:{open_tracks:function(){this.$router.push({path:"/music/artists/"+this.artist.id+"/tracks"})},play:function(){J.player_play_uri(this.albums.items.map(t=>t.uri).join(","),!0)}}},Li=Ti,Oi=Object(D["a"])(Li,Si,ji,!1,null,null,null),Ei=Oi.exports,Ii=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_singles=a.concat([l])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides singles and albums with tracks that only appear in playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_spotify=a.concat([l])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide albums from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides albums that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Albums")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},zi=[];const Di={load:function(t){return J.library_albums("music")},set:function(t,s){t.albums=s.data,t.index_list=[...new Set(t.albums.items.filter(s=>!t.$store.state.hide_singles||s.track_count>2).map(t=>t.name_sort.charAt(0).toUpperCase()))]}};var Ni={name:"PageAlbums",mixins:[Ia(Di)],components:{ContentWithHeading:Ns,TabsMusic:Ua,IndexButtonList:Ke,ListAlbums:oe,DropdownMenu:Ci},data(){return{albums:{items:[]},sort_options:["Name","Recently added","Recently released"]}},computed:{albums_list(){return new ae(this.albums.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get(){return this.$store.state.hide_singles},set(t){this.$store.commit(A,t)}},hide_spotify:{get(){return this.$store.state.hide_spotify},set(t){this.$store.commit(S,t)}},sort:{get(){return this.$store.state.albums_sort},set(t){this.$store.commit(T,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Ri=Ni,Mi=Object(D["a"])(Ri,Ii,zi,!1,null,null,null),Ui=Mi.exports,Hi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},Wi=[],Bi=a("fd4d");const Fi={load:function(t){return Promise.all([J.library_album(t.params.album_id),J.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}};var Gi={name:"PageAlbum",mixins:[Ia(Fi)],components:{ContentWithHero:Bi["default"],ListTracks:xe,ModalDialogAlbum:se,CoverArtwork:Sa},data(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.album.artist_id})},play:function(){J.player_play_uri(this.album.uri,!0)}}},Yi=Gi,Vi=Object(D["a"])(Yi,Hi,Wi,!1,null,null,null),Qi=Vi.exports,Ji=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Genres")]),a("p",{staticClass:"heading"},[t._v(t._s(t.genres.total)+" genres")])]),a("template",{slot:"content"},[t._l(t.genres.items,(function(s){return a("list-item-genre",{key:s.name,attrs:{genre:s},on:{click:function(a){return t.open_genre(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-genre",{attrs:{show:t.show_details_modal,genre:t.selected_genre},on:{close:function(s){t.show_details_modal=!1}}})],2)],2)],1)},Ki=[],Xi=function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.genre.name.charAt(0).toUpperCase()}},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.genre.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},Zi=[],tl={name:"ListItemGenre",props:["genre"]},sl=tl,al=Object(D["a"])(sl,Xi,Zi,!0,null,null,null),el=al.exports,il=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.genre.name))])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ll=[],ol={name:"ModalDialogGenre",props:["show","genre"],methods:{play:function(){this.$emit("close"),J.player_play_expression('genre is "'+this.genre.name+'" and media_kind is music',!1)},queue_add:function(){this.$emit("close"),J.queue_expression_add('genre is "'+this.genre.name+'" and media_kind is music')},queue_add_next:function(){this.$emit("close"),J.queue_expression_add_next('genre is "'+this.genre.name+'" and media_kind is music')},open_genre:function(){this.$emit("close"),this.$router.push({name:"Genre",params:{genre:this.genre.name}})}}},nl=ol,rl=Object(D["a"])(nl,il,ll,!1,null,null,null),cl=rl.exports;const dl={load:function(t){return J.library_genres()},set:function(t,s){t.genres=s.data}};var ul={name:"PageGenres",mixins:[Ia(dl)],components:{ContentWithHeading:Ns,TabsMusic:Ua,IndexButtonList:Ke,ListItemGenre:el,ModalDialogGenre:cl},data(){return{genres:{items:[]},show_details_modal:!1,selected_genre:{}}},computed:{index_list(){return[...new Set(this.genres.items.map(t=>t.name.charAt(0).toUpperCase()))]}},methods:{open_genre:function(t){this.$router.push({name:"Genre",params:{genre:t.name}})},open_dialog:function(t){this.selected_genre=t,this.show_details_modal=!0}}},pl=ul,_l=Object(D["a"])(pl,Ji,Ki,!1,null,null,null),ml=_l.exports,hl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.genre_albums.total)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v("tracks")])]),a("list-albums",{attrs:{albums:t.genre_albums.items}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.name}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},fl=[];const yl={load:function(t){return J.library_genre(t.params.genre)},set:function(t,s){t.name=t.$route.params.genre,t.genre_albums=s.data.albums}};var vl={name:"PageGenre",mixins:[Ia(yl)],components:{ContentWithHeading:Ns,IndexButtonList:Ke,ListAlbums:oe,ModalDialogGenre:cl},data(){return{name:"",genre_albums:{items:[]},show_genre_details_modal:!1}},computed:{index_list(){return[...new Set(this.genre_albums.items.map(t=>t.name.charAt(0).toUpperCase()))]}},methods:{open_tracks:function(){this.show_details_modal=!1,this.$router.push({name:"GenreTracks",params:{genre:this.name}})},play:function(){J.player_play_expression('genre is "'+this.name+'" and media_kind is music',!0)},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0}}},bl=vl,gl=Object(D["a"])(bl,hl,fl,!1,null,null,null),kl=gl.exports,Cl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.genre))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v("albums")]),t._v(" | "+t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,expression:t.expression}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.genre}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},wl=[];const xl={load:function(t){return J.library_genre_tracks(t.params.genre)},set:function(t,s){t.genre=t.$route.params.genre,t.tracks=s.data.tracks}};var $l={name:"PageGenreTracks",mixins:[Ia(xl)],components:{ContentWithHeading:Ns,ListTracks:xe,IndexButtonList:Ke,ModalDialogGenre:cl},data(){return{tracks:{items:[]},genre:"",show_genre_details_modal:!1}},computed:{index_list(){return[...new Set(this.tracks.items.map(t=>t.title_sort.charAt(0).toUpperCase()))]},expression(){return'genre is "'+this.genre+'" and media_kind is music'}},methods:{open_genre:function(){this.show_details_modal=!1,this.$router.push({name:"Genre",params:{genre:this.genre}})},play:function(){J.player_play_expression(this.expression,!0)}}},ql=$l,Al=Object(D["a"])(ql,Cl,wl,!1,null,null,null),Sl=Al.exports,jl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.album_count)+" albums")]),t._v(" | "+t._s(t.artist.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,uris:t.track_uris}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)],1)},Pl=[];const Tl={load:function(t){return Promise.all([J.library_artist(t.params.artist_id),J.library_artist_tracks(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.tracks=s[1].data.tracks}};var Ll={name:"PageArtistTracks",mixins:[Ia(Tl)],components:{ContentWithHeading:Ns,ListTracks:xe,IndexButtonList:Ke,ModalDialogArtist:ui},data(){return{artist:{},tracks:{items:[]},show_artist_details_modal:!1}},computed:{index_list(){return[...new Set(this.tracks.items.map(t=>t.title_sort.charAt(0).toUpperCase()))]},track_uris(){return this.tracks.items.map(t=>t.uri).join(",")}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.artist.id})},play:function(){J.player_play_uri(this.tracks.items.map(t=>t.uri).join(","),!0)}}},Ol=Ll,El=Object(D["a"])(Ol,jl,Pl,!1,null,null,null),Il=El.exports,zl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.new_episodes.items.length>0?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New episodes")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.mark_all_played}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Mark All Played")])])])]),a("template",{slot:"content"},[t._l(t.new_episodes.items,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1},"play-count-changed":t.reload_new_episodes}})],2)],2):t._e(),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums.total)+" podcasts")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.open_add_podcast_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rss"})]),a("span",[t._v("Add Podcast")])])])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items},on:{"play-count-changed":function(s){return t.reload_new_episodes()},"podcast-deleted":function(s){return t.reload_podcasts()}}}),a("modal-dialog-add-rss",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1},"podcast-added":function(s){return t.reload_podcasts()}}})],1)],2)],1)},Dl=[],Nl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v("Add Podcast RSS feed URL")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.add_stream(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-rss",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-rss"})])]),a("p",{staticClass:"help"},[t._v("Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. ")])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item button is-loading"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Processing ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Rl=[],Ml={name:"ModalDialogAddRss",props:["show"],data(){return{url:"",loading:!1}},methods:{add_stream:function(){this.loading=!0,J.library_add(this.url).then(()=>{this.$emit("close"),this.$emit("podcast-added"),this.url=""}).catch(()=>{this.loading=!1})}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.url_field.focus()},10))}}},Ul=Ml,Hl=Object(D["a"])(Ul,Nl,Rl,!1,null,null,null),Wl=Hl.exports;const Bl={load:function(t){return Promise.all([J.library_albums("podcast"),J.library_podcasts_new_episodes()])},set:function(t,s){t.albums=s[0].data,t.new_episodes=s[1].data.tracks}};var Fl={name:"PagePodcasts",mixins:[Ia(Bl)],components:{ContentWithHeading:Ns,ListItemTrack:me,ListAlbums:oe,ModalDialogTrack:ge,ModalDialogAddRss:Wl,RangeSlider:nt.a},data(){return{albums:{items:[]},new_episodes:{items:[]},show_url_modal:!1,show_track_details_modal:!1,selected_track:{}}},methods:{play_track:function(t){J.player_play_uri(t.uri,!1)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},mark_all_played:function(){this.new_episodes.items.forEach(t=>{J.library_track_update(t.id,{play_count:"increment"})}),this.new_episodes.items={}},open_add_podcast_dialog:function(t){this.show_url_modal=!0},reload_new_episodes:function(){J.library_podcasts_new_episodes().then(({data:t})=>{this.new_episodes=t.tracks})},reload_podcasts:function(){J.library_albums("podcast").then(({data:t})=>{this.albums=t,this.reload_new_episodes()})}}},Gl=Fl,Yl=Object(D["a"])(Gl,zl,Dl,!1,null,null,null),Vl=Yl.exports,Ql=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.album.name)+" ")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.album.track_count)+" tracks")]),t._l(t.tracks,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1},"play-count-changed":t.reload_tracks}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"podcast",new_tracks:t.new_tracks},on:{close:function(s){t.show_album_details_modal=!1},"play-count-changed":t.reload_tracks,"remove-podcast":t.open_remove_podcast_dialog}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],2)],2)},Jl=[];const Kl={load:function(t){return Promise.all([J.library_album(t.params.album_id),J.library_podcast_episodes(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.tracks.items}};var Xl={name:"PagePodcast",mixins:[Ia(Kl)],components:{ContentWithHeading:Ns,ListItemTrack:me,ModalDialogTrack:ge,RangeSlider:nt.a,ModalDialogAlbum:se,ModalDialog:F},data(){return{album:{},tracks:[],show_details_modal:!1,selected_track:{},show_album_details_modal:!1,show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{new_tracks(){return this.tracks.filter(t=>0===t.play_count).length}},methods:{play:function(){J.player_play_uri(this.album.uri,!1)},play_track:function(t){J.player_play_uri(t.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){this.show_album_details_modal=!1,J.library_track_playlists(this.tracks[0].id).then(({data:t})=>{const s=t.items.filter(t=>"rss"===t.type);1===s.length?(this.rss_playlist_to_remove=s[0],this.show_remove_podcast_modal=!0):this.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})})},remove_podcast:function(){this.show_remove_podcast_modal=!1,J.library_playlist_delete(this.rss_playlist_to_remove.id).then(()=>{this.$router.replace({path:"/podcasts"})})},reload_tracks:function(){J.library_podcast_episodes(this.album.id).then(({data:t})=>{this.tracks=t.tracks.items})}}},Zl=Xl,to=Object(D["a"])(Zl,Ql,Jl,!1,null,null,null),so=to.exports,ao=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},eo=[],io=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/audiobooks/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Authors")])])]),a("router-link",{attrs:{tag:"li",to:"/audiobooks/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Audiobooks")])])])],1)])])])])])},lo=[],oo={name:"TabsAudiobooks"},no=oo,ro=Object(D["a"])(no,io,lo,!1,null,null,null),co=ro.exports;const uo={load:function(t){return J.library_albums("audiobook")},set:function(t,s){t.albums=s.data}};var po={name:"PageAudiobooksAlbums",mixins:[Ia(uo)],components:{TabsAudiobooks:co,ContentWithHeading:Ns,IndexButtonList:Ke,ListAlbums:oe},data(){return{albums:{items:[]}}},computed:{albums_list(){return new ae(this.albums.items,{sort:"Name",group:!0})}},methods:{}},_o=po,mo=Object(D["a"])(_o,ao,eo,!1,null,null,null),ho=mo.exports,fo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Authors")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Authors")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},yo=[];const vo={load:function(t){return J.library_artists("audiobook")},set:function(t,s){t.artists=s.data}};var bo={name:"PageAudiobooksArtists",mixins:[Ia(vo)],components:{ContentWithHeading:Ns,TabsAudiobooks:co,IndexButtonList:Ke,ListArtists:fi},data(){return{artists:{items:[]}}},computed:{artists_list(){return new pi(this.artists.items,{sort:"Name",group:!0})}},methods:{}},go=bo,ko=Object(D["a"])(go,fo,yo,!1,null,null,null),Co=ko.exports,wo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums")]),a("list-albums",{attrs:{albums:t.albums.items}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},xo=[];const $o={load:function(t){return Promise.all([J.library_artist(t.params.artist_id),J.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}};var qo={name:"PageAudiobooksArtist",mixins:[Ia($o)],components:{ContentWithHeading:Ns,ListAlbums:oe,ModalDialogArtist:ui},data(){return{artist:{},albums:{},show_artist_details_modal:!1}},methods:{play:function(){J.player_play_uri(this.albums.items.map(t=>t.uri).join(","),!1)}}},Ao=qo,So=Object(D["a"])(Ao,wo,xo,!1,null,null,null),jo=So.exports,Po=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"audiobook"},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},To=[];const Lo={load:function(t){return Promise.all([J.library_album(t.params.album_id),J.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}};var Oo={name:"PageAudiobooksAlbum",mixins:[Ia(Lo)],components:{ContentWithHero:Bi["default"],ListTracks:xe,ModalDialogAlbum:se,CoverArtwork:Sa},data(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id})},play:function(){J.player_play_uri(this.album.uri,!1)},play_track:function(t){J.player_play_uri(this.album.uri,!1,t)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Eo=Oo,Io=Object(D["a"])(Eo,Po,To,!1,null,null,null),zo=Io.exports,Do=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))]),a("p",{staticClass:"heading"},[t._v(t._s(t.playlists.total)+" playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1)],2)},No=[],Ro=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.playlists,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-library-music":"folder"!==s.type,"mdi-rss":"rss"===s.type,"mdi-folder":"folder"===s.type}})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-playlist",{attrs:{show:t.show_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_details_modal=!1}}})],2)},Mo=[],Uo=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.playlist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},Ho=[],Wo={name:"ListItemPlaylist",props:["playlist"]},Bo=Wo,Fo=Object(D["a"])(Bo,Uo,Ho,!0,null,null,null),Go=Fo.exports,Yo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.type))])])])]),t.playlist.folder?t._e():a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Vo=[],Qo={name:"ModalDialogPlaylist",props:["show","playlist","uris"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.uris?this.uris:this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.uris?this.uris:this.playlist.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.uris?this.uris:this.playlist.uri)},open_playlist:function(){this.$emit("close"),this.$router.push({path:"/playlists/"+this.playlist.id+"/tracks"})}}},Jo=Qo,Ko=Object(D["a"])(Jo,Yo,Vo,!1,null,null,null),Xo=Ko.exports,Zo={name:"ListPlaylists",components:{ListItemPlaylist:Go,ModalDialogPlaylist:Xo},props:["playlists"],data(){return{show_details_modal:!1,selected_playlist:{}}},methods:{open_playlist:function(t){"folder"!==t.type?this.$router.push({path:"/playlists/"+t.id+"/tracks"}):this.$router.push({path:"/playlists/"+t.id})},open_dialog:function(t){this.selected_playlist=t,this.show_details_modal=!0}}},tn=Zo,sn=Object(D["a"])(tn,Ro,Mo,!1,null,null,null),an=sn.exports;const en={load:function(t){return Promise.all([J.library_playlist(t.params.playlist_id),J.library_playlist_folder(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.playlists=s[1].data}};var ln={name:"PagePlaylists",mixins:[Ia(en)],components:{ContentWithHeading:Ns,ListPlaylists:an},data(){return{playlist:{},playlists:{}}}},on=ln,nn=Object(D["a"])(on,Do,No,!1,null,null,null),rn=nn.exports,cn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.length)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.uris}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.playlist,uris:t.uris},on:{close:function(s){t.show_playlist_details_modal=!1}}})],1)],2)},dn=[];const un={load:function(t){return Promise.all([J.library_playlist(t.params.playlist_id),J.library_playlist_tracks(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.tracks=s[1].data.items}};var pn={name:"PagePlaylist",mixins:[Ia(un)],components:{ContentWithHeading:Ns,ListTracks:xe,ModalDialogPlaylist:Xo},data(){return{playlist:{},tracks:[],show_playlist_details_modal:!1}},computed:{uris(){return this.playlist.random?this.tracks.map(t=>t.uri).join(","):this.playlist.uri}},methods:{play:function(){J.player_play_uri(this.uris,!0)}}},_n=pn,mn=Object(D["a"])(_n,cn,dn,!1,null,null,null),hn=mn.exports,fn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Files")]),a("p",{staticClass:"title is-7 has-text-grey"},[t._v(t._s(t.current_directory))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){return t.open_directory_dialog({path:t.current_directory})}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[t.$route.query.directory?a("div",{staticClass:"media",on:{click:function(s){return t.open_parent_directory()}}},[a("figure",{staticClass:"media-left fd-has-action"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-subdirectory-arrow-left"})])]),a("div",{staticClass:"media-content fd-has-action is-clipped"},[a("h1",{staticClass:"title is-6"},[t._v("..")])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e(),t._l(t.files.directories,(function(s){return a("list-item-directory",{key:s.path,attrs:{directory:s},on:{click:function(a){return t.open_directory(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_directory_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.playlists.items,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-library-music"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.tracks.items,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(s){return t.play_track(e)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-file-outline"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-directory",{attrs:{show:t.show_directory_details_modal,directory:t.selected_directory},on:{close:function(s){t.show_directory_details_modal=!1}}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}}),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1}}})],2)],2)],1)},yn=[],vn=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._m(0)]),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.directory.path.substring(s.props.directory.path.lastIndexOf("/")+1)))]),a("h2",{staticClass:"subtitle is-7 has-text-grey-light"},[s._v(s._s(s.props.directory.path))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},bn=[function(t,s){var a=s._c;return a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-folder"})])}],gn={name:"ListItemDirectory",props:["directory"]},kn=gn,Cn=Object(D["a"])(kn,vn,bn,!0,null,null,null),wn=Cn.exports,xn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.directory.path)+" ")])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},$n=[],qn={name:"ModalDialogDirectory",props:["show","directory"],methods:{play:function(){this.$emit("close"),J.player_play_expression('path starts with "'+this.directory.path+'" order by path asc',!1)},queue_add:function(){this.$emit("close"),J.queue_expression_add('path starts with "'+this.directory.path+'" order by path asc')},queue_add_next:function(){this.$emit("close"),J.queue_expression_add_next('path starts with "'+this.directory.path+'" order by path asc')}}},An=qn,Sn=Object(D["a"])(An,xn,$n,!1,null,null,null),jn=Sn.exports;const Pn={load:function(t){return t.query.directory?J.library_files(t.query.directory):Promise.resolve()},set:function(t,s){t.files=s?s.data:{directories:t.$store.state.config.directories.map(t=>({path:t})),tracks:{items:[]},playlists:{items:[]}}}};var Tn={name:"PageFiles",mixins:[Ia(Pn)],components:{ContentWithHeading:Ns,ListItemDirectory:wn,ListItemPlaylist:Go,ListItemTrack:me,ModalDialogDirectory:jn,ModalDialogPlaylist:Xo,ModalDialogTrack:ge},data(){return{files:{directories:[],tracks:{items:[]},playlists:{items:[]}},show_directory_details_modal:!1,selected_directory:{},show_playlist_details_modal:!1,selected_playlist:{},show_track_details_modal:!1,selected_track:{}}},computed:{current_directory(){return this.$route.query&&this.$route.query.directory?this.$route.query.directory:"/"}},methods:{open_parent_directory:function(){var t=this.current_directory.slice(0,this.current_directory.lastIndexOf("/"));""===t||this.$store.state.config.directories.includes(this.current_directory)?this.$router.push({path:"/files"}):this.$router.push({path:"/files",query:{directory:this.current_directory.slice(0,this.current_directory.lastIndexOf("/"))}})},open_directory:function(t){this.$router.push({path:"/files",query:{directory:t.path}})},open_directory_dialog:function(t){this.selected_directory=t,this.show_directory_details_modal=!0},play:function(){J.player_play_expression('path starts with "'+this.current_directory+'" order by path asc',!1)},play_track:function(t){J.player_play_uri(this.files.tracks.items.map(t=>t.uri).join(","),!1,t)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_playlist:function(t){this.$router.push({path:"/playlists/"+t.id+"/tracks"})},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},Ln=Tn,On=Object(D["a"])(Ln,fn,yn,!1,null,null,null),En=On.exports,In=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Radio")])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items}})],1)],2)],1)},zn=[];const Dn={load:function(t){return J.library_radio_streams()},set:function(t,s){t.tracks=s.data.tracks}};var Nn={name:"PageRadioStreams",mixins:[Ia(Dn)],components:{ContentWithHeading:Ns,ListTracks:xe},data(){return{tracks:{items:[]}}}},Rn=Nn,Mn=Object(D["a"])(Rn,In,zn,!1,null,null,null),Un=Mn.exports,Hn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)]),t._m(1)])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.tracks.items}})],1),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists.items}})],1),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items}})],1),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e(),t.show_podcasts&&t.podcasts.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.podcasts.items}})],1),a("template",{slot:"footer"},[t.show_all_podcasts_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_podcasts}},[t._v("Show all "+t._s(t.podcasts.total.toLocaleString())+" podcasts")])])]):t._e()])],2):t._e(),t.show_podcasts&&!t.podcasts.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No podcasts found")])])])],2):t._e(),t.show_audiobooks&&t.audiobooks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.audiobooks.items}})],1),a("template",{slot:"footer"},[t.show_all_audiobooks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_audiobooks}},[t._v("Show all "+t._s(t.audiobooks.total.toLocaleString())+" audiobooks")])])]):t._e()])],2):t._e(),t.show_audiobooks&&!t.audiobooks.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No audiobooks found")])])])],2):t._e()],1)},Wn=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"help has-text-centered"},[t._v("Tip: you can search by a smart playlist query language "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md",target:"_blank"}},[t._v("expression")]),t._v(" if you prefix it with "),a("code",[t._v("query:")]),t._v(". ")])}],Bn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content py-3"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t._t("content")],2)])])])},Fn=[],Gn={name:"ContentText"},Yn=Gn,Vn=Object(D["a"])(Yn,Bn,Fn,!1,null,null,null),Qn=Vn.exports,Jn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.spotify_enabled?a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small is-toggle is-toggle-rounded"},[a("ul",[a("li",{class:{"is-active":"/search/library"===t.$route.path}},[a("a",{on:{click:t.search_library}},[t._m(0),a("span",{},[t._v("Library")])])]),a("li",{class:{"is-active":"/search/spotify"===t.$route.path}},[a("a",{on:{click:t.search_spotify}},[t._m(1),a("span",{},[t._v("Spotify")])])])])])])])])]):t._e()},Kn=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-library-books"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})])}],Xn={name:"TabsSearch",props:["query"],computed:{spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},route_query:function(){return this.query?{type:"track,artist,album,playlist,audiobook,podcast",query:this.query,limit:3,offset:0}:null}},methods:{search_library:function(){this.$router.push({path:"/search/library",query:this.route_query})},search_spotify:function(){this.$router.push({path:"/search/spotify",query:this.route_query})}}},Zn=Xn,tr=Object(D["a"])(Zn,Jn,Kn,!1,null,null,null),sr=tr.exports,ar={name:"PageSearch",components:{ContentWithHeading:Ns,ContentText:Qn,TabsSearch:sr,ListTracks:xe,ListArtists:fi,ListAlbums:oe,ListPlaylists:an},data(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},audiobooks:{items:[],total:0},podcasts:{items:[],total:0}}},computed:{recent_searches(){return this.$store.state.recent_searches},show_tracks(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button(){return this.tracks.total>this.tracks.items.length},show_artists(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button(){return this.artists.total>this.artists.items.length},show_albums(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button(){return this.albums.total>this.albums.items.length},show_playlists(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button(){return this.playlists.total>this.playlists.items.length},show_audiobooks(){return this.$route.query.type&&this.$route.query.type.includes("audiobook")},show_all_audiobooks_button(){return this.audiobooks.total>this.audiobooks.items.length},show_podcasts(){return this.$route.query.type&&this.$route.query.type.includes("podcast")},show_all_podcasts_button(){return this.podcasts.total>this.podcasts.items.length},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{search:function(t){if(!t.query.query||""===t.query.query)return this.search_query="",void this.$refs.search_field.focus();this.search_query=t.query.query,this.searchMusic(t.query),this.searchAudiobooks(t.query),this.searchPodcasts(t.query),this.$store.commit(q,t.query.query)},searchMusic:function(t){if(!(t.type.indexOf("track")<0&&t.type.indexOf("artist")<0&&t.type.indexOf("album")<0&&t.type.indexOf("playlist")<0)){var s={type:t.type,media_kind:"music"};t.query.startsWith("query:")?s.expression=t.query.replace(/^query:/,"").trim():s.query=t.query,t.limit&&(s.limit=t.limit,s.offset=t.offset),J.search(s).then(({data:t})=>{this.tracks=t.tracks?t.tracks:{items:[],total:0},this.artists=t.artists?t.artists:{items:[],total:0},this.albums=t.albums?t.albums:{items:[],total:0},this.playlists=t.playlists?t.playlists:{items:[],total:0}})}},searchAudiobooks:function(t){if(!(t.type.indexOf("audiobook")<0)){var s={type:"album",media_kind:"audiobook"};t.query.startsWith("query:")?s.expression=t.query.replace(/^query:/,"").trim():s.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is audiobook)',t.limit&&(s.limit=t.limit,s.offset=t.offset),J.search(s).then(({data:t})=>{this.audiobooks=t.albums?t.albums:{items:[],total:0}})}},searchPodcasts:function(t){if(!(t.type.indexOf("podcast")<0)){var s={type:"album",media_kind:"podcast"};t.query.startsWith("query:")?s.expression=t.query.replace(/^query:/,"").trim():s.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is podcast)',t.limit&&(s.limit=t.limit,s.offset=t.offset),J.search(s).then(({data:t})=>{this.podcasts=t.albums?t.albums:{items:[],total:0}})}},new_search:function(){this.search_query&&(this.$router.push({path:"/search/library",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/library",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/library",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/library",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/library",query:{type:"playlist",query:this.$route.query.query}})},open_search_audiobooks:function(){this.$router.push({path:"/search/library",query:{type:"audiobook",query:this.$route.query.query}})},open_search_podcasts:function(){this.$router.push({path:"/search/library",query:{type:"podcast",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()}},mounted:function(){this.search(this.$route)},watch:{$route(t,s){this.search(t)}}},er=ar,ir=Object(D["a"])(er,Hn,Wn,!1,null,null,null),lr=ir.exports,or=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths has-text-centered-mobile"},[a("p",{staticClass:"heading"},[a("b",[t._v("forked-daapd")]),t._v(" - version "+t._s(t.config.version))]),a("h1",{staticClass:"title is-4"},[t._v(t._s(t.config.library_name))])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content"},[a("nav",{staticClass:"level is-mobile"},[t._m(0),a("div",{staticClass:"level-right"},[t.library.updating?a("div",[a("a",{staticClass:"button is-small is-loading"},[t._v("Update")])]):a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown is-right",class:{"is-active":t.show_update_dropdown}},[a("div",{staticClass:"dropdown-trigger"},[a("div",{staticClass:"buttons has-addons"},[a("a",{staticClass:"button is-small",on:{click:t.update}},[t._v("Update")]),a("a",{staticClass:"button is-small",on:{click:function(s){t.show_update_dropdown=!t.show_update_dropdown}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-chevron-down":!t.show_update_dropdown,"mdi-chevron-up":t.show_update_dropdown}})])])])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},[a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update}},[a("strong",[t._v("Update")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Adds new, removes deleted and updates modified files.")])])]),a("hr",{staticClass:"dropdown-divider"}),a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update_meta}},[a("strong",[t._v("Rescan metadata")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Same as update, but also rescans unmodified files.")])])])])])])])]),a("table",{staticClass:"table"},[a("tbody",[a("tr",[a("th",[t._v("Artists")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.artists)))])]),a("tr",[a("th",[t._v("Albums")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.albums)))])]),a("tr",[a("th",[t._v("Tracks")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.songs)))])]),a("tr",[a("th",[t._v("Total playtime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("duration")(1e3*t.library.db_playtime,"y [years], d [days], h [hours], m [minutes]")))])]),a("tr",[a("th",[t._v("Library updated")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.updated_at))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.updated_at,"lll"))+")")])])]),a("tr",[a("th",[t._v("Uptime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.started_at,!0))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.started_at,"ll"))+")")])])])])])])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content has-text-centered-mobile"},[a("p",{staticClass:"is-size-7"},[t._v("Compiled with support for "+t._s(t._f("join")(t.config.buildoptions))+".")]),t._m(1)])])])])])])},nr=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item"},[a("h2",{staticClass:"title is-5"},[t._v("Library")])])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"is-size-7"},[t._v("Web interface built with "),a("a",{attrs:{href:"http://bulma.io"}},[t._v("Bulma")]),t._v(", "),a("a",{attrs:{href:"https://materialdesignicons.com/"}},[t._v("Material Design Icons")]),t._v(", "),a("a",{attrs:{href:"https://vuejs.org/"}},[t._v("Vue.js")]),t._v(", "),a("a",{attrs:{href:"https://github.com/mzabriskie/axios"}},[t._v("axios")]),t._v(" and "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/network/dependencies"}},[t._v("more")]),t._v(".")])}],rr={name:"PageAbout",data(){return{show_update_dropdown:!1}},computed:{config(){return this.$store.state.config},library(){return this.$store.state.library}},methods:{onClickOutside(t){this.show_update_dropdown=!1},update:function(){this.show_update_dropdown=!1,J.library_update()},update_meta:function(){this.show_update_dropdown=!1,J.library_rescan()}},filters:{join:function(t){return t.join(", ")}}},cr=rr,dr=Object(D["a"])(cr,or,nr,!1,null,null,null),ur=dr.exports,pr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/new-releases"}},[t._v(" Show more ")])],1)])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/featured-playlists"}},[t._v(" Show more ")])],1)])])],2)],1)},_r=[],mr=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artists[0].name))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v("("+s._s(s.props.album.album_type)+", "+s._s(s._f("time")(s.props.album.release_date,"L"))+")")])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},hr=[],fr={name:"SpotifyListItemAlbum",props:["album"]},yr=fr,vr=Object(D["a"])(yr,mr,hr,!0,null,null,null),br=vr.exports,gr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_playlist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.playlist.name))]),a("h2",{staticClass:"subtitle is-7"},[t._v(t._s(t.playlist.owner.display_name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},kr=[],Cr={name:"SpotifyListItemPlaylist",props:["playlist"],methods:{open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},wr=Cr,xr=Object(D["a"])(wr,gr,kr,!1,null,null,null),$r=xr.exports,qr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("figure",{directives:[{name:"show",rawName:"v-show",value:t.artwork_visible,expression:"artwork_visible"}],staticClass:"image is-square fd-has-margin-bottom"},[a("img",{staticClass:"fd-has-shadow",attrs:{src:t.artwork_url},on:{load:t.artwork_loaded,error:t.artwork_error}})]),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.album_type))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Ar=[],Sr={name:"SpotifyModalDialogAlbum",props:["show","album"],data(){return{artwork_visible:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{play:function(){this.$emit("close"),J.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.album.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},jr=Sr,Pr=Object(D["a"])(jr,qr,Ar,!1,null,null,null),Tr=Pr.exports,Lr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Owner")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.owner.display_name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.tracks.total))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Or=[],Er={name:"SpotifyModalDialogPlaylist",props:["show","playlist"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.playlist.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.playlist.uri)},open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},Ir=Er,zr=Object(D["a"])(Ir,Lr,Or,!1,null,null,null),Dr=zr.exports;const Nr={load:function(t){if(Q.state.spotify_new_releases.length>0&&Q.state.spotify_featured_playlists.length>0)return Promise.resolve();const s=new Vs.a;return s.setAccessToken(Q.state.spotify.webapi_token),Promise.all([s.getNewReleases({country:Q.state.spotify.webapi_country,limit:50}),s.getFeaturedPlaylists({country:Q.state.spotify.webapi_country,limit:50})])},set:function(t,s){s&&(Q.commit(C,s[0].albums.items),Q.commit(w,s[1].playlists.items))}};var Rr={name:"SpotifyPageBrowse",mixins:[Ia(Nr)],components:{ContentWithHeading:Ns,TabsMusic:Ua,SpotifyListItemAlbum:br,SpotifyListItemPlaylist:$r,SpotifyModalDialogAlbum:Tr,SpotifyModalDialogPlaylist:Dr,CoverArtwork:Sa},data(){return{show_album_details_modal:!1,selected_album:{},show_playlist_details_modal:!1,selected_playlist:{}}},computed:{new_releases(){return this.$store.state.spotify_new_releases.slice(0,3)},featured_playlists(){return this.$store.state.spotify_featured_playlists.slice(0,3)},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Mr=Rr,Ur=Object(D["a"])(Mr,pr,_r,!1,null,null,null),Hr=Ur.exports,Wr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)],1)},Br=[];const Fr={load:function(t){if(Q.state.spotify_new_releases.length>0)return Promise.resolve();const s=new Vs.a;return s.setAccessToken(Q.state.spotify.webapi_token),s.getNewReleases({country:Q.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&Q.commit(C,s.albums.items)}};var Gr={name:"SpotifyPageBrowseNewReleases",mixins:[Ia(Fr)],components:{ContentWithHeading:Ns,TabsMusic:Ua,SpotifyListItemAlbum:br,SpotifyModalDialogAlbum:Tr,CoverArtwork:Sa},data(){return{show_album_details_modal:!1,selected_album:{}}},computed:{new_releases(){return this.$store.state.spotify_new_releases},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Yr=Gr,Vr=Object(D["a"])(Yr,Wr,Br,!1,null,null,null),Qr=Vr.exports,Jr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2)],2)],1)},Kr=[];const Xr={load:function(t){if(Q.state.spotify_featured_playlists.length>0)return Promise.resolve();const s=new Vs.a;s.setAccessToken(Q.state.spotify.webapi_token),s.getFeaturedPlaylists({country:Q.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&Q.commit(w,s.playlists.items)}};var Zr={name:"SpotifyPageBrowseFeaturedPlaylists",mixins:[Ia(Xr)],components:{ContentWithHeading:Ns,TabsMusic:Ua,SpotifyListItemPlaylist:$r,SpotifyModalDialogPlaylist:Dr},data(){return{show_playlist_details_modal:!1,selected_playlist:{}}},computed:{featured_playlists(){return this.$store.state.spotify_featured_playlists}},methods:{open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},tc=Zr,sc=Object(D["a"])(tc,Jr,Kr,!1,null,null,null),ac=sc.exports,ec=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.total)+" albums")]),t._l(t.albums,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset{this.append_albums(s,t)})},append_albums:function(t,s){this.albums=this.albums.concat(t.items),this.total=t.total,this.offset+=t.limit,s&&(s.loaded(),this.offset>=this.total&&s.complete())},play:function(){this.show_details_modal=!1,J.player_play_uri(this.artist.uri,!0)},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},hc=mc,fc=Object(D["a"])(hc,ec,ic,!1,null,null,null),yc=fc.exports,vc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.tracks.total)+" tracks")]),t._l(t.album.tracks.items,(function(s,e){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,position:e,album:t.album,context_uri:t.album.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.album},on:{close:function(s){t.show_track_details_modal=!1}}}),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)},bc=[],gc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.track.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[t._v(t._s(t.track.artists[0].name))])])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},kc=[],Cc={name:"SpotifyListItemTrack",props:["track","position","album","context_uri"],methods:{play:function(){J.player_play_uri(this.context_uri,!1,this.position)}}},wc=Cc,xc=Object(D["a"])(wc,gc,kc,!1,null,null,null),$c=xc.exports,qc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.name)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artists[0].name)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.duration_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Ac=[],Sc={name:"SpotifyModalDialogTrack",props:["show","track","album"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.track.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})}}},jc=Sc,Pc=Object(D["a"])(jc,qc,Ac,!1,null,null,null),Tc=Pc.exports;const Lc={load:function(t){const s=new Vs.a;return s.setAccessToken(Q.state.spotify.webapi_token),s.getAlbum(t.params.album_id)},set:function(t,s){t.album=s}};var Oc={name:"PageAlbum",mixins:[Ia(Lc)],components:{ContentWithHero:Bi["default"],SpotifyListItemTrack:$c,SpotifyModalDialogTrack:Tc,SpotifyModalDialogAlbum:Tr,CoverArtwork:Sa},data(){return{album:{artists:[{}],tracks:{}},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},play:function(){this.show_details_modal=!1,J.player_play_uri(this.album.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Ec=Oc,Ic=Object(D["a"])(Ec,vc,bc,!1,null,null,null),zc=Ic.exports,Dc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.playlist.tracks.total)+" tracks")]),t._l(t.tracks,(function(s,e){return a("spotify-list-item-track",{key:s.track.id,attrs:{track:s.track,album:s.track.album,position:e,context_uri:t.playlist.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s.track)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset{this.append_tracks(s,t)})},append_tracks:function(t,s){this.tracks=this.tracks.concat(t.items),this.total=t.total,this.offset+=t.limit,s&&(s.loaded(),this.offset>=this.total&&s.complete())},play:function(){this.show_details_modal=!1,J.player_play_uri(this.playlist.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Uc=Mc,Hc=Object(D["a"])(Uc,Dc,Nc,!1,null,null,null),Wc=Hc.exports,Bc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)])])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[t._l(t.tracks.items,(function(s){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,album:s.album,position:0,context_uri:s.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"track"===t.query.type?a("infinite-loading",{on:{infinite:t.search_tracks_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.selected_track.album},on:{close:function(s){t.show_track_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[t._l(t.artists.items,(function(s){return a("spotify-list-item-artist",{key:s.id,attrs:{artist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_artist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"artist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_artists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.selected_artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[t._l(t.albums.items,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"album"===t.query.type?a("infinite-loading",{on:{infinite:t.search_albums_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[t._l(t.playlists.items,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"playlist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_playlists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e()],1)},Fc=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])}],Gc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_artist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},Yc=[],Vc={name:"SpotifyListItemArtist",props:["artist"],methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.artist.id})}}},Qc=Vc,Jc=Object(D["a"])(Qc,Gc,Yc,!1,null,null,null),Kc=Jc.exports,Xc={name:"SpotifyPageSearch",components:{ContentWithHeading:Ns,ContentText:Qn,TabsSearch:sr,SpotifyListItemTrack:$c,SpotifyListItemArtist:Kc,SpotifyListItemAlbum:br,SpotifyListItemPlaylist:$r,SpotifyModalDialogTrack:Tc,SpotifyModalDialogArtist:dc,SpotifyModalDialogAlbum:Tr,SpotifyModalDialogPlaylist:Dr,InfiniteLoading:pc.a,CoverArtwork:Sa},data(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},query:{},search_param:{},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1,selected_album:{},show_artist_details_modal:!1,selected_artist:{},show_playlist_details_modal:!1,selected_playlist:{},validSearchTypes:["track","artist","album","playlist"]}},computed:{recent_searches(){return this.$store.state.recent_searches.filter(t=>!t.startsWith("query:"))},show_tracks(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button(){return this.tracks.total>this.tracks.items.length},show_artists(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button(){return this.artists.total>this.artists.items.length},show_albums(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button(){return this.albums.total>this.albums.items.length},show_playlists(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button(){return this.playlists.total>this.playlists.items.length},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{reset:function(){this.tracks={items:[],total:0},this.artists={items:[],total:0},this.albums={items:[],total:0},this.playlists={items:[],total:0}},search:function(){if(this.reset(),!this.query.query||""===this.query.query||this.query.query.startsWith("query:"))return this.search_query="",void this.$refs.search_field.focus();this.search_query=this.query.query,this.search_param.limit=this.query.limit?this.query.limit:50,this.search_param.offset=this.query.offset?this.query.offset:0,this.$store.commit(q,this.query.query),this.search_all()},spotify_search:function(){return J.spotify().then(({data:t})=>{this.search_param.market=t.webapi_country;var s=new Vs.a;s.setAccessToken(t.webapi_token);var a=this.query.type.split(",").filter(t=>this.validSearchTypes.includes(t));return s.search(this.query.query,a,this.search_param)})},search_all:function(){this.spotify_search().then(t=>{this.tracks=t.tracks?t.tracks:{items:[],total:0},this.artists=t.artists?t.artists:{items:[],total:0},this.albums=t.albums?t.albums:{items:[],total:0},this.playlists=t.playlists?t.playlists:{items:[],total:0}})},search_tracks_next:function(t){this.spotify_search().then(s=>{this.tracks.items=this.tracks.items.concat(s.tracks.items),this.tracks.total=s.tracks.total,this.search_param.offset+=s.tracks.limit,t.loaded(),this.search_param.offset>=this.tracks.total&&t.complete()})},search_artists_next:function(t){this.spotify_search().then(s=>{this.artists.items=this.artists.items.concat(s.artists.items),this.artists.total=s.artists.total,this.search_param.offset+=s.artists.limit,t.loaded(),this.search_param.offset>=this.artists.total&&t.complete()})},search_albums_next:function(t){this.spotify_search().then(s=>{this.albums.items=this.albums.items.concat(s.albums.items),this.albums.total=s.albums.total,this.search_param.offset+=s.albums.limit,t.loaded(),this.search_param.offset>=this.albums.total&&t.complete()})},search_playlists_next:function(t){this.spotify_search().then(s=>{this.playlists.items=this.playlists.items.concat(s.playlists.items),this.playlists.total=s.playlists.total,this.search_param.offset+=s.playlists.limit,t.loaded(),this.search_param.offset>=this.playlists.total&&t.complete()})},new_search:function(){this.search_query&&(this.$router.push({path:"/search/spotify",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/spotify",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/spotify",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/spotify",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/spotify",query:{type:"playlist",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_artist_dialog:function(t){this.selected_artist=t,this.show_artist_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}},mounted:function(){this.query=this.$route.query,this.search()},watch:{$route(t,s){this.query=t.query,this.search()}}},Zc=Xc,td=Object(D["a"])(Zc,Bc,Fc,!1,null,null,null),sd=td.exports,ad=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Navbar items")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" Select the top navigation bar menu items ")]),a("div",{staticClass:"notification is-size-7"},[t._v(" If you select more items than can be shown on your screen then the burger menu will disappear. ")]),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_playlists"}},[a("template",{slot:"label"},[t._v(" Playlists")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_music"}},[a("template",{slot:"label"},[t._v(" Music")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_podcasts"}},[a("template",{slot:"label"},[t._v(" Podcasts")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_audiobooks"}},[a("template",{slot:"label"},[t._v(" Audiobooks")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_radio"}},[a("template",{slot:"label"},[t._v(" Radio")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_files"}},[a("template",{slot:"label"},[t._v(" Files")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_search"}},[a("template",{slot:"label"},[t._v(" Search")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Album lists")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_cover_artwork_in_album_lists"}},[a("template",{slot:"label"},[t._v(" Show cover artwork in album list")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Now playing page")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_composer_now_playing"}},[a("template",{slot:"label"},[t._v(" Show composer")]),a("template",{slot:"info"},[t._v('If enabled the composer of the current playing track is shown on the "now playing page"')])],2),a("settings-textfield",{attrs:{category_name:"webinterface",option_name:"show_composer_for_genre",disabled:!t.settings_option_show_composer_now_playing,placeholder:"Genres"}},[a("template",{slot:"label"},[t._v("Show composer only for listed genres")]),a("template",{slot:"info"},[a("p",{staticClass:"help"},[t._v(' Comma separated list of genres the composer should be displayed on the "now playing page". ')]),a("p",{staticClass:"help"},[t._v(" Leave empty to always show the composer. ")]),a("p",{staticClass:"help"},[t._v(" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to "),a("code",[t._v("classical, soundtrack")]),t._v(' will show the composer for tracks with a genre tag of "Contemporary Classical".'),a("br")])])],2)],1)],2)],1)},ed=[],id=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/settings/webinterface","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Webinterface")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/remotes-outputs","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Remotes & Outputs")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/artwork","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Artwork")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/online-services","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Online Services")])])])],1)])])])])])},ld=[],od={name:"TabsSettings",computed:{}},nd=od,rd=Object(D["a"])(nd,id,ld,!1,null,null,null),cd=rd.exports,dd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"field"},[a("label",{staticClass:"checkbox"},[a("input",{ref:"settings_checkbox",attrs:{type:"checkbox"},domProps:{checked:t.value},on:{change:t.set_update_timer}}),t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])},ud=[],pd={name:"SettingsCheckbox",props:["category_name","option_name"],data(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category(){return this.$store.state.settings.categories.find(t=>t.name===this.category_name)},option(){return this.category?this.category.options.find(t=>t.name===this.option_name):{}},value(){return this.option.value},info(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";const t=this.$refs.settings_checkbox.checked;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting(){this.timerId=-1;const t=this.$refs.settings_checkbox.checked;if(t===this.value)return void(this.statusUpdate="");const s={category:this.category.name,name:this.option_name,value:t};J.settings_update(this.category.name,s).then(()=>{this.$store.commit(p,s),this.statusUpdate="success"}).catch(()=>{this.statusUpdate="error",this.$refs.settings_checkbox.checked=this.value}).finally(()=>{this.timerId=window.setTimeout(this.clear_status,this.timerDelay)})},clear_status:function(){this.statusUpdate=""}}},_d=pd,md=Object(D["a"])(_d,dd,ud,!1,null,null,null),hd=md.exports,fd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("fieldset",{attrs:{disabled:t.disabled}},[a("div",{staticClass:"field"},[a("label",{staticClass:"label has-text-weight-normal"},[t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),a("div",{staticClass:"control"},[a("input",{ref:"settings_text",staticClass:"input",attrs:{type:"text",placeholder:t.placeholder},domProps:{value:t.value},on:{input:t.set_update_timer}})]),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])])},yd=[],vd={name:"SettingsTextfield",props:["category_name","option_name","placeholder","disabled"],data(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category(){return this.$store.state.settings.categories.find(t=>t.name===this.category_name)},option(){return this.category?this.category.options.find(t=>t.name===this.option_name):{}},value(){return this.option.value},info(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";const t=this.$refs.settings_text.value;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting(){this.timerId=-1;const t=this.$refs.settings_text.value;if(t===this.value)return void(this.statusUpdate="");const s={category:this.category.name,name:this.option_name,value:t};J.settings_update(this.category.name,s).then(()=>{this.$store.commit(p,s),this.statusUpdate="success"}).catch(()=>{this.statusUpdate="error",this.$refs.settings_text.value=this.value}).finally(()=>{this.timerId=window.setTimeout(this.clear_status,this.timerDelay)})},clear_status:function(){this.statusUpdate=""}}},bd=vd,gd=Object(D["a"])(bd,fd,yd,!1,null,null,null),kd=gd.exports,Cd={name:"SettingsPageWebinterface",components:{ContentWithHeading:Ns,TabsSettings:cd,SettingsCheckbox:hd,SettingsTextfield:kd},computed:{settings_option_show_composer_now_playing(){return this.$store.getters.settings_option_show_composer_now_playing}}},wd=Cd,xd=Object(D["a"])(wd,ad,ed,!1,null,null,null),$d=xd.exports,qd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Artwork")])]),a("template",{slot:"content"},[a("div",{staticClass:"content"},[a("p",[t._v(" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. ")]),a("p",[t._v("In addition to that, you can enable fetching artwork from the following artwork providers:")])]),t.spotify.libspotify_logged_in?a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_spotify"}},[a("template",{slot:"label"},[t._v(" Spotify")])],2):t._e(),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_discogs"}},[a("template",{slot:"label"},[t._v(" Discogs ("),a("a",{attrs:{href:"https://www.discogs.com/"}},[t._v("https://www.discogs.com/")]),t._v(")")])],2),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_coverartarchive"}},[a("template",{slot:"label"},[t._v(" Cover Art Archive ("),a("a",{attrs:{href:"https://coverartarchive.org/"}},[t._v("https://coverartarchive.org/")]),t._v(")")])],2)],1)],2)],1)},Ad=[],Sd={name:"SettingsPageArtwork",components:{ContentWithHeading:Ns,TabsSettings:cd,SettingsCheckbox:hd},computed:{spotify(){return this.$store.state.spotify}}},jd=Sd,Pd=Object(D["a"])(jd,qd,Ad,!1,null,null,null),Td=Pd.exports,Ld=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Spotify")])]),a("template",{slot:"content"},[t.spotify.libspotify_installed?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was either built without support for Spotify or libspotify is not installed.")])]),t.spotify.libspotify_installed?a("div",[a("div",{staticClass:"notification is-size-7"},[a("b",[t._v("You must have a Spotify premium account")]),t._v(". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. ")]),a("div",[a("p",{staticClass:"content"},[a("b",[t._v("libspotify")]),t._v(" - Login with your Spotify username and password ")]),t.spotify.libspotify_logged_in?a("p",{staticClass:"fd-has-margin-bottom"},[t._v(" Logged in as "),a("b",[a("code",[t._v(t._s(t.spotify.libspotify_user))])])]):t._e(),t.spotify.libspotify_installed&&!t.spotify.libspotify_logged_in?a("form",{on:{submit:function(s){return s.preventDefault(),t.login_libspotify(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.user,expression:"libspotify.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.libspotify.user},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.password,expression:"libspotify.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.libspotify.password},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info"},[t._v("Login")])])])]):t._e(),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.error))]),a("p",{staticClass:"help"},[t._v(" libspotify enables forked-daapd to play Spotify tracks. ")]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. ")])]),a("div",{staticClass:"fd-has-margin-top"},[a("p",{staticClass:"content"},[a("b",[t._v("Spotify Web API")]),t._v(" - Grant access to the Spotify Web API ")]),t.spotify.webapi_token_valid?a("p",[t._v(" Access granted for "),a("b",[a("code",[t._v(t._s(t.spotify.webapi_user))])])]):t._e(),t.spotify_missing_scope.length>0?a("p",{staticClass:"help is-danger"},[t._v(" Please reauthorize Web API access to grant forked-daapd the following additional access rights: "),a("b",[a("code",[t._v(t._s(t._f("join")(t.spotify_missing_scope)))])])]):t._e(),a("div",{staticClass:"field fd-has-margin-top "},[a("div",{staticClass:"control"},[a("a",{staticClass:"button",class:{"is-info":!t.spotify.webapi_token_valid||t.spotify_missing_scope.length>0},attrs:{href:t.spotify.oauth_uri}},[t._v("Authorize Web API access")])])]),a("p",{staticClass:"help"},[t._v(" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are "),a("code",[t._v(t._s(t._f("join")(t.spotify_required_scope)))]),t._v(". ")])])]):t._e()])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Last.fm")])]),a("template",{slot:"content"},[t.lastfm.enabled?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was built without support for Last.fm.")])]),t.lastfm.enabled?a("div",[a("p",{staticClass:"content"},[a("b",[t._v("Last.fm")]),t._v(" - Login with your Last.fm username and password to enable scrobbling ")]),t.lastfm.scrobbling_enabled?a("div",[a("a",{staticClass:"button",on:{click:t.logoutLastfm}},[t._v("Stop scrobbling")])]):t._e(),t.lastfm.scrobbling_enabled?t._e():a("div",[a("form",{on:{submit:function(s){return s.preventDefault(),t.login_lastfm(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.user,expression:"lastfm_login.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.lastfm_login.user},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.password,expression:"lastfm_login.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.lastfm_login.password},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Login")])])]),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.error))]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. ")])])])]):t._e()])],2)],1)},Od=[],Ed={name:"SettingsPageOnlineServices",components:{ContentWithHeading:Ns,TabsSettings:cd},data(){return{libspotify:{user:"",password:"",errors:{user:"",password:"",error:""}},lastfm_login:{user:"",password:"",errors:{user:"",password:"",error:""}}}},computed:{lastfm(){return this.$store.state.lastfm},spotify(){return this.$store.state.spotify},spotify_required_scope(){return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" "):[]},spotify_missing_scope(){return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" ").filter(t=>this.spotify.webapi_granted_scope.indexOf(t)<0):[]}},methods:{login_libspotify(){J.spotify_login(this.libspotify).then(t=>{this.libspotify.user="",this.libspotify.password="",this.libspotify.errors.user="",this.libspotify.errors.password="",this.libspotify.errors.error="",t.data.success||(this.libspotify.errors.user=t.data.errors.user,this.libspotify.errors.password=t.data.errors.password,this.libspotify.errors.error=t.data.errors.error)})},login_lastfm(){J.lastfm_login(this.lastfm_login).then(t=>{this.lastfm_login.user="",this.lastfm_login.password="",this.lastfm_login.errors.user="",this.lastfm_login.errors.password="",this.lastfm_login.errors.error="",t.data.success||(this.lastfm_login.errors.user=t.data.errors.user,this.lastfm_login.errors.password=t.data.errors.password,this.lastfm_login.errors.error=t.data.errors.error)})},logoutLastfm(){J.lastfm_logout()}},filters:{join(t){return t.join(", ")}}},Id=Ed,zd=Object(D["a"])(Id,Ld,Od,!1,null,null,null),Dd=zd.exports,Nd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Remote Pairing")])]),a("template",{slot:"content"},[t.pairing.active?a("div",{staticClass:"notification"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label has-text-weight-normal"},[t._v(" Remote pairing request from "),a("b",[t._v(t._s(t.pairing.remote))])]),a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Send")])])])])]):t._e(),t.pairing.active?t._e():a("div",{staticClass:"content"},[a("p",[t._v("No active pairing request.")])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Device Verification")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. ")]),t._l(t.outputs,(function(s){return a("div",{key:s.id},[a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("label",{staticClass:"checkbox"},[a("input",{directives:[{name:"model",rawName:"v-model",value:s.selected,expression:"output.selected"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(s.selected)?t._i(s.selected,null)>-1:s.selected},on:{change:[function(a){var e=s.selected,i=a.target,l=!!i.checked;if(Array.isArray(e)){var o=null,n=t._i(e,o);i.checked?n<0&&t.$set(s,"selected",e.concat([o])):n>-1&&t.$set(s,"selected",e.slice(0,n).concat(e.slice(n+1)))}else t.$set(s,"selected",l)},function(a){return t.output_toggle(s.id)}]}}),t._v(" "+t._s(s.name)+" ")])])]),s.needs_auth_key?a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(a){return a.preventDefault(),t.kickoff_verification(s.id)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.verification_req.pin,expression:"verification_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter verification code"},domProps:{value:t.verification_req.pin},on:{input:function(s){s.target.composing||t.$set(t.verification_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Verify")])])])]):t._e()])}))],2)],2)],1)},Rd=[],Md={name:"SettingsPageRemotesOutputs",components:{ContentWithHeading:Ns,TabsSettings:cd},data(){return{pairing_req:{pin:""},verification_req:{pin:""}}},computed:{pairing(){return this.$store.state.pairing},outputs(){return this.$store.state.outputs}},methods:{kickoff_pairing(){J.pairing_kickoff(this.pairing_req)},output_toggle(t){J.output_toggle(t)},kickoff_verification(t){J.output_update(t,this.verification_req)}},filters:{}},Ud=Md,Hd=Object(D["a"])(Ud,Nd,Rd,!1,null,null,null),Wd=Hd.exports;e["a"].use(Ps["a"]);const Bd=new Ps["a"]({routes:[{path:"/",name:"PageQueue",component:fa},{path:"/about",name:"About",component:ur},{path:"/now-playing",name:"Now playing",component:La},{path:"/music",redirect:"/music/browse"},{path:"/music/browse",name:"Browse",component:je,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_added",name:"Browse Recently Added",component:ze,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_played",name:"Browse Recently Played",component:We,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/artists",name:"Artists",component:Ai,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/artists/:artist_id",name:"Artist",component:Ei,meta:{show_progress:!0,has_index:!0}},{path:"/music/artists/:artist_id/tracks",name:"Tracks",component:Il,meta:{show_progress:!0,has_index:!0}},{path:"/music/albums",name:"Albums",component:Ui,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/albums/:album_id",name:"Album",component:Qi,meta:{show_progress:!0}},{path:"/music/genres",name:"Genres",component:ml,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/genres/:genre",name:"Genre",component:kl,meta:{show_progress:!0,has_index:!0}},{path:"/music/genres/:genre/tracks",name:"GenreTracks",component:Sl,meta:{show_progress:!0,has_index:!0}},{path:"/podcasts",name:"Podcasts",component:Vl,meta:{show_progress:!0}},{path:"/podcasts/:album_id",name:"Podcast",component:so,meta:{show_progress:!0}},{path:"/audiobooks",redirect:"/audiobooks/artists"},{path:"/audiobooks/artists",name:"AudiobooksArtists",component:Co,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/artists/:artist_id",name:"AudiobooksArtist",component:jo,meta:{show_progress:!0}},{path:"/audiobooks/albums",name:"AudiobooksAlbums",component:ho,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/:album_id",name:"Audiobook",component:zo,meta:{show_progress:!0}},{path:"/radio",name:"Radio",component:Un,meta:{show_progress:!0}},{path:"/files",name:"Files",component:En,meta:{show_progress:!0}},{path:"/playlists",redirect:"/playlists/0"},{path:"/playlists/:playlist_id",name:"Playlists",component:rn,meta:{show_progress:!0}},{path:"/playlists/:playlist_id/tracks",name:"Playlist",component:hn,meta:{show_progress:!0}},{path:"/search",redirect:"/search/library"},{path:"/search/library",name:"Search Library",component:lr},{path:"/music/spotify",name:"Spotify",component:Hr,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/new-releases",name:"Spotify Browse New Releases",component:Qr,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/featured-playlists",name:"Spotify Browse Featured Playlists",component:ac,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/artists/:artist_id",name:"Spotify Artist",component:yc,meta:{show_progress:!0}},{path:"/music/spotify/albums/:album_id",name:"Spotify Album",component:zc,meta:{show_progress:!0}},{path:"/music/spotify/playlists/:playlist_id",name:"Spotify Playlist",component:Wc,meta:{show_progress:!0}},{path:"/search/spotify",name:"Spotify Search",component:sd},{path:"/settings/webinterface",name:"Settings Webinterface",component:$d},{path:"/settings/artwork",name:"Settings Artwork",component:Td},{path:"/settings/online-services",name:"Settings Online Services",component:Dd},{path:"/settings/remotes-outputs",name:"Settings Remotes Outputs",component:Wd}],scrollBehavior(t,s,a){return a?new Promise((t,s)=>{setTimeout(()=>{t(a)},10)}):t.path===s.path&&t.hash?{selector:t.hash,offset:{x:0,y:120}}:t.hash?new Promise((s,a)=>{setTimeout(()=>{s({selector:t.hash,offset:{x:0,y:120}})},10)}):t.meta.has_index?new Promise((s,a)=>{setTimeout(()=>{t.meta.has_tabs?s({selector:"#top",offset:{x:0,y:140}}):s({selector:"#top",offset:{x:0,y:100}})},10)}):{x:0,y:0}}});Bd.beforeEach((t,s,a)=>Q.state.show_burger_menu?(Q.commit(O,!1),void a(!1)):Q.state.show_player_menu?(Q.commit(E,!1),void a(!1)):void a(!0));var Fd=a("4623"),Gd=a.n(Fd);Gd()($s.a),e["a"].filter("duration",(function(t,s){return s?$s.a.duration(t).format(s):$s.a.duration(t).format("hh:*mm:ss")})),e["a"].filter("time",(function(t,s){return s?$s()(t).format(s):$s()(t).format()})),e["a"].filter("timeFromNow",(function(t,s){return $s()(t).fromNow(s)})),e["a"].filter("number",(function(t){return t.toLocaleString()})),e["a"].filter("channels",(function(t){return 1===t?"mono":2===t?"stereo":t?t+" channels":""}));var Yd=a("26b9"),Vd=a.n(Yd);e["a"].use(Vd.a,{color:"hsl(204, 86%, 53%)",failedColor:"red",height:"1px"});var Qd=a("c28b"),Jd=a.n(Qd),Kd=a("3659"),Xd=a.n(Kd),Zd=a("85fe"),tu=a("f13c"),su=a.n(tu);a("de2f"),a("2760"),a("a848");e["a"].config.productionTip=!1,e["a"].use(Jd.a),e["a"].use(Xd.a),e["a"].use(Zd["a"]),e["a"].use(su.a),new e["a"]({el:"#app",router:Bd,store:Q,components:{App:js},template:""})},a848:function(t,s,a){},cf45:function(t,s,a){"use strict";a("53c4")},e6a4:function(t,s){},fd4d:function(t,s,a){"use strict";var e=a("2c75"),i=a("4178"),l=a("2877"),o=Object(l["a"])(i["default"],e["a"],e["b"],!1,null,null,null);s["default"]=o.exports}}); +(function(t){function s(s){for(var e,o,n=s[0],r=s[1],c=s[2],u=0,p=[];u-1:t.rescan_metadata},on:{change:function(s){var a=t.rescan_metadata,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.rescan_metadata=a.concat([l])):o>-1&&(t.rescan_metadata=a.slice(0,o).concat(a.slice(o+1)))}else t.rescan_metadata=i}}}),t._v(" Rescan metadata for unmodified files ")])])])])],2),a("div",{directives:[{name:"show",rawName:"v-show",value:t.show_settings_menu,expression:"show_settings_menu"}],staticClass:"is-overlay",staticStyle:{"z-index":"10",width:"100vw",height:"100vh"},on:{click:function(s){t.show_settings_menu=!1}}})],1)},n=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-link is-arrowless"},[a("span",{staticClass:"icon is-hidden-touch"},[a("i",{staticClass:"mdi mdi-24px mdi-menu"})]),a("span",{staticClass:"is-hidden-desktop has-text-weight-bold"},[t._v("forked-daapd")])])}],r=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{staticClass:"navbar-item",class:{"is-active":t.is_active},attrs:{href:t.full_path()},on:{click:function(s){return s.stopPropagation(),s.preventDefault(),t.open_link()}}},[t._t("default")],2)},c=[];const d="UPDATE_CONFIG",u="UPDATE_SETTINGS",p="UPDATE_SETTINGS_OPTION",_="UPDATE_LIBRARY_STATS",m="UPDATE_LIBRARY_AUDIOBOOKS_COUNT",h="UPDATE_LIBRARY_PODCASTS_COUNT",f="UPDATE_OUTPUTS",y="UPDATE_PLAYER_STATUS",v="UPDATE_QUEUE",b="UPDATE_LASTFM",g="UPDATE_SPOTIFY",k="UPDATE_PAIRING",C="SPOTIFY_NEW_RELEASES",w="SPOTIFY_FEATURED_PLAYLISTS",x="ADD_NOTIFICATION",$="DELETE_NOTIFICATION",q="ADD_RECENT_SEARCH",A="HIDE_SINGLES",S="HIDE_SPOTIFY",j="ARTISTS_SORT",P="ARTIST_ALBUMS_SORT",T="ALBUMS_SORT",L="SHOW_ONLY_NEXT_ITEMS",O="SHOW_BURGER_MENU",E="SHOW_PLAYER_MENU";var I={name:"NavbarItemLink",props:{to:String,exact:Boolean},computed:{is_active(){return this.exact?this.$route.path===this.to:this.$route.path.startsWith(this.to)},show_player_menu:{get(){return this.$store.state.show_player_menu},set(t){this.$store.commit(E,t)}},show_burger_menu:{get(){return this.$store.state.show_burger_menu},set(t){this.$store.commit(O,t)}}},methods:{open_link:function(){this.show_burger_menu&&this.$store.commit(O,!1),this.show_player_menu&&this.$store.commit(E,!1),this.$router.push({path:this.to})},full_path:function(){const t=this.$router.resolve(this.to);return t.href}}},z=I,D=a("2877"),R=Object(D["a"])(z,r,c,!1,null,null,null),N=R.exports,M=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[t.title?a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.title)+" ")]):t._e(),t._t("modal-content")],2),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.close_action?t.close_action:"Cancel"))])]),t.delete_action?a("a",{staticClass:"card-footer-item has-background-danger has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("delete")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.delete_action))])]):t._e(),t.ok_action?a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:function(s){return t.$emit("ok")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-check"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v(t._s(t.ok_action))])]):t._e()])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},U=[],H={name:"ModalDialog",props:["show","title","ok_action","delete_action","close_action"]},W=H,B=Object(D["a"])(W,M,U,!1,null,null,null),F=B.exports,G=a("bc3a"),Y=a.n(G),V=a("2f62");e["a"].use(V["a"]);var Q=new V["a"].Store({state:{config:{websocket_port:0,version:"",buildoptions:[]},settings:{categories:[]},library:{artists:0,albums:0,songs:0,db_playtime:0,updating:!1},audiobooks_count:{},podcasts_count:{},outputs:[],player:{state:"stop",repeat:"off",consume:!1,shuffle:!1,volume:0,item_id:0,item_length_ms:0,item_progress_ms:0},queue:{version:0,count:0,items:[]},lastfm:{},spotify:{},pairing:{},spotify_new_releases:[],spotify_featured_playlists:[],notifications:{next_id:1,list:[]},recent_searches:[],hide_singles:!1,hide_spotify:!1,artists_sort:"Name",artist_albums_sort:"Name",albums_sort:"Name",show_only_next_items:!1,show_burger_menu:!1,show_player_menu:!1},getters:{now_playing:t=>{const s=t.queue.items.find((function(s){return s.id===t.player.item_id}));return void 0===s?{}:s},settings_webinterface:t=>t.settings?t.settings.categories.find(t=>"webinterface"===t.name):null,settings_option_recently_added_limit:(t,s)=>{if(s.settings_webinterface){const t=s.settings_webinterface.options.find(t=>"recently_added_limit"===t.name);if(t)return t.value}return 100},settings_option_show_composer_now_playing:(t,s)=>{if(s.settings_webinterface){const t=s.settings_webinterface.options.find(t=>"show_composer_now_playing"===t.name);if(t)return t.value}return!1},settings_option_show_composer_for_genre:(t,s)=>{if(s.settings_webinterface){const t=s.settings_webinterface.options.find(t=>"show_composer_for_genre"===t.name);if(t)return t.value}return null},settings_category:t=>s=>t.settings.categories.find(t=>t.name===s),settings_option:t=>(s,a)=>{const e=t.settings.categories.find(t=>t.name===s);return e?e.options.find(t=>t.name===a):{}}},mutations:{[d](t,s){t.config=s},[u](t,s){t.settings=s},[p](t,s){const a=t.settings.categories.find(t=>t.name===s.category),e=a.options.find(t=>t.name===s.name);e.value=s.value},[_](t,s){t.library=s},[m](t,s){t.audiobooks_count=s},[h](t,s){t.podcasts_count=s},[f](t,s){t.outputs=s},[y](t,s){t.player=s},[v](t,s){t.queue=s},[b](t,s){t.lastfm=s},[g](t,s){t.spotify=s},[k](t,s){t.pairing=s},[C](t,s){t.spotify_new_releases=s},[w](t,s){t.spotify_featured_playlists=s},[x](t,s){if(s.topic){const a=t.notifications.list.findIndex(t=>t.topic===s.topic);if(a>=0)return void t.notifications.list.splice(a,1,s)}t.notifications.list.push(s)},[$](t,s){const a=t.notifications.list.indexOf(s);-1!==a&&t.notifications.list.splice(a,1)},[q](t,s){const a=t.recent_searches.findIndex(t=>t===s);a>=0&&t.recent_searches.splice(a,1),t.recent_searches.splice(0,0,s),t.recent_searches.length>5&&t.recent_searches.pop()},[A](t,s){t.hide_singles=s},[S](t,s){t.hide_spotify=s},[j](t,s){t.artists_sort=s},[P](t,s){t.artist_albums_sort=s},[T](t,s){t.albums_sort=s},[L](t,s){t.show_only_next_items=s},[O](t,s){t.show_burger_menu=s},[E](t,s){t.show_player_menu=s}},actions:{add_notification({commit:t,state:s},a){const e={id:s.notifications.next_id++,type:a.type,text:a.text,topic:a.topic,timeout:a.timeout};t(x,e),a.timeout>0&&setTimeout(()=>{t($,e)},a.timeout)}}});Y.a.interceptors.response.use((function(t){return t}),(function(t){return t.request.status&&t.request.responseURL&&Q.dispatch("add_notification",{text:"Request failed (status: "+t.request.status+" "+t.request.statusText+", url: "+t.request.responseURL+")",type:"danger"}),Promise.reject(t)}));var J={config(){return Y.a.get("./api/config")},settings(){return Y.a.get("./api/settings")},settings_update(t,s){return Y.a.put("./api/settings/"+t+"/"+s.name,s)},library_stats(){return Y.a.get("./api/library")},library_update(){return Y.a.put("./api/update")},library_rescan(){return Y.a.put("./api/rescan")},library_count(t){return Y.a.get("./api/library/count?expression="+t)},queue(){return Y.a.get("./api/queue")},queue_clear(){return Y.a.put("./api/queue/clear")},queue_remove(t){return Y.a.delete("./api/queue/items/"+t)},queue_move(t,s){return Y.a.put("./api/queue/items/"+t+"?new_position="+s)},queue_add(t){return Y.a.post("./api/queue/items/add?uris="+t).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_add_next(t){let s=0;return Q.getters.now_playing&&Q.getters.now_playing.id&&(s=Q.getters.now_playing.position+1),Y.a.post("./api/queue/items/add?uris="+t+"&position="+s).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_expression_add(t){const s={};return s.expression=t,Y.a.post("./api/queue/items/add",void 0,{params:s}).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_expression_add_next(t){const s={};return s.expression=t,s.position=0,Q.getters.now_playing&&Q.getters.now_playing.id&&(s.position=Q.getters.now_playing.position+1),Y.a.post("./api/queue/items/add",void 0,{params:s}).then(t=>(Q.dispatch("add_notification",{text:t.data.count+" tracks appended to queue",type:"info",timeout:2e3}),Promise.resolve(t)))},queue_save_playlist(t){return Y.a.post("./api/queue/save",void 0,{params:{name:t}}).then(s=>(Q.dispatch("add_notification",{text:'Queue saved to playlist "'+t+'"',type:"info",timeout:2e3}),Promise.resolve(s)))},player_status(){return Y.a.get("./api/player")},player_play_uri(t,s,a){const e={};return e.uris=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,Y.a.post("./api/queue/items/add",void 0,{params:e})},player_play_expression(t,s,a){const e={};return e.expression=t,e.shuffle=s?"true":"false",e.clear="true",e.playback="start",e.playback_from_position=a,Y.a.post("./api/queue/items/add",void 0,{params:e})},player_play(t={}){return Y.a.put("./api/player/play",void 0,{params:t})},player_playpos(t){return Y.a.put("./api/player/play?position="+t)},player_playid(t){return Y.a.put("./api/player/play?item_id="+t)},player_pause(){return Y.a.put("./api/player/pause")},player_stop(){return Y.a.put("./api/player/stop")},player_next(){return Y.a.put("./api/player/next")},player_previous(){return Y.a.put("./api/player/previous")},player_shuffle(t){const s=t?"true":"false";return Y.a.put("./api/player/shuffle?state="+s)},player_consume(t){const s=t?"true":"false";return Y.a.put("./api/player/consume?state="+s)},player_repeat(t){return Y.a.put("./api/player/repeat?state="+t)},player_volume(t){return Y.a.put("./api/player/volume?volume="+t)},player_output_volume(t,s){return Y.a.put("./api/player/volume?volume="+s+"&output_id="+t)},player_seek_to_pos(t){return Y.a.put("./api/player/seek?position_ms="+t)},player_seek(t){return Y.a.put("./api/player/seek?seek_ms="+t)},outputs(){return Y.a.get("./api/outputs")},output_update(t,s){return Y.a.put("./api/outputs/"+t,s)},output_toggle(t){return Y.a.put("./api/outputs/"+t+"/toggle")},library_artists(t){return Y.a.get("./api/library/artists",{params:{media_kind:t}})},library_artist(t){return Y.a.get("./api/library/artists/"+t)},library_artist_albums(t){return Y.a.get("./api/library/artists/"+t+"/albums")},library_albums(t){return Y.a.get("./api/library/albums",{params:{media_kind:t}})},library_album(t){return Y.a.get("./api/library/albums/"+t)},library_album_tracks(t,s={limit:-1,offset:0}){return Y.a.get("./api/library/albums/"+t+"/tracks",{params:s})},library_album_track_update(t,s){return Y.a.put("./api/library/albums/"+t+"/tracks",void 0,{params:s})},library_genres(){return Y.a.get("./api/library/genres")},library_genre(t){const s={type:"albums",media_kind:"music",expression:'genre is "'+t+'"'};return Y.a.get("./api/search",{params:s})},library_genre_tracks(t){const s={type:"tracks",media_kind:"music",expression:'genre is "'+t+'"'};return Y.a.get("./api/search",{params:s})},library_radio_streams(){const t={type:"tracks",media_kind:"music",expression:"data_kind is url and song_length = 0"};return Y.a.get("./api/search",{params:t})},library_artist_tracks(t){if(t){const s={type:"tracks",expression:'songartistid is "'+t+'"'};return Y.a.get("./api/search",{params:s})}},library_podcasts_new_episodes(){const t={type:"tracks",expression:"media_kind is podcast and play_count = 0 ORDER BY time_added DESC"};return Y.a.get("./api/search",{params:t})},library_podcast_episodes(t){const s={type:"tracks",expression:'media_kind is podcast and songalbumid is "'+t+'" ORDER BY date_released DESC'};return Y.a.get("./api/search",{params:s})},library_add(t){return Y.a.post("./api/library/add",void 0,{params:{url:t}})},library_playlist_delete(t){return Y.a.delete("./api/library/playlists/"+t,void 0)},library_playlists(){return Y.a.get("./api/library/playlists")},library_playlist_folder(t=0){return Y.a.get("./api/library/playlists/"+t+"/playlists")},library_playlist(t){return Y.a.get("./api/library/playlists/"+t)},library_playlist_tracks(t){return Y.a.get("./api/library/playlists/"+t+"/tracks")},library_track(t){return Y.a.get("./api/library/tracks/"+t)},library_track_playlists(t){return Y.a.get("./api/library/tracks/"+t+"/playlists")},library_track_update(t,s={}){return Y.a.put("./api/library/tracks/"+t,void 0,{params:s})},library_files(t){const s={directory:t};return Y.a.get("./api/library/files",{params:s})},search(t){return Y.a.get("./api/search",{params:t})},spotify(){return Y.a.get("./api/spotify")},spotify_login(t){return Y.a.post("./api/spotify-login",t)},lastfm(){return Y.a.get("./api/lastfm")},lastfm_login(t){return Y.a.post("./api/lastfm-login",t)},lastfm_logout(t){return Y.a.get("./api/lastfm-logout")},pairing(){return Y.a.get("./api/pairing")},pairing_kickoff(t){return Y.a.post("./api/pairing",t)},artwork_url_append_size_params(t,s=600,a=600){return t&&t.startsWith("/")?t.includes("?")?t+"&maxwidth="+s+"&maxheight="+a:t+"?maxwidth="+s+"&maxheight="+a:t}},K={name:"NavbarTop",components:{NavbarItemLink:N,ModalDialog:F},data(){return{show_settings_menu:!1,show_update_library:!1,rescan_metadata:!1}},computed:{is_visible_playlists(){return this.$store.getters.settings_option("webinterface","show_menu_item_playlists").value},is_visible_music(){return this.$store.getters.settings_option("webinterface","show_menu_item_music").value},is_visible_podcasts(){return this.$store.getters.settings_option("webinterface","show_menu_item_podcasts").value},is_visible_audiobooks(){return this.$store.getters.settings_option("webinterface","show_menu_item_audiobooks").value},is_visible_radio(){return this.$store.getters.settings_option("webinterface","show_menu_item_radio").value},is_visible_files(){return this.$store.getters.settings_option("webinterface","show_menu_item_files").value},is_visible_search(){return this.$store.getters.settings_option("webinterface","show_menu_item_search").value},player(){return this.$store.state.player},config(){return this.$store.state.config},library(){return this.$store.state.library},audiobooks(){return this.$store.state.audiobooks_count},podcasts(){return this.$store.state.podcasts_count},spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},show_burger_menu:{get(){return this.$store.state.show_burger_menu},set(t){this.$store.commit(O,t)}},show_player_menu(){return this.$store.state.show_player_menu},zindex(){return this.show_player_menu?"z-index: 20":""}},methods:{on_click_outside_settings(){this.show_settings_menu=!this.show_settings_menu},update_library(){this.rescan_metadata?J.library_rescan():J.library_update()}},watch:{$route(t,s){this.show_settings_menu=!1}}},X=K,Z=Object(D["a"])(X,o,n,!1,null,null,null),tt=Z.exports,st=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("nav",{staticClass:"fd-bottom-navbar navbar is-white is-fixed-bottom",class:{"is-transparent":t.is_now_playing_page,"is-dark":!t.is_now_playing_page},style:t.zindex,attrs:{role:"navigation","aria-label":"player controls"}},[a("div",{staticClass:"navbar-brand fd-expanded"},[a("navbar-item-link",{attrs:{to:"/",exact:""}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-24px mdi-playlist-play"})])]),t.is_now_playing_page?t._e():a("router-link",{staticClass:"navbar-item is-expanded is-clipped",attrs:{to:"/now-playing","active-class":"is-active",exact:""}},[a("div",{staticClass:"is-clipped"},[a("p",{staticClass:"is-size-7 fd-is-text-clipped"},[a("strong",[t._v(t._s(t.now_playing.title))]),a("br"),t._v(" "+t._s(t.now_playing.artist)),"url"===t.now_playing.data_kind?a("span",[t._v(" - "+t._s(t.now_playing.album))]):t._e()])])]),t.is_now_playing_page?a("player-button-previous",{staticClass:"navbar-item fd-margin-left-auto",attrs:{icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-seek-back",{staticClass:"navbar-item",attrs:{seek_ms:"10000",icon_style:"mdi-24px"}}):t._e(),a("player-button-play-pause",{staticClass:"navbar-item",attrs:{icon_style:"mdi-36px",show_disabled_message:""}}),t.is_now_playing_page?a("player-button-seek-forward",{staticClass:"navbar-item",attrs:{seek_ms:"30000",icon_style:"mdi-24px"}}):t._e(),t.is_now_playing_page?a("player-button-next",{staticClass:"navbar-item",attrs:{icon_style:"mdi-24px"}}):t._e(),a("a",{staticClass:"navbar-item fd-margin-left-auto is-hidden-desktop",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch",class:{"is-active":t.show_player_menu}},[a("a",{staticClass:"navbar-link is-arrowless",on:{click:function(s){t.show_player_menu=!t.show_player_menu}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-chevron-up":!t.show_player_menu,"mdi-chevron-down":t.show_player_menu}})])]),a("div",{staticClass:"navbar-dropdown is-right is-boxed",staticStyle:{"margin-right":"6px","margin-bottom":"6px","border-radius":"6px"}},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(0)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile fd-expanded"},[a("div",{staticClass:"level-item"},[a("div",{staticClass:"buttons has-addons"},[a("player-button-repeat",{staticClass:"button"}),a("player-button-shuffle",{staticClass:"button"}),a("player-button-consume",{staticClass:"button"})],1)])])])],2)])],1),a("div",{staticClass:"navbar-menu is-hidden-desktop",class:{"is-active":t.show_player_menu}},[a("div",{staticClass:"navbar-start"}),a("div",{staticClass:"navbar-end"},[a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"buttons is-centered"},[a("player-button-repeat",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-shuffle",{staticClass:"button",attrs:{icon_style:"mdi-18px"}}),a("player-button-consume",{staticClass:"button",attrs:{icon_style:"mdi-18px"}})],1)]),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",on:{click:t.toggle_mute_volume}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-18px",class:{"mdi-volume-off":t.player.volume<=0,"mdi-volume-high":t.player.volume>0}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading"},[t._v("Volume")]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",value:t.player.volume},on:{change:t.set_volume}})],1)])])])]),t._l(t.outputs,(function(t){return a("navbar-item-output",{key:t.id,attrs:{output:t}})})),a("hr",{staticClass:"fd-navbar-divider"}),a("div",{staticClass:"navbar-item fd-has-margin-bottom"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small",class:{"is-loading":t.loading}},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.playing&&!t.loading,"is-loading":t.loading},on:{click:t.togglePlay}},[a("i",{staticClass:"mdi mdi-18px mdi-radio-tower"})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.playing}},[t._v("HTTP stream "),t._m(1)]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.playing,value:t.stream_volume},on:{change:t.set_stream_volume}})],1)])])])])],2)])])},at=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{href:"stream.mp3"}},[a("span",{staticClass:"is-lowercase"},[t._v("(stream.mp3)")])])}],et={_audio:new Audio,_context:null,_source:null,_gain:null,setupAudio(){const t=window.AudioContext||window.webkitAudioContext;return this._context=new t,this._source=this._context.createMediaElementSource(this._audio),this._gain=this._context.createGain(),this._source.connect(this._gain),this._gain.connect(this._context.destination),this._audio.addEventListener("canplaythrough",t=>{this._audio.play()}),this._audio.addEventListener("canplay",t=>{this._audio.play()}),this._audio},setVolume(t){this._gain&&(t=parseFloat(t)||0,t=t<0?0:t,t=t>1?1:t,this._gain.gain.value=t)},playSource(t){this.stopAudio(),this._context.resume().then(()=>{this._audio.src=String(t||"")+"?x="+Date.now(),this._audio.crossOrigin="anonymous",this._audio.load()})},stopAudio(){try{this._audio.pause()}catch(t){}try{this._audio.stop()}catch(t){}try{this._audio.close()}catch(t){}}},it=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"navbar-item"},[a("div",{staticClass:"level is-mobile"},[a("div",{staticClass:"level-left fd-expanded"},[a("div",{staticClass:"level-item",staticStyle:{"flex-grow":"0"}},[a("a",{staticClass:"button is-white is-small"},[a("span",{staticClass:"icon fd-has-action",class:{"has-text-grey-light":!t.output.selected},on:{click:t.set_enabled}},[a("i",{staticClass:"mdi mdi-18px",class:t.type_class,attrs:{title:t.output.type}})])])]),a("div",{staticClass:"level-item fd-expanded"},[a("div",{staticClass:"fd-expanded"},[a("p",{staticClass:"heading",class:{"has-text-grey-light":!t.output.selected}},[t._v(t._s(t.output.name))]),a("range-slider",{staticClass:"slider fd-has-action",attrs:{min:"0",max:"100",step:"1",disabled:!t.output.selected,value:t.volume},on:{change:t.set_volume}})],1)])])])])},lt=[],ot=a("c7e3"),nt=a.n(ot),rt={name:"NavbarItemOutput",components:{RangeSlider:nt.a},props:["output"],computed:{type_class(){return this.output.type.startsWith("AirPlay")?"mdi-airplay":"Chromecast"===this.output.type?"mdi-cast":"fifo"===this.output.type?"mdi-pipe":"mdi-server"},volume(){return this.output.selected?this.output.volume:0}},methods:{play_next:function(){J.player_next()},set_volume:function(t){J.player_output_volume(this.output.id,t)},set_enabled:function(){const t={selected:!this.output.selected};J.output_update(this.output.id,t)}}},ct=rt,dt=Object(D["a"])(ct,it,lt,!1,null,null,null),ut=dt.exports,pt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.toggle_play_pause}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-play":!t.is_playing,"mdi-pause":t.is_playing&&t.is_pause_allowed,"mdi-stop":t.is_playing&&!t.is_pause_allowed}]})])])},_t=[],mt={name:"PlayerButtonPlayPause",props:{icon_style:String,show_disabled_message:Boolean},computed:{is_playing(){return"play"===this.$store.state.player.state},is_pause_allowed(){return this.$store.getters.now_playing&&"pipe"!==this.$store.getters.now_playing.data_kind},disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{toggle_play_pause:function(){this.disabled?this.show_disabled_message&&this.$store.dispatch("add_notification",{text:"Queue is empty",type:"info",topic:"connection",timeout:2e3}):this.is_playing&&this.is_pause_allowed?J.player_pause():this.is_playing&&!this.is_pause_allowed?J.player_stop():J.player_play()}}},ht=mt,ft=Object(D["a"])(ht,pt,_t,!1,null,null,null),yt=ft.exports,vt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-forward",class:t.icon_style})])])},bt=[],gt={name:"PlayerButtonNext",props:{icon_style:String},computed:{disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_next:function(){this.disabled||J.player_next()}}},kt=gt,Ct=Object(D["a"])(kt,vt,bt,!1,null,null,null),wt=Ct.exports,xt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{attrs:{disabled:t.disabled},on:{click:t.play_previous}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-skip-backward",class:t.icon_style})])])},$t=[],qt={name:"PlayerButtonPrevious",props:{icon_style:String},computed:{disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0}},methods:{play_previous:function(){this.disabled||J.player_previous()}}},At=qt,St=Object(D["a"])(At,xt,$t,!1,null,null,null),jt=St.exports,Pt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_shuffle},on:{click:t.toggle_shuffle_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-shuffle":t.is_shuffle,"mdi-shuffle-disabled":!t.is_shuffle}]})])])},Tt=[],Lt={name:"PlayerButtonShuffle",props:{icon_style:String},computed:{is_shuffle(){return this.$store.state.player.shuffle}},methods:{toggle_shuffle_mode:function(){J.player_shuffle(!this.is_shuffle)}}},Ot=Lt,Et=Object(D["a"])(Ot,Pt,Tt,!1,null,null,null),It=Et.exports,zt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":t.is_consume},on:{click:t.toggle_consume_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fire",class:t.icon_style})])])},Dt=[],Rt={name:"PlayerButtonConsume",props:{icon_style:String},computed:{is_consume(){return this.$store.state.player.consume}},methods:{toggle_consume_mode:function(){J.player_consume(!this.is_consume)}}},Nt=Rt,Mt=Object(D["a"])(Nt,zt,Dt,!1,null,null,null),Ut=Mt.exports,Ht=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("a",{class:{"is-warning":!t.is_repeat_off},on:{click:t.toggle_repeat_mode}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:[t.icon_style,{"mdi-repeat":t.is_repeat_all,"mdi-repeat-once":t.is_repeat_single,"mdi-repeat-off":t.is_repeat_off}]})])])},Wt=[],Bt={name:"PlayerButtonRepeat",props:{icon_style:String},computed:{is_repeat_all(){return"all"===this.$store.state.player.repeat},is_repeat_single(){return"single"===this.$store.state.player.repeat},is_repeat_off(){return!this.is_repeat_all&&!this.is_repeat_single}},methods:{toggle_repeat_mode:function(){this.is_repeat_all?J.player_repeat("single"):this.is_repeat_single?J.player_repeat("off"):J.player_repeat("all")}}},Ft=Bt,Gt=Object(D["a"])(Ft,Ht,Wt,!1,null,null,null),Yt=Gt.exports,Vt=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rewind",class:t.icon_style})])]):t._e()},Qt=[],Jt={name:"PlayerButtonSeekBack",props:["seek_ms","icon_style"],computed:{now_playing(){return this.$store.getters.now_playing},is_stopped(){return"stop"===this.$store.state.player.state},disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||J.player_seek(-1*this.seek_ms)}}},Kt=Jt,Xt=Object(D["a"])(Kt,Vt,Qt,!1,null,null,null),Zt=Xt.exports,ts=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.visible?a("a",{attrs:{disabled:t.disabled},on:{click:t.seek}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-fast-forward",class:t.icon_style})])]):t._e()},ss=[],as={name:"PlayerButtonSeekForward",props:["seek_ms","icon_style"],computed:{now_playing(){return this.$store.getters.now_playing},is_stopped(){return"stop"===this.$store.state.player.state},disabled(){return!this.$store.state.queue||this.$store.state.queue.count<=0||this.is_stopped||"pipe"===this.now_playing.data_kind},visible(){return["podcast","audiobook"].includes(this.now_playing.media_kind)}},methods:{seek:function(){this.disabled||J.player_seek(this.seek_ms)}}},es=as,is=Object(D["a"])(es,ts,ss,!1,null,null,null),ls=is.exports,os={name:"NavbarBottom",components:{NavbarItemLink:N,NavbarItemOutput:ut,RangeSlider:nt.a,PlayerButtonPlayPause:yt,PlayerButtonNext:wt,PlayerButtonPrevious:jt,PlayerButtonShuffle:It,PlayerButtonConsume:Ut,PlayerButtonRepeat:Yt,PlayerButtonSeekForward:ls,PlayerButtonSeekBack:Zt},data(){return{old_volume:0,playing:!1,loading:!1,stream_volume:10,show_outputs_menu:!1,show_desktop_outputs_menu:!1}},computed:{show_player_menu:{get(){return this.$store.state.show_player_menu},set(t){this.$store.commit(E,t)}},show_burger_menu(){return this.$store.state.show_burger_menu},zindex(){return this.show_burger_menu?"z-index: 20":""},state(){return this.$store.state.player},now_playing(){return this.$store.getters.now_playing},is_now_playing_page(){return"/now-playing"===this.$route.path},outputs(){return this.$store.state.outputs},player(){return this.$store.state.player},config(){return this.$store.state.config}},methods:{on_click_outside_outputs(){this.show_outputs_menu=!1},set_volume:function(t){J.player_volume(t)},toggle_mute_volume:function(){this.player.volume>0?this.set_volume(0):this.set_volume(this.old_volume)},setupAudio:function(){const t=et.setupAudio();t.addEventListener("waiting",t=>{this.playing=!1,this.loading=!0}),t.addEventListener("playing",t=>{this.playing=!0,this.loading=!1}),t.addEventListener("ended",t=>{this.playing=!1,this.loading=!1}),t.addEventListener("error",t=>{this.closeAudio(),this.$store.dispatch("add_notification",{text:"HTTP stream error: failed to load stream or stopped loading due to network problem",type:"danger"}),this.playing=!1,this.loading=!1})},closeAudio:function(){et.stopAudio(),this.playing=!1},playChannel:function(){if(this.playing)return;const t="/stream.mp3";this.loading=!0,et.playSource(t),et.setVolume(this.stream_volume/100)},togglePlay:function(){if(!this.loading)return this.playing?this.closeAudio():this.playChannel()},set_stream_volume:function(t){this.stream_volume=t,et.setVolume(this.stream_volume/100)}},watch:{"$store.state.player.volume"(){this.player.volume>0&&(this.old_volume=this.player.volume)}},mounted(){this.setupAudio()},destroyed(){this.closeAudio()}},ns=os,rs=Object(D["a"])(ns,st,at,!1,null,null,null),cs=rs.exports,ds=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"fd-notifications"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-half"},t._l(t.notifications,(function(s){return a("div",{key:s.id,staticClass:"notification has-shadow ",class:["notification",s.type?"is-"+s.type:""]},[a("button",{staticClass:"delete",on:{click:function(a){return t.remove(s)}}}),t._v(" "+t._s(s.text)+" ")])})),0)])])},us=[],ps={name:"Notifications",components:{},data(){return{showNav:!1}},computed:{notifications(){return this.$store.state.notifications.list}},methods:{remove:function(t){this.$store.commit($,t)}}},_s=ps,ms=(a("cf45"),Object(D["a"])(_s,ds,us,!1,null,null,null)),hs=ms.exports,fs=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Remote pairing request ")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label"},[t._v(" "+t._s(t.pairing.remote)+" ")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],ref:"pin_field",staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.kickoff_pairing}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cellphone-iphone"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Pair Remote")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ys=[],vs={name:"ModalDialogRemotePairing",props:["show"],data(){return{pairing_req:{pin:""}}},computed:{pairing(){return this.$store.state.pairing}},methods:{kickoff_pairing(){J.pairing_kickoff(this.pairing_req).then(()=>{this.pairing_req.pin=""})}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.pin_field.focus()},10))}}},bs=vs,gs=Object(D["a"])(bs,fs,ys,!1,null,null,null),ks=gs.exports,Cs=a("d04d"),ws=a.n(Cs),xs=a("c1df"),$s=a.n(xs),qs={name:"App",components:{NavbarTop:tt,NavbarBottom:cs,Notifications:hs,ModalDialogRemotePairing:ks},template:"",data(){return{token_timer_id:0,reconnect_attempts:0,pairing_active:!1}},computed:{show_burger_menu:{get(){return this.$store.state.show_burger_menu},set(t){this.$store.commit(O,t)}},show_player_menu:{get(){return this.$store.state.show_player_menu},set(t){this.$store.commit(E,t)}}},created:function(){$s.a.locale(navigator.language),this.connect(),this.$Progress.start(),this.$router.beforeEach((t,s,a)=>{if(t.meta.show_progress){if(void 0!==t.meta.progress){const s=t.meta.progress;this.$Progress.parseMeta(s)}this.$Progress.start()}a()}),this.$router.afterEach((t,s)=>{t.meta.show_progress&&this.$Progress.finish()})},methods:{connect:function(){this.$store.dispatch("add_notification",{text:"Connecting to forked-daapd",type:"info",topic:"connection",timeout:2e3}),J.config().then(({data:t})=>{this.$store.commit(d,t),this.$store.commit(A,t.hide_singles),document.title=t.library_name,this.open_ws(),this.$Progress.finish()}).catch(()=>{this.$store.dispatch("add_notification",{text:"Failed to connect to forked-daapd",type:"danger",topic:"connection"})})},open_ws:function(){if(this.$store.state.config.websocket_port<=0)return void this.$store.dispatch("add_notification",{text:"Missing websocket port",type:"danger"});const t=this;let s="ws://";"https:"===window.location.protocol&&(s="wss://");let a=s+window.location.hostname+":"+t.$store.state.config.websocket_port;const e=new ws.a(a,"notify",{reconnectInterval:3e3});e.onopen=function(){t.$store.dispatch("add_notification",{text:"Connection to server established",type:"primary",topic:"connection",timeout:2e3}),t.reconnect_attempts=0,e.send(JSON.stringify({notify:["update","database","player","options","outputs","volume","spotify","lastfm","pairing"]})),t.update_outputs(),t.update_player_status(),t.update_library_stats(),t.update_settings(),t.update_queue(),t.update_spotify(),t.update_lastfm(),t.update_pairing()},e.onclose=function(){},e.onerror=function(){t.reconnect_attempts++,t.$store.dispatch("add_notification",{text:"Connection lost. Reconnecting ... ("+t.reconnect_attempts+")",type:"danger",topic:"connection"})},e.onmessage=function(s){const a=JSON.parse(s.data);(a.notify.includes("update")||a.notify.includes("database"))&&t.update_library_stats(),(a.notify.includes("player")||a.notify.includes("options")||a.notify.includes("volume"))&&t.update_player_status(),(a.notify.includes("outputs")||a.notify.includes("volume"))&&t.update_outputs(),a.notify.includes("queue")&&t.update_queue(),a.notify.includes("spotify")&&t.update_spotify(),a.notify.includes("lastfm")&&t.update_lastfm(),a.notify.includes("pairing")&&t.update_pairing()}},update_library_stats:function(){J.library_stats().then(({data:t})=>{this.$store.commit(_,t)}),J.library_count("media_kind is audiobook").then(({data:t})=>{this.$store.commit(m,t)}),J.library_count("media_kind is podcast").then(({data:t})=>{this.$store.commit(h,t)})},update_outputs:function(){J.outputs().then(({data:t})=>{this.$store.commit(f,t.outputs)})},update_player_status:function(){J.player_status().then(({data:t})=>{this.$store.commit(y,t)})},update_queue:function(){J.queue().then(({data:t})=>{this.$store.commit(v,t)})},update_settings:function(){J.settings().then(({data:t})=>{this.$store.commit(u,t)})},update_lastfm:function(){J.lastfm().then(({data:t})=>{this.$store.commit(b,t)})},update_spotify:function(){J.spotify().then(({data:t})=>{this.$store.commit(g,t),this.token_timer_id>0&&(window.clearTimeout(this.token_timer_id),this.token_timer_id=0),t.webapi_token_expires_in>0&&t.webapi_token&&(this.token_timer_id=window.setTimeout(this.update_spotify,1e3*t.webapi_token_expires_in))})},update_pairing:function(){J.pairing().then(({data:t})=>{this.$store.commit(k,t),this.pairing_active=t.active})},update_is_clipped:function(){this.show_burger_menu||this.show_player_menu?document.querySelector("html").classList.add("is-clipped"):document.querySelector("html").classList.remove("is-clipped")}},watch:{show_burger_menu(){this.update_is_clipped()},show_player_menu(){this.update_is_clipped()}}},As=qs,Ss=Object(D["a"])(As,i,l,!1,null,null,null),js=Ss.exports,Ps=a("8c4f"),Ts=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"heading"},[t._v(t._s(t.queue.count)+" tracks")]),a("p",{staticClass:"title is-4"},[t._v("Queue")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",class:{"is-info":t.show_only_next_items},on:{click:t.update_show_next_items}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-arrow-collapse-down"})]),a("span",[t._v("Hide previous")])]),a("a",{staticClass:"button is-small",on:{click:t.open_add_stream_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",[t._v("Add Stream")])]),a("a",{staticClass:"button is-small",class:{"is-info":t.edit_mode},on:{click:function(s){t.edit_mode=!t.edit_mode}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Edit")])]),a("a",{staticClass:"button is-small",on:{click:t.queue_clear}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete-empty"})]),a("span",[t._v("Clear")])]),t.is_queue_save_allowed?a("a",{staticClass:"button is-small",attrs:{disabled:0===t.queue_items.length},on:{click:t.save_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),a("span",[t._v("Save")])]):t._e()])]),a("template",{slot:"content"},[a("draggable",{attrs:{handle:".handle"},on:{end:t.move_item},model:{value:t.queue_items,callback:function(s){t.queue_items=s},expression:"queue_items"}},t._l(t.queue_items,(function(s,e){return a("list-item-queue-item",{key:s.id,attrs:{item:s,position:e,current_position:t.current_position,show_only_next_items:t.show_only_next_items,edit_mode:t.edit_mode}},[a("template",{slot:"actions"},[t.edit_mode?t._e():a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])]),s.id!==t.state.item_id&&t.edit_mode?a("a",{on:{click:function(a){return t.remove(s)}}},[a("span",{staticClass:"icon has-text-grey"},[a("i",{staticClass:"mdi mdi-delete mdi-18px"})])]):t._e()])],2)})),1),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}}),a("modal-dialog-add-url-stream",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1}}}),t.is_queue_save_allowed?a("modal-dialog-playlist-save",{attrs:{show:t.show_pls_save_modal},on:{close:function(s){t.show_pls_save_modal=!1}}}):t._e()],1)],2)},Ls=[],Os=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t.$slots["options"]?a("section",[a("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:t.observer_options,expression:"observer_options"}],staticStyle:{height:"2px"}}),t._t("options"),a("nav",{staticClass:"buttons is-centered",staticStyle:{"margin-bottom":"6px","margin-top":"16px"}},[t.options_visible?a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_content}},[t._m(1)]):a("a",{staticClass:"button is-small is-white",on:{click:t.scroll_to_top}},[t._m(0)])])],2):t._e(),a("div",{class:{"fd-content-with-option":t.$slots["options"]}},[a("nav",{staticClass:"level",attrs:{id:"top"}},[a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item has-text-centered-mobile"},[a("div",[t._t("heading-left")],2)])]),a("div",{staticClass:"level-right has-text-centered-mobile"},[t._t("heading-right")],2)]),t._t("content"),a("div",{staticStyle:{"margin-top":"16px"}},[t._t("footer")],2)],2)])])])])},Es=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-up"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down"})])}],Is={name:"ContentWithHeading",data(){return{options_visible:!1,observer_options:{callback:this.visibilityChanged,intersection:{rootMargin:"-100px",threshold:.3}}}},methods:{scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})},scroll_to_content:function(){this.$route.meta.has_tabs?this.$scrollTo("#top",{offset:-140}):this.$scrollTo("#top",{offset:-100})},visibilityChanged:function(t){this.options_visible=t}}},zs=Is,Ds=Object(D["a"])(zs,Os,Es,!1,null,null,null),Rs=Ds.exports,Ns=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.is_next||!t.show_only_next_items?a("div",{staticClass:"media"},[t.edit_mode?a("div",{staticClass:"media-left"},[t._m(0)]):t._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next}},[t._v(t._s(t.item.title))]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[a("b",[t._v(t._s(t.item.artist))])]),a("h2",{staticClass:"subtitle is-7",class:{"has-text-primary":t.item.id===t.state.item_id,"has-text-grey-light":!t.is_next,"has-text-grey":t.is_next&&t.item.id!==t.state.item_id}},[t._v(t._s(t.item.album))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e()},Ms=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon has-text-grey fd-is-movable handle"},[a("i",{staticClass:"mdi mdi-drag-horizontal mdi-18px"})])}],Us={name:"ListItemQueueItem",props:["item","position","current_position","show_only_next_items","edit_mode"],computed:{state(){return this.$store.state.player},is_next(){return this.current_position<0||this.position>=this.current_position}},methods:{play:function(){J.player_play({item_id:this.item.id})}}},Hs=Us,Ws=Object(D["a"])(Hs,Ns,Ms,!1,null,null,null),Bs=Ws.exports,Fs=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.item.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.item.artist)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),t.item.album_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.item.album))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album))])]),t.item.album_artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),t.item.album_artist_id?a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album_artist}},[t._v(t._s(t.item.album_artist))]):a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.album_artist))])]):t._e(),t.item.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.composer))])]):t._e(),t.item.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.year))])]):t._e(),t.item.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.item.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.track_number)+" / "+t._s(t.item.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.item.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.item.media_kind)+" - "+t._s(t.item.data_kind)+" "),"spotify"===t.item.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.item.type)+" "),t.item.samplerate?a("span",[t._v(" | "+t._s(t.item.samplerate)+" Hz")]):t._e(),t.item.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.item.channels)))]):t._e(),t.item.bitrate?a("span",[t._v(" | "+t._s(t.item.bitrate)+" Kb/s")]):t._e()])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.remove}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-delete"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Remove")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Gs=[],Ys=a("be8d"),Vs=a.n(Ys),Qs={name:"ModalDialogQueueItem",props:["show","item"],data(){return{spotify_track:{}}},methods:{remove:function(){this.$emit("close"),J.queue_remove(this.item.id)},play:function(){this.$emit("close"),J.player_play({item_id:this.item.id})},open_album:function(){"podcast"===this.media_kind?this.$router.push({path:"/podcasts/"+this.item.album_id}):"audiobook"===this.media_kind?this.$router.push({path:"/audiobooks/"+this.item.album_id}):this.$router.push({path:"/music/albums/"+this.item.album_id})},open_album_artist:function(){this.$router.push({path:"/music/artists/"+this.item.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.item.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})}},watch:{item(){if(this.item&&"spotify"===this.item.data_kind){const t=new Vs.a;t.setAccessToken(this.$store.state.spotify.webapi_token),t.getTrack(this.item.path.slice(this.item.path.lastIndexOf(":")+1)).then(t=>{this.spotify_track=t})}else this.spotify_track={}}}},Js=Qs,Ks=Object(D["a"])(Js,Fs,Gs,!1,null,null,null),Xs=Ks.exports,Zs=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Add stream URL ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.play(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-stream",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-web"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Loading ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ta=[],sa={name:"ModalDialogAddUrlStream",props:["show"],data(){return{url:"",loading:!1}},methods:{add_stream:function(){this.loading=!0,J.queue_add(this.url).then(()=>{this.$emit("close"),this.url=""}).catch(()=>{this.loading=!1})},play:function(){this.loading=!0,J.player_play_uri(this.url,!1).then(()=>{this.$emit("close"),this.url=""}).catch(()=>{this.loading=!1})}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.url_field.focus()},10))}}},aa=sa,ea=Object(D["a"])(aa,Zs,ta,!1,null,null,null),ia=ea.exports,la=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" Save queue to playlist ")]),a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(s){return s.preventDefault(),t.save(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.playlist_name,expression:"playlist_name"}],ref:"playlist_name_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"Playlist name",disabled:t.loading},domProps:{value:t.playlist_name},on:{input:function(s){s.target.composing||(t.playlist_name=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-file-music"})])])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Saving ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.save}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-content-save"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Save")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},oa=[],na={name:"ModalDialogPlaylistSave",props:["show"],data(){return{playlist_name:"",loading:!1}},methods:{save:function(){this.playlist_name.length<1||(this.loading=!0,J.queue_save_playlist(this.playlist_name).then(()=>{this.$emit("close"),this.playlist_name=""}).catch(()=>{this.loading=!1}))}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.playlist_name_field.focus()},10))}}},ra=na,ca=Object(D["a"])(ra,la,oa,!1,null,null,null),da=ca.exports,ua=a("b76a"),pa=a.n(ua),_a={name:"PageQueue",components:{ContentWithHeading:Rs,ListItemQueueItem:Bs,draggable:pa.a,ModalDialogQueueItem:Xs,ModalDialogAddUrlStream:ia,ModalDialogPlaylistSave:da},data(){return{edit_mode:!1,show_details_modal:!1,show_url_modal:!1,show_pls_save_modal:!1,selected_item:{}}},computed:{state(){return this.$store.state.player},is_queue_save_allowed(){return this.$store.state.config.allow_modifying_stored_playlists&&this.$store.state.config.default_playlist_directory},queue(){return this.$store.state.queue},queue_items:{get(){return this.$store.state.queue.items},set(t){}},current_position(){const t=this.$store.getters.now_playing;return void 0===t||void 0===t.position?-1:this.$store.getters.now_playing.position},show_only_next_items(){return this.$store.state.show_only_next_items}},methods:{queue_clear:function(){J.queue_clear()},update_show_next_items:function(t){this.$store.commit(L,!this.show_only_next_items)},remove:function(t){J.queue_remove(t.id)},move_item:function(t){const s=this.show_only_next_items?t.oldIndex+this.current_position:t.oldIndex,a=this.queue_items[s],e=a.position+(t.newIndex-t.oldIndex);e!==s&&J.queue_move(a.id,e)},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0},open_add_stream_dialog:function(t){this.show_url_modal=!0},save_dialog:function(t){this.queue_items.length>0&&(this.show_pls_save_modal=!0)}}},ma=_a,ha=Object(D["a"])(ma,Ts,Ls,!1,null,null,null),fa=ha.exports,ya=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[t.now_playing.id>0?a("div",{staticClass:"fd-is-fullheight"},[a("div",{staticClass:"fd-is-expanded"},[a("cover-artwork",{staticClass:"fd-cover-image fd-has-action",attrs:{artwork_url:t.now_playing.artwork_url,artist:t.now_playing.artist,album:t.now_playing.album},on:{click:function(s){return t.open_dialog(t.now_playing)}}})],1),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered"},[a("p",{staticClass:"control has-text-centered fd-progress-now-playing"},[a("range-slider",{staticClass:"seek-slider fd-has-action",attrs:{min:"0",max:t.state.item_length_ms,value:t.item_progress_ms,disabled:"stop"===t.state.state,step:"1000"},on:{change:t.seek}})],1),a("p",{staticClass:"content"},[a("span",[t._v(t._s(t._f("duration")(t.item_progress_ms))+" / "+t._s(t._f("duration")(t.now_playing.length_ms)))])])])]),a("div",{staticClass:"fd-has-padding-left-right"},[a("div",{staticClass:"container has-text-centered fd-has-margin-top"},[a("h1",{staticClass:"title is-5"},[t._v(" "+t._s(t.now_playing.title)+" ")]),a("h2",{staticClass:"title is-6"},[t._v(" "+t._s(t.now_playing.artist)+" ")]),t.composer?a("h2",{staticClass:"subtitle is-6 has-text-grey has-text-weight-bold"},[t._v(" "+t._s(t.composer)+" ")]):t._e(),a("h3",{staticClass:"subtitle is-6"},[t._v(" "+t._s(t.now_playing.album)+" ")])])])]):a("div",{staticClass:"fd-is-fullheight"},[t._m(0)]),a("modal-dialog-queue-item",{attrs:{show:t.show_details_modal,item:t.selected_item},on:{close:function(s){t.show_details_modal=!1}}})],1)},va=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"fd-is-expanded fd-has-padding-left-right",staticStyle:{"flex-direction":"column"}},[a("div",{staticClass:"content has-text-centered"},[a("h1",{staticClass:"title is-5"},[t._v(" Your play queue is empty ")]),a("p",[t._v(" Add some tracks by browsing your library ")])])])}],ba=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("figure",[a("img",{directives:[{name:"lazyload",rawName:"v-lazyload"}],key:t.artwork_url_with_size,attrs:{"data-src":t.artwork_url_with_size,"data-err":t.dataURI},on:{click:function(s){return t.$emit("click")}}})])},ga=[];a("13d5"),a("5319");class ka{render(t){const s=' '+t.caption+" ";return"data:image/svg+xml;charset=UTF-8,"+encodeURIComponent(s)}}var Ca=ka,wa=a("5d8a"),xa=a.n(wa),$a={name:"CoverArtwork",props:["artist","album","artwork_url","maxwidth","maxheight"],data(){return{svg:new Ca,width:600,height:600,font_family:"sans-serif",font_size:200,font_weight:600}},computed:{artwork_url_with_size:function(){return this.maxwidth>0&&this.maxheight>0?J.artwork_url_append_size_params(this.artwork_url,this.maxwidth,this.maxheight):J.artwork_url_append_size_params(this.artwork_url)},alt_text(){return this.artist+" - "+this.album},caption(){return this.album?this.album.substring(0,2):this.artist?this.artist.substring(0,2):""},background_color(){return xa()(this.alt_text)},is_background_light(){const t=this.background_color.replace(/#/,""),s=parseInt(t.substr(0,2),16),a=parseInt(t.substr(2,2),16),e=parseInt(t.substr(4,2),16),i=[.299*s,.587*a,.114*e].reduce((t,s)=>t+s)/255;return i>.5},text_color(){return this.is_background_light?"#000000":"#ffffff"},rendererParams(){return{width:this.width,height:this.height,textColor:this.text_color,backgroundColor:this.background_color,caption:this.caption,fontFamily:this.font_family,fontSize:this.font_size,fontWeight:this.font_weight}},dataURI(){return this.svg.render(this.rendererParams)}}},qa=$a,Aa=Object(D["a"])(qa,ba,ga,!1,null,null,null),Sa=Aa.exports,ja={name:"PageNowPlaying",components:{ModalDialogQueueItem:Xs,RangeSlider:nt.a,CoverArtwork:Sa},data(){return{item_progress_ms:0,interval_id:0,show_details_modal:!1,selected_item:{}}},created(){this.item_progress_ms=this.state.item_progress_ms,J.player_status().then(({data:t})=>{this.$store.commit(y,t),"play"===this.state.state&&(this.interval_id=window.setInterval(this.tick,1e3))})},destroyed(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0)},computed:{state(){return this.$store.state.player},now_playing(){return this.$store.getters.now_playing},settings_option_show_composer_now_playing(){return this.$store.getters.settings_option_show_composer_now_playing},settings_option_show_composer_for_genre(){return this.$store.getters.settings_option_show_composer_for_genre},composer(){return this.settings_option_show_composer_now_playing&&(!this.settings_option_show_composer_for_genre||this.now_playing.genre&&this.settings_option_show_composer_for_genre.toLowerCase().split(",").findIndex(t=>this.now_playing.genre.toLowerCase().indexOf(t.trim())>=0)>=0)?this.now_playing.composer:null}},methods:{tick:function(){this.item_progress_ms+=1e3},seek:function(t){J.player_seek_to_pos(t).catch(()=>{this.item_progress_ms=this.state.item_progress_ms})},open_dialog:function(t){this.selected_item=t,this.show_details_modal=!0}},watch:{state(){this.interval_id>0&&(window.clearTimeout(this.interval_id),this.interval_id=0),this.item_progress_ms=this.state.item_progress_ms,"play"===this.state.state&&(this.interval_id=window.setInterval(this.tick,1e3))}}},Pa=ja,Ta=Object(D["a"])(Pa,ya,va,!1,null,null,null),La=Ta.exports,Oa=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.recently_added.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_added")}}},[t._v("Show more")])])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:function(s){return t.open_browse("recently_played")}}},[t._v("Show more")])])])])],2)],1)},Ea=[];a("ddb0");const Ia=function(t){return{beforeRouteEnter(s,a,e){t.load(s).then(s=>{e(a=>t.set(a,s))})},beforeRouteUpdate(s,a,e){const i=this;t.load(s).then(s=>{t.set(i,s),e()})}}};var za=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/music/browse","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-web"})]),a("span",{},[t._v("Browse")])])]),a("router-link",{attrs:{tag:"li",to:"/music/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Artists")])])]),a("router-link",{attrs:{tag:"li",to:"/music/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Albums")])])]),a("router-link",{attrs:{tag:"li",to:"/music/genres","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-speaker"})]),a("span",{},[t._v("Genres")])])]),t.spotify_enabled?a("router-link",{attrs:{tag:"li",to:"/music/spotify","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})]),a("span",{},[t._v("Spotify")])])]):t._e()],1)])])])])])},Da=[],Ra={name:"TabsMusic",computed:{spotify_enabled(){return this.$store.state.spotify.webapi_token_valid}}},Na=Ra,Ma=Object(D["a"])(Na,za,Da,!1,null,null,null),Ua=Ma.exports,Ha=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.albums.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.albums.grouped[s],(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.albums_list,(function(s){return a("list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:s.artwork_url,artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-album",{attrs:{show:t.show_details_modal,album:t.selected_album,media_kind:t.media_kind},on:{"remove-podcast":function(s){return t.open_remove_podcast_dialog()},close:function(s){t.show_details_modal=!1}}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],1)},Wa=[],Ba=function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.album.name_sort.charAt(0).toUpperCase()}},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("div",{staticStyle:{"margin-top":"0.7rem"}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artist))])]),s.props.album.date_released&&"music"===s.props.album.media_kind?a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v(" "+s._s(s._f("time")(s.props.album.date_released,"L"))+" ")]):s._e()])]),a("div",{staticClass:"media-right",staticStyle:{"padding-top":"0.7rem"}},[s._t("actions")],2)])},Fa=[],Ga={name:"ListItemAlbum",props:["album","media_kind"]},Ya=Ga,Va=Object(D["a"])(Ya,Ba,Fa,!0,null,null,null),Qa=Va.exports,Ja=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("cover-artwork",{staticClass:"image is-square fd-has-margin-bottom fd-has-shadow",attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name}}),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),"podcast"===t.media_kind_resolved?a("div",{staticClass:"buttons"},[a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]),a("a",{staticClass:"button is-small",on:{click:function(s){return t.$emit("remove-podcast")}}},[t._v("Remove podcast")])]):t._e(),a("div",{staticClass:"content is-small"},[t.album.artist?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]):t._e(),t.album.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.date_released,"L")))])]):t.album.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.year))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.album.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.media_kind)+" - "+t._s(t.album.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.time_added,"L LT")))])])])],1),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Ka=[],Xa={name:"ModalDialogAlbum",components:{CoverArtwork:Sa},props:["show","album","media_kind","new_tracks"],data(){return{artwork_visible:!1}},computed:{artwork_url:function(){return J.artwork_url_append_size_params(this.album.artwork_url)},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.album.media_kind}},methods:{play:function(){this.$emit("close"),J.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.album.uri)},open_album:function(){"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+this.album.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+this.album.id}):this.$router.push({path:"/music/albums/"+this.album.id})},open_artist:function(){"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id}):this.$router.push({path:"/music/artists/"+this.album.artist_id}))},mark_played:function(){J.library_album_track_update(this.album.id,{play_count:"played"}).then(({data:t})=>{this.$emit("play-count-changed"),this.$emit("close")})},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},Za=Xa,te=Object(D["a"])(Za,Ja,Ka,!1,null,null,null),se=te.exports;class ae{constructor(t,s={hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1}){this.items=t,this.options=s,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}init(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}getAlbumIndex(t){return"Recently added"===this.options.sort?t.time_added.substring(0,4):"Recently added (browse)"===this.options.sort?this.getRecentlyAddedBrowseIndex(t.time_added):"Recently released"===this.options.sort||"Release date"===this.options.sort?t.date_released?t.date_released.substring(0,4):"0000":t.name_sort.charAt(0).toUpperCase()}getRecentlyAddedBrowseIndex(t){if(!t)return"0000";const s=(new Date).getTime()-new Date(t).getTime();return s<864e5?"Today":s<6048e5?"Last week":s<2592e6?"Last month":t.substring(0,4)}isAlbumVisible(t){return!(this.options.hideSingles&&t.track_count<=2)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}createIndexList(){this.indexList=[...new Set(this.sortedAndFiltered.map(t=>this.getAlbumIndex(t)))]}createSortedAndFilteredList(){let t=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(t=t.filter(t=>this.isAlbumVisible(t))),"Recently added"===this.options.sort||"Recently added (browse)"===this.options.sort?t=[...t].sort((t,s)=>s.time_added.localeCompare(t.time_added)):"Recently released"===this.options.sort?t=[...t].sort((t,s)=>t.date_released?s.date_released?s.date_released.localeCompare(t.date_released):-1:1):"Release date"===this.options.sort&&(t=[...t].sort((t,s)=>t.date_released?s.date_released?t.date_released.localeCompare(s.date_released):1:-1)),this.sortedAndFiltered=t}createGroupedList(){this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((t,s)=>{const a=this.getAlbumIndex(s);return t[a]=[...t[a]||[],s],t},{})}}var ee={name:"ListAlbums",components:{ListItemAlbum:Qa,ModalDialogAlbum:se,ModalDialog:F,CoverArtwork:Sa},props:["albums","media_kind"],data(){return{show_details_modal:!1,selected_album:{},show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value},media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_album.media_kind},albums_list:function(){return Array.isArray(this.albums)?this.albums:this.albums.sortedAndFiltered},is_grouped:function(){return this.albums instanceof ae&&this.albums.options.group}},methods:{open_album:function(t){this.selected_album=t,"podcast"===this.media_kind_resolved?this.$router.push({path:"/podcasts/"+t.id}):"audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/"+t.id}):this.$router.push({path:"/music/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){J.library_album_tracks(this.selected_album.id,{limit:1}).then(({data:t})=>{J.library_track_playlists(t.items[0].id).then(({data:t})=>{const s=t.items.filter(t=>"rss"===t.type);1===s.length?(this.rss_playlist_to_remove=s[0],this.show_remove_podcast_modal=!0,this.show_details_modal=!1):this.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})})})},remove_podcast:function(){this.show_remove_podcast_modal=!1,J.library_playlist_delete(this.rss_playlist_to_remove.id).then(()=>{this.$emit("podcast-deleted")})}}},ie=ee,le=Object(D["a"])(ie,Ha,Wa,!1,null,null,null),oe=le.exports,ne=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.tracks,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(e,s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1}}})],2)},re=[],ce=function(t,s){var a=s._c;return a("div",{staticClass:"media",class:{"with-progress":s.slots().progress},attrs:{id:"index_"+s.props.track.title_sort.charAt(0).toUpperCase()}},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6",class:{"has-text-grey":"podcast"===s.props.track.media_kind&&s.props.track.play_count>0}},[s._v(s._s(s.props.track.title))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.track.artist))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[s._v(s._s(s.props.track.album))]),s._t("progress")],2),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},de=[],ue={name:"ListItemTrack",props:["track"]},pe=ue,_e=Object(D["a"])(pe,ce,de,!0,null,null,null),me=_e.exports,he=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.title)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artist)+" ")]),"podcast"===t.track.media_kind?a("div",{staticClass:"buttons"},[t.track.play_count>0?a("a",{staticClass:"button is-small",on:{click:t.mark_new}},[t._v("Mark as new")]):t._e(),0===t.track.play_count?a("a",{staticClass:"button is-small",on:{click:t.mark_played}},[t._v("Mark as played")]):t._e()]):t._e(),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.track.album))])]),t.track.album_artist&&"audiobook"!==t.track.media_kind?a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.track.album_artist))])]):t._e(),t.track.composer?a("p",[a("span",{staticClass:"heading"},[t._v("Composer")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.composer))])]):t._e(),t.track.date_released?a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.date_released,"L")))])]):t.track.year>0?a("p",[a("span",{staticClass:"heading"},[t._v("Year")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.year))])]):t._e(),t.track.genre?a("p",[a("span",{staticClass:"heading"},[t._v("Genre")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.track.genre))])]):t._e(),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.length_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.media_kind)+" - "+t._s(t.track.data_kind)+" "),"spotify"===t.track.data_kind?a("span",{staticClass:"has-text-weight-normal"},[t._v("("),a("a",{on:{click:t.open_spotify_artist}},[t._v("artist")]),t._v(", "),a("a",{on:{click:t.open_spotify_album}},[t._v("album")]),t._v(")")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Quality")]),a("span",{staticClass:"title is-6"},[t._v(" "+t._s(t.track.type)+" "),t.track.samplerate?a("span",[t._v(" | "+t._s(t.track.samplerate)+" Hz")]):t._e(),t.track.channels?a("span",[t._v(" | "+t._s(t._f("channels")(t.track.channels)))]):t._e(),t.track.bitrate?a("span",[t._v(" | "+t._s(t.track.bitrate)+" Kb/s")]):t._e()])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.track.time_added,"L LT")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Rating")]),a("span",{staticClass:"title is-6"},[t._v(t._s(Math.floor(t.track.rating/10))+" / 10")])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play_track}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},fe=[],ye={name:"ModalDialogTrack",props:["show","track"],data(){return{spotify_track:{}}},methods:{play_track:function(){this.$emit("close"),J.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.track.uri)},open_album:function(){this.$emit("close"),"podcast"===this.track.media_kind?this.$router.push({path:"/podcasts/"+this.track.album_id}):"audiobook"===this.track.media_kind?this.$router.push({path:"/audiobooks/"+this.track.album_id}):this.$router.push({path:"/music/albums/"+this.track.album_id})},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.track.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.track.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})},mark_new:function(){J.library_track_update(this.track.id,{play_count:"reset"}).then(()=>{this.$emit("play-count-changed"),this.$emit("close")})},mark_played:function(){J.library_track_update(this.track.id,{play_count:"increment"}).then(()=>{this.$emit("play-count-changed"),this.$emit("close")})}},watch:{track(){if(this.track&&"spotify"===this.track.data_kind){const t=new Vs.a;t.setAccessToken(this.$store.state.spotify.webapi_token),t.getTrack(this.track.path.slice(this.track.path.lastIndexOf(":")+1)).then(t=>{this.spotify_track=t})}else this.spotify_track={}}}},ve=ye,be=Object(D["a"])(ve,he,fe,!1,null,null,null),ge=be.exports,ke={name:"ListTracks",components:{ListItemTrack:me,ModalDialogTrack:ge},props:["tracks","uris","expression"],data(){return{show_details_modal:!1,selected_track:{}}},methods:{play_track:function(t,s){this.uris?J.player_play_uri(this.uris,!1,t):this.expression?J.player_play_expression(this.expression,!1,t):J.player_play_uri(s.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Ce=ke,we=Object(D["a"])(Ce,ne,re,!1,null,null,null),xe=we.exports;const $e={load:function(t){return Promise.all([J.search({type:"album",expression:"time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc",limit:3}),J.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:3})])},set:function(t,s){t.recently_added=s[0].data.albums,t.recently_played=s[1].data.tracks}};var qe={name:"PageBrowse",mixins:[Ia($e)],components:{ContentWithHeading:Rs,TabsMusic:Ua,ListAlbums:oe,ListTracks:xe},data(){return{recently_added:{items:[]},recently_played:{items:[]},show_track_details_modal:!1,selected_track:{}}},methods:{open_browse:function(t){this.$router.push({path:"/music/browse/"+t})}}},Ae=qe,Se=Object(D["a"])(Ae,Oa,Ea,!1,null,null,null),je=Se.exports,Pe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently added")]),a("p",{staticClass:"heading"},[t._v("albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},Te=[];const Le={load:function(t){const s=Q.getters.settings_option_recently_added_limit;return J.search({type:"album",expression:"media_kind is music having track_count > 3 order by time_added desc",limit:s})},set:function(t,s){t.recently_added=s.data.albums}};var Oe={name:"PageBrowseType",mixins:[Ia(Le)],components:{ContentWithHeading:Rs,TabsMusic:Ua,ListAlbums:oe},data(){return{recently_added:{items:[]}}},computed:{albums_list(){return new ae(this.recently_added.items,{hideSingles:!1,hideSpotify:!1,sort:"Recently added (browse)",group:!0})}}},Ee=Oe,Ie=Object(D["a"])(Ee,Pe,Te,!1,null,null,null),ze=Ie.exports,De=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Recently played")]),a("p",{staticClass:"heading"},[t._v("tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.recently_played.items}})],1)],2)],1)},Re=[];const Ne={load:function(t){return J.search({type:"track",expression:"time_played after 8 weeks ago and media_kind is music order by time_played desc",limit:50})},set:function(t,s){t.recently_played=s.data.tracks}};var Me={name:"PageBrowseType",mixins:[Ia(Ne)],components:{ContentWithHeading:Rs,TabsMusic:Ua,ListTracks:xe},data(){return{recently_played:{}}}},Ue=Me,He=Object(D["a"])(Ue,De,Re,!1,null,null,null),We=He.exports,Be=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_singles=a.concat([l])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear on singles or playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_spotify=a.concat([l])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide artists from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides artists that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Artists")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},Fe=[],Ge=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",[a("nav",{staticClass:"buttons is-centered fd-is-square",staticStyle:{"margin-bottom":"16px"}},t._l(t.filtered_index,(function(s){return a("a",{key:s,staticClass:"button is-small",on:{click:function(a){return t.nav(s)}}},[t._v(t._s(s))])})),0)])},Ye=[],Ve={name:"IndexButtonList",props:["index"],computed:{filtered_index(){const t="!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~";return this.index.filter(s=>!t.includes(s))}},methods:{nav:function(t){this.$router.push({path:this.$router.currentRoute.path+"#index_"+t})},scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Qe=Ve,Je=Object(D["a"])(Qe,Ge,Ye,!1,null,null,null),Ke=Je.exports,Xe=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.is_grouped?a("div",t._l(t.artists.indexList,(function(s){return a("div",{key:s,staticClass:"mb-6"},[a("span",{staticClass:"tag is-info is-light is-small has-text-weight-bold",attrs:{id:"index_"+s}},[t._v(t._s(s))]),t._l(t.artists.grouped[s],(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)}))],2)})),0):a("div",t._l(t.artists_list,(function(s){return a("list-item-artist",{key:s.id,attrs:{artist:s},on:{click:function(a){return t.open_artist(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),1),a("modal-dialog-artist",{attrs:{show:t.show_details_modal,artist:t.selected_artist,media_kind:t.media_kind},on:{close:function(s){t.show_details_modal=!1}}})],1)},Ze=[],ti=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.artist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},si=[],ai={name:"ListItemArtist",props:["artist"]},ei=ai,ii=Object(D["a"])(ei,ti,si,!0,null,null,null),li=ii.exports,oi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Albums")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.album_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.track_count))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.artist.data_kind))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Added at")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.artist.time_added,"L LT")))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ni=[],ri={name:"ModalDialogArtist",props:["show","artist"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.artist.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.artist.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.artist.uri)},open_artist:function(){this.$emit("close"),this.$router.push({path:"/music/artists/"+this.artist.id})}}},ci=ri,di=Object(D["a"])(ci,oi,ni,!1,null,null,null),ui=di.exports;class pi{constructor(t,s={hideSingles:!1,hideSpotify:!1,sort:"Name",group:!1}){this.items=t,this.options=s,this.grouped={},this.sortedAndFiltered=[],this.indexList=[],this.init()}init(){this.createSortedAndFilteredList(),this.createGroupedList(),this.createIndexList()}getArtistIndex(t){return"Name"===this.options.sort?t.name_sort.charAt(0).toUpperCase():t.time_added.substring(0,4)}isArtistVisible(t){return!(this.options.hideSingles&&t.track_count<=2*t.album_count)&&(!this.options.hideSpotify||"spotify"!==t.data_kind)}createIndexList(){this.indexList=[...new Set(this.sortedAndFiltered.map(t=>this.getArtistIndex(t)))]}createSortedAndFilteredList(){let t=this.items;(this.options.hideSingles||this.options.hideSpotify||this.options.hideOther)&&(t=t.filter(t=>this.isArtistVisible(t))),"Recently added"===this.options.sort&&(t=[...t].sort((t,s)=>s.time_added.localeCompare(t.time_added))),this.sortedAndFiltered=t}createGroupedList(){this.options.group||(this.grouped={}),this.grouped=this.sortedAndFiltered.reduce((t,s)=>{const a=this.getArtistIndex(s);return t[a]=[...t[a]||[],s],t},{})}}var _i={name:"ListArtists",components:{ListItemArtist:li,ModalDialogArtist:ui},props:["artists","media_kind"],data(){return{show_details_modal:!1,selected_artist:{}}},computed:{media_kind_resolved:function(){return this.media_kind?this.media_kind:this.selected_artist.media_kind},artists_list:function(){return Array.isArray(this.artists)?this.artists:this.artists.sortedAndFiltered},is_grouped:function(){return this.artists instanceof pi&&this.artists.options.group}},methods:{open_artist:function(t){this.selected_artist=t,"podcast"===this.media_kind_resolved||("audiobook"===this.media_kind_resolved?this.$router.push({path:"/audiobooks/artists/"+t.id}):this.$router.push({path:"/music/artists/"+t.id}))},open_dialog:function(t){this.selected_artist=t,this.show_details_modal=!0}}},mi=_i,hi=Object(D["a"])(mi,Xe,Ze,!1,null,null,null),fi=hi.exports,yi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown",class:{"is-active":t.is_active}},[a("div",{staticClass:"dropdown-trigger"},[a("button",{staticClass:"button",attrs:{"aria-haspopup":"true","aria-controls":"dropdown-menu"},on:{click:function(s){t.is_active=!t.is_active}}},[a("span",[t._v(t._s(t.value))]),t._m(0)])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},t._l(t.options,(function(s){return a("a",{key:s,staticClass:"dropdown-item",class:{"is-active":t.value===s},on:{click:function(a){return t.select(s)}}},[t._v(" "+t._s(s)+" ")])})),0)])])},vi=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-chevron-down",attrs:{"aria-hidden":"true"}})])}],bi={name:"DropdownMenu",props:["value","options"],data(){return{is_active:!1}},methods:{onClickOutside(t){this.is_active=!1},select(t){this.is_active=!1,this.$emit("input",t)}}},gi=bi,ki=Object(D["a"])(gi,yi,vi,!1,null,null,null),Ci=ki.exports;const wi={load:function(t){return J.library_artists("music")},set:function(t,s){t.artists=s.data}};var xi={name:"PageArtists",mixins:[Ia(wi)],components:{ContentWithHeading:Rs,TabsMusic:Ua,IndexButtonList:Ke,ListArtists:fi,DropdownMenu:Ci},data(){return{artists:{items:[]},sort_options:["Name","Recently added"]}},computed:{artists_list(){return new pi(this.artists.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get(){return this.$store.state.hide_singles},set(t){this.$store.commit(A,t)}},hide_spotify:{get(){return this.$store.state.hide_spotify},set(t){this.$store.commit(S,t)}},sort:{get(){return this.$store.state.artists_sort},set(t){this.$store.commit(j,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},$i=xi,qi=Object(D["a"])($i,Be,Fe,!1,null,null,null),Ai=qi.exports,Si=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"options"},[a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])]),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v(t._s(t.artist.track_count)+" tracks")])]),a("list-albums",{attrs:{albums:t.albums_list}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},ji=[];const Pi={load:function(t){return Promise.all([J.library_artist(t.params.artist_id),J.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}};var Ti={name:"PageArtist",mixins:[Ia(Pi)],components:{ContentWithHeading:Rs,ListAlbums:oe,ModalDialogArtist:ui,DropdownMenu:Ci},data(){return{artist:{},albums:{items:[]},sort_options:["Name","Release date"],show_artist_details_modal:!1}},computed:{albums_list(){return new ae(this.albums.items,{sort:this.sort,group:!1})},sort:{get(){return this.$store.state.artist_albums_sort},set(t){this.$store.commit(P,t)}}},methods:{open_tracks:function(){this.$router.push({path:"/music/artists/"+this.artist.id+"/tracks"})},play:function(){J.player_play_uri(this.albums.items.map(t=>t.uri).join(","),!0)}}},Li=Ti,Oi=Object(D["a"])(Li,Si,ji,!1,null,null,null),Ei=Oi.exports,Ii=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}}),a("div",{staticClass:"columns"},[a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Filter")]),a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_singles,expression:"hide_singles"}],staticClass:"switch",attrs:{id:"switchHideSingles",type:"checkbox",name:"switchHideSingles"},domProps:{checked:Array.isArray(t.hide_singles)?t._i(t.hide_singles,null)>-1:t.hide_singles},on:{change:function(s){var a=t.hide_singles,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_singles=a.concat([l])):o>-1&&(t.hide_singles=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_singles=i}}}),a("label",{attrs:{for:"switchHideSingles"}},[t._v("Hide singles")])]),a("p",{staticClass:"help"},[t._v("If active, hides singles and albums with tracks that only appear in playlists.")])]),t.spotify_enabled?a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.hide_spotify,expression:"hide_spotify"}],staticClass:"switch",attrs:{id:"switchHideSpotify",type:"checkbox",name:"switchHideSpotify"},domProps:{checked:Array.isArray(t.hide_spotify)?t._i(t.hide_spotify,null)>-1:t.hide_spotify},on:{change:function(s){var a=t.hide_spotify,e=s.target,i=!!e.checked;if(Array.isArray(a)){var l=null,o=t._i(a,l);e.checked?o<0&&(t.hide_spotify=a.concat([l])):o>-1&&(t.hide_spotify=a.slice(0,o).concat(a.slice(o+1)))}else t.hide_spotify=i}}}),a("label",{attrs:{for:"switchHideSpotify"}},[t._v("Hide albums from Spotify")])]),a("p",{staticClass:"help"},[t._v("If active, hides albums that only appear in your Spotify library.")])]):t._e()]),a("div",{staticClass:"column"},[a("p",{staticClass:"heading",staticStyle:{"margin-bottom":"24px"}},[t._v("Sort by")]),a("dropdown-menu",{attrs:{options:t.sort_options},model:{value:t.sort,callback:function(s){t.sort=s},expression:"sort"}})],1)])],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Albums")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},zi=[];const Di={load:function(t){return J.library_albums("music")},set:function(t,s){t.albums=s.data,t.index_list=[...new Set(t.albums.items.filter(s=>!t.$store.state.hide_singles||s.track_count>2).map(t=>t.name_sort.charAt(0).toUpperCase()))]}};var Ri={name:"PageAlbums",mixins:[Ia(Di)],components:{ContentWithHeading:Rs,TabsMusic:Ua,IndexButtonList:Ke,ListAlbums:oe,DropdownMenu:Ci},data(){return{albums:{items:[]},sort_options:["Name","Recently added","Recently released"]}},computed:{albums_list(){return new ae(this.albums.items,{hideSingles:this.hide_singles,hideSpotify:this.hide_spotify,sort:this.sort,group:!0})},spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},hide_singles:{get(){return this.$store.state.hide_singles},set(t){this.$store.commit(A,t)}},hide_spotify:{get(){return this.$store.state.hide_spotify},set(t){this.$store.commit(S,t)}},sort:{get(){return this.$store.state.albums_sort},set(t){this.$store.commit(T,t)}}},methods:{scrollToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},Ni=Ri,Mi=Object(D["a"])(Ni,Ii,zi,!1,null,null,null),Ui=Mi.exports,Hi=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},Wi=[],Bi=a("fd4d");const Fi={load:function(t){return Promise.all([J.library_album(t.params.album_id),J.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}};var Gi={name:"PageAlbum",mixins:[Ia(Fi)],components:{ContentWithHero:Bi["default"],ListTracks:xe,ModalDialogAlbum:se,CoverArtwork:Sa},data(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.album.artist_id})},play:function(){J.player_play_uri(this.album.uri,!0)}}},Yi=Gi,Vi=Object(D["a"])(Yi,Hi,Wi,!1,null,null,null),Qi=Vi.exports,Ji=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Genres")]),a("p",{staticClass:"heading"},[t._v(t._s(t.genres.total)+" genres")])]),a("template",{slot:"content"},[t._l(t.genres.items,(function(s){return a("list-item-genre",{key:s.name,attrs:{genre:s},on:{click:function(a){return t.open_genre(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-genre",{attrs:{show:t.show_details_modal,genre:t.selected_genre},on:{close:function(s){t.show_details_modal=!1}}})],2)],2)],1)},Ki=[],Xi=function(t,s){var a=s._c;return a("div",{staticClass:"media",attrs:{id:"index_"+s.props.genre.name.charAt(0).toUpperCase()}},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.genre.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},Zi=[],tl={name:"ListItemGenre",props:["genre"]},sl=tl,al=Object(D["a"])(sl,Xi,Zi,!0,null,null,null),el=al.exports,il=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v(t._s(t.genre.name))])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},ll=[],ol={name:"ModalDialogGenre",props:["show","genre"],methods:{play:function(){this.$emit("close"),J.player_play_expression('genre is "'+this.genre.name+'" and media_kind is music',!1)},queue_add:function(){this.$emit("close"),J.queue_expression_add('genre is "'+this.genre.name+'" and media_kind is music')},queue_add_next:function(){this.$emit("close"),J.queue_expression_add_next('genre is "'+this.genre.name+'" and media_kind is music')},open_genre:function(){this.$emit("close"),this.$router.push({name:"Genre",params:{genre:this.genre.name}})}}},nl=ol,rl=Object(D["a"])(nl,il,ll,!1,null,null,null),cl=rl.exports;const dl={load:function(t){return J.library_genres()},set:function(t,s){t.genres=s.data}};var ul={name:"PageGenres",mixins:[Ia(dl)],components:{ContentWithHeading:Rs,TabsMusic:Ua,IndexButtonList:Ke,ListItemGenre:el,ModalDialogGenre:cl},data(){return{genres:{items:[]},show_details_modal:!1,selected_genre:{}}},computed:{index_list(){return[...new Set(this.genres.items.map(t=>t.name.charAt(0).toUpperCase()))]}},methods:{open_genre:function(t){this.$router.push({name:"Genre",params:{genre:t.name}})},open_dialog:function(t){this.selected_genre=t,this.show_details_modal=!0}}},pl=ul,_l=Object(D["a"])(pl,Ji,Ki,!1,null,null,null),ml=_l.exports,hl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.genre_albums.total)+" albums | "),a("a",{staticClass:"has-text-link",on:{click:t.open_tracks}},[t._v("tracks")])]),a("list-albums",{attrs:{albums:t.genre_albums.items}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.name}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},fl=[];const yl={load:function(t){return J.library_genre(t.params.genre)},set:function(t,s){t.name=t.$route.params.genre,t.genre_albums=s.data.albums}};var vl={name:"PageGenre",mixins:[Ia(yl)],components:{ContentWithHeading:Rs,IndexButtonList:Ke,ListAlbums:oe,ModalDialogGenre:cl},data(){return{name:"",genre_albums:{items:[]},show_genre_details_modal:!1}},computed:{index_list(){return[...new Set(this.genre_albums.items.map(t=>t.name.charAt(0).toUpperCase()))]}},methods:{open_tracks:function(){this.show_details_modal=!1,this.$router.push({name:"GenreTracks",params:{genre:this.name}})},play:function(){J.player_play_expression('genre is "'+this.name+'" and media_kind is music',!0)},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0}}},bl=vl,gl=Object(D["a"])(bl,hl,fl,!1,null,null,null),kl=gl.exports,Cl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.genre))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_genre_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_genre}},[t._v("albums")]),t._v(" | "+t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,expression:t.expression}}),a("modal-dialog-genre",{attrs:{show:t.show_genre_details_modal,genre:{name:t.genre}},on:{close:function(s){t.show_genre_details_modal=!1}}})],1)],2)],1)},wl=[];const xl={load:function(t){return J.library_genre_tracks(t.params.genre)},set:function(t,s){t.genre=t.$route.params.genre,t.tracks=s.data.tracks}};var $l={name:"PageGenreTracks",mixins:[Ia(xl)],components:{ContentWithHeading:Rs,ListTracks:xe,IndexButtonList:Ke,ModalDialogGenre:cl},data(){return{tracks:{items:[]},genre:"",show_genre_details_modal:!1}},computed:{index_list(){return[...new Set(this.tracks.items.map(t=>t.title_sort.charAt(0).toUpperCase()))]},expression(){return'genre is "'+this.genre+'" and media_kind is music'}},methods:{open_genre:function(){this.show_details_modal=!1,this.$router.push({name:"Genre",params:{genre:this.genre}})},play:function(){J.player_play_expression(this.expression,!0)}}},ql=$l,Al=Object(D["a"])(ql,Cl,wl,!1,null,null,null),Sl=Al.exports,jl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.index_list}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.artist.album_count)+" albums")]),t._v(" | "+t._s(t.artist.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items,uris:t.track_uris}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)],1)},Pl=[];const Tl={load:function(t){return Promise.all([J.library_artist(t.params.artist_id),J.library_artist_tracks(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.tracks=s[1].data.tracks}};var Ll={name:"PageArtistTracks",mixins:[Ia(Tl)],components:{ContentWithHeading:Rs,ListTracks:xe,IndexButtonList:Ke,ModalDialogArtist:ui},data(){return{artist:{},tracks:{items:[]},show_artist_details_modal:!1}},computed:{index_list(){return[...new Set(this.tracks.items.map(t=>t.title_sort.charAt(0).toUpperCase()))]},track_uris(){return this.tracks.items.map(t=>t.uri).join(",")}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/music/artists/"+this.artist.id})},play:function(){J.player_play_uri(this.tracks.items.map(t=>t.uri).join(","),!0)}}},Ol=Ll,El=Object(D["a"])(Ol,jl,Pl,!1,null,null,null),Il=El.exports,zl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t.new_episodes.items.length>0?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New episodes")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.mark_all_played}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-pencil"})]),a("span",[t._v("Mark All Played")])])])]),a("template",{slot:"content"},[t._l(t.new_episodes.items,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1},"play-count-changed":t.reload_new_episodes}})],2)],2):t._e(),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums.total)+" podcasts")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small",on:{click:t.open_add_podcast_dialog}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-rss"})]),a("span",[t._v("Add Podcast")])])])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items},on:{"play-count-changed":function(s){return t.reload_new_episodes()},"podcast-deleted":function(s){return t.reload_podcasts()}}}),a("modal-dialog-add-rss",{attrs:{show:t.show_url_modal},on:{close:function(s){t.show_url_modal=!1},"podcast-added":function(s){return t.reload_podcasts()}}})],1)],2)],1)},Dl=[],Rl=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v("Add Podcast RSS feed URL")]),a("form",{on:{submit:function(s){return s.preventDefault(),t.add_stream(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.url,expression:"url"}],ref:"url_field",staticClass:"input is-shadowless",attrs:{type:"text",placeholder:"http://url-to-rss",disabled:t.loading},domProps:{value:t.url},on:{input:function(s){s.target.composing||(t.url=s.target.value)}}}),a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-rss"})])]),a("p",{staticClass:"help"},[t._v("Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. ")])])])]),t.loading?a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item button is-loading"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-web"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Processing ...")])])]):a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-danger",on:{click:function(s){return t.$emit("close")}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-cancel"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Cancel")])]),a("a",{staticClass:"card-footer-item has-background-info has-text-white has-text-weight-bold",on:{click:t.add_stream}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Nl=[],Ml={name:"ModalDialogAddRss",props:["show"],data(){return{url:"",loading:!1}},methods:{add_stream:function(){this.loading=!0,J.library_add(this.url).then(()=>{this.$emit("close"),this.$emit("podcast-added"),this.url=""}).catch(()=>{this.loading=!1})}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.url_field.focus()},10))}}},Ul=Ml,Hl=Object(D["a"])(Ul,Rl,Nl,!1,null,null,null),Wl=Hl.exports;const Bl={load:function(t){return Promise.all([J.library_albums("podcast"),J.library_podcasts_new_episodes()])},set:function(t,s){t.albums=s[0].data,t.new_episodes=s[1].data.tracks}};var Fl={name:"PagePodcasts",mixins:[Ia(Bl)],components:{ContentWithHeading:Rs,ListItemTrack:me,ListAlbums:oe,ModalDialogTrack:ge,ModalDialogAddRss:Wl,RangeSlider:nt.a},data(){return{albums:{items:[]},new_episodes:{items:[]},show_url_modal:!1,show_track_details_modal:!1,selected_track:{}}},methods:{play_track:function(t){J.player_play_uri(t.uri,!1)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},mark_all_played:function(){this.new_episodes.items.forEach(t=>{J.library_track_update(t.id,{play_count:"increment"})}),this.new_episodes.items={}},open_add_podcast_dialog:function(t){this.show_url_modal=!0},reload_new_episodes:function(){J.library_podcasts_new_episodes().then(({data:t})=>{this.new_episodes=t.tracks})},reload_podcasts:function(){J.library_albums("podcast").then(({data:t})=>{this.albums=t,this.reload_new_episodes()})}}},Gl=Fl,Yl=Object(D["a"])(Gl,zl,Dl,!1,null,null,null),Vl=Yl.exports,Ql=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.album.name)+" ")])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.album.track_count)+" tracks")]),t._l(t.tracks,(function(s){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(a){return t.play_track(s)}}},[a("template",{slot:"progress"},[a("range-slider",{staticClass:"track-progress",attrs:{min:"0",max:s.length_ms,step:"1",disabled:!0,value:s.seek_ms}})],1),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-track",{attrs:{show:t.show_details_modal,track:t.selected_track},on:{close:function(s){t.show_details_modal=!1},"play-count-changed":t.reload_tracks}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"podcast",new_tracks:t.new_tracks},on:{close:function(s){t.show_album_details_modal=!1},"play-count-changed":t.reload_tracks,"remove-podcast":t.open_remove_podcast_dialog}}),a("modal-dialog",{attrs:{show:t.show_remove_podcast_modal,title:"Remove podcast",delete_action:"Remove"},on:{close:function(s){t.show_remove_podcast_modal=!1},delete:t.remove_podcast}},[a("template",{slot:"modal-content"},[a("p",[t._v("Permanently remove this podcast from your library?")]),a("p",{staticClass:"is-size-7"},[t._v("(This will also remove the RSS playlist "),a("b",[t._v(t._s(t.rss_playlist_to_remove.name))]),t._v(".)")])])],2)],2)],2)},Jl=[];const Kl={load:function(t){return Promise.all([J.library_album(t.params.album_id),J.library_podcast_episodes(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.tracks.items}};var Xl={name:"PagePodcast",mixins:[Ia(Kl)],components:{ContentWithHeading:Rs,ListItemTrack:me,ModalDialogTrack:ge,RangeSlider:nt.a,ModalDialogAlbum:se,ModalDialog:F},data(){return{album:{},tracks:[],show_details_modal:!1,selected_track:{},show_album_details_modal:!1,show_remove_podcast_modal:!1,rss_playlist_to_remove:{}}},computed:{new_tracks(){return this.tracks.filter(t=>0===t.play_count).length}},methods:{play:function(){J.player_play_uri(this.album.uri,!1)},play_track:function(t){J.player_play_uri(t.uri,!1)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0},open_remove_podcast_dialog:function(){this.show_album_details_modal=!1,J.library_track_playlists(this.tracks[0].id).then(({data:t})=>{const s=t.items.filter(t=>"rss"===t.type);1===s.length?(this.rss_playlist_to_remove=s[0],this.show_remove_podcast_modal=!0):this.$store.dispatch("add_notification",{text:"Podcast cannot be removed. Probably it was not added as an RSS playlist.",type:"danger"})})},remove_podcast:function(){this.show_remove_podcast_modal=!1,J.library_playlist_delete(this.rss_playlist_to_remove.id).then(()=>{this.$router.replace({path:"/podcasts"})})},reload_tracks:function(){J.library_podcast_episodes(this.album.id).then(({data:t})=>{this.tracks=t.tracks.items})}}},Zl=Xl,to=Object(D["a"])(Zl,Ql,Jl,!1,null,null,null),so=to.exports,ao=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.albums_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")]),a("p",{staticClass:"heading"},[t._v(t._s(t.albums_list.sortedAndFiltered.length)+" Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums_list}})],1)],2)],1)},eo=[],io=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/audiobooks/artists","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-artist"})]),a("span",{},[t._v("Authors")])])]),a("router-link",{attrs:{tag:"li",to:"/audiobooks/albums","active-class":"is-active"}},[a("a",[a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-album"})]),a("span",{},[t._v("Audiobooks")])])])],1)])])])])])},lo=[],oo={name:"TabsAudiobooks"},no=oo,ro=Object(D["a"])(no,io,lo,!1,null,null,null),co=ro.exports;const uo={load:function(t){return J.library_albums("audiobook")},set:function(t,s){t.albums=s.data}};var po={name:"PageAudiobooksAlbums",mixins:[Ia(uo)],components:{TabsAudiobooks:co,ContentWithHeading:Rs,IndexButtonList:Ke,ListAlbums:oe},data(){return{albums:{items:[]}}},computed:{albums_list(){return new ae(this.albums.items,{sort:"Name",group:!0})}},methods:{}},_o=po,mo=Object(D["a"])(_o,ao,eo,!1,null,null,null),ho=mo.exports,fo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-audiobooks"),a("content-with-heading",[a("template",{slot:"options"},[a("index-button-list",{attrs:{index:t.artists_list.indexList}})],1),a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Authors")]),a("p",{staticClass:"heading"},[t._v(t._s(t.artists_list.sortedAndFiltered.length)+" Authors")])]),a("template",{slot:"heading-right"}),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists_list}})],1)],2)],1)},yo=[];const vo={load:function(t){return J.library_artists("audiobook")},set:function(t,s){t.artists=s.data}};var bo={name:"PageAudiobooksArtists",mixins:[Ia(vo)],components:{ContentWithHeading:Rs,TabsAudiobooks:co,IndexButtonList:Ke,ListArtists:fi},data(){return{artists:{items:[]}}},computed:{artists_list(){return new pi(this.artists.items,{sort:"Name",group:!0})}},methods:{}},go=bo,ko=Object(D["a"])(go,fo,yo,!1,null,null,null),Co=ko.exports,wo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.artist.album_count)+" albums")]),a("list-albums",{attrs:{albums:t.albums.items}}),a("modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],1)],2)},xo=[];const $o={load:function(t){return Promise.all([J.library_artist(t.params.artist_id),J.library_artist_albums(t.params.artist_id)])},set:function(t,s){t.artist=s[0].data,t.albums=s[1].data}};var qo={name:"PageAudiobooksArtist",mixins:[Ia($o)],components:{ContentWithHeading:Rs,ListAlbums:oe,ModalDialogArtist:ui},data(){return{artist:{},albums:{},show_artist_details_modal:!1}},methods:{play:function(){J.player_play_uri(this.albums.items.map(t=>t.uri).join(","),!1)}}},Ao=qo,So=Object(D["a"])(Ao,wo,xo,!1,null,null,null),jo=So.exports,Po=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artist))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.album.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.track_count)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.album.uri}}),a("modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album,media_kind:"audiobook"},on:{close:function(s){t.show_album_details_modal=!1}}})],1)],2)},To=[];const Lo={load:function(t){return Promise.all([J.library_album(t.params.album_id),J.library_album_tracks(t.params.album_id)])},set:function(t,s){t.album=s[0].data,t.tracks=s[1].data.items}};var Oo={name:"PageAudiobooksAlbum",mixins:[Ia(Lo)],components:{ContentWithHero:Bi["default"],ListTracks:xe,ModalDialogAlbum:se,CoverArtwork:Sa},data(){return{album:{},tracks:[],show_album_details_modal:!1}},methods:{open_artist:function(){this.show_details_modal=!1,this.$router.push({path:"/audiobooks/artists/"+this.album.artist_id})},play:function(){J.player_play_uri(this.album.uri,!1)},play_track:function(t){J.player_play_uri(this.album.uri,!1,t)},open_dialog:function(t){this.selected_track=t,this.show_details_modal=!0}}},Eo=Oo,Io=Object(D["a"])(Eo,Po,To,!1,null,null,null),zo=Io.exports,Do=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))]),a("p",{staticClass:"heading"},[t._v(t._s(t.playlists.total)+" playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1)],2)},Ro=[],No=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[t._l(t.playlists,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-library-music":"folder"!==s.type,"mdi-rss":"rss"===s.type,"mdi-folder":"folder"===s.type}})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-playlist",{attrs:{show:t.show_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_details_modal=!1}}})],2)},Mo=[],Uo=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.slots().icon?a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("icon")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.playlist.name))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},Ho=[],Wo={name:"ListItemPlaylist",props:["playlist"]},Bo=Wo,Fo=Object(D["a"])(Bo,Uo,Ho,!0,null,null,null),Go=Fo.exports,Yo=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.path))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.type))])])])]),t.playlist.folder?t._e():a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Vo=[],Qo={name:"ModalDialogPlaylist",props:["show","playlist","uris"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.uris?this.uris:this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.uris?this.uris:this.playlist.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.uris?this.uris:this.playlist.uri)},open_playlist:function(){this.$emit("close"),this.$router.push({path:"/playlists/"+this.playlist.id+"/tracks"})}}},Jo=Qo,Ko=Object(D["a"])(Jo,Yo,Vo,!1,null,null,null),Xo=Ko.exports,Zo={name:"ListPlaylists",components:{ListItemPlaylist:Go,ModalDialogPlaylist:Xo},props:["playlists"],data(){return{show_details_modal:!1,selected_playlist:{}}},methods:{open_playlist:function(t){"folder"!==t.type?this.$router.push({path:"/playlists/"+t.id+"/tracks"}):this.$router.push({path:"/playlists/"+t.id})},open_dialog:function(t){this.selected_playlist=t,this.show_details_modal=!0}}},tn=Zo,sn=Object(D["a"])(tn,No,Mo,!1,null,null,null),an=sn.exports;const en={load:function(t){return Promise.all([J.library_playlist(t.params.playlist_id),J.library_playlist_folder(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.playlists=s[1].data}};var ln={name:"PagePlaylists",mixins:[Ia(en)],components:{ContentWithHeading:Rs,ListPlaylists:an},data(){return{playlist:{},playlists:{}}}},on=ln,nn=Object(D["a"])(on,Do,Ro,!1,null,null,null),rn=nn.exports,cn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.length)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks,uris:t.uris}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.playlist,uris:t.uris},on:{close:function(s){t.show_playlist_details_modal=!1}}})],1)],2)},dn=[];const un={load:function(t){return Promise.all([J.library_playlist(t.params.playlist_id),J.library_playlist_tracks(t.params.playlist_id)])},set:function(t,s){t.playlist=s[0].data,t.tracks=s[1].data.items}};var pn={name:"PagePlaylist",mixins:[Ia(un)],components:{ContentWithHeading:Rs,ListTracks:xe,ModalDialogPlaylist:Xo},data(){return{playlist:{},tracks:[],show_playlist_details_modal:!1}},computed:{uris(){return this.playlist.random?this.tracks.map(t=>t.uri).join(","):this.playlist.uri}},methods:{play:function(){J.player_play_uri(this.uris,!0)}}},_n=pn,mn=Object(D["a"])(_n,cn,dn,!1,null,null,null),hn=mn.exports,fn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Files")]),a("p",{staticClass:"title is-7 has-text-grey"},[t._v(t._s(t.current_directory))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){return t.open_directory_dialog({path:t.current_directory})}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",[t._v("Play")])])])]),a("template",{slot:"content"},[t.$route.query.directory?a("div",{staticClass:"media",on:{click:function(s){return t.open_parent_directory()}}},[a("figure",{staticClass:"media-left fd-has-action"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-subdirectory-arrow-left"})])]),a("div",{staticClass:"media-content fd-has-action is-clipped"},[a("h1",{staticClass:"title is-6"},[t._v("..")])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)]):t._e(),t._l(t.files.directories,(function(s){return a("list-item-directory",{key:s.path,attrs:{directory:s},on:{click:function(a){return t.open_directory(s)}}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_directory_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.playlists.items,(function(s){return a("list-item-playlist",{key:s.id,attrs:{playlist:s},on:{click:function(a){return t.open_playlist(s)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-library-music"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t._l(t.files.tracks.items,(function(s,e){return a("list-item-track",{key:s.id,attrs:{track:s},on:{click:function(s){return t.play_track(e)}}},[a("template",{slot:"icon"},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-file-outline"})])]),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("modal-dialog-directory",{attrs:{show:t.show_directory_details_modal,directory:t.selected_directory},on:{close:function(s){t.show_directory_details_modal=!1}}}),a("modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}}),a("modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track},on:{close:function(s){t.show_track_details_modal=!1}}})],2)],2)],1)},yn=[],vn=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[a("figure",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._m(0)]),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.directory.path.substring(s.props.directory.path.lastIndexOf("/")+1)))]),a("h2",{staticClass:"subtitle is-7 has-text-grey-light"},[s._v(s._s(s.props.directory.path))])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},bn=[function(t,s){var a=s._c;return a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-folder"})])}],gn={name:"ListItemDirectory",props:["directory"]},kn=gn,Cn=Object(D["a"])(kn,vn,bn,!0,null,null,null),wn=Cn.exports,xn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.directory.path)+" ")])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},$n=[],qn={name:"ModalDialogDirectory",props:["show","directory"],methods:{play:function(){this.$emit("close"),J.player_play_expression('path starts with "'+this.directory.path+'" order by path asc',!1)},queue_add:function(){this.$emit("close"),J.queue_expression_add('path starts with "'+this.directory.path+'" order by path asc')},queue_add_next:function(){this.$emit("close"),J.queue_expression_add_next('path starts with "'+this.directory.path+'" order by path asc')}}},An=qn,Sn=Object(D["a"])(An,xn,$n,!1,null,null,null),jn=Sn.exports;const Pn={load:function(t){return t.query.directory?J.library_files(t.query.directory):Promise.resolve()},set:function(t,s){t.files=s?s.data:{directories:t.$store.state.config.directories.map(t=>({path:t})),tracks:{items:[]},playlists:{items:[]}}}};var Tn={name:"PageFiles",mixins:[Ia(Pn)],components:{ContentWithHeading:Rs,ListItemDirectory:wn,ListItemPlaylist:Go,ListItemTrack:me,ModalDialogDirectory:jn,ModalDialogPlaylist:Xo,ModalDialogTrack:ge},data(){return{files:{directories:[],tracks:{items:[]},playlists:{items:[]}},show_directory_details_modal:!1,selected_directory:{},show_playlist_details_modal:!1,selected_playlist:{},show_track_details_modal:!1,selected_track:{}}},computed:{current_directory(){return this.$route.query&&this.$route.query.directory?this.$route.query.directory:"/"}},methods:{open_parent_directory:function(){const t=this.current_directory.slice(0,this.current_directory.lastIndexOf("/"));""===t||this.$store.state.config.directories.includes(this.current_directory)?this.$router.push({path:"/files"}):this.$router.push({path:"/files",query:{directory:this.current_directory.slice(0,this.current_directory.lastIndexOf("/"))}})},open_directory:function(t){this.$router.push({path:"/files",query:{directory:t.path}})},open_directory_dialog:function(t){this.selected_directory=t,this.show_directory_details_modal=!0},play:function(){J.player_play_expression('path starts with "'+this.current_directory+'" order by path asc',!1)},play_track:function(t){J.player_play_uri(this.files.tracks.items.map(t=>t.uri).join(","),!1,t)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_playlist:function(t){this.$router.push({path:"/playlists/"+t.id+"/tracks"})},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},Ln=Tn,On=Object(D["a"])(Ln,fn,yn,!1,null,null,null),En=On.exports,In=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Radio")])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.tracks.total)+" tracks")]),a("list-tracks",{attrs:{tracks:t.tracks.items}})],1)],2)],1)},zn=[];const Dn={load:function(t){return J.library_radio_streams()},set:function(t,s){t.tracks=s.data.tracks}};var Rn={name:"PageRadioStreams",mixins:[Ia(Dn)],components:{ContentWithHeading:Rs,ListTracks:xe},data(){return{tracks:{items:[]}}}},Nn=Rn,Mn=Object(D["a"])(Nn,In,zn,!1,null,null,null),Un=Mn.exports,Hn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)]),t._m(1)])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[a("list-tracks",{attrs:{tracks:t.tracks.items}})],1),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[a("list-artists",{attrs:{artists:t.artists.items}})],1),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.albums.items}})],1),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[a("list-playlists",{attrs:{playlists:t.playlists.items}})],1),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e(),t.show_podcasts&&t.podcasts.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Podcasts")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.podcasts.items}})],1),a("template",{slot:"footer"},[t.show_all_podcasts_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_podcasts}},[t._v("Show all "+t._s(t.podcasts.total.toLocaleString())+" podcasts")])])]):t._e()])],2):t._e(),t.show_podcasts&&!t.podcasts.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No podcasts found")])])])],2):t._e(),t.show_audiobooks&&t.audiobooks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Audiobooks")])]),a("template",{slot:"content"},[a("list-albums",{attrs:{albums:t.audiobooks.items}})],1),a("template",{slot:"footer"},[t.show_all_audiobooks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_audiobooks}},[t._v("Show all "+t._s(t.audiobooks.total.toLocaleString())+" audiobooks")])])]):t._e()])],2):t._e(),t.show_audiobooks&&!t.audiobooks.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No audiobooks found")])])])],2):t._e()],1)},Wn=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"help has-text-centered"},[t._v("Tip: you can search by a smart playlist query language "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md",target:"_blank"}},[t._v("expression")]),t._v(" if you prefix it with "),a("code",[t._v("query:")]),t._v(". ")])}],Bn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-content py-3"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[t._t("content")],2)])])])},Fn=[],Gn={name:"ContentText"},Yn=Gn,Vn=Object(D["a"])(Yn,Bn,Fn,!1,null,null,null),Qn=Vn.exports,Jn=function(){var t=this,s=t.$createElement,a=t._self._c||s;return t.spotify_enabled?a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small is-toggle is-toggle-rounded"},[a("ul",[a("li",{class:{"is-active":"/search/library"===t.$route.path}},[a("a",{on:{click:t.search_library}},[t._m(0),a("span",{},[t._v("Library")])])]),a("li",{class:{"is-active":"/search/spotify"===t.$route.path}},[a("a",{on:{click:t.search_spotify}},[t._m(1),a("span",{},[t._v("Spotify")])])])])])])])])]):t._e()},Kn=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-library-books"})])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-small"},[a("i",{staticClass:"mdi mdi-spotify"})])}],Xn={name:"TabsSearch",props:["query"],computed:{spotify_enabled(){return this.$store.state.spotify.webapi_token_valid},route_query:function(){return this.query?{type:"track,artist,album,playlist,audiobook,podcast",query:this.query,limit:3,offset:0}:null}},methods:{search_library:function(){this.$router.push({path:"/search/library",query:this.route_query})},search_spotify:function(){this.$router.push({path:"/search/spotify",query:this.route_query})}}},Zn=Xn,tr=Object(D["a"])(Zn,Jn,Kn,!1,null,null,null),sr=tr.exports,ar={name:"PageSearch",components:{ContentWithHeading:Rs,ContentText:Qn,TabsSearch:sr,ListTracks:xe,ListArtists:fi,ListAlbums:oe,ListPlaylists:an},data(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},audiobooks:{items:[],total:0},podcasts:{items:[],total:0}}},computed:{recent_searches(){return this.$store.state.recent_searches},show_tracks(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button(){return this.tracks.total>this.tracks.items.length},show_artists(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button(){return this.artists.total>this.artists.items.length},show_albums(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button(){return this.albums.total>this.albums.items.length},show_playlists(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button(){return this.playlists.total>this.playlists.items.length},show_audiobooks(){return this.$route.query.type&&this.$route.query.type.includes("audiobook")},show_all_audiobooks_button(){return this.audiobooks.total>this.audiobooks.items.length},show_podcasts(){return this.$route.query.type&&this.$route.query.type.includes("podcast")},show_all_podcasts_button(){return this.podcasts.total>this.podcasts.items.length},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{search:function(t){if(!t.query.query||""===t.query.query)return this.search_query="",void this.$refs.search_field.focus();this.search_query=t.query.query,this.searchMusic(t.query),this.searchAudiobooks(t.query),this.searchPodcasts(t.query),this.$store.commit(q,t.query.query)},searchMusic:function(t){if(t.type.indexOf("track")<0&&t.type.indexOf("artist")<0&&t.type.indexOf("album")<0&&t.type.indexOf("playlist")<0)return;const s={type:t.type,media_kind:"music"};t.query.startsWith("query:")?s.expression=t.query.replace(/^query:/,"").trim():s.query=t.query,t.limit&&(s.limit=t.limit,s.offset=t.offset),J.search(s).then(({data:t})=>{this.tracks=t.tracks?t.tracks:{items:[],total:0},this.artists=t.artists?t.artists:{items:[],total:0},this.albums=t.albums?t.albums:{items:[],total:0},this.playlists=t.playlists?t.playlists:{items:[],total:0}})},searchAudiobooks:function(t){if(t.type.indexOf("audiobook")<0)return;const s={type:"album",media_kind:"audiobook"};t.query.startsWith("query:")?s.expression=t.query.replace(/^query:/,"").trim():s.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is audiobook)',t.limit&&(s.limit=t.limit,s.offset=t.offset),J.search(s).then(({data:t})=>{this.audiobooks=t.albums?t.albums:{items:[],total:0}})},searchPodcasts:function(t){if(t.type.indexOf("podcast")<0)return;const s={type:"album",media_kind:"podcast"};t.query.startsWith("query:")?s.expression=t.query.replace(/^query:/,"").trim():s.expression='((album includes "'+t.query+'" or artist includes "'+t.query+'") and media_kind is podcast)',t.limit&&(s.limit=t.limit,s.offset=t.offset),J.search(s).then(({data:t})=>{this.podcasts=t.albums?t.albums:{items:[],total:0}})},new_search:function(){this.search_query&&(this.$router.push({path:"/search/library",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/library",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/library",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/library",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/library",query:{type:"playlist",query:this.$route.query.query}})},open_search_audiobooks:function(){this.$router.push({path:"/search/library",query:{type:"audiobook",query:this.$route.query.query}})},open_search_podcasts:function(){this.$router.push({path:"/search/library",query:{type:"podcast",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()}},mounted:function(){this.search(this.$route)},watch:{$route(t,s){this.search(t)}}},er=ar,ir=Object(D["a"])(er,Hn,Wn,!1,null,null,null),lr=ir.exports,or=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths has-text-centered-mobile"},[a("p",{staticClass:"heading"},[a("b",[t._v("forked-daapd")]),t._v(" - version "+t._s(t.config.version))]),a("h1",{staticClass:"title is-4"},[t._v(t._s(t.config.library_name))])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content"},[a("nav",{staticClass:"level is-mobile"},[t._m(0),a("div",{staticClass:"level-right"},[t.library.updating?a("div",[a("a",{staticClass:"button is-small is-loading"},[t._v("Update")])]):a("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.onClickOutside,expression:"onClickOutside"}],staticClass:"dropdown is-right",class:{"is-active":t.show_update_dropdown}},[a("div",{staticClass:"dropdown-trigger"},[a("div",{staticClass:"buttons has-addons"},[a("a",{staticClass:"button is-small",on:{click:t.update}},[t._v("Update")]),a("a",{staticClass:"button is-small",on:{click:function(s){t.show_update_dropdown=!t.show_update_dropdown}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi",class:{"mdi-chevron-down":!t.show_update_dropdown,"mdi-chevron-up":t.show_update_dropdown}})])])])]),a("div",{staticClass:"dropdown-menu",attrs:{id:"dropdown-menu",role:"menu"}},[a("div",{staticClass:"dropdown-content"},[a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update}},[a("strong",[t._v("Update")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Adds new, removes deleted and updates modified files.")])])]),a("hr",{staticClass:"dropdown-divider"}),a("div",{staticClass:"dropdown-item"},[a("a",{staticClass:"has-text-dark",on:{click:t.update_meta}},[a("strong",[t._v("Rescan metadata")]),a("br"),a("span",{staticClass:"is-size-7"},[t._v("Same as update, but also rescans unmodified files.")])])])])])])])]),a("table",{staticClass:"table"},[a("tbody",[a("tr",[a("th",[t._v("Artists")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.artists)))])]),a("tr",[a("th",[t._v("Albums")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.albums)))])]),a("tr",[a("th",[t._v("Tracks")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("number")(t.library.songs)))])]),a("tr",[a("th",[t._v("Total playtime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("duration")(1e3*t.library.db_playtime,"y [years], d [days], h [hours], m [minutes]")))])]),a("tr",[a("th",[t._v("Library updated")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.updated_at))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.updated_at,"lll"))+")")])])]),a("tr",[a("th",[t._v("Uptime")]),a("td",{staticClass:"has-text-right"},[t._v(t._s(t._f("timeFromNow")(t.library.started_at,!0))+" "),a("span",{staticClass:"has-text-grey"},[t._v("("+t._s(t._f("time")(t.library.started_at,"ll"))+")")])])])])])])])])])]),a("section",{staticClass:"section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"content has-text-centered-mobile"},[a("p",{staticClass:"is-size-7"},[t._v("Compiled with support for "+t._s(t._f("join")(t.config.buildoptions))+".")]),t._m(1)])])])])])])},nr=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"level-left"},[a("div",{staticClass:"level-item"},[a("h2",{staticClass:"title is-5"},[t._v("Library")])])])},function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("p",{staticClass:"is-size-7"},[t._v("Web interface built with "),a("a",{attrs:{href:"http://bulma.io"}},[t._v("Bulma")]),t._v(", "),a("a",{attrs:{href:"https://materialdesignicons.com/"}},[t._v("Material Design Icons")]),t._v(", "),a("a",{attrs:{href:"https://vuejs.org/"}},[t._v("Vue.js")]),t._v(", "),a("a",{attrs:{href:"https://github.com/mzabriskie/axios"}},[t._v("axios")]),t._v(" and "),a("a",{attrs:{href:"https://github.com/ejurgensen/forked-daapd/network/dependencies"}},[t._v("more")]),t._v(".")])}],rr={name:"PageAbout",data(){return{show_update_dropdown:!1}},computed:{config(){return this.$store.state.config},library(){return this.$store.state.library}},methods:{onClickOutside(t){this.show_update_dropdown=!1},update:function(){this.show_update_dropdown=!1,J.library_update()},update_meta:function(){this.show_update_dropdown=!1,J.library_rescan()}},filters:{join:function(t){return t.join(", ")}}},cr=rr,dr=Object(D["a"])(cr,or,nr,!1,null,null,null),ur=dr.exports,pr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/new-releases"}},[t._v(" Show more ")])],1)])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("router-link",{staticClass:"button is-light is-small is-rounded",attrs:{to:"/music/spotify/featured-playlists"}},[t._v(" Show more ")])],1)])])],2)],1)},_r=[],mr=function(t,s){var a=s._c;return a("div",{staticClass:"media"},[s.$slots["artwork"]?a("div",{staticClass:"media-left fd-has-action",on:{click:s.listeners.click}},[s._t("artwork")],2):s._e(),a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:s.listeners.click}},[a("h1",{staticClass:"title is-6"},[s._v(s._s(s.props.album.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[s._v(s._s(s.props.album.artists[0].name))])]),a("h2",{staticClass:"subtitle is-7 has-text-grey has-text-weight-normal"},[s._v("("+s._s(s.props.album.album_type)+", "+s._s(s._f("time")(s.props.album.release_date,"L"))+")")])]),a("div",{staticClass:"media-right"},[s._t("actions")],2)])},hr=[],fr={name:"SpotifyListItemAlbum",props:["album"]},yr=fr,vr=Object(D["a"])(yr,mr,hr,!0,null,null,null),br=vr.exports,gr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_playlist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.playlist.name))]),a("h2",{staticClass:"subtitle is-7"},[t._v(t._s(t.playlist.owner.display_name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},kr=[],Cr={name:"SpotifyListItemPlaylist",props:["playlist"],methods:{open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},wr=Cr,xr=Object(D["a"])(wr,gr,kr,!1,null,null,null),$r=xr.exports,qr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("figure",{directives:[{name:"show",rawName:"v-show",value:t.artwork_visible,expression:"artwork_visible"}],staticClass:"image is-square fd-has-margin-bottom"},[a("img",{staticClass:"fd-has-shadow",attrs:{src:t.artwork_url},on:{load:t.artwork_loaded,error:t.artwork_error}})]),a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Type")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.album.album_type))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Ar=[],Sr={name:"SpotifyModalDialogAlbum",props:["show","album"],data(){return{artwork_visible:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{play:function(){this.$emit("close"),J.player_play_uri(this.album.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.album.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.album.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},artwork_loaded:function(){this.artwork_visible=!0},artwork_error:function(){this.artwork_visible=!1}}},jr=Sr,Pr=Object(D["a"])(jr,qr,Ar,!1,null,null,null),Tr=Pr.exports,Lr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[a("a",{staticClass:"has-text-link",on:{click:t.open_playlist}},[t._v(t._s(t.playlist.name))])]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Owner")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.owner.display_name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Tracks")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.tracks.total))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.playlist.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Or=[],Er={name:"SpotifyModalDialogPlaylist",props:["show","playlist"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.playlist.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.playlist.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.playlist.uri)},open_playlist:function(){this.$router.push({path:"/music/spotify/playlists/"+this.playlist.id})}}},Ir=Er,zr=Object(D["a"])(Ir,Lr,Or,!1,null,null,null),Dr=zr.exports;const Rr={load:function(t){if(Q.state.spotify_new_releases.length>0&&Q.state.spotify_featured_playlists.length>0)return Promise.resolve();const s=new Vs.a;return s.setAccessToken(Q.state.spotify.webapi_token),Promise.all([s.getNewReleases({country:Q.state.spotify.webapi_country,limit:50}),s.getFeaturedPlaylists({country:Q.state.spotify.webapi_country,limit:50})])},set:function(t,s){s&&(Q.commit(C,s[0].albums.items),Q.commit(w,s[1].playlists.items))}};var Nr={name:"SpotifyPageBrowse",mixins:[Ia(Rr)],components:{ContentWithHeading:Rs,TabsMusic:Ua,SpotifyListItemAlbum:br,SpotifyListItemPlaylist:$r,SpotifyModalDialogAlbum:Tr,SpotifyModalDialogPlaylist:Dr,CoverArtwork:Sa},data(){return{show_album_details_modal:!1,selected_album:{},show_playlist_details_modal:!1,selected_playlist:{}}},computed:{new_releases(){return this.$store.state.spotify_new_releases.slice(0,3)},featured_playlists(){return this.$store.state.spotify_featured_playlists.slice(0,3)},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Mr=Nr,Ur=Object(D["a"])(Mr,pr,_r,!1,null,null,null),Hr=Ur.exports,Wr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("New Releases")])]),a("template",{slot:"content"},[t._l(t.new_releases,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)],1)},Br=[];const Fr={load:function(t){if(Q.state.spotify_new_releases.length>0)return Promise.resolve();const s=new Vs.a;return s.setAccessToken(Q.state.spotify.webapi_token),s.getNewReleases({country:Q.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&Q.commit(C,s.albums.items)}};var Gr={name:"SpotifyPageBrowseNewReleases",mixins:[Ia(Fr)],components:{ContentWithHeading:Rs,TabsMusic:Ua,SpotifyListItemAlbum:br,SpotifyModalDialogAlbum:Tr,CoverArtwork:Sa},data(){return{show_album_details_modal:!1,selected_album:{}}},computed:{new_releases(){return this.$store.state.spotify_new_releases},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},Yr=Gr,Vr=Object(D["a"])(Yr,Wr,Br,!1,null,null,null),Qr=Vr.exports,Jr=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-music"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Featured Playlists")])]),a("template",{slot:"content"},[t._l(t.featured_playlists,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2)],2)],1)},Kr=[];const Xr={load:function(t){if(Q.state.spotify_featured_playlists.length>0)return Promise.resolve();const s=new Vs.a;s.setAccessToken(Q.state.spotify.webapi_token),s.getFeaturedPlaylists({country:Q.state.spotify.webapi_country,limit:50})},set:function(t,s){s&&Q.commit(w,s.playlists.items)}};var Zr={name:"SpotifyPageBrowseFeaturedPlaylists",mixins:[Ia(Xr)],components:{ContentWithHeading:Rs,TabsMusic:Ua,SpotifyListItemPlaylist:$r,SpotifyModalDialogPlaylist:Dr},data(){return{show_playlist_details_modal:!1,selected_playlist:{}}},computed:{featured_playlists(){return this.$store.state.spotify_featured_playlists}},methods:{open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0}}},tc=Zr,sc=Object(D["a"])(tc,Jr,Kr,!1,null,null,null),ac=sc.exports,ec=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v(t._s(t.artist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_artist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.total)+" albums")]),t._l(t.albums,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset{this.append_albums(s,t)})},append_albums:function(t,s){this.albums=this.albums.concat(t.items),this.total=t.total,this.offset+=t.limit,s&&(s.loaded(),this.offset>=this.total&&s.complete())},play:function(){this.show_details_modal=!1,J.player_play_uri(this.artist.uri,!0)},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},open_dialog:function(t){this.selected_album=t,this.show_details_modal=!0},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}}},hc=mc,fc=Object(D["a"])(hc,ec,ic,!1,null,null,null),yc=fc.exports,vc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-hero",[a("template",{slot:"heading-left"},[a("h1",{staticClass:"title is-5"},[t._v(t._s(t.album.name))]),a("h2",{staticClass:"subtitle is-6 has-text-link has-text-weight-normal"},[a("a",{staticClass:"has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("div",{staticClass:"buttons fd-is-centered-mobile fd-has-margin-top"},[a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])]),a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_album_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])])])]),a("template",{slot:"heading-right"},[a("p",{staticClass:"image is-square fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url,artist:t.album.artist,album:t.album.name},on:{click:function(s){t.show_album_details_modal=!0}}})],1)]),a("template",{slot:"content"},[a("p",{staticClass:"heading is-7 has-text-centered-mobile fd-has-margin-top"},[t._v(t._s(t.album.tracks.total)+" tracks")]),t._l(t.album.tracks.items,(function(s,e){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,position:e,album:t.album,context_uri:t.album.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.album},on:{close:function(s){t.show_track_details_modal=!1}}}),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.album},on:{close:function(s){t.show_album_details_modal=!1}}})],2)],2)},bc=[],gc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.play}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.track.name))]),a("h2",{staticClass:"subtitle is-7 has-text-grey"},[a("b",[t._v(t._s(t.track.artists[0].name))])])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},kc=[],Cc={name:"SpotifyListItemTrack",props:["track","position","album","context_uri"],methods:{play:function(){J.player_play_uri(this.context_uri,!1,this.position)}}},wc=Cc,xc=Object(D["a"])(wc,gc,kc,!1,null,null,null),$c=xc.exports,qc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("transition",{attrs:{name:"fade"}},[t.show?a("div",{staticClass:"modal is-active"},[a("div",{staticClass:"modal-background",on:{click:function(s){return t.$emit("close")}}}),a("div",{staticClass:"modal-content fd-modal-card"},[a("div",{staticClass:"card"},[a("div",{staticClass:"card-content"},[a("p",{staticClass:"title is-4"},[t._v(" "+t._s(t.track.name)+" ")]),a("p",{staticClass:"subtitle"},[t._v(" "+t._s(t.track.artists[0].name)+" ")]),a("div",{staticClass:"content is-small"},[a("p",[a("span",{staticClass:"heading"},[t._v("Album")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_album}},[t._v(t._s(t.album.name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Album artist")]),a("a",{staticClass:"title is-6 has-text-link",on:{click:t.open_artist}},[t._v(t._s(t.album.artists[0].name))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Release date")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("time")(t.album.release_date,"L")))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Track / Disc")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.track_number)+" / "+t._s(t.track.disc_number))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Length")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t._f("duration")(t.track.duration_ms)))])]),a("p",[a("span",{staticClass:"heading"},[t._v("Path")]),a("span",{staticClass:"title is-6"},[t._v(t._s(t.track.uri))])])])]),a("footer",{staticClass:"card-footer"},[a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-plus"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.queue_add_next}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-playlist-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Add Next")])]),a("a",{staticClass:"card-footer-item has-text-dark",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-play"})]),t._v(" "),a("span",{staticClass:"is-size-7"},[t._v("Play")])])])])]),a("button",{staticClass:"modal-close is-large",attrs:{"aria-label":"close"},on:{click:function(s){return t.$emit("close")}}})]):t._e()])],1)},Ac=[],Sc={name:"SpotifyModalDialogTrack",props:["show","track","album"],methods:{play:function(){this.$emit("close"),J.player_play_uri(this.track.uri,!1)},queue_add:function(){this.$emit("close"),J.queue_add(this.track.uri)},queue_add_next:function(){this.$emit("close"),J.queue_add_next(this.track.uri)},open_album:function(){this.$router.push({path:"/music/spotify/albums/"+this.album.id})},open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})}}},jc=Sc,Pc=Object(D["a"])(jc,qc,Ac,!1,null,null,null),Tc=Pc.exports;const Lc={load:function(t){const s=new Vs.a;return s.setAccessToken(Q.state.spotify.webapi_token),s.getAlbum(t.params.album_id)},set:function(t,s){t.album=s}};var Oc={name:"PageAlbum",mixins:[Ia(Lc)],components:{ContentWithHero:Bi["default"],SpotifyListItemTrack:$c,SpotifyModalDialogTrack:Tc,SpotifyModalDialogAlbum:Tr,CoverArtwork:Sa},data(){return{album:{artists:[{}],tracks:{}},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1}},computed:{artwork_url:function(){return this.album.images&&this.album.images.length>0?this.album.images[0].url:""}},methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.album.artists[0].id})},play:function(){this.show_details_modal=!1,J.player_play_uri(this.album.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Ec=Oc,Ic=Object(D["a"])(Ec,vc,bc,!1,null,null,null),zc=Ic.exports,Dc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v(t._s(t.playlist.name))])]),a("template",{slot:"heading-right"},[a("div",{staticClass:"buttons is-centered"},[a("a",{staticClass:"button is-small is-light is-rounded",on:{click:function(s){t.show_playlist_details_modal=!0}}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-dots-horizontal mdi-18px"})])]),a("a",{staticClass:"button is-small is-dark is-rounded",on:{click:t.play}},[a("span",{staticClass:"icon"},[a("i",{staticClass:"mdi mdi-shuffle"})]),t._v(" "),a("span",[t._v("Shuffle")])])])]),a("template",{slot:"content"},[a("p",{staticClass:"heading has-text-centered-mobile"},[t._v(t._s(t.playlist.tracks.total)+" tracks")]),t._l(t.tracks,(function(s,e){return a("spotify-list-item-track",{key:s.track.id,attrs:{track:s.track,album:s.track.album,position:e,context_uri:t.playlist.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s.track)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),t.offset{this.append_tracks(s,t)})},append_tracks:function(t,s){this.tracks=this.tracks.concat(t.items),this.total=t.total,this.offset+=t.limit,s&&(s.loaded(),this.offset>=this.total&&s.complete())},play:function(){this.show_details_modal=!1,J.player_play_uri(this.playlist.uri,!0)},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0}}},Uc=Mc,Hc=Object(D["a"])(Uc,Dc,Rc,!1,null,null,null),Wc=Hc.exports,Bc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("section",{staticClass:"section fd-remove-padding-bottom"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.new_search(s)}}},[a("div",{staticClass:"field"},[a("p",{staticClass:"control is-expanded has-icons-left"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search_query,expression:"search_query"}],ref:"search_field",staticClass:"input is-rounded is-shadowless",attrs:{type:"text",placeholder:"Search",autocomplete:"off"},domProps:{value:t.search_query},on:{input:function(s){s.target.composing||(t.search_query=s.target.value)}}}),t._m(0)])])]),a("div",{staticClass:"tags",staticStyle:{"margin-top":"16px"}},t._l(t.recent_searches,(function(s){return a("a",{key:s,staticClass:"tag",on:{click:function(a){return t.open_recent_search(s)}}},[t._v(t._s(s))])})),0)])])])]),a("tabs-search",{attrs:{query:t.search_query}}),t.show_tracks&&t.tracks.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Tracks")])]),a("template",{slot:"content"},[t._l(t.tracks.items,(function(s){return a("spotify-list-item-track",{key:s.id,attrs:{track:s,album:s.album,position:0,context_uri:s.uri}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_track_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"track"===t.query.type?a("infinite-loading",{on:{infinite:t.search_tracks_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-track",{attrs:{show:t.show_track_details_modal,track:t.selected_track,album:t.selected_track.album},on:{close:function(s){t.show_track_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_tracks_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_tracks}},[t._v("Show all "+t._s(t.tracks.total.toLocaleString())+" tracks")])])]):t._e()])],2):t._e(),t.show_tracks&&!t.tracks.total?a("content-text",{staticClass:"mt-6"},[a("template",{slot:"content"},[a("p",[a("i",[t._v("No tracks found")])])])],2):t._e(),t.show_artists&&t.artists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Artists")])]),a("template",{slot:"content"},[t._l(t.artists.items,(function(s){return a("spotify-list-item-artist",{key:s.id,attrs:{artist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_artist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"artist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_artists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-artist",{attrs:{show:t.show_artist_details_modal,artist:t.selected_artist},on:{close:function(s){t.show_artist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_artists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_artists}},[t._v("Show all "+t._s(t.artists.total.toLocaleString())+" artists")])])]):t._e()])],2):t._e(),t.show_artists&&!t.artists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No artists found")])])])],2):t._e(),t.show_albums&&t.albums.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Albums")])]),a("template",{slot:"content"},[t._l(t.albums.items,(function(s){return a("spotify-list-item-album",{key:s.id,attrs:{album:s},on:{click:function(a){return t.open_album(s)}}},[t.is_visible_artwork?a("template",{slot:"artwork"},[a("p",{staticClass:"image is-64x64 fd-has-shadow fd-has-action"},[a("cover-artwork",{attrs:{artwork_url:t.artwork_url(s),artist:s.artist,album:s.name,maxwidth:64,maxheight:64}})],1)]):t._e(),a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_album_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"album"===t.query.type?a("infinite-loading",{on:{infinite:t.search_albums_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-album",{attrs:{show:t.show_album_details_modal,album:t.selected_album},on:{close:function(s){t.show_album_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_albums_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_albums}},[t._v("Show all "+t._s(t.albums.total.toLocaleString())+" albums")])])]):t._e()])],2):t._e(),t.show_albums&&!t.albums.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No albums found")])])])],2):t._e(),t.show_playlists&&t.playlists.total?a("content-with-heading",[a("template",{slot:"heading-left"},[a("p",{staticClass:"title is-4"},[t._v("Playlists")])]),a("template",{slot:"content"},[t._l(t.playlists.items,(function(s){return a("spotify-list-item-playlist",{key:s.id,attrs:{playlist:s}},[a("template",{slot:"actions"},[a("a",{on:{click:function(a){return t.open_playlist_dialog(s)}}},[a("span",{staticClass:"icon has-text-dark"},[a("i",{staticClass:"mdi mdi-dots-vertical mdi-18px"})])])])],2)})),"playlist"===t.query.type?a("infinite-loading",{on:{infinite:t.search_playlists_next}},[a("span",{attrs:{slot:"no-more"},slot:"no-more"},[t._v(".")])]):t._e(),a("spotify-modal-dialog-playlist",{attrs:{show:t.show_playlist_details_modal,playlist:t.selected_playlist},on:{close:function(s){t.show_playlist_details_modal=!1}}})],2),a("template",{slot:"footer"},[t.show_all_playlists_button?a("nav",{staticClass:"level"},[a("p",{staticClass:"level-item"},[a("a",{staticClass:"button is-light is-small is-rounded",on:{click:t.open_search_playlists}},[t._v("Show all "+t._s(t.playlists.total.toLocaleString())+" playlists")])])]):t._e()])],2):t._e(),t.show_playlists&&!t.playlists.total?a("content-text",[a("template",{slot:"content"},[a("p",[a("i",[t._v("No playlists found")])])])],2):t._e()],1)},Fc=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("span",{staticClass:"icon is-left"},[a("i",{staticClass:"mdi mdi-magnify"})])}],Gc=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"media"},[a("div",{staticClass:"media-content fd-has-action is-clipped",on:{click:t.open_artist}},[a("h1",{staticClass:"title is-6"},[t._v(t._s(t.artist.name))])]),a("div",{staticClass:"media-right"},[t._t("actions")],2)])},Yc=[],Vc={name:"SpotifyListItemArtist",props:["artist"],methods:{open_artist:function(){this.$router.push({path:"/music/spotify/artists/"+this.artist.id})}}},Qc=Vc,Jc=Object(D["a"])(Qc,Gc,Yc,!1,null,null,null),Kc=Jc.exports,Xc={name:"SpotifyPageSearch",components:{ContentWithHeading:Rs,ContentText:Qn,TabsSearch:sr,SpotifyListItemTrack:$c,SpotifyListItemArtist:Kc,SpotifyListItemAlbum:br,SpotifyListItemPlaylist:$r,SpotifyModalDialogTrack:Tc,SpotifyModalDialogArtist:dc,SpotifyModalDialogAlbum:Tr,SpotifyModalDialogPlaylist:Dr,InfiniteLoading:pc.a,CoverArtwork:Sa},data(){return{search_query:"",tracks:{items:[],total:0},artists:{items:[],total:0},albums:{items:[],total:0},playlists:{items:[],total:0},query:{},search_param:{},show_track_details_modal:!1,selected_track:{},show_album_details_modal:!1,selected_album:{},show_artist_details_modal:!1,selected_artist:{},show_playlist_details_modal:!1,selected_playlist:{},validSearchTypes:["track","artist","album","playlist"]}},computed:{recent_searches(){return this.$store.state.recent_searches.filter(t=>!t.startsWith("query:"))},show_tracks(){return this.$route.query.type&&this.$route.query.type.includes("track")},show_all_tracks_button(){return this.tracks.total>this.tracks.items.length},show_artists(){return this.$route.query.type&&this.$route.query.type.includes("artist")},show_all_artists_button(){return this.artists.total>this.artists.items.length},show_albums(){return this.$route.query.type&&this.$route.query.type.includes("album")},show_all_albums_button(){return this.albums.total>this.albums.items.length},show_playlists(){return this.$route.query.type&&this.$route.query.type.includes("playlist")},show_all_playlists_button(){return this.playlists.total>this.playlists.items.length},is_visible_artwork(){return this.$store.getters.settings_option("webinterface","show_cover_artwork_in_album_lists").value}},methods:{reset:function(){this.tracks={items:[],total:0},this.artists={items:[],total:0},this.albums={items:[],total:0},this.playlists={items:[],total:0}},search:function(){if(this.reset(),!this.query.query||""===this.query.query||this.query.query.startsWith("query:"))return this.search_query="",void this.$refs.search_field.focus();this.search_query=this.query.query,this.search_param.limit=this.query.limit?this.query.limit:50,this.search_param.offset=this.query.offset?this.query.offset:0,this.$store.commit(q,this.query.query),this.search_all()},spotify_search:function(){return J.spotify().then(({data:t})=>{this.search_param.market=t.webapi_country;const s=new Vs.a;s.setAccessToken(t.webapi_token);const a=this.query.type.split(",").filter(t=>this.validSearchTypes.includes(t));return s.search(this.query.query,a,this.search_param)})},search_all:function(){this.spotify_search().then(t=>{this.tracks=t.tracks?t.tracks:{items:[],total:0},this.artists=t.artists?t.artists:{items:[],total:0},this.albums=t.albums?t.albums:{items:[],total:0},this.playlists=t.playlists?t.playlists:{items:[],total:0}})},search_tracks_next:function(t){this.spotify_search().then(s=>{this.tracks.items=this.tracks.items.concat(s.tracks.items),this.tracks.total=s.tracks.total,this.search_param.offset+=s.tracks.limit,t.loaded(),this.search_param.offset>=this.tracks.total&&t.complete()})},search_artists_next:function(t){this.spotify_search().then(s=>{this.artists.items=this.artists.items.concat(s.artists.items),this.artists.total=s.artists.total,this.search_param.offset+=s.artists.limit,t.loaded(),this.search_param.offset>=this.artists.total&&t.complete()})},search_albums_next:function(t){this.spotify_search().then(s=>{this.albums.items=this.albums.items.concat(s.albums.items),this.albums.total=s.albums.total,this.search_param.offset+=s.albums.limit,t.loaded(),this.search_param.offset>=this.albums.total&&t.complete()})},search_playlists_next:function(t){this.spotify_search().then(s=>{this.playlists.items=this.playlists.items.concat(s.playlists.items),this.playlists.total=s.playlists.total,this.search_param.offset+=s.playlists.limit,t.loaded(),this.search_param.offset>=this.playlists.total&&t.complete()})},new_search:function(){this.search_query&&(this.$router.push({path:"/search/spotify",query:{type:"track,artist,album,playlist,audiobook,podcast",query:this.search_query,limit:3,offset:0}}),this.$refs.search_field.blur())},open_search_tracks:function(){this.$router.push({path:"/search/spotify",query:{type:"track",query:this.$route.query.query}})},open_search_artists:function(){this.$router.push({path:"/search/spotify",query:{type:"artist",query:this.$route.query.query}})},open_search_albums:function(){this.$router.push({path:"/search/spotify",query:{type:"album",query:this.$route.query.query}})},open_search_playlists:function(){this.$router.push({path:"/search/spotify",query:{type:"playlist",query:this.$route.query.query}})},open_recent_search:function(t){this.search_query=t,this.new_search()},open_track_dialog:function(t){this.selected_track=t,this.show_track_details_modal=!0},open_album_dialog:function(t){this.selected_album=t,this.show_album_details_modal=!0},open_artist_dialog:function(t){this.selected_artist=t,this.show_artist_details_modal=!0},open_playlist_dialog:function(t){this.selected_playlist=t,this.show_playlist_details_modal=!0},open_album:function(t){this.$router.push({path:"/music/spotify/albums/"+t.id})},artwork_url:function(t){return t.images&&t.images.length>0?t.images[0].url:""}},mounted:function(){this.query=this.$route.query,this.search()},watch:{$route(t,s){this.query=t.query,this.search()}}},Zc=Xc,td=Object(D["a"])(Zc,Bc,Fc,!1,null,null,null),sd=td.exports,ad=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Navbar items")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" Select the top navigation bar menu items ")]),a("div",{staticClass:"notification is-size-7"},[t._v(" If you select more items than can be shown on your screen then the burger menu will disappear. ")]),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_playlists"}},[a("template",{slot:"label"},[t._v(" Playlists")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_music"}},[a("template",{slot:"label"},[t._v(" Music")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_podcasts"}},[a("template",{slot:"label"},[t._v(" Podcasts")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_audiobooks"}},[a("template",{slot:"label"},[t._v(" Audiobooks")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_radio"}},[a("template",{slot:"label"},[t._v(" Radio")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_files"}},[a("template",{slot:"label"},[t._v(" Files")])],2),a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_menu_item_search"}},[a("template",{slot:"label"},[t._v(" Search")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Album lists")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_cover_artwork_in_album_lists"}},[a("template",{slot:"label"},[t._v(" Show cover artwork in album list")])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Now playing page")])]),a("template",{slot:"content"},[a("settings-checkbox",{attrs:{category_name:"webinterface",option_name:"show_composer_now_playing"}},[a("template",{slot:"label"},[t._v(" Show composer")]),a("template",{slot:"info"},[t._v('If enabled the composer of the current playing track is shown on the "now playing page"')])],2),a("settings-textfield",{attrs:{category_name:"webinterface",option_name:"show_composer_for_genre",disabled:!t.settings_option_show_composer_now_playing,placeholder:"Genres"}},[a("template",{slot:"label"},[t._v("Show composer only for listed genres")]),a("template",{slot:"info"},[a("p",{staticClass:"help"},[t._v(' Comma separated list of genres the composer should be displayed on the "now playing page". ')]),a("p",{staticClass:"help"},[t._v(" Leave empty to always show the composer. ")]),a("p",{staticClass:"help"},[t._v(" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to "),a("code",[t._v("classical, soundtrack")]),t._v(' will show the composer for tracks with a genre tag of "Contemporary Classical".'),a("br")])])],2)],1)],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Recently added page")])]),a("template",{slot:"content"},[a("settings-intfield",{attrs:{category_name:"webinterface",option_name:"recently_added_limit"}},[a("template",{slot:"label"},[t._v('Limit the number of albums shown on the "Recently Added" page')])],2)],1)],2)],1)},ed=[],id=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("section",{staticClass:"section fd-tabs-section"},[a("div",{staticClass:"container"},[a("div",{staticClass:"columns is-centered"},[a("div",{staticClass:"column is-four-fifths"},[a("div",{staticClass:"tabs is-centered is-small"},[a("ul",[a("router-link",{attrs:{tag:"li",to:"/settings/webinterface","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Webinterface")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/remotes-outputs","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Remotes & Outputs")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/artwork","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Artwork")])])]),a("router-link",{attrs:{tag:"li",to:"/settings/online-services","active-class":"is-active"}},[a("a",[a("span",{},[t._v("Online Services")])])])],1)])])])])])},ld=[],od={name:"TabsSettings",computed:{}},nd=od,rd=Object(D["a"])(nd,id,ld,!1,null,null,null),cd=rd.exports,dd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"field"},[a("label",{staticClass:"checkbox"},[a("input",{ref:"settings_checkbox",attrs:{type:"checkbox"},domProps:{checked:t.value},on:{change:t.set_update_timer}}),t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])},ud=[],pd={name:"SettingsCheckbox",props:["category_name","option_name"],data(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category(){return this.$store.state.settings.categories.find(t=>t.name===this.category_name)},option(){return this.category?this.category.options.find(t=>t.name===this.option_name):{}},value(){return this.option.value},info(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";const t=this.$refs.settings_checkbox.checked;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting(){this.timerId=-1;const t=this.$refs.settings_checkbox.checked;if(t===this.value)return void(this.statusUpdate="");const s={category:this.category.name,name:this.option_name,value:t};J.settings_update(this.category.name,s).then(()=>{this.$store.commit(p,s),this.statusUpdate="success"}).catch(()=>{this.statusUpdate="error",this.$refs.settings_checkbox.checked=this.value}).finally(()=>{this.timerId=window.setTimeout(this.clear_status,this.timerDelay)})},clear_status:function(){this.statusUpdate=""}}},_d=pd,md=Object(D["a"])(_d,dd,ud,!1,null,null,null),hd=md.exports,fd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("fieldset",{attrs:{disabled:t.disabled}},[a("div",{staticClass:"field"},[a("label",{staticClass:"label has-text-weight-normal"},[t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),a("div",{staticClass:"control"},[a("input",{ref:"settings_text",staticClass:"input",attrs:{type:"text",placeholder:t.placeholder},domProps:{value:t.value},on:{input:t.set_update_timer}})]),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])])},yd=[],vd={name:"SettingsTextfield",props:["category_name","option_name","placeholder","disabled"],data(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category(){return this.$store.state.settings.categories.find(t=>t.name===this.category_name)},option(){return this.category?this.category.options.find(t=>t.name===this.option_name):{}},value(){return this.option.value},info(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";const t=this.$refs.settings_text.value;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting(){this.timerId=-1;const t=this.$refs.settings_text.value;if(t===this.value)return void(this.statusUpdate="");const s={category:this.category.name,name:this.option_name,value:t};J.settings_update(this.category.name,s).then(()=>{this.$store.commit(p,s),this.statusUpdate="success"}).catch(()=>{this.statusUpdate="error",this.$refs.settings_text.value=this.value}).finally(()=>{this.timerId=window.setTimeout(this.clear_status,this.timerDelay)})},clear_status:function(){this.statusUpdate=""}}},bd=vd,gd=Object(D["a"])(bd,fd,yd,!1,null,null,null),kd=gd.exports,Cd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("fieldset",{attrs:{disabled:t.disabled}},[a("div",{staticClass:"field"},[a("label",{staticClass:"label has-text-weight-normal"},[t._t("label"),a("i",{staticClass:"is-size-7",class:{"has-text-info":"success"===t.statusUpdate,"has-text-danger":"error"===t.statusUpdate}},[t._v(" "+t._s(t.info))])],2),a("div",{staticClass:"control"},[a("input",{ref:"settings_number",staticClass:"input",staticStyle:{width:"10em"},attrs:{type:"number",min:"0",placeholder:t.placeholder},domProps:{value:t.value},on:{input:t.set_update_timer}})]),t.$slots["info"]?a("p",{staticClass:"help"},[t._t("info")],2):t._e()])])},wd=[],xd={name:"SettingsIntfield",props:["category_name","option_name","placeholder","disabled"],data(){return{timerDelay:2e3,timerId:-1,statusUpdate:""}},computed:{category(){return this.$store.state.settings.categories.find(t=>t.name===this.category_name)},option(){return this.category?this.category.options.find(t=>t.name===this.option_name):{}},value(){return this.option.value},info(){return"success"===this.statusUpdate?"(setting saved)":"error"===this.statusUpdate?"(error saving setting)":""}},methods:{set_update_timer(){this.timerId>0&&(window.clearTimeout(this.timerId),this.timerId=-1),this.statusUpdate="";const t=this.$refs.settings_number.value;t!==this.value&&(this.timerId=window.setTimeout(this.update_setting,this.timerDelay))},update_setting(){this.timerId=-1;const t=this.$refs.settings_number.value;if(t===this.value)return void(this.statusUpdate="");const s={category:this.category.name,name:this.option_name,value:parseInt(t,10)};J.settings_update(this.category.name,s).then(()=>{this.$store.commit(p,s),this.statusUpdate="success"}).catch(()=>{this.statusUpdate="error",this.$refs.settings_number.value=this.value}).finally(()=>{this.timerId=window.setTimeout(this.clear_status,this.timerDelay)})},clear_status:function(){this.statusUpdate=""}}},$d=xd,qd=Object(D["a"])($d,Cd,wd,!1,null,null,null),Ad=qd.exports,Sd={name:"SettingsPageWebinterface",components:{ContentWithHeading:Rs,TabsSettings:cd,SettingsCheckbox:hd,SettingsTextfield:kd,SettingsIntfield:Ad},computed:{settings_option_show_composer_now_playing(){return this.$store.getters.settings_option_show_composer_now_playing}}},jd=Sd,Pd=Object(D["a"])(jd,ad,ed,!1,null,null,null),Td=Pd.exports,Ld=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Artwork")])]),a("template",{slot:"content"},[a("div",{staticClass:"content"},[a("p",[t._v(" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. ")]),a("p",[t._v("In addition to that, you can enable fetching artwork from the following artwork providers:")])]),t.spotify.libspotify_logged_in?a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_spotify"}},[a("template",{slot:"label"},[t._v(" Spotify")])],2):t._e(),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_discogs"}},[a("template",{slot:"label"},[t._v(" Discogs ("),a("a",{attrs:{href:"https://www.discogs.com/"}},[t._v("https://www.discogs.com/")]),t._v(")")])],2),a("settings-checkbox",{attrs:{category_name:"artwork",option_name:"use_artwork_source_coverartarchive"}},[a("template",{slot:"label"},[t._v(" Cover Art Archive ("),a("a",{attrs:{href:"https://coverartarchive.org/"}},[t._v("https://coverartarchive.org/")]),t._v(")")])],2)],1)],2)],1)},Od=[],Ed={name:"SettingsPageArtwork",components:{ContentWithHeading:Rs,TabsSettings:cd,SettingsCheckbox:hd},computed:{spotify(){return this.$store.state.spotify}}},Id=Ed,zd=Object(D["a"])(Id,Ld,Od,!1,null,null,null),Dd=zd.exports,Rd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Spotify")])]),a("template",{slot:"content"},[t.spotify.libspotify_installed?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was either built without support for Spotify or libspotify is not installed.")])]),t.spotify.libspotify_installed?a("div",[a("div",{staticClass:"notification is-size-7"},[a("b",[t._v("You must have a Spotify premium account")]),t._v(". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. ")]),a("div",[a("p",{staticClass:"content"},[a("b",[t._v("libspotify")]),t._v(" - Login with your Spotify username and password ")]),t.spotify.libspotify_logged_in?a("p",{staticClass:"fd-has-margin-bottom"},[t._v(" Logged in as "),a("b",[a("code",[t._v(t._s(t.spotify.libspotify_user))])])]):t._e(),t.spotify.libspotify_installed&&!t.spotify.libspotify_logged_in?a("form",{on:{submit:function(s){return s.preventDefault(),t.login_libspotify(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.user,expression:"libspotify.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.libspotify.user},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.libspotify.password,expression:"libspotify.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.libspotify.password},on:{input:function(s){s.target.composing||t.$set(t.libspotify,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info"},[t._v("Login")])])])]):t._e(),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.libspotify.errors.error))]),a("p",{staticClass:"help"},[t._v(" libspotify enables forked-daapd to play Spotify tracks. ")]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. ")])]),a("div",{staticClass:"fd-has-margin-top"},[a("p",{staticClass:"content"},[a("b",[t._v("Spotify Web API")]),t._v(" - Grant access to the Spotify Web API ")]),t.spotify.webapi_token_valid?a("p",[t._v(" Access granted for "),a("b",[a("code",[t._v(t._s(t.spotify.webapi_user))])])]):t._e(),t.spotify_missing_scope.length>0?a("p",{staticClass:"help is-danger"},[t._v(" Please reauthorize Web API access to grant forked-daapd the following additional access rights: "),a("b",[a("code",[t._v(t._s(t._f("join")(t.spotify_missing_scope)))])])]):t._e(),a("div",{staticClass:"field fd-has-margin-top "},[a("div",{staticClass:"control"},[a("a",{staticClass:"button",class:{"is-info":!t.spotify.webapi_token_valid||t.spotify_missing_scope.length>0},attrs:{href:t.spotify.oauth_uri}},[t._v("Authorize Web API access")])])]),a("p",{staticClass:"help"},[t._v(" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are "),a("code",[t._v(t._s(t._f("join")(t.spotify_required_scope)))]),t._v(". ")])])]):t._e()])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Last.fm")])]),a("template",{slot:"content"},[t.lastfm.enabled?t._e():a("div",{staticClass:"notification is-size-7"},[a("p",[t._v("forked-daapd was built without support for Last.fm.")])]),t.lastfm.enabled?a("div",[a("p",{staticClass:"content"},[a("b",[t._v("Last.fm")]),t._v(" - Login with your Last.fm username and password to enable scrobbling ")]),t.lastfm.scrobbling_enabled?a("div",[a("a",{staticClass:"button",on:{click:t.logoutLastfm}},[t._v("Stop scrobbling")])]):t._e(),t.lastfm.scrobbling_enabled?t._e():a("div",[a("form",{on:{submit:function(s){return s.preventDefault(),t.login_lastfm(s)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.user,expression:"lastfm_login.user"}],staticClass:"input",attrs:{type:"text",placeholder:"Username"},domProps:{value:t.lastfm_login.user},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"user",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.user))])]),a("div",{staticClass:"control is-expanded"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.lastfm_login.password,expression:"lastfm_login.password"}],staticClass:"input",attrs:{type:"password",placeholder:"Password"},domProps:{value:t.lastfm_login.password},on:{input:function(s){s.target.composing||t.$set(t.lastfm_login,"password",s.target.value)}}}),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.password))])]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Login")])])]),a("p",{staticClass:"help is-danger"},[t._v(t._s(t.lastfm_login.errors.error))]),a("p",{staticClass:"help"},[t._v(" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. ")])])])]):t._e()])],2)],1)},Nd=[],Md={name:"SettingsPageOnlineServices",components:{ContentWithHeading:Rs,TabsSettings:cd},data(){return{libspotify:{user:"",password:"",errors:{user:"",password:"",error:""}},lastfm_login:{user:"",password:"",errors:{user:"",password:"",error:""}}}},computed:{lastfm(){return this.$store.state.lastfm},spotify(){return this.$store.state.spotify},spotify_required_scope(){return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" "):[]},spotify_missing_scope(){return this.spotify.webapi_token_valid&&this.spotify.webapi_granted_scope&&this.spotify.webapi_required_scope?this.spotify.webapi_required_scope.split(" ").filter(t=>this.spotify.webapi_granted_scope.indexOf(t)<0):[]}},methods:{login_libspotify(){J.spotify_login(this.libspotify).then(t=>{this.libspotify.user="",this.libspotify.password="",this.libspotify.errors.user="",this.libspotify.errors.password="",this.libspotify.errors.error="",t.data.success||(this.libspotify.errors.user=t.data.errors.user,this.libspotify.errors.password=t.data.errors.password,this.libspotify.errors.error=t.data.errors.error)})},login_lastfm(){J.lastfm_login(this.lastfm_login).then(t=>{this.lastfm_login.user="",this.lastfm_login.password="",this.lastfm_login.errors.user="",this.lastfm_login.errors.password="",this.lastfm_login.errors.error="",t.data.success||(this.lastfm_login.errors.user=t.data.errors.user,this.lastfm_login.errors.password=t.data.errors.password,this.lastfm_login.errors.error=t.data.errors.error)})},logoutLastfm(){J.lastfm_logout()}},filters:{join(t){return t.join(", ")}}},Ud=Md,Hd=Object(D["a"])(Ud,Rd,Nd,!1,null,null,null),Wd=Hd.exports,Bd=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("tabs-settings"),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Remote Pairing")])]),a("template",{slot:"content"},[t.pairing.active?a("div",{staticClass:"notification"},[a("form",{on:{submit:function(s){return s.preventDefault(),t.kickoff_pairing(s)}}},[a("label",{staticClass:"label has-text-weight-normal"},[t._v(" Remote pairing request from "),a("b",[t._v(t._s(t.pairing.remote))])]),a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.pairing_req.pin,expression:"pairing_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter pairing code"},domProps:{value:t.pairing_req.pin},on:{input:function(s){s.target.composing||t.$set(t.pairing_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Send")])])])])]):t._e(),t.pairing.active?t._e():a("div",{staticClass:"content"},[a("p",[t._v("No active pairing request.")])])])],2),a("content-with-heading",[a("template",{slot:"heading-left"},[a("div",{staticClass:"title is-4"},[t._v("Device Verification")])]),a("template",{slot:"content"},[a("p",{staticClass:"content"},[t._v(" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. ")]),t._l(t.outputs,(function(s){return a("div",{key:s.id},[a("div",{staticClass:"field"},[a("div",{staticClass:"control"},[a("label",{staticClass:"checkbox"},[a("input",{directives:[{name:"model",rawName:"v-model",value:s.selected,expression:"output.selected"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(s.selected)?t._i(s.selected,null)>-1:s.selected},on:{change:[function(a){var e=s.selected,i=a.target,l=!!i.checked;if(Array.isArray(e)){var o=null,n=t._i(e,o);i.checked?n<0&&t.$set(s,"selected",e.concat([o])):n>-1&&t.$set(s,"selected",e.slice(0,n).concat(e.slice(n+1)))}else t.$set(s,"selected",l)},function(a){return t.output_toggle(s.id)}]}}),t._v(" "+t._s(s.name)+" ")])])]),s.needs_auth_key?a("form",{staticClass:"fd-has-margin-bottom",on:{submit:function(a){return a.preventDefault(),t.kickoff_verification(s.id)}}},[a("div",{staticClass:"field is-grouped"},[a("div",{staticClass:"control"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.verification_req.pin,expression:"verification_req.pin"}],staticClass:"input",attrs:{type:"text",placeholder:"Enter verification code"},domProps:{value:t.verification_req.pin},on:{input:function(s){s.target.composing||t.$set(t.verification_req,"pin",s.target.value)}}})]),a("div",{staticClass:"control"},[a("button",{staticClass:"button is-info",attrs:{type:"submit"}},[t._v("Verify")])])])]):t._e()])}))],2)],2)],1)},Fd=[],Gd={name:"SettingsPageRemotesOutputs",components:{ContentWithHeading:Rs,TabsSettings:cd},data(){return{pairing_req:{pin:""},verification_req:{pin:""}}},computed:{pairing(){return this.$store.state.pairing},outputs(){return this.$store.state.outputs}},methods:{kickoff_pairing(){J.pairing_kickoff(this.pairing_req)},output_toggle(t){J.output_toggle(t)},kickoff_verification(t){J.output_update(t,this.verification_req)}},filters:{}},Yd=Gd,Vd=Object(D["a"])(Yd,Bd,Fd,!1,null,null,null),Qd=Vd.exports;e["a"].use(Ps["a"]);const Jd=new Ps["a"]({routes:[{path:"/",name:"PageQueue",component:fa},{path:"/about",name:"About",component:ur},{path:"/now-playing",name:"Now playing",component:La},{path:"/music",redirect:"/music/browse"},{path:"/music/browse",name:"Browse",component:je,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_added",name:"Browse Recently Added",component:ze,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/browse/recently_played",name:"Browse Recently Played",component:We,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/artists",name:"Artists",component:Ai,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/artists/:artist_id",name:"Artist",component:Ei,meta:{show_progress:!0,has_index:!0}},{path:"/music/artists/:artist_id/tracks",name:"Tracks",component:Il,meta:{show_progress:!0,has_index:!0}},{path:"/music/albums",name:"Albums",component:Ui,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/albums/:album_id",name:"Album",component:Qi,meta:{show_progress:!0}},{path:"/music/genres",name:"Genres",component:ml,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/music/genres/:genre",name:"Genre",component:kl,meta:{show_progress:!0,has_index:!0}},{path:"/music/genres/:genre/tracks",name:"GenreTracks",component:Sl,meta:{show_progress:!0,has_index:!0}},{path:"/podcasts",name:"Podcasts",component:Vl,meta:{show_progress:!0}},{path:"/podcasts/:album_id",name:"Podcast",component:so,meta:{show_progress:!0}},{path:"/audiobooks",redirect:"/audiobooks/artists"},{path:"/audiobooks/artists",name:"AudiobooksArtists",component:Co,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/artists/:artist_id",name:"AudiobooksArtist",component:jo,meta:{show_progress:!0}},{path:"/audiobooks/albums",name:"AudiobooksAlbums",component:ho,meta:{show_progress:!0,has_tabs:!0,has_index:!0}},{path:"/audiobooks/:album_id",name:"Audiobook",component:zo,meta:{show_progress:!0}},{path:"/radio",name:"Radio",component:Un,meta:{show_progress:!0}},{path:"/files",name:"Files",component:En,meta:{show_progress:!0}},{path:"/playlists",redirect:"/playlists/0"},{path:"/playlists/:playlist_id",name:"Playlists",component:rn,meta:{show_progress:!0}},{path:"/playlists/:playlist_id/tracks",name:"Playlist",component:hn,meta:{show_progress:!0}},{path:"/search",redirect:"/search/library"},{path:"/search/library",name:"Search Library",component:lr},{path:"/music/spotify",name:"Spotify",component:Hr,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/new-releases",name:"Spotify Browse New Releases",component:Qr,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/featured-playlists",name:"Spotify Browse Featured Playlists",component:ac,meta:{show_progress:!0,has_tabs:!0}},{path:"/music/spotify/artists/:artist_id",name:"Spotify Artist",component:yc,meta:{show_progress:!0}},{path:"/music/spotify/albums/:album_id",name:"Spotify Album",component:zc,meta:{show_progress:!0}},{path:"/music/spotify/playlists/:playlist_id",name:"Spotify Playlist",component:Wc,meta:{show_progress:!0}},{path:"/search/spotify",name:"Spotify Search",component:sd},{path:"/settings/webinterface",name:"Settings Webinterface",component:Td},{path:"/settings/artwork",name:"Settings Artwork",component:Dd},{path:"/settings/online-services",name:"Settings Online Services",component:Wd},{path:"/settings/remotes-outputs",name:"Settings Remotes Outputs",component:Qd}],scrollBehavior(t,s,a){return a?new Promise((t,s)=>{setTimeout(()=>{t(a)},10)}):t.path===s.path&&t.hash?{selector:t.hash,offset:{x:0,y:120}}:t.hash?new Promise((s,a)=>{setTimeout(()=>{s({selector:t.hash,offset:{x:0,y:120}})},10)}):t.meta.has_index?new Promise((s,a)=>{setTimeout(()=>{t.meta.has_tabs?s({selector:"#top",offset:{x:0,y:140}}):s({selector:"#top",offset:{x:0,y:100}})},10)}):{x:0,y:0}}});Jd.beforeEach((t,s,a)=>Q.state.show_burger_menu?(Q.commit(O,!1),void a(!1)):Q.state.show_player_menu?(Q.commit(E,!1),void a(!1)):void a(!0));var Kd=a("4623"),Xd=a.n(Kd);Xd()($s.a),e["a"].filter("duration",(function(t,s){return s?$s.a.duration(t).format(s):$s.a.duration(t).format("hh:*mm:ss")})),e["a"].filter("time",(function(t,s){return s?$s()(t).format(s):$s()(t).format()})),e["a"].filter("timeFromNow",(function(t,s){return $s()(t).fromNow(s)})),e["a"].filter("number",(function(t){return t.toLocaleString()})),e["a"].filter("channels",(function(t){return 1===t?"mono":2===t?"stereo":t?t+" channels":""}));var Zd=a("26b9"),tu=a.n(Zd);e["a"].use(tu.a,{color:"hsl(204, 86%, 53%)",failedColor:"red",height:"1px"});var su=a("c28b"),au=a.n(su),eu=a("3659"),iu=a.n(eu),lu=a("85fe"),ou=a("f13c"),nu=a.n(ou);a("de2f"),a("2760"),a("a848");e["a"].config.productionTip=!1,e["a"].use(au.a),e["a"].use(iu.a),e["a"].use(lu["a"]),e["a"].use(nu.a),new e["a"]({el:"#app",router:Jd,store:Q,components:{App:js},template:""})},a848:function(t,s,a){},cf45:function(t,s,a){"use strict";a("53c4")},e6a4:function(t,s){},fd4d:function(t,s,a){"use strict";var e=a("2c75"),i=a("4178"),l=a("2877"),o=Object(l["a"])(i["default"],e["a"],e["b"],!1,null,null,null);s["default"]=o.exports}}); //# sourceMappingURL=app.js.map \ No newline at end of file diff --git a/htdocs/player/js/app.js.map b/htdocs/player/js/app.js.map index 356aafed..6fc3eb6f 100644 --- a/htdocs/player/js/app.js.map +++ b/htdocs/player/js/app.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/templates/ContentWithHero.vue?4028","webpack:///./src/templates/ContentWithHero.vue?0763","webpack:///./node_modules/moment/locale sync ^\\.\\/.*$","webpack:///./src/App.vue?4cd3","webpack:///./src/components/NavbarTop.vue?de51","webpack:///./src/components/NavbarItemLink.vue?c45b","webpack:///./src/store/mutation_types.js","webpack:///src/components/NavbarItemLink.vue","webpack:///./src/components/NavbarItemLink.vue?7266","webpack:///./src/components/NavbarItemLink.vue","webpack:///./src/components/ModalDialog.vue?5ba1","webpack:///src/components/ModalDialog.vue","webpack:///./src/components/ModalDialog.vue?9194","webpack:///./src/components/ModalDialog.vue","webpack:///./src/store/index.js","webpack:///./src/webapi/index.js","webpack:///src/components/NavbarTop.vue","webpack:///./src/components/NavbarTop.vue?2942","webpack:///./src/components/NavbarTop.vue","webpack:///./src/components/NavbarBottom.vue?c3c1","webpack:///./src/audio.js","webpack:///./src/components/NavbarItemOutput.vue?7298","webpack:///src/components/NavbarItemOutput.vue","webpack:///./src/components/NavbarItemOutput.vue?f284","webpack:///./src/components/NavbarItemOutput.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?fc71","webpack:///src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?7730","webpack:///./src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonNext.vue?c7f9","webpack:///src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonNext.vue?fbd2","webpack:///./src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonPrevious.vue?cace","webpack:///src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonPrevious.vue?7ab3","webpack:///./src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonShuffle.vue?c725","webpack:///src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonShuffle.vue?f823","webpack:///./src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonConsume.vue?0dc5","webpack:///src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonConsume.vue?f19d","webpack:///./src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonRepeat.vue?7f58","webpack:///src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonRepeat.vue?51a7","webpack:///./src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?f8f5","webpack:///src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?de1a","webpack:///./src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?f210","webpack:///src/components/PlayerButtonSeekForward.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?1252","webpack:///./src/components/PlayerButtonSeekForward.vue","webpack:///src/components/NavbarBottom.vue","webpack:///./src/components/NavbarBottom.vue?5719","webpack:///./src/components/NavbarBottom.vue","webpack:///./src/components/Notifications.vue?cba3","webpack:///src/components/Notifications.vue","webpack:///./src/components/Notifications.vue?7a53","webpack:///./src/components/Notifications.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?714a","webpack:///src/components/ModalDialogRemotePairing.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?c5a3","webpack:///./src/components/ModalDialogRemotePairing.vue","webpack:///src/App.vue","webpack:///./src/App.vue?1160","webpack:///./src/App.vue","webpack:///./src/pages/PageQueue.vue?f24e","webpack:///./src/templates/ContentWithHeading.vue?668c","webpack:///src/templates/ContentWithHeading.vue","webpack:///./src/templates/ContentWithHeading.vue?9dc6","webpack:///./src/templates/ContentWithHeading.vue","webpack:///./src/components/ListItemQueueItem.vue?a6e0","webpack:///src/components/ListItemQueueItem.vue","webpack:///./src/components/ListItemQueueItem.vue?ce06","webpack:///./src/components/ListItemQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?3afc","webpack:///src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?f77a","webpack:///./src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?add0","webpack:///src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?1d31","webpack:///./src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?43dc","webpack:///src/components/ModalDialogPlaylistSave.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?2442","webpack:///./src/components/ModalDialogPlaylistSave.vue","webpack:///src/pages/PageQueue.vue","webpack:///./src/pages/PageQueue.vue?adc0","webpack:///./src/pages/PageQueue.vue","webpack:///./src/pages/PageNowPlaying.vue?799b","webpack:///./src/components/CoverArtwork.vue?761c","webpack:///./src/lib/SVGRenderer.js","webpack:///src/components/CoverArtwork.vue","webpack:///./src/components/CoverArtwork.vue?5f40","webpack:///./src/components/CoverArtwork.vue","webpack:///src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageNowPlaying.vue?5a32","webpack:///./src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageBrowse.vue?1373","webpack:///./src/pages/mixin.js","webpack:///./src/components/TabsMusic.vue?40ea","webpack:///src/components/TabsMusic.vue","webpack:///./src/components/TabsMusic.vue?2d68","webpack:///./src/components/TabsMusic.vue","webpack:///./src/components/ListAlbums.vue?929c","webpack:///./src/components/ListItemAlbum.vue?dd10","webpack:///src/components/ListItemAlbum.vue","webpack:///./src/components/ListItemAlbum.vue?b729","webpack:///./src/components/ListItemAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?1c56","webpack:///src/components/ModalDialogAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?f2cf","webpack:///./src/components/ModalDialogAlbum.vue","webpack:///./src/lib/Albums.js","webpack:///src/components/ListAlbums.vue","webpack:///./src/components/ListAlbums.vue?f117","webpack:///./src/components/ListAlbums.vue","webpack:///./src/components/ListTracks.vue?bff4","webpack:///./src/components/ListItemTrack.vue?2efe","webpack:///src/components/ListItemTrack.vue","webpack:///./src/components/ListItemTrack.vue?c143","webpack:///./src/components/ListItemTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?b7c4","webpack:///src/components/ModalDialogTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?b9e3","webpack:///./src/components/ModalDialogTrack.vue","webpack:///src/components/ListTracks.vue","webpack:///./src/components/ListTracks.vue?1a43","webpack:///./src/components/ListTracks.vue","webpack:///src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowse.vue?ac81","webpack:///./src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?09db","webpack:///src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?11a8","webpack:///./src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?d88b","webpack:///src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?b76d","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageArtists.vue?6490","webpack:///./src/components/IndexButtonList.vue?6da6","webpack:///src/components/IndexButtonList.vue","webpack:///./src/components/IndexButtonList.vue?fb40","webpack:///./src/components/IndexButtonList.vue","webpack:///./src/components/ListArtists.vue?847f","webpack:///./src/components/ListItemArtist.vue?f16f","webpack:///src/components/ListItemArtist.vue","webpack:///./src/components/ListItemArtist.vue?e871","webpack:///./src/components/ListItemArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?53d4","webpack:///src/components/ModalDialogArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?3f0b","webpack:///./src/components/ModalDialogArtist.vue","webpack:///./src/lib/Artists.js","webpack:///src/components/ListArtists.vue","webpack:///./src/components/ListArtists.vue?f6f9","webpack:///./src/components/ListArtists.vue","webpack:///./src/components/DropdownMenu.vue?0bb4","webpack:///src/components/DropdownMenu.vue","webpack:///./src/components/DropdownMenu.vue?183a","webpack:///./src/components/DropdownMenu.vue","webpack:///src/pages/PageArtists.vue","webpack:///./src/pages/PageArtists.vue?06ce","webpack:///./src/pages/PageArtists.vue","webpack:///./src/pages/PageArtist.vue?e48c","webpack:///src/pages/PageArtist.vue","webpack:///./src/pages/PageArtist.vue?54da","webpack:///./src/pages/PageArtist.vue","webpack:///./src/pages/PageAlbums.vue?ef39","webpack:///src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbums.vue?dd41","webpack:///./src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbum.vue?18f1","webpack:///src/pages/PageAlbum.vue","webpack:///./src/pages/PageAlbum.vue?07be","webpack:///./src/pages/PageAlbum.vue","webpack:///./src/pages/PageGenres.vue?fa46","webpack:///./src/components/ListItemGenre.vue?6932","webpack:///src/components/ListItemGenre.vue","webpack:///./src/components/ListItemGenre.vue?50b2","webpack:///./src/components/ListItemGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?a9a8","webpack:///src/components/ModalDialogGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?0658","webpack:///./src/components/ModalDialogGenre.vue","webpack:///src/pages/PageGenres.vue","webpack:///./src/pages/PageGenres.vue?9722","webpack:///./src/pages/PageGenres.vue","webpack:///./src/pages/PageGenre.vue?acc7","webpack:///src/pages/PageGenre.vue","webpack:///./src/pages/PageGenre.vue?4090","webpack:///./src/pages/PageGenre.vue","webpack:///./src/pages/PageGenreTracks.vue?1aa9","webpack:///src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageGenreTracks.vue?0317","webpack:///./src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?2ab7","webpack:///src/pages/PageArtistTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?7e28","webpack:///./src/pages/PageArtistTracks.vue","webpack:///./src/pages/PagePodcasts.vue?dee5","webpack:///./src/components/ModalDialogAddRss.vue?a4d8","webpack:///src/components/ModalDialogAddRss.vue","webpack:///./src/components/ModalDialogAddRss.vue?3bb2","webpack:///./src/components/ModalDialogAddRss.vue","webpack:///src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcasts.vue?ec36","webpack:///./src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcast.vue?aef1","webpack:///src/pages/PagePodcast.vue","webpack:///./src/pages/PagePodcast.vue?7353","webpack:///./src/pages/PagePodcast.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?bd14","webpack:///./src/components/TabsAudiobooks.vue?023a","webpack:///src/components/TabsAudiobooks.vue","webpack:///./src/components/TabsAudiobooks.vue?b63b","webpack:///./src/components/TabsAudiobooks.vue","webpack:///src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?5019","webpack:///./src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?bdc7","webpack:///src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?35bb","webpack:///./src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?64b2","webpack:///src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?2426","webpack:///./src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?fc45","webpack:///src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?49ae","webpack:///./src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PagePlaylists.vue?3525","webpack:///./src/components/ListPlaylists.vue?5821","webpack:///./src/components/ListItemPlaylist.vue?bf8b","webpack:///src/components/ListItemPlaylist.vue","webpack:///./src/components/ListItemPlaylist.vue?5b1a","webpack:///./src/components/ListItemPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?d8c7","webpack:///src/components/ModalDialogPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?8ac7","webpack:///./src/components/ModalDialogPlaylist.vue","webpack:///src/components/ListPlaylists.vue","webpack:///./src/components/ListPlaylists.vue?d5a9","webpack:///./src/components/ListPlaylists.vue","webpack:///src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylists.vue?5936","webpack:///./src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylist.vue?56d6","webpack:///src/pages/PagePlaylist.vue","webpack:///./src/pages/PagePlaylist.vue?f646","webpack:///./src/pages/PagePlaylist.vue","webpack:///./src/pages/PageFiles.vue?8429","webpack:///./src/components/ListItemDirectory.vue?871c","webpack:///src/components/ListItemDirectory.vue","webpack:///./src/components/ListItemDirectory.vue?7c5d","webpack:///./src/components/ListItemDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?114d","webpack:///src/components/ModalDialogDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?cef6","webpack:///./src/components/ModalDialogDirectory.vue","webpack:///src/pages/PageFiles.vue","webpack:///./src/pages/PageFiles.vue?c791","webpack:///./src/pages/PageFiles.vue","webpack:///./src/pages/PageRadioStreams.vue?89c3","webpack:///src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageRadioStreams.vue?16e0","webpack:///./src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageSearch.vue?1bde","webpack:///./src/templates/ContentText.vue?c7ba","webpack:///src/templates/ContentText.vue","webpack:///./src/templates/ContentText.vue?bdf7","webpack:///./src/templates/ContentText.vue","webpack:///./src/components/TabsSearch.vue?66c5","webpack:///src/components/TabsSearch.vue","webpack:///./src/components/TabsSearch.vue?6aa8","webpack:///./src/components/TabsSearch.vue","webpack:///src/pages/PageSearch.vue","webpack:///./src/pages/PageSearch.vue?3d2a","webpack:///./src/pages/PageSearch.vue","webpack:///./src/pages/PageAbout.vue?f2d3","webpack:///src/pages/PageAbout.vue","webpack:///./src/pages/PageAbout.vue?4563","webpack:///./src/pages/PageAbout.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?d50e","webpack:///./src/components/SpotifyListItemAlbum.vue?a03a","webpack:///src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemAlbum.vue?cf43","webpack:///./src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?7b43","webpack:///src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?308c","webpack:///./src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?c353","webpack:///src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?7978","webpack:///./src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?ceed","webpack:///src/components/SpotifyModalDialogPlaylist.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?3b0b","webpack:///./src/components/SpotifyModalDialogPlaylist.vue","webpack:///src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?0c73","webpack:///./src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?52c5","webpack:///src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?d8c2","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?aa20","webpack:///src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?a73a","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageArtist.vue?d1c4","webpack:///./src/components/SpotifyModalDialogArtist.vue?ec63","webpack:///src/components/SpotifyModalDialogArtist.vue","webpack:///./src/components/SpotifyModalDialogArtist.vue?62f6","webpack:///./src/components/SpotifyModalDialogArtist.vue","webpack:///src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageArtist.vue?beba","webpack:///./src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?3600","webpack:///./src/components/SpotifyListItemTrack.vue?c4fc","webpack:///src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyListItemTrack.vue?d9dc","webpack:///./src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?c6ae","webpack:///src/components/SpotifyModalDialogTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?60d1","webpack:///./src/components/SpotifyModalDialogTrack.vue","webpack:///src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?af1e","webpack:///./src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?0611","webpack:///src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?4d63","webpack:///./src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPageSearch.vue?598b","webpack:///./src/components/SpotifyListItemArtist.vue?6e92","webpack:///src/components/SpotifyListItemArtist.vue","webpack:///./src/components/SpotifyListItemArtist.vue?afa1","webpack:///./src/components/SpotifyListItemArtist.vue","webpack:///src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SpotifyPageSearch.vue?f792","webpack:///./src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?32f4","webpack:///./src/components/TabsSettings.vue?b72a","webpack:///src/components/TabsSettings.vue","webpack:///./src/components/TabsSettings.vue?e341","webpack:///./src/components/TabsSettings.vue","webpack:///./src/components/SettingsCheckbox.vue?f680","webpack:///src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsCheckbox.vue?4dd0","webpack:///./src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsTextfield.vue?a254","webpack:///src/components/SettingsTextfield.vue","webpack:///./src/components/SettingsTextfield.vue?aae5","webpack:///./src/components/SettingsTextfield.vue","webpack:///src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?b41a","webpack:///./src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageArtwork.vue?9535","webpack:///src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageArtwork.vue?4d58","webpack:///./src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?60b0","webpack:///src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?e878","webpack:///./src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?dabe","webpack:///src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?69f8","webpack:///./src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/router/index.js","webpack:///./src/filter/index.js","webpack:///./src/progress/index.js","webpack:///./src/main.js","webpack:///./src/components/Notifications.vue?838a","webpack:///./src/templates/ContentWithHero.vue"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","render","_vm","this","_h","$createElement","_c","_self","staticClass","staticStyle","_t","staticRenderFns","map","webpackContext","req","id","webpackContextResolve","e","Error","code","keys","resolve","attrs","directives","rawName","expression","pairing_active","on","$event","show_burger_menu","show_player_menu","style","_e","class","show_settings_menu","on_click_outside_settings","_m","_v","stopPropagation","preventDefault","show_update_library","library","updating","update_library","slot","domProps","Array","isArray","rescan_metadata","_i","$$a","$$el","target","$$c","checked","$$v","$$i","concat","is_active","full_path","open_link","UPDATE_CONFIG","UPDATE_SETTINGS","UPDATE_SETTINGS_OPTION","UPDATE_LIBRARY_STATS","UPDATE_LIBRARY_AUDIOBOOKS_COUNT","UPDATE_LIBRARY_PODCASTS_COUNT","UPDATE_OUTPUTS","UPDATE_PLAYER_STATUS","UPDATE_QUEUE","UPDATE_LASTFM","UPDATE_SPOTIFY","UPDATE_PAIRING","SPOTIFY_NEW_RELEASES","SPOTIFY_FEATURED_PLAYLISTS","ADD_NOTIFICATION","DELETE_NOTIFICATION","ADD_RECENT_SEARCH","HIDE_SINGLES","HIDE_SPOTIFY","ARTISTS_SORT","ARTIST_ALBUMS_SORT","ALBUMS_SORT","SHOW_ONLY_NEXT_ITEMS","SHOW_BURGER_MENU","SHOW_PLAYER_MENU","props","to","String","exact","Boolean","computed","$route","path","startsWith","$store","state","commit","methods","$router","resolved","href","component","$emit","_s","title","close_action","delete_action","ok_action","Vue","use","Vuex","Store","config","websocket_port","version","buildoptions","settings","categories","artists","albums","songs","db_playtime","audiobooks_count","podcasts_count","outputs","player","repeat","consume","shuffle","volume","item_id","item_length_ms","item_progress_ms","queue","count","items","lastfm","spotify","pairing","spotify_new_releases","spotify_featured_playlists","notifications","next_id","list","recent_searches","hide_singles","hide_spotify","artists_sort","artist_albums_sort","albums_sort","show_only_next_items","getters","now_playing","item","find","undefined","settings_webinterface","elem","settings_option_show_composer_now_playing","option","options","settings_option_show_composer_for_genre","settings_category","categoryName","settings_option","optionName","category","mutations","types","settingCategory","settingOption","libraryStats","playerStatus","newReleases","featuredPlaylists","notification","topic","index","findIndex","indexOf","query","pop","hideSingles","hideSpotify","sort","showOnlyNextItems","showBurgerMenu","showPlayerMenu","actions","add_notification","newNotification","type","text","timeout","setTimeout","axios","interceptors","response","error","request","status","responseURL","store","dispatch","statusText","Promise","reject","settings_update","put","library_stats","library_update","library_rescan","library_count","queue_clear","queue_remove","itemId","delete","queue_move","newPosition","queue_add","uri","post","then","queue_add_next","position","queue_expression_add","params","queue_expression_add_next","queue_save_playlist","player_status","player_play_uri","uris","clear","playback","playback_from_position","player_play_expression","player_play","player_playpos","player_playid","player_pause","player_stop","player_next","player_previous","player_shuffle","newState","player_consume","player_repeat","newRepeatMode","player_volume","player_output_volume","outputId","outputVolume","player_seek_to_pos","player_seek","seekMs","output_update","output","output_toggle","library_artists","media_kind","library_artist","artistId","library_artist_albums","library_albums","library_album","albumId","library_album_tracks","filter","limit","offset","library_album_track_update","attributes","library_genres","library_genre","genre","genreParams","library_genre_tracks","library_radio_streams","library_artist_tracks","artist","artistParams","library_podcasts_new_episodes","episodesParams","library_podcast_episodes","library_add","url","library_playlist_delete","playlistId","library_playlists","library_playlist_folder","library_playlist","library_playlist_tracks","library_track","trackId","library_track_playlists","library_track_update","library_files","directory","filesParams","search","searchParams","spotify_login","credentials","lastfm_login","lastfm_logout","pairing_kickoff","pairingReq","artwork_url_append_size_params","artworkUrl","maxwidth","maxheight","includes","components","webapi_token_valid","webapi","watch","is_now_playing_page","data_kind","album","toggle_mute_volume","set_volume","_l","loading","playing","togglePlay","stream_volume","set_stream_volume","_audio","Audio","_context","_source","_gain","setupAudio","AudioContext","webkitAudioContext","createMediaElementSource","createGain","connect","destination","addEventListener","play","setVolume","parseFloat","gain","playSource","source","stopAudio","resume","src","Date","now","crossOrigin","load","pause","stop","close","selected","set_enabled","type_class","play_next","newVolume","values","disabled","toggle_play_pause","icon_style","is_playing","is_pause_allowed","show_disabled_message","play_previous","is_shuffle","toggle_shuffle_mode","is_consume","toggle_consume_mode","is_repeat_off","toggle_repeat_mode","is_repeat_all","is_repeat_single","seek","is_stopped","seek_ms","NavbarItemLink","NavbarItemOutput","RangeSlider","PlayerButtonPlayPause","PlayerButtonNext","PlayerButtonPrevious","PlayerButtonShuffle","PlayerButtonConsume","PlayerButtonRepeat","PlayerButtonSeekForward","PlayerButtonSeekBack","old_volume","show_outputs_menu","show_desktop_outputs_menu","a","closeAudio","playChannel","channel","remove","kickoff_pairing","remote","pairing_req","ref","composing","$set","pin","show","$refs","pin_field","focus","template","token_timer_id","reconnect_attempts","created","$Progress","start","beforeEach","from","next","meta","show_progress","progress","parseMeta","afterEach","finish","document","library_name","open_ws","vm","protocol","location","wsUrl","hostname","socket","onopen","send","JSON","stringify","update_outputs","update_player_status","update_library_stats","update_settings","update_queue","update_spotify","update_lastfm","update_pairing","onclose","onerror","onmessage","parse","notify","clearTimeout","webapi_token_expires_in","webapi_token","active","update_is_clipped","querySelector","classList","add","update_show_next_items","open_add_stream_dialog","edit_mode","queue_items","save_dialog","move_item","model","callback","current_position","open_dialog","show_details_modal","selected_item","show_url_modal","show_pls_save_modal","$slots","options_visible","scroll_to_content","scroll_to_top","observer_options","visibilityChanged","intersection","rootMargin","threshold","scrollTo","has_tabs","$scrollTo","isVisible","is_next","open_album","open_album_artist","album_artist","composer","year","open_genre","track_number","disc_number","_f","length_ms","open_spotify_artist","open_spotify_album","samplerate","channels","bitrate","spotify_track","spotifyApi","setAccessToken","getTrack","lastIndexOf","add_stream","url_field","save","playlist_name","playlist_name_field","allow_modifying_stored_playlists","default_playlist_directory","nowPlaying","oldPosition","oldIndex","newIndex","artwork_url","artwork_url_with_size","dataURI","SVGRenderer","svg","width","height","textColor","fontFamily","fontSize","fontWeight","backgroundColor","caption","encodeURIComponent","font_family","font_size","font_weight","substring","hex","background_color","replace","parseInt","substr","g","b","luma","is_background_light","text_color","rendererParams","interval_id","setInterval","tick","catch","recently_added","open_browse","recently_played","LoadDataBeforeEnterMixin","dataObject","beforeRouteEnter","set","beforeRouteUpdate","idx","grouped","selected_album","open_remove_podcast_dialog","show_remove_podcast_modal","remove_podcast","rss_playlist_to_remove","name_sort","charAt","toUpperCase","listeners","click","date_released","media_kind_resolved","mark_played","open_artist","track_count","time_added","artwork_visible","artwork_loaded","artwork_error","Albums","constructor","group","sortedAndFiltered","indexList","init","createSortedAndFilteredList","createGroupedList","createIndexList","getAlbumIndex","isAlbumVisible","Set","albumsSorted","hideOther","localeCompare","reduce","albums_list","is_grouped","rssPlaylists","pl","track","play_track","selected_track","slots","title_sort","play_count","mark_new","Math","floor","rating","browseData","all","tracks","mixins","show_track_details_modal","artists_list","sort_options","char","nav","specialChars","selected_artist","album_count","Artists","getArtistIndex","isArtistVisible","artistsSorted","select","artistsData","scrollToTop","show_artist_details_modal","open_tracks","artistData","join","albumsData","index_list","show_album_details_modal","albumData","genres","total","selected_genre","genresData","show_genre_details_modal","genre_albums","genreData","tracksData","track_uris","new_episodes","mark_all_played","open_track_dialog","reload_new_episodes","open_add_podcast_dialog","reload_podcasts","forEach","ep","reload_tracks","new_tracks","playlist","playlists","open_playlist","selected_playlist","folder","playlistsData","show_playlist_details_modal","playlistData","random","current_directory","open_directory_dialog","open_parent_directory","files","open_directory","open_playlist_dialog","show_directory_details_modal","selected_directory","filesData","directories","dir","parent","streamsData","new_search","search_query","recent_search","open_recent_search","show_tracks","open_search_tracks","toLocaleString","show_artists","open_search_artists","show_albums","open_search_albums","show_playlists","open_search_playlists","show_podcasts","podcasts","open_search_podcasts","show_audiobooks","audiobooks","open_search_audiobooks","search_library","search_spotify","route_query","route","search_field","searchMusic","searchAudiobooks","searchPodcasts","trim","blur","mounted","show_update_dropdown","update","update_meta","updated_at","started_at","filters","array","open_album_dialog","album_type","release_date","owner","display_name","images","getNewReleases","getFeaturedPlaylists","load_next","popularity","followers","append_albums","$state","getArtistAlbums","loaded","complete","context_uri","duration_ms","getAlbum","album_id","append_tracks","getPlaylistTracks","search_tracks_next","open_artist_dialog","search_artists_next","search_albums_next","search_playlists_next","search_param","validSearchTypes","reset","search_all","spotify_search","market","webapi_country","split","set_update_timer","statusUpdate","info","timerDelay","timerId","category_name","option_name","newValue","settings_checkbox","update_setting","clear_status","placeholder","settings_text","libspotify_installed","libspotify_user","libspotify_logged_in","login_libspotify","libspotify","errors","user","password","webapi_user","spotify_missing_scope","oauth_uri","spotify_required_scope","enabled","logoutLastfm","scrobbling_enabled","login_lastfm","webapi_granted_scope","webapi_required_scope","scope","success","kickoff_verification","verification_req","VueRouter","router","routes","PageQueue","PageAbout","PageNowPlaying","redirect","PageBrowse","PageBrowseRecentlyAdded","PageBrowseRecentlyPlayed","PageArtists","has_index","PageArtist","PageArtistTracks","PageAlbums","PageAlbum","PageGenres","PageGenre","PageGenreTracks","PagePodcasts","PagePodcast","PageAudiobooksArtists","PageAudiobooksArtist","PageAudiobooksAlbums","PageAudiobooksAlbum","PageRadioStreams","PageFiles","PagePlaylists","PagePlaylist","PageSearch","SpotifyPageBrowse","SpotifyPageBrowseNewReleases","SpotifyPageBrowseFeaturedPlaylists","SpotifyPageArtist","SpotifyPageAlbum","SpotifyPagePlaylist","SpotifyPageSearch","SettingsPageWebinterface","SettingsPageArtwork","SettingsPageOnlineServices","SettingsPageRemotesOutputs","scrollBehavior","savedPosition","hash","selector","x","y","momentDurationFormatSetup","moment","format","duration","withoutSuffix","fromNow","VueProgressBar","color","failedColor","productionTip","vClickOutside","VueTinyLazyloadImg","VueObserveVisibility","VueScrollTo","el","App"],"mappings":"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","file":"player/js/app.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\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 = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && 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(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"app\": 0\n \t};\n\n \tvar deferredModules = [];\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, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\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 \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([0,\"chunk-vendors\"]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"hero is-light is-bold fd-content\"},[_c('div',{staticClass:\"hero-body\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"columns\",staticStyle:{\"flex-direction\":\"row-reverse\"}},[_c('div',{staticClass:\"column fd-has-cover\"},[_vm._t(\"heading-right\")],2),_c('div',{staticClass:\"column is-three-fifths has-text-centered-mobile\",staticStyle:{\"margin\":\"auto 0\"}},[_vm._t(\"heading-left\")],2)])])])])])]),_c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"","var map = {\n\t\"./af\": \"2bfb\",\n\t\"./af.js\": \"2bfb\",\n\t\"./ar\": \"8e73\",\n\t\"./ar-dz\": \"a356\",\n\t\"./ar-dz.js\": \"a356\",\n\t\"./ar-kw\": \"423e\",\n\t\"./ar-kw.js\": \"423e\",\n\t\"./ar-ly\": \"1cfd\",\n\t\"./ar-ly.js\": \"1cfd\",\n\t\"./ar-ma\": \"0a84\",\n\t\"./ar-ma.js\": \"0a84\",\n\t\"./ar-sa\": \"8230\",\n\t\"./ar-sa.js\": \"8230\",\n\t\"./ar-tn\": \"6d83\",\n\t\"./ar-tn.js\": \"6d83\",\n\t\"./ar.js\": \"8e73\",\n\t\"./az\": \"485c\",\n\t\"./az.js\": \"485c\",\n\t\"./be\": \"1fc1\",\n\t\"./be.js\": \"1fc1\",\n\t\"./bg\": \"84aa\",\n\t\"./bg.js\": \"84aa\",\n\t\"./bm\": \"a7fa\",\n\t\"./bm.js\": \"a7fa\",\n\t\"./bn\": \"9043\",\n\t\"./bn-bd\": \"9686\",\n\t\"./bn-bd.js\": \"9686\",\n\t\"./bn.js\": \"9043\",\n\t\"./bo\": \"d26a\",\n\t\"./bo.js\": \"d26a\",\n\t\"./br\": \"6887\",\n\t\"./br.js\": \"6887\",\n\t\"./bs\": \"2554\",\n\t\"./bs.js\": \"2554\",\n\t\"./ca\": \"d716\",\n\t\"./ca.js\": \"d716\",\n\t\"./cs\": \"3c0d\",\n\t\"./cs.js\": \"3c0d\",\n\t\"./cv\": \"03ec\",\n\t\"./cv.js\": \"03ec\",\n\t\"./cy\": \"9797\",\n\t\"./cy.js\": \"9797\",\n\t\"./da\": \"0f14\",\n\t\"./da.js\": \"0f14\",\n\t\"./de\": \"b469\",\n\t\"./de-at\": \"b3eb\",\n\t\"./de-at.js\": \"b3eb\",\n\t\"./de-ch\": \"bb71\",\n\t\"./de-ch.js\": \"bb71\",\n\t\"./de.js\": \"b469\",\n\t\"./dv\": \"598a\",\n\t\"./dv.js\": \"598a\",\n\t\"./el\": \"8d47\",\n\t\"./el.js\": \"8d47\",\n\t\"./en-au\": \"0e6b\",\n\t\"./en-au.js\": \"0e6b\",\n\t\"./en-ca\": \"3886\",\n\t\"./en-ca.js\": \"3886\",\n\t\"./en-gb\": \"39a6\",\n\t\"./en-gb.js\": \"39a6\",\n\t\"./en-ie\": \"e1d3\",\n\t\"./en-ie.js\": \"e1d3\",\n\t\"./en-il\": \"7333\",\n\t\"./en-il.js\": \"7333\",\n\t\"./en-in\": \"ec2e\",\n\t\"./en-in.js\": \"ec2e\",\n\t\"./en-nz\": \"6f50\",\n\t\"./en-nz.js\": \"6f50\",\n\t\"./en-sg\": \"b7e9\",\n\t\"./en-sg.js\": \"b7e9\",\n\t\"./eo\": \"65db\",\n\t\"./eo.js\": \"65db\",\n\t\"./es\": \"898b\",\n\t\"./es-do\": \"0a3c\",\n\t\"./es-do.js\": \"0a3c\",\n\t\"./es-mx\": \"b5b7\",\n\t\"./es-mx.js\": \"b5b7\",\n\t\"./es-us\": \"55c9\",\n\t\"./es-us.js\": \"55c9\",\n\t\"./es.js\": \"898b\",\n\t\"./et\": \"ec18\",\n\t\"./et.js\": \"ec18\",\n\t\"./eu\": \"0ff2\",\n\t\"./eu.js\": \"0ff2\",\n\t\"./fa\": \"8df4\",\n\t\"./fa.js\": \"8df4\",\n\t\"./fi\": \"81e9\",\n\t\"./fi.js\": \"81e9\",\n\t\"./fil\": \"d69a\",\n\t\"./fil.js\": \"d69a\",\n\t\"./fo\": \"0721\",\n\t\"./fo.js\": \"0721\",\n\t\"./fr\": \"9f26\",\n\t\"./fr-ca\": \"d9f8\",\n\t\"./fr-ca.js\": \"d9f8\",\n\t\"./fr-ch\": \"0e49\",\n\t\"./fr-ch.js\": \"0e49\",\n\t\"./fr.js\": \"9f26\",\n\t\"./fy\": \"7118\",\n\t\"./fy.js\": \"7118\",\n\t\"./ga\": \"5120\",\n\t\"./ga.js\": \"5120\",\n\t\"./gd\": \"f6b4\",\n\t\"./gd.js\": \"f6b4\",\n\t\"./gl\": \"8840\",\n\t\"./gl.js\": \"8840\",\n\t\"./gom-deva\": \"aaf2\",\n\t\"./gom-deva.js\": \"aaf2\",\n\t\"./gom-latn\": \"0caa\",\n\t\"./gom-latn.js\": \"0caa\",\n\t\"./gu\": \"e0c5\",\n\t\"./gu.js\": \"e0c5\",\n\t\"./he\": \"c7aa\",\n\t\"./he.js\": \"c7aa\",\n\t\"./hi\": \"dc4d\",\n\t\"./hi.js\": \"dc4d\",\n\t\"./hr\": \"4ba9\",\n\t\"./hr.js\": \"4ba9\",\n\t\"./hu\": \"5b14\",\n\t\"./hu.js\": \"5b14\",\n\t\"./hy-am\": \"d6b6\",\n\t\"./hy-am.js\": \"d6b6\",\n\t\"./id\": \"5038\",\n\t\"./id.js\": \"5038\",\n\t\"./is\": \"0558\",\n\t\"./is.js\": \"0558\",\n\t\"./it\": \"6e98\",\n\t\"./it-ch\": \"6f12\",\n\t\"./it-ch.js\": \"6f12\",\n\t\"./it.js\": \"6e98\",\n\t\"./ja\": \"079e\",\n\t\"./ja.js\": \"079e\",\n\t\"./jv\": \"b540\",\n\t\"./jv.js\": \"b540\",\n\t\"./ka\": \"201b\",\n\t\"./ka.js\": \"201b\",\n\t\"./kk\": \"6d79\",\n\t\"./kk.js\": \"6d79\",\n\t\"./km\": \"e81d\",\n\t\"./km.js\": \"e81d\",\n\t\"./kn\": \"3e92\",\n\t\"./kn.js\": \"3e92\",\n\t\"./ko\": \"22f8\",\n\t\"./ko.js\": \"22f8\",\n\t\"./ku\": \"2421\",\n\t\"./ku.js\": \"2421\",\n\t\"./ky\": \"9609\",\n\t\"./ky.js\": \"9609\",\n\t\"./lb\": \"440c\",\n\t\"./lb.js\": \"440c\",\n\t\"./lo\": \"b29d\",\n\t\"./lo.js\": \"b29d\",\n\t\"./lt\": \"26f9\",\n\t\"./lt.js\": \"26f9\",\n\t\"./lv\": \"b97c\",\n\t\"./lv.js\": \"b97c\",\n\t\"./me\": \"293c\",\n\t\"./me.js\": \"293c\",\n\t\"./mi\": \"688b\",\n\t\"./mi.js\": \"688b\",\n\t\"./mk\": \"6909\",\n\t\"./mk.js\": \"6909\",\n\t\"./ml\": \"02fb\",\n\t\"./ml.js\": \"02fb\",\n\t\"./mn\": \"958b\",\n\t\"./mn.js\": \"958b\",\n\t\"./mr\": \"39bd\",\n\t\"./mr.js\": \"39bd\",\n\t\"./ms\": \"ebe4\",\n\t\"./ms-my\": \"6403\",\n\t\"./ms-my.js\": \"6403\",\n\t\"./ms.js\": \"ebe4\",\n\t\"./mt\": \"1b45\",\n\t\"./mt.js\": \"1b45\",\n\t\"./my\": \"8689\",\n\t\"./my.js\": \"8689\",\n\t\"./nb\": \"6ce3\",\n\t\"./nb.js\": \"6ce3\",\n\t\"./ne\": \"3a39\",\n\t\"./ne.js\": \"3a39\",\n\t\"./nl\": \"facd\",\n\t\"./nl-be\": \"db29\",\n\t\"./nl-be.js\": \"db29\",\n\t\"./nl.js\": \"facd\",\n\t\"./nn\": \"b84c\",\n\t\"./nn.js\": \"b84c\",\n\t\"./oc-lnc\": \"167b\",\n\t\"./oc-lnc.js\": \"167b\",\n\t\"./pa-in\": \"f3ff\",\n\t\"./pa-in.js\": \"f3ff\",\n\t\"./pl\": \"8d57\",\n\t\"./pl.js\": \"8d57\",\n\t\"./pt\": \"f260\",\n\t\"./pt-br\": \"d2d4\",\n\t\"./pt-br.js\": \"d2d4\",\n\t\"./pt.js\": \"f260\",\n\t\"./ro\": \"972c\",\n\t\"./ro.js\": \"972c\",\n\t\"./ru\": \"957c\",\n\t\"./ru.js\": \"957c\",\n\t\"./sd\": \"6784\",\n\t\"./sd.js\": \"6784\",\n\t\"./se\": \"ffff\",\n\t\"./se.js\": \"ffff\",\n\t\"./si\": \"eda5\",\n\t\"./si.js\": \"eda5\",\n\t\"./sk\": \"7be6\",\n\t\"./sk.js\": \"7be6\",\n\t\"./sl\": \"8155\",\n\t\"./sl.js\": \"8155\",\n\t\"./sq\": \"c8f3\",\n\t\"./sq.js\": \"c8f3\",\n\t\"./sr\": \"cf1e\",\n\t\"./sr-cyrl\": \"13e9\",\n\t\"./sr-cyrl.js\": \"13e9\",\n\t\"./sr.js\": \"cf1e\",\n\t\"./ss\": \"52bd\",\n\t\"./ss.js\": \"52bd\",\n\t\"./sv\": \"5fbd\",\n\t\"./sv.js\": \"5fbd\",\n\t\"./sw\": \"74dc\",\n\t\"./sw.js\": \"74dc\",\n\t\"./ta\": \"3de5\",\n\t\"./ta.js\": \"3de5\",\n\t\"./te\": \"5cbb\",\n\t\"./te.js\": \"5cbb\",\n\t\"./tet\": \"576c\",\n\t\"./tet.js\": \"576c\",\n\t\"./tg\": \"3b1b\",\n\t\"./tg.js\": \"3b1b\",\n\t\"./th\": \"10e8\",\n\t\"./th.js\": \"10e8\",\n\t\"./tk\": \"5aff\",\n\t\"./tk.js\": \"5aff\",\n\t\"./tl-ph\": \"0f38\",\n\t\"./tl-ph.js\": \"0f38\",\n\t\"./tlh\": \"cf75\",\n\t\"./tlh.js\": \"cf75\",\n\t\"./tr\": \"0e81\",\n\t\"./tr.js\": \"0e81\",\n\t\"./tzl\": \"cf51\",\n\t\"./tzl.js\": \"cf51\",\n\t\"./tzm\": \"c109\",\n\t\"./tzm-latn\": \"b53d\",\n\t\"./tzm-latn.js\": \"b53d\",\n\t\"./tzm.js\": \"c109\",\n\t\"./ug-cn\": \"6117\",\n\t\"./ug-cn.js\": \"6117\",\n\t\"./uk\": \"ada2\",\n\t\"./uk.js\": \"ada2\",\n\t\"./ur\": \"5294\",\n\t\"./ur.js\": \"5294\",\n\t\"./uz\": \"2e8c\",\n\t\"./uz-latn\": \"010e\",\n\t\"./uz-latn.js\": \"010e\",\n\t\"./uz.js\": \"2e8c\",\n\t\"./vi\": \"2921\",\n\t\"./vi.js\": \"2921\",\n\t\"./x-pseudo\": \"fd7e\",\n\t\"./x-pseudo.js\": \"fd7e\",\n\t\"./yo\": \"7f33\",\n\t\"./yo.js\": \"7f33\",\n\t\"./zh-cn\": \"5c3a\",\n\t\"./zh-cn.js\": \"5c3a\",\n\t\"./zh-hk\": \"49ab\",\n\t\"./zh-hk.js\": \"49ab\",\n\t\"./zh-mo\": \"3a6c\",\n\t\"./zh-mo.js\": \"3a6c\",\n\t\"./zh-tw\": \"90ea\",\n\t\"./zh-tw.js\": \"90ea\"\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = \"4678\";","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('navbar-top'),_c('vue-progress-bar',{staticClass:\"fd-progress-bar\"}),_c('transition',{attrs:{\"name\":\"fade\"}},[_c('router-view',{directives:[{name:\"show\",rawName:\"v-show\",value:(true),expression:\"true\"}]})],1),_c('modal-dialog-remote-pairing',{attrs:{\"show\":_vm.pairing_active},on:{\"close\":function($event){_vm.pairing_active = false}}}),_c('notifications',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.show_burger_menu),expression:\"!show_burger_menu\"}]}),_c('navbar-bottom'),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_burger_menu || _vm.show_player_menu),expression:\"show_burger_menu || show_player_menu\"}],staticClass:\"fd-overlay-fullscreen\",on:{\"click\":function($event){_vm.show_burger_menu = _vm.show_player_menu = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-top-navbar navbar is-light is-fixed-top\",style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"main navigation\"}},[_c('div',{staticClass:\"navbar-brand\"},[(_vm.is_visible_playlists)?_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]):_vm._e(),(_vm.is_visible_music)?_c('navbar-item-link',{attrs:{\"to\":\"/music\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})])]):_vm._e(),(_vm.is_visible_podcasts)?_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})])]):_vm._e(),(_vm.is_visible_audiobooks)?_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})])]):_vm._e(),(_vm.is_visible_radio)?_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})])]):_vm._e(),(_vm.is_visible_files)?_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})])]):_vm._e(),(_vm.is_visible_search)?_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])]):_vm._e(),_c('div',{staticClass:\"navbar-burger\",class:{ 'is-active': _vm.show_burger_menu },on:{\"click\":function($event){_vm.show_burger_menu = !_vm.show_burger_menu}}},[_c('span'),_c('span'),_c('span')])],1),_c('div',{staticClass:\"navbar-menu\",class:{ 'is-active': _vm.show_burger_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item has-dropdown is-hoverable\",class:{ 'is-active': _vm.show_settings_menu },on:{\"click\":_vm.on_click_outside_settings}},[_vm._m(0),_c('div',{staticClass:\"navbar-dropdown is-right\"},[_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Playlists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Music\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/artists\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Artists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/albums\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Albums\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/genres\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Genres\")])]),(_vm.spotify_enabled)?_c('navbar-item-link',{attrs:{\"to\":\"/music/spotify\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Spotify\")])]):_vm._e(),_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Podcasts\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Audiobooks\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Radio\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Files\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Search\")])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('navbar-item-link',{attrs:{\"to\":\"/settings/webinterface\"}},[_vm._v(\"Settings\")]),_c('a',{staticClass:\"navbar-item\",on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();_vm.show_update_library = true; _vm.show_settings_menu = false; _vm.show_burger_menu = false}}},[_vm._v(\" Update Library \")]),_c('navbar-item-link',{attrs:{\"to\":\"/about\"}},[_vm._v(\"About\")]),_c('div',{staticClass:\"navbar-item is-hidden-desktop\",staticStyle:{\"margin-bottom\":\"2.5rem\"}})],1)])])]),_c('modal-dialog',{attrs:{\"show\":_vm.show_update_library,\"title\":\"Update library\",\"ok_action\":_vm.library.updating ? '' : 'Rescan',\"close_action\":\"Close\"},on:{\"ok\":_vm.update_library,\"close\":function($event){_vm.show_update_library = false}}},[_c('template',{slot:\"modal-content\"},[(!_vm.library.updating)?_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Scan for new, deleted and modified files\")]),_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox is-size-7 is-small\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.rescan_metadata),expression:\"rescan_metadata\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(_vm.rescan_metadata)?_vm._i(_vm.rescan_metadata,null)>-1:(_vm.rescan_metadata)},on:{\"change\":function($event){var $$a=_vm.rescan_metadata,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.rescan_metadata=$$a.concat([$$v]))}else{$$i>-1&&(_vm.rescan_metadata=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.rescan_metadata=$$c}}}}),_vm._v(\" Rescan metadata for unmodified files \")])])]):_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Library update in progress ...\")])])])],2),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_settings_menu),expression:\"show_settings_menu\"}],staticClass:\"is-overlay\",staticStyle:{\"z-index\":\"10\",\"width\":\"100vw\",\"height\":\"100vh\"},on:{\"click\":function($event){_vm.show_settings_menu = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-link is-arrowless\"},[_c('span',{staticClass:\"icon is-hidden-touch\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-menu\"})]),_c('span',{staticClass:\"is-hidden-desktop has-text-weight-bold\"},[_vm._v(\"forked-daapd\")])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-item\",class:{ 'is-active': _vm.is_active },attrs:{\"href\":_vm.full_path()},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.open_link()}}},[_vm._t(\"default\")],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","export const UPDATE_CONFIG = 'UPDATE_CONFIG'\nexport const UPDATE_SETTINGS = 'UPDATE_SETTINGS'\nexport const UPDATE_SETTINGS_OPTION = 'UPDATE_SETTINGS_OPTION'\nexport const UPDATE_LIBRARY_STATS = 'UPDATE_LIBRARY_STATS'\nexport const UPDATE_LIBRARY_AUDIOBOOKS_COUNT = 'UPDATE_LIBRARY_AUDIOBOOKS_COUNT'\nexport const UPDATE_LIBRARY_PODCASTS_COUNT = 'UPDATE_LIBRARY_PODCASTS_COUNT'\nexport const UPDATE_OUTPUTS = 'UPDATE_OUTPUTS'\nexport const UPDATE_PLAYER_STATUS = 'UPDATE_PLAYER_STATUS'\nexport const UPDATE_QUEUE = 'UPDATE_QUEUE'\nexport const UPDATE_LASTFM = 'UPDATE_LASTFM'\nexport const UPDATE_SPOTIFY = 'UPDATE_SPOTIFY'\nexport const UPDATE_PAIRING = 'UPDATE_PAIRING'\n\nexport const SPOTIFY_NEW_RELEASES = 'SPOTIFY_NEW_RELEASES'\nexport const SPOTIFY_FEATURED_PLAYLISTS = 'SPOTIFY_FEATURED_PLAYLISTS'\n\nexport const ADD_NOTIFICATION = 'ADD_NOTIFICATION'\nexport const DELETE_NOTIFICATION = 'DELETE_NOTIFICATION'\nexport const ADD_RECENT_SEARCH = 'ADD_RECENT_SEARCH'\n\nexport const HIDE_SINGLES = 'HIDE_SINGLES'\nexport const HIDE_SPOTIFY = 'HIDE_SPOTIFY'\nexport const ARTISTS_SORT = 'ARTISTS_SORT'\nexport const ARTIST_ALBUMS_SORT = 'ARTIST_ALBUMS_SORT'\nexport const ALBUMS_SORT = 'ALBUMS_SORT'\nexport const SHOW_ONLY_NEXT_ITEMS = 'SHOW_ONLY_NEXT_ITEMS'\nexport const SHOW_BURGER_MENU = 'SHOW_BURGER_MENU'\nexport const SHOW_PLAYER_MENU = 'SHOW_PLAYER_MENU'\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemLink.vue?vue&type=template&id=69134921&\"\nimport script from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[(_vm.title)?_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.title)+\" \")]):_vm._e(),_vm._t(\"modal-content\")],2),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.close_action ? _vm.close_action : 'Cancel'))])]),(_vm.delete_action)?_c('a',{staticClass:\"card-footer-item has-background-danger has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('delete')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.delete_action))])]):_vm._e(),(_vm.ok_action)?_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('ok')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-check\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.ok_action))])]):_vm._e()])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialog.vue?vue&type=template&id=5739f0bd&\"\nimport script from \"./ModalDialog.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialog.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport Vuex from 'vuex'\nimport * as types from './mutation_types'\n\nVue.use(Vuex)\n\nexport default new Vuex.Store({\n state: {\n config: {\n websocket_port: 0,\n version: '',\n buildoptions: []\n },\n settings: {\n categories: []\n },\n library: {\n artists: 0,\n albums: 0,\n songs: 0,\n db_playtime: 0,\n updating: false\n },\n audiobooks_count: { },\n podcasts_count: { },\n outputs: [],\n player: {\n state: 'stop',\n repeat: 'off',\n consume: false,\n shuffle: false,\n volume: 0,\n item_id: 0,\n item_length_ms: 0,\n item_progress_ms: 0\n },\n queue: {\n version: 0,\n count: 0,\n items: []\n },\n lastfm: {},\n spotify: {},\n pairing: {},\n\n spotify_new_releases: [],\n spotify_featured_playlists: [],\n\n notifications: {\n next_id: 1,\n list: []\n },\n recent_searches: [],\n\n hide_singles: false,\n hide_spotify: false,\n artists_sort: 'Name',\n artist_albums_sort: 'Name',\n albums_sort: 'Name',\n show_only_next_items: false,\n show_burger_menu: false,\n show_player_menu: false\n },\n\n getters: {\n now_playing: state => {\n var item = state.queue.items.find(function (item) {\n return item.id === state.player.item_id\n })\n return (item === undefined) ? {} : item\n },\n\n settings_webinterface: state => {\n if (state.settings) {\n return state.settings.categories.find(elem => elem.name === 'webinterface')\n }\n return null\n },\n\n settings_option_show_composer_now_playing: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_now_playing')\n if (option) {\n return option.value\n }\n }\n return false\n },\n\n settings_option_show_composer_for_genre: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_for_genre')\n if (option) {\n return option.value\n }\n }\n return null\n },\n\n settings_category: (state) => (categoryName) => {\n return state.settings.categories.find(elem => elem.name === categoryName)\n },\n\n settings_option: (state) => (categoryName, optionName) => {\n const category = state.settings.categories.find(elem => elem.name === categoryName)\n if (!category) {\n return {}\n }\n return category.options.find(elem => elem.name === optionName)\n }\n },\n\n mutations: {\n [types.UPDATE_CONFIG] (state, config) {\n state.config = config\n },\n [types.UPDATE_SETTINGS] (state, settings) {\n state.settings = settings\n },\n [types.UPDATE_SETTINGS_OPTION] (state, option) {\n const settingCategory = state.settings.categories.find(elem => elem.name === option.category)\n const settingOption = settingCategory.options.find(elem => elem.name === option.name)\n settingOption.value = option.value\n },\n [types.UPDATE_LIBRARY_STATS] (state, libraryStats) {\n state.library = libraryStats\n },\n [types.UPDATE_LIBRARY_AUDIOBOOKS_COUNT] (state, count) {\n state.audiobooks_count = count\n },\n [types.UPDATE_LIBRARY_PODCASTS_COUNT] (state, count) {\n state.podcasts_count = count\n },\n [types.UPDATE_OUTPUTS] (state, outputs) {\n state.outputs = outputs\n },\n [types.UPDATE_PLAYER_STATUS] (state, playerStatus) {\n state.player = playerStatus\n },\n [types.UPDATE_QUEUE] (state, queue) {\n state.queue = queue\n },\n [types.UPDATE_LASTFM] (state, lastfm) {\n state.lastfm = lastfm\n },\n [types.UPDATE_SPOTIFY] (state, spotify) {\n state.spotify = spotify\n },\n [types.UPDATE_PAIRING] (state, pairing) {\n state.pairing = pairing\n },\n [types.SPOTIFY_NEW_RELEASES] (state, newReleases) {\n state.spotify_new_releases = newReleases\n },\n [types.SPOTIFY_FEATURED_PLAYLISTS] (state, featuredPlaylists) {\n state.spotify_featured_playlists = featuredPlaylists\n },\n [types.ADD_NOTIFICATION] (state, notification) {\n if (notification.topic) {\n var index = state.notifications.list.findIndex(elem => elem.topic === notification.topic)\n if (index >= 0) {\n state.notifications.list.splice(index, 1, notification)\n return\n }\n }\n state.notifications.list.push(notification)\n },\n [types.DELETE_NOTIFICATION] (state, notification) {\n const index = state.notifications.list.indexOf(notification)\n\n if (index !== -1) {\n state.notifications.list.splice(index, 1)\n }\n },\n [types.ADD_RECENT_SEARCH] (state, query) {\n var index = state.recent_searches.findIndex(elem => elem === query)\n if (index >= 0) {\n state.recent_searches.splice(index, 1)\n }\n\n state.recent_searches.splice(0, 0, query)\n\n if (state.recent_searches.length > 5) {\n state.recent_searches.pop()\n }\n },\n [types.HIDE_SINGLES] (state, hideSingles) {\n state.hide_singles = hideSingles\n },\n [types.HIDE_SPOTIFY] (state, hideSpotify) {\n state.hide_spotify = hideSpotify\n },\n [types.ARTISTS_SORT] (state, sort) {\n state.artists_sort = sort\n },\n [types.ARTIST_ALBUMS_SORT] (state, sort) {\n state.artist_albums_sort = sort\n },\n [types.ALBUMS_SORT] (state, sort) {\n state.albums_sort = sort\n },\n [types.SHOW_ONLY_NEXT_ITEMS] (state, showOnlyNextItems) {\n state.show_only_next_items = showOnlyNextItems\n },\n [types.SHOW_BURGER_MENU] (state, showBurgerMenu) {\n state.show_burger_menu = showBurgerMenu\n },\n [types.SHOW_PLAYER_MENU] (state, showPlayerMenu) {\n state.show_player_menu = showPlayerMenu\n }\n },\n\n actions: {\n add_notification ({ commit, state }, notification) {\n const newNotification = {\n id: state.notifications.next_id++,\n type: notification.type,\n text: notification.text,\n topic: notification.topic,\n timeout: notification.timeout\n }\n\n commit(types.ADD_NOTIFICATION, newNotification)\n\n if (notification.timeout > 0) {\n setTimeout(() => {\n commit(types.DELETE_NOTIFICATION, newNotification)\n }, notification.timeout)\n }\n }\n }\n})\n","import axios from 'axios'\nimport store from '@/store'\n\naxios.interceptors.response.use(function (response) {\n return response\n}, function (error) {\n if (error.request.status && error.request.responseURL) {\n store.dispatch('add_notification', { text: 'Request failed (status: ' + error.request.status + ' ' + error.request.statusText + ', url: ' + error.request.responseURL + ')', type: 'danger' })\n }\n return Promise.reject(error)\n})\n\nexport default {\n config () {\n return axios.get('./api/config')\n },\n\n settings () {\n return axios.get('./api/settings')\n },\n\n settings_update (categoryName, option) {\n return axios.put('./api/settings/' + categoryName + '/' + option.name, option)\n },\n\n library_stats () {\n return axios.get('./api/library')\n },\n\n library_update () {\n return axios.put('./api/update')\n },\n\n library_rescan () {\n return axios.put('./api/rescan')\n },\n\n library_count (expression) {\n return axios.get('./api/library/count?expression=' + expression)\n },\n\n queue () {\n return axios.get('./api/queue')\n },\n\n queue_clear () {\n return axios.put('./api/queue/clear')\n },\n\n queue_remove (itemId) {\n return axios.delete('./api/queue/items/' + itemId)\n },\n\n queue_move (itemId, newPosition) {\n return axios.put('./api/queue/items/' + itemId + '?new_position=' + newPosition)\n },\n\n queue_add (uri) {\n return axios.post('./api/queue/items/add?uris=' + uri).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_add_next (uri) {\n var position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n position = store.getters.now_playing.position + 1\n }\n return axios.post('./api/queue/items/add?uris=' + uri + '&position=' + position).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add (expression) {\n var options = {}\n options.expression = expression\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add_next (expression) {\n var options = {}\n options.expression = expression\n options.position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n options.position = store.getters.now_playing.position + 1\n }\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_save_playlist (name) {\n return axios.post('./api/queue/save', undefined, { params: { name: name } }).then((response) => {\n store.dispatch('add_notification', { text: 'Queue saved to playlist \"' + name + '\"', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n player_status () {\n return axios.get('./api/player')\n },\n\n player_play_uri (uris, shuffle, position = undefined) {\n var options = {}\n options.uris = uris\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play_expression (expression, shuffle, position = undefined) {\n var options = {}\n options.expression = expression\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play (options = {}) {\n return axios.put('./api/player/play', undefined, { params: options })\n },\n\n player_playpos (position) {\n return axios.put('./api/player/play?position=' + position)\n },\n\n player_playid (itemId) {\n return axios.put('./api/player/play?item_id=' + itemId)\n },\n\n player_pause () {\n return axios.put('./api/player/pause')\n },\n\n player_stop () {\n return axios.put('./api/player/stop')\n },\n\n player_next () {\n return axios.put('./api/player/next')\n },\n\n player_previous () {\n return axios.put('./api/player/previous')\n },\n\n player_shuffle (newState) {\n var shuffle = newState ? 'true' : 'false'\n return axios.put('./api/player/shuffle?state=' + shuffle)\n },\n\n player_consume (newState) {\n var consume = newState ? 'true' : 'false'\n return axios.put('./api/player/consume?state=' + consume)\n },\n\n player_repeat (newRepeatMode) {\n return axios.put('./api/player/repeat?state=' + newRepeatMode)\n },\n\n player_volume (volume) {\n return axios.put('./api/player/volume?volume=' + volume)\n },\n\n player_output_volume (outputId, outputVolume) {\n return axios.put('./api/player/volume?volume=' + outputVolume + '&output_id=' + outputId)\n },\n\n player_seek_to_pos (newPosition) {\n return axios.put('./api/player/seek?position_ms=' + newPosition)\n },\n\n player_seek (seekMs) {\n return axios.put('./api/player/seek?seek_ms=' + seekMs)\n },\n\n outputs () {\n return axios.get('./api/outputs')\n },\n\n output_update (outputId, output) {\n return axios.put('./api/outputs/' + outputId, output)\n },\n\n output_toggle (outputId) {\n return axios.put('./api/outputs/' + outputId + '/toggle')\n },\n\n library_artists (media_kind = undefined) {\n return axios.get('./api/library/artists', { params: { media_kind: media_kind } })\n },\n\n library_artist (artistId) {\n return axios.get('./api/library/artists/' + artistId)\n },\n\n library_artist_albums (artistId) {\n return axios.get('./api/library/artists/' + artistId + '/albums')\n },\n\n library_albums (media_kind = undefined) {\n return axios.get('./api/library/albums', { params: { media_kind: media_kind } })\n },\n\n library_album (albumId) {\n return axios.get('./api/library/albums/' + albumId)\n },\n\n library_album_tracks (albumId, filter = { limit: -1, offset: 0 }) {\n return axios.get('./api/library/albums/' + albumId + '/tracks', {\n params: filter\n })\n },\n\n library_album_track_update (albumId, attributes) {\n return axios.put('./api/library/albums/' + albumId + '/tracks', undefined, { params: attributes })\n },\n\n library_genres () {\n return axios.get('./api/library/genres')\n },\n\n library_genre (genre) {\n var genreParams = {\n type: 'albums',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_genre_tracks (genre) {\n var genreParams = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_radio_streams () {\n var params = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'data_kind is url and song_length = 0'\n }\n return axios.get('./api/search', {\n params: params\n })\n },\n\n library_artist_tracks (artist) {\n if (artist) {\n var artistParams = {\n type: 'tracks',\n expression: 'songartistid is \"' + artist + '\"'\n }\n return axios.get('./api/search', {\n params: artistParams\n })\n }\n },\n\n library_podcasts_new_episodes () {\n var episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and play_count = 0 ORDER BY time_added DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_podcast_episodes (albumId) {\n var episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and songalbumid is \"' + albumId + '\" ORDER BY date_released DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_add (url) {\n return axios.post('./api/library/add', undefined, { params: { url: url } })\n },\n\n library_playlist_delete (playlistId) {\n return axios.delete('./api/library/playlists/' + playlistId, undefined)\n },\n\n library_playlists () {\n return axios.get('./api/library/playlists')\n },\n\n library_playlist_folder (playlistId = 0) {\n return axios.get('./api/library/playlists/' + playlistId + '/playlists')\n },\n\n library_playlist (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId)\n },\n\n library_playlist_tracks (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId + '/tracks')\n },\n\n library_track (trackId) {\n return axios.get('./api/library/tracks/' + trackId)\n },\n\n library_track_playlists (trackId) {\n return axios.get('./api/library/tracks/' + trackId + '/playlists')\n },\n\n library_track_update (trackId, attributes = {}) {\n return axios.put('./api/library/tracks/' + trackId, undefined, { params: attributes })\n },\n\n library_files (directory = undefined) {\n var filesParams = { directory: directory }\n return axios.get('./api/library/files', {\n params: filesParams\n })\n },\n\n search (searchParams) {\n return axios.get('./api/search', {\n params: searchParams\n })\n },\n\n spotify () {\n return axios.get('./api/spotify')\n },\n\n spotify_login (credentials) {\n return axios.post('./api/spotify-login', credentials)\n },\n\n lastfm () {\n return axios.get('./api/lastfm')\n },\n\n lastfm_login (credentials) {\n return axios.post('./api/lastfm-login', credentials)\n },\n\n lastfm_logout (credentials) {\n return axios.get('./api/lastfm-logout')\n },\n\n pairing () {\n return axios.get('./api/pairing')\n },\n\n pairing_kickoff (pairingReq) {\n return axios.post('./api/pairing', pairingReq)\n },\n\n artwork_url_append_size_params (artworkUrl, maxwidth = 600, maxheight = 600) {\n if (artworkUrl && artworkUrl.startsWith('/')) {\n if (artworkUrl.includes('?')) {\n return artworkUrl + '&maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl + '?maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarTop.vue?vue&type=template&id=bf9ea990&\"\nimport script from \"./NavbarTop.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarTop.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-bottom-navbar navbar is-white is-fixed-bottom\",class:{ 'is-transparent': _vm.is_now_playing_page, 'is-dark': !_vm.is_now_playing_page },style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"player controls\"}},[_c('div',{staticClass:\"navbar-brand fd-expanded\"},[_c('navbar-item-link',{attrs:{\"to\":\"/\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-playlist-play\"})])]),(!_vm.is_now_playing_page)?_c('router-link',{staticClass:\"navbar-item is-expanded is-clipped\",attrs:{\"to\":\"/now-playing\",\"active-class\":\"is-active\",\"exact\":\"\"}},[_c('div',{staticClass:\"is-clipped\"},[_c('p',{staticClass:\"is-size-7 fd-is-text-clipped\"},[_c('strong',[_vm._v(_vm._s(_vm.now_playing.title))]),_c('br'),_vm._v(\" \"+_vm._s(_vm.now_playing.artist)),(_vm.now_playing.data_kind === 'url')?_c('span',[_vm._v(\" - \"+_vm._s(_vm.now_playing.album))]):_vm._e()])])]):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-previous',{staticClass:\"navbar-item fd-margin-left-auto\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-seek-back',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"10000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('player-button-play-pause',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-36px\",\"show_disabled_message\":\"\"}}),(_vm.is_now_playing_page)?_c('player-button-seek-forward',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"30000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-next',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('a',{staticClass:\"navbar-item fd-margin-left-auto is-hidden-desktop\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch\",class:{ 'is-active': _vm.show_player_menu }},[_c('a',{staticClass:\"navbar-link is-arrowless\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-dropdown is-right is-boxed\",staticStyle:{\"margin-right\":\"6px\",\"margin-bottom\":\"6px\",\"border-radius\":\"6px\"}},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(0)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile fd-expanded\"},[_c('div',{staticClass:\"level-item\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('player-button-repeat',{staticClass:\"button\"}),_c('player-button-shuffle',{staticClass:\"button\"}),_c('player-button-consume',{staticClass:\"button\"})],1)])])])],2)])],1),_c('div',{staticClass:\"navbar-menu is-hidden-desktop\",class:{ 'is-active': _vm.show_player_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('player-button-repeat',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-shuffle',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-consume',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}})],1)]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item fd-has-margin-bottom\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(1)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])])],2)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])}]\n\nexport { render, staticRenderFns }","/**\n * Audio handler object\n * Taken from https://github.com/rainner/soma-fm-player (released under MIT licence)\n */\nexport default {\n _audio: new Audio(),\n _context: null,\n _source: null,\n _gain: null,\n\n // setup audio routing\n setupAudio () {\n var AudioContext = window.AudioContext || window.webkitAudioContext\n this._context = new AudioContext()\n this._source = this._context.createMediaElementSource(this._audio)\n this._gain = this._context.createGain()\n\n this._source.connect(this._gain)\n this._gain.connect(this._context.destination)\n\n this._audio.addEventListener('canplaythrough', e => {\n this._audio.play()\n })\n this._audio.addEventListener('canplay', e => {\n this._audio.play()\n })\n return this._audio\n },\n\n // set audio volume\n setVolume (volume) {\n if (!this._gain) return\n volume = parseFloat(volume) || 0.0\n volume = (volume < 0) ? 0 : volume\n volume = (volume > 1) ? 1 : volume\n this._gain.gain.value = volume\n },\n\n // play audio source url\n playSource (source) {\n this.stopAudio()\n this._context.resume().then(() => {\n this._audio.src = String(source || '') + '?x=' + Date.now()\n this._audio.crossOrigin = 'anonymous'\n this._audio.load()\n })\n },\n\n // stop playing audio\n stopAudio () {\n try { this._audio.pause() } catch (e) {}\n try { this._audio.stop() } catch (e) {}\n try { this._audio.close() } catch (e) {}\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\"},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.output.selected },on:{\"click\":_vm.set_enabled}},[_c('i',{staticClass:\"mdi mdi-18px\",class:_vm.type_class})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.output.selected }},[_vm._v(_vm._s(_vm.output.name))]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.output.selected,\"value\":_vm.volume},on:{\"change\":_vm.set_volume}})],1)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemOutput.vue?vue&type=template&id=16ee9e13&\"\nimport script from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.toggle_play_pause}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-play': !_vm.is_playing, 'mdi-pause': _vm.is_playing && _vm.is_pause_allowed, 'mdi-stop': _vm.is_playing && !_vm.is_pause_allowed }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPlayPause.vue?vue&type=template&id=160e1e94&\"\nimport script from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-forward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonNext.vue?vue&type=template&id=105fa0b7&\"\nimport script from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_previous}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-backward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPrevious.vue?vue&type=template&id=de93cb4e&\"\nimport script from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_shuffle },on:{\"click\":_vm.toggle_shuffle_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-shuffle': _vm.is_shuffle, 'mdi-shuffle-disabled': !_vm.is_shuffle }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonShuffle.vue?vue&type=template&id=6c682bca&\"\nimport script from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_consume },on:{\"click\":_vm.toggle_consume_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fire\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonConsume.vue?vue&type=template&id=652605a0&\"\nimport script from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': !_vm.is_repeat_off },on:{\"click\":_vm.toggle_repeat_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-repeat': _vm.is_repeat_all, 'mdi-repeat-once': _vm.is_repeat_single, 'mdi-repeat-off': _vm.is_repeat_off }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonRepeat.vue?vue&type=template&id=76c131bd&\"\nimport script from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rewind\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekBack.vue?vue&type=template&id=6e68196d&\"\nimport script from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fast-forward\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekForward.vue?vue&type=template&id=2f43a35a&\"\nimport script from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarBottom.vue?vue&type=template&id=7bc29059&\"\nimport script from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"fd-notifications\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-half\"},_vm._l((_vm.notifications),function(notification){return _c('div',{key:notification.id,staticClass:\"notification has-shadow \",class:['notification', notification.type ? (\"is-\" + (notification.type)) : '']},[_c('button',{staticClass:\"delete\",on:{\"click\":function($event){return _vm.remove(notification)}}}),_vm._v(\" \"+_vm._s(notification.text)+\" \")])}),0)])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Notifications.vue?vue&type=template&id=45b704a5&\"\nimport script from \"./Notifications.vue?vue&type=script&lang=js&\"\nexport * from \"./Notifications.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Notifications.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Remote pairing request \")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label\"},[_vm._v(\" \"+_vm._s(_vm.pairing.remote)+\" \")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],ref:\"pin_field\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.kickoff_pairing}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cellphone-iphone\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Pair Remote\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogRemotePairing.vue?vue&type=template&id=4491cb33&\"\nimport script from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=4b81045b&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.queue.count)+\" tracks\")]),_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Queue\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.show_only_next_items },on:{\"click\":_vm.update_show_next_items}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-arrow-collapse-down\"})]),_c('span',[_vm._v(\"Hide previous\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_stream_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',[_vm._v(\"Add Stream\")])]),_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.edit_mode },on:{\"click\":function($event){_vm.edit_mode = !_vm.edit_mode}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Edit\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.queue_clear}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete-empty\"})]),_c('span',[_vm._v(\"Clear\")])]),(_vm.is_queue_save_allowed)?_c('a',{staticClass:\"button is-small\",attrs:{\"disabled\":_vm.queue_items.length === 0},on:{\"click\":_vm.save_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_c('span',[_vm._v(\"Save\")])]):_vm._e()])]),_c('template',{slot:\"content\"},[_c('draggable',{attrs:{\"handle\":\".handle\"},on:{\"end\":_vm.move_item},model:{value:(_vm.queue_items),callback:function ($$v) {_vm.queue_items=$$v},expression:\"queue_items\"}},_vm._l((_vm.queue_items),function(item,index){return _c('list-item-queue-item',{key:item.id,attrs:{\"item\":item,\"position\":index,\"current_position\":_vm.current_position,\"show_only_next_items\":_vm.show_only_next_items,\"edit_mode\":_vm.edit_mode}},[_c('template',{slot:\"actions\"},[(!_vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.open_dialog(item)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])]):_vm._e(),(item.id !== _vm.state.item_id && _vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.remove(item)}}},[_c('span',{staticClass:\"icon has-text-grey\"},[_c('i',{staticClass:\"mdi mdi-delete mdi-18px\"})])]):_vm._e()])],2)}),1),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog-add-url-stream',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false}}}),(_vm.is_queue_save_allowed)?_c('modal-dialog-playlist-save',{attrs:{\"show\":_vm.show_pls_save_modal},on:{\"close\":function($event){_vm.show_pls_save_modal = false}}}):_vm._e()],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[(_vm.$slots['options'])?_c('section',[_c('div',{directives:[{name:\"observe-visibility\",rawName:\"v-observe-visibility\",value:(_vm.observer_options),expression:\"observer_options\"}],staticStyle:{\"height\":\"2px\"}}),_vm._t(\"options\"),_c('nav',{staticClass:\"buttons is-centered\",staticStyle:{\"margin-bottom\":\"6px\",\"margin-top\":\"16px\"}},[(!_vm.options_visible)?_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_top}},[_vm._m(0)]):_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_content}},[_vm._m(1)])])],2):_vm._e(),_c('div',{class:{'fd-content-with-option': _vm.$slots['options']}},[_c('nav',{staticClass:\"level\",attrs:{\"id\":\"top\"}},[_c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item has-text-centered-mobile\"},[_c('div',[_vm._t(\"heading-left\")],2)])]),_c('div',{staticClass:\"level-right has-text-centered-mobile\"},[_vm._t(\"heading-right\")],2)]),_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-up\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentWithHeading.vue?vue&type=template&id=94dfd75a&\"\nimport script from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.is_next || !_vm.show_only_next_items)?_c('div',{staticClass:\"media\"},[(_vm.edit_mode)?_c('div',{staticClass:\"media-left\"},[_vm._m(0)]):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next }},[_vm._v(_vm._s(_vm.item.title))]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_c('b',[_vm._v(_vm._s(_vm.item.artist))])]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_vm._v(_vm._s(_vm.item.album))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon has-text-grey fd-is-movable handle\"},[_c('i',{staticClass:\"mdi mdi-drag-horizontal mdi-18px\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemQueueItem.vue?vue&type=template&id=58363490&\"\nimport script from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.item.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.item.artist)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),(_vm.item.album_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.item.album))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album))])]),(_vm.item.album_artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),(_vm.item.album_artist_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album_artist}},[_vm._v(_vm._s(_vm.item.album_artist))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album_artist))])]):_vm._e(),(_vm.item.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.composer))])]):_vm._e(),(_vm.item.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.year))])]):_vm._e(),(_vm.item.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.item.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.track_number)+\" / \"+_vm._s(_vm.item.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.media_kind)+\" - \"+_vm._s(_vm.item.data_kind)+\" \"),(_vm.item.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.item.type)+\" \"),(_vm.item.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.samplerate)+\" Hz\")]):_vm._e(),(_vm.item.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.item.channels)))]):_vm._e(),(_vm.item.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.bitrate)+\" Kb/s\")]):_vm._e()])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.remove}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Remove\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogQueueItem.vue?vue&type=template&id=5521a6c4&\"\nimport script from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Add stream URL \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.play($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-stream\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-web\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Loading ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddUrlStream.vue?vue&type=template&id=1c92eee2&\"\nimport script from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Save queue to playlist \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.save($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.playlist_name),expression:\"playlist_name\"}],ref:\"playlist_name_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Playlist name\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.playlist_name)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.playlist_name=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-file-music\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Saving ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.save}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Save\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylistSave.vue?vue&type=template&id=5f414a1b&\"\nimport script from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageQueue.vue?vue&type=template&id=36691282&\"\nimport script from \"./PageQueue.vue?vue&type=script&lang=js&\"\nexport * from \"./PageQueue.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[(_vm.now_playing.id > 0)?_c('div',{staticClass:\"fd-is-fullheight\"},[_c('div',{staticClass:\"fd-is-expanded\"},[_c('cover-artwork',{staticClass:\"fd-cover-image fd-has-action\",attrs:{\"artwork_url\":_vm.now_playing.artwork_url,\"artist\":_vm.now_playing.artist,\"album\":_vm.now_playing.album},on:{\"click\":function($event){return _vm.open_dialog(_vm.now_playing)}}})],1),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered\"},[_c('p',{staticClass:\"control has-text-centered fd-progress-now-playing\"},[_c('range-slider',{staticClass:\"seek-slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":_vm.state.item_length_ms,\"value\":_vm.item_progress_ms,\"disabled\":_vm.state.state === 'stop',\"step\":\"1000\"},on:{\"change\":_vm.seek}})],1),_c('p',{staticClass:\"content\"},[_c('span',[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item_progress_ms))+\" / \"+_vm._s(_vm._f(\"duration\")(_vm.now_playing.length_ms)))])])])]),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered fd-has-margin-top\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.title)+\" \")]),_c('h2',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.artist)+\" \")]),(_vm.composer)?_c('h2',{staticClass:\"subtitle is-6 has-text-grey has-text-weight-bold\"},[_vm._v(\" \"+_vm._s(_vm.composer)+\" \")]):_vm._e(),_c('h3',{staticClass:\"subtitle is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.album)+\" \")])])])]):_c('div',{staticClass:\"fd-is-fullheight\"},[_vm._m(0)]),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"fd-is-expanded fd-has-padding-left-right\",staticStyle:{\"flex-direction\":\"column\"}},[_c('div',{staticClass:\"content has-text-centered\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" Your play queue is empty \")]),_c('p',[_vm._v(\" Add some tracks by browsing your library \")])])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('figure',[_c('img',{directives:[{name:\"lazyload\",rawName:\"v-lazyload\"}],key:_vm.artwork_url_with_size,attrs:{\"data-src\":_vm.artwork_url_with_size,\"data-err\":_vm.dataURI},on:{\"click\":function($event){return _vm.$emit('click')}}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/*\n * SVGRenderer taken from https://github.com/bendera/placeholder published under MIT License\n * Copyright (c) 2017 Adam Bender\n * https://github.com/bendera/placeholder/blob/master/LICENSE\n */\nclass SVGRenderer {\n render (data) {\n const svg = '' +\n '' +\n '' +\n '' +\n '' +\n ' ' +\n ' ' +\n ' ' + data.caption + '' +\n ' ' +\n '' +\n ''\n\n return 'data:image/svg+xml;charset=UTF-8,' + encodeURIComponent(svg)\n }\n}\n\nexport default SVGRenderer\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./CoverArtwork.vue?vue&type=template&id=377ab7d4&\"\nimport script from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageNowPlaying.vue?vue&type=template&id=734899dc&\"\nimport script from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\nexport * from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.recently_added.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_added')}}},[_vm._v(\"Show more\")])])])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_played')}}},[_vm._v(\"Show more\")])])])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\nexport const LoadDataBeforeEnterMixin = function (dataObject) {\n return {\n beforeRouteEnter (to, from, next) {\n dataObject.load(to).then((response) => {\n next(vm => dataObject.set(vm, response))\n })\n },\n beforeRouteUpdate (to, from, next) {\n const vm = this\n dataObject.load(to).then((response) => {\n dataObject.set(vm, response)\n next()\n })\n }\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/browse\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',{},[_vm._v(\"Browse\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Artists\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Albums\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/genres\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-speaker\"})]),_c('span',{},[_vm._v(\"Genres\")])])]),(_vm.spotify_enabled)?_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/spotify\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})]),_c('span',{},[_vm._v(\"Spotify\")])])]):_vm._e()],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsMusic.vue?vue&type=template&id=f9ae6826&\"\nimport script from \"./TabsMusic.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsMusic.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.albums.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.albums.grouped[idx]),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.albums_list),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album,\"media_kind\":_vm.media_kind},on:{\"remove-podcast\":function($event){return _vm.open_remove_podcast_dialog()},\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.album.name_sort.charAt(0).toUpperCase()}},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('div',{staticStyle:{\"margin-top\":\"0.7rem\"}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artist))])]),(_vm.props.album.date_released && _vm.props.album.media_kind === 'music')?_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\" \"+_vm._s(_vm._f(\"time\")(_vm.props.album.date_released,'L'))+\" \")]):_vm._e()])]),_c('div',{staticClass:\"media-right\",staticStyle:{\"padding-top\":\"0.7rem\"}},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemAlbum.vue?vue&type=template&id=0d4ab83f&functional=true&\"\nimport script from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('cover-artwork',{staticClass:\"image is-square fd-has-margin-bottom fd-has-shadow\",attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name}}),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),(_vm.media_kind_resolved === 'podcast')?_c('div',{staticClass:\"buttons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.$emit('remove-podcast')}}},[_vm._v(\"Remove podcast\")])]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[(_vm.album.artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]):_vm._e(),(_vm.album.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.date_released,'L')))])]):(_vm.album.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.year))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.album.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.media_kind)+\" - \"+_vm._s(_vm.album.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.time_added,'L LT')))])])])],1),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAlbum.vue?vue&type=template&id=43881b14&\"\nimport script from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Albums {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getAlbumIndex (album) {\n if (this.options.sort === 'Recently added') {\n return album.time_added.substring(0, 4)\n } else if (this.options.sort === 'Recently released') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n } else if (this.options.sort === 'Release date') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n }\n return album.name_sort.charAt(0).toUpperCase()\n }\n\n isAlbumVisible (album) {\n if (this.options.hideSingles && album.track_count <= 2) {\n return false\n }\n if (this.options.hideSpotify && album.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(album => this.getAlbumIndex(album)))]\n }\n\n createSortedAndFilteredList () {\n var albumsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n albumsSorted = albumsSorted.filter(album => this.isAlbumVisible(album))\n }\n if (this.options.sort === 'Recently added') {\n albumsSorted = [...albumsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n } else if (this.options.sort === 'Recently released') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return 1\n }\n if (!b.date_released) {\n return -1\n }\n return b.date_released.localeCompare(a.date_released)\n })\n } else if (this.options.sort === 'Release date') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return -1\n }\n if (!b.date_released) {\n return 1\n }\n return a.date_released.localeCompare(b.date_released)\n })\n }\n this.sortedAndFiltered = albumsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, album) => {\n const idx = this.getAlbumIndex(album)\n r[idx] = [...r[idx] || [], album]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListAlbums.vue?vue&type=template&id=4c4c1fd6&\"\nimport script from \"./ListAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./ListAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.tracks),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index, track)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",class:{ 'with-progress': _vm.slots().progress },attrs:{\"id\":'index_' + _vm.props.track.title_sort.charAt(0).toUpperCase()}},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-grey': _vm.props.track.media_kind === 'podcast' && _vm.props.track.play_count > 0 }},[_vm._v(_vm._s(_vm.props.track.title))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.track.artist))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.props.track.album))]),_vm._t(\"progress\")],2),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemTrack.vue?vue&type=template&id=b15cd80c&functional=true&\"\nimport script from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artist)+\" \")]),(_vm.track.media_kind === 'podcast')?_c('div',{staticClass:\"buttons\"},[(_vm.track.play_count > 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_new}},[_vm._v(\"Mark as new\")]):_vm._e(),(_vm.track.play_count === 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]):_vm._e()]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.track.album))])]),(_vm.track.album_artist && _vm.track.media_kind !== 'audiobook')?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.track.album_artist))])]):_vm._e(),(_vm.track.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.composer))])]):_vm._e(),(_vm.track.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.date_released,'L')))])]):(_vm.track.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.year))])]):_vm._e(),(_vm.track.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.track.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.media_kind)+\" - \"+_vm._s(_vm.track.data_kind)+\" \"),(_vm.track.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.track.type)+\" \"),(_vm.track.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.samplerate)+\" Hz\")]):_vm._e(),(_vm.track.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.track.channels)))]):_vm._e(),(_vm.track.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.bitrate)+\" Kb/s\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.time_added,'L LT')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Rating\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(Math.floor(_vm.track.rating / 10))+\" / 10\")])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play_track}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogTrack.vue?vue&type=template&id=2c4c4585&\"\nimport script from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListTracks.vue?vue&type=template&id=39565e8c&\"\nimport script from \"./ListTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./ListTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowse.vue?vue&type=template&id=377ad592&\"\nimport script from \"./PageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.recently_added.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyAdded.vue?vue&type=template&id=3bc00af8&\"\nimport script from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyPlayed.vue?vue&type=template&id=6755b6f8&\"\nimport script from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear on singles or playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide artists from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Artists\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[_c('nav',{staticClass:\"buttons is-centered fd-is-square\",staticStyle:{\"margin-bottom\":\"16px\"}},_vm._l((_vm.filtered_index),function(char){return _c('a',{key:char,staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.nav(char)}}},[_vm._v(_vm._s(char))])}),0)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./IndexButtonList.vue?vue&type=template&id=4b37eeb5&\"\nimport script from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\nexport * from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.artists.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.artists.grouped[idx]),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.artists_list),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_details_modal,\"artist\":_vm.selected_artist,\"media_kind\":_vm.media_kind},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemArtist.vue?vue&type=template&id=6f373e4f&functional=true&\"\nimport script from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Albums\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.album_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.artist.time_added,'L LT')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogArtist.vue?vue&type=template&id=c563adce&\"\nimport script from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Artists {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getArtistIndex (artist) {\n if (this.options.sort === 'Name') {\n return artist.name_sort.charAt(0).toUpperCase()\n }\n return artist.time_added.substring(0, 4)\n }\n\n isArtistVisible (artist) {\n if (this.options.hideSingles && artist.track_count <= (artist.album_count * 2)) {\n return false\n }\n if (this.options.hideSpotify && artist.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(artist => this.getArtistIndex(artist)))]\n }\n\n createSortedAndFilteredList () {\n var artistsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n artistsSorted = artistsSorted.filter(artist => this.isArtistVisible(artist))\n }\n if (this.options.sort === 'Recently added') {\n artistsSorted = [...artistsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n }\n this.sortedAndFiltered = artistsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, artist) => {\n const idx = this.getArtistIndex(artist)\n r[idx] = [...r[idx] || [], artist]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListArtists.vue?vue&type=template&id=a9a21416&\"\nimport script from \"./ListArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown\",class:{ 'is-active': _vm.is_active }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('button',{staticClass:\"button\",attrs:{\"aria-haspopup\":\"true\",\"aria-controls\":\"dropdown-menu\"},on:{\"click\":function($event){_vm.is_active = !_vm.is_active}}},[_c('span',[_vm._v(_vm._s(_vm.value))]),_vm._m(0)])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},_vm._l((_vm.options),function(option){return _c('a',{key:option,staticClass:\"dropdown-item\",class:{'is-active': _vm.value === option},on:{\"click\":function($event){return _vm.select(option)}}},[_vm._v(\" \"+_vm._s(option)+\" \")])}),0)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\",attrs:{\"aria-hidden\":\"true\"}})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./DropdownMenu.vue?vue&type=template&id=56ac032b&\"\nimport script from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtists.vue?vue&type=template&id=3d4c8b43&\"\nimport script from \"./PageArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"options\"},[_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])]),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(_vm._s(_vm.artist.track_count)+\" tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.albums_list}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtist.vue?vue&type=template&id=03dca38a&\"\nimport script from \"./PageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides singles and albums with tracks that only appear in playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide albums from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides albums that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Albums\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbums.vue?vue&type=template&id=f8e2027c&\"\nimport script from \"./PageAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbum.vue?vue&type=template&id=ad2b3a70&\"\nimport script from \"./PageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Genres\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.genres.total)+\" genres\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.genres.items),function(genre){return _c('list-item-genre',{key:genre.name,attrs:{\"genre\":genre},on:{\"click\":function($event){return _vm.open_genre(genre)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(genre)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_details_modal,\"genre\":_vm.selected_genre},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.genre.name.charAt(0).toUpperCase()}},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.genre.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemGenre.vue?vue&type=template&id=526e97c7&functional=true&\"\nimport script from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.genre.name))])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogGenre.vue?vue&type=template&id=f6ef5fb8&\"\nimport script from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenres.vue?vue&type=template&id=9a23c802&\"\nimport script from \"./PageGenres.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenres.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.genre_albums.total)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(\"tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.genre_albums.items}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.name }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenre.vue?vue&type=template&id=2268caa3&\"\nimport script from \"./PageGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.genre))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(\"albums\")]),_vm._v(\" | \"+_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"expression\":_vm.expression}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.genre }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenreTracks.vue?vue&type=template&id=0fff7765&\"\nimport script from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_vm._v(\" | \"+_vm._s(_vm.artist.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"uris\":_vm.track_uris}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtistTracks.vue?vue&type=template&id=6da2b51e&\"\nimport script from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.new_episodes.items.length > 0)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New episodes\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_all_played}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Mark All Played\")])])])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_episodes.items),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false},\"play-count-changed\":_vm.reload_new_episodes}})],2)],2):_vm._e(),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums.total)+\" podcasts\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_podcast_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rss\"})]),_c('span',[_vm._v(\"Add Podcast\")])])])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items},on:{\"play-count-changed\":function($event){return _vm.reload_new_episodes()},\"podcast-deleted\":function($event){return _vm.reload_podcasts()}}}),_c('modal-dialog-add-rss',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false},\"podcast-added\":function($event){return _vm.reload_podcasts()}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Add Podcast RSS feed URL\")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.add_stream($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-rss\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-rss\"})])]),_c('p',{staticClass:\"help\"},[_vm._v(\"Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. \")])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item button is-loading\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Processing ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddRss.vue?vue&type=template&id=21695499&\"\nimport script from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcasts.vue?vue&type=template&id=aa493f06&\"\nimport script from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.album.name)+\" \")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_vm._l((_vm.tracks),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false},\"play-count-changed\":_vm.reload_tracks}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'podcast',\"new_tracks\":_vm.new_tracks},on:{\"close\":function($event){_vm.show_album_details_modal = false},\"play-count-changed\":_vm.reload_tracks,\"remove-podcast\":_vm.open_remove_podcast_dialog}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcast.vue?vue&type=template&id=f135dc2e&\"\nimport script from \"./PagePodcast.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcast.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Authors\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Audiobooks\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsAudiobooks.vue?vue&type=template&id=0cda5528&\"\nimport script from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbums.vue?vue&type=template&id=35fdc4d3&\"\nimport script from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Authors\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Authors\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtists.vue?vue&type=template&id=57e179cc&\"\nimport script from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_c('list-albums',{attrs:{\"albums\":_vm.albums.items}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtist.vue?vue&type=template&id=1d8187dc&\"\nimport script from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'audiobook'},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbum.vue?vue&type=template&id=efa1b7f2&\"\nimport script from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.playlists.total)+\" playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.playlists),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-library-music': playlist.type !== 'folder', 'mdi-rss': playlist.type === 'rss', 'mdi-folder': playlist.type === 'folder' }})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.playlist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemPlaylist.vue?vue&type=template&id=70e1d159&functional=true&\"\nimport script from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.type))])])])]),(!_vm.playlist.folder)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])]):_vm._e()])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylist.vue?vue&type=template&id=eed38c78&\"\nimport script from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListPlaylists.vue?vue&type=template&id=cb1e7e92&\"\nimport script from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylists.vue?vue&type=template&id=3470ce91&\"\nimport script from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.length)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.uris}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist,\"uris\":_vm.uris},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylist.vue?vue&type=template&id=71750814&\"\nimport script from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Files\")]),_c('p',{staticClass:\"title is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.current_directory))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){return _vm.open_directory_dialog({ 'path': _vm.current_directory })}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[(_vm.$route.query.directory)?_c('div',{staticClass:\"media\",on:{\"click\":function($event){return _vm.open_parent_directory()}}},[_c('figure',{staticClass:\"media-left fd-has-action\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-subdirectory-arrow-left\"})])]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\"},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(\"..\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e(),_vm._l((_vm.files.directories),function(directory){return _c('list-item-directory',{key:directory.path,attrs:{\"directory\":directory},on:{\"click\":function($event){return _vm.open_directory(directory)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_directory_dialog(directory)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.playlists.items),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.tracks.items),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-file-outline\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-directory',{attrs:{\"show\":_vm.show_directory_details_modal,\"directory\":_vm.selected_directory},on:{\"close\":function($event){_vm.show_directory_details_modal = false}}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._m(0)]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.directory.path.substring(_vm.props.directory.path.lastIndexOf('/') + 1)))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey-light\"},[_vm._v(_vm._s(_vm.props.directory.path))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = [function (_h,_vm) {var _c=_vm._c;return _c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemDirectory.vue?vue&type=template&id=fc5a981a&functional=true&\"\nimport script from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.directory.path)+\" \")])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogDirectory.vue?vue&type=template&id=47bd3efd&\"\nimport script from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageFiles.vue?vue&type=template&id=2cd0e99e&\"\nimport script from \"./PageFiles.vue?vue&type=script&lang=js&\"\nexport * from \"./PageFiles.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Radio\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageRadioStreams.vue?vue&type=template&id=6286e82d&\"\nimport script from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\nexport * from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)]),_vm._m(1)])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e(),(_vm.show_podcasts && _vm.podcasts.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.podcasts.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_podcasts_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_podcasts}},[_vm._v(\"Show all \"+_vm._s(_vm.podcasts.total.toLocaleString())+\" podcasts\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_podcasts && !_vm.podcasts.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No podcasts found\")])])])],2):_vm._e(),(_vm.show_audiobooks && _vm.audiobooks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.audiobooks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_audiobooks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_audiobooks}},[_vm._v(\"Show all \"+_vm._s(_vm.audiobooks.total.toLocaleString())+\" audiobooks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_audiobooks && !_vm.audiobooks.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No audiobooks found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"help has-text-centered\"},[_vm._v(\"Tip: you can search by a smart playlist query language \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md\",\"target\":\"_blank\"}},[_vm._v(\"expression\")]),_vm._v(\" if you prefix it with \"),_c('code',[_vm._v(\"query:\")]),_vm._v(\". \")])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content py-3\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\")],2)])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentText.vue?vue&type=template&id=bfc5ab0a&\"\nimport script from \"./ContentText.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentText.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.spotify_enabled)?_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small is-toggle is-toggle-rounded\"},[_c('ul',[_c('li',{class:{ 'is-active': _vm.$route.path === '/search/library' }},[_c('a',{on:{\"click\":_vm.search_library}},[_vm._m(0),_c('span',{},[_vm._v(\"Library\")])])]),_c('li',{class:{ 'is-active': _vm.$route.path === '/search/spotify' }},[_c('a',{on:{\"click\":_vm.search_spotify}},[_vm._m(1),_c('span',{},[_vm._v(\"Spotify\")])])])])])])])])]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-library-books\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSearch.vue?vue&type=template&id=3392045a&\"\nimport script from \"./TabsSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageSearch.vue?vue&type=template&id=43848b0d&\"\nimport script from \"./PageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./PageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths has-text-centered-mobile\"},[_c('p',{staticClass:\"heading\"},[_c('b',[_vm._v(\"forked-daapd\")]),_vm._v(\" - version \"+_vm._s(_vm.config.version))]),_c('h1',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.config.library_name))])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content\"},[_c('nav',{staticClass:\"level is-mobile\"},[_vm._m(0),_c('div',{staticClass:\"level-right\"},[(_vm.library.updating)?_c('div',[_c('a',{staticClass:\"button is-small is-loading\"},[_vm._v(\"Update\")])]):_c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown is-right\",class:{ 'is-active': _vm.show_update_dropdown }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.update}},[_vm._v(\"Update\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){_vm.show_update_dropdown = !_vm.show_update_dropdown}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-chevron-down': !_vm.show_update_dropdown, 'mdi-chevron-up': _vm.show_update_dropdown }})])])])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},[_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update}},[_c('strong',[_vm._v(\"Update\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Adds new, removes deleted and updates modified files.\")])])]),_c('hr',{staticClass:\"dropdown-divider\"}),_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update_meta}},[_c('strong',[_vm._v(\"Rescan metadata\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Same as update, but also rescans unmodified files.\")])])])])])])])]),_c('table',{staticClass:\"table\"},[_c('tbody',[_c('tr',[_c('th',[_vm._v(\"Artists\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.artists)))])]),_c('tr',[_c('th',[_vm._v(\"Albums\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.albums)))])]),_c('tr',[_c('th',[_vm._v(\"Tracks\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.songs)))])]),_c('tr',[_c('th',[_vm._v(\"Total playtime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.library.db_playtime * 1000,'y [years], d [days], h [hours], m [minutes]')))])]),_c('tr',[_c('th',[_vm._v(\"Library updated\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.updated_at))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.updated_at,'lll'))+\")\")])])]),_c('tr',[_c('th',[_vm._v(\"Uptime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.started_at,true))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.started_at,'ll'))+\")\")])])])])])])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content has-text-centered-mobile\"},[_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Compiled with support for \"+_vm._s(_vm._f(\"join\")(_vm.config.buildoptions))+\".\")]),_vm._m(1)])])])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item\"},[_c('h2',{staticClass:\"title is-5\"},[_vm._v(\"Library\")])])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Web interface built with \"),_c('a',{attrs:{\"href\":\"http://bulma.io\"}},[_vm._v(\"Bulma\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://materialdesignicons.com/\"}},[_vm._v(\"Material Design Icons\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://vuejs.org/\"}},[_vm._v(\"Vue.js\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://github.com/mzabriskie/axios\"}},[_vm._v(\"axios\")]),_vm._v(\" and \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/network/dependencies\"}},[_vm._v(\"more\")]),_vm._v(\".\")])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAbout.vue?vue&type=template&id=474a48e7&\"\nimport script from \"./PageAbout.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAbout.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/new-releases\"}},[_vm._v(\" Show more \")])],1)])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/featured-playlists\"}},[_vm._v(\" Show more \")])],1)])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artists[0].name))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\"(\"+_vm._s(_vm.props.album.album_type)+\", \"+_vm._s(_vm._f(\"time\")(_vm.props.album.release_date,'L'))+\")\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemAlbum.vue?vue&type=template&id=62c75d12&functional=true&\"\nimport script from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_playlist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('h2',{staticClass:\"subtitle is-7\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemPlaylist.vue?vue&type=template&id=5f06cfec&\"\nimport script from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('figure',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.artwork_visible),expression:\"artwork_visible\"}],staticClass:\"image is-square fd-has-margin-bottom\"},[_c('img',{staticClass:\"fd-has-shadow\",attrs:{\"src\":_vm.artwork_url},on:{\"load\":_vm.artwork_loaded,\"error\":_vm.artwork_error}})]),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.album_type))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogAlbum.vue?vue&type=template&id=c74b0d5a&\"\nimport script from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Owner\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.tracks.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogPlaylist.vue?vue&type=template&id=306ad148&\"\nimport script from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowse.vue?vue&type=template&id=55573f08&\"\nimport script from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseNewReleases.vue?vue&type=template&id=81c5055e&\"\nimport script from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=template&id=0258f289&\"\nimport script from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.total)+\" albums\")]),_vm._l((_vm.albums),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Popularity / Followers\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.popularity)+\" / \"+_vm._s(_vm.artist.followers.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genres\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.genres.join(', ')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogArtist.vue?vue&type=template&id=7a611bba&\"\nimport script from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageArtist.vue?vue&type=template&id=b2a152d8&\"\nimport script from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.tracks.total)+\" tracks\")]),_vm._l((_vm.album.tracks.items),function(track,index){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"position\":index,\"album\":_vm.album,\"context_uri\":_vm.album.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.track.artists[0].name))])])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemTrack.vue?vue&type=template&id=28c7eaa1&\"\nimport script from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.name)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artists[0].name)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.duration_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogTrack.vue?vue&type=template&id=094bebe4&\"\nimport script from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageAlbum.vue?vue&type=template&id=63d70974&\"\nimport script from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.playlist.tracks.total)+\" tracks\")]),_vm._l((_vm.tracks),function(item,index){return _c('spotify-list-item-track',{key:item.track.id,attrs:{\"track\":item.track,\"album\":item.track.album,\"position\":index,\"context_uri\":_vm.playlist.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(item.track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPagePlaylist.vue?vue&type=template&id=c72f0fb2&\"\nimport script from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)])])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.tracks.items),function(track){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"album\":track.album,\"position\":0,\"context_uri\":track.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'track')?_c('infinite-loading',{on:{\"infinite\":_vm.search_tracks_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.artists.items),function(artist){return _c('spotify-list-item-artist',{key:artist.id,attrs:{\"artist\":artist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_artist_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'artist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_artists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.selected_artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.albums.items),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'album')?_c('infinite-loading',{on:{\"infinite\":_vm.search_albums_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.playlists.items),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'playlist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_playlists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_artist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemArtist.vue?vue&type=template&id=59bc374f&\"\nimport script from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageSearch.vue?vue&type=template&id=49e65ea6&\"\nimport script from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Navbar items\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" Select the top navigation bar menu items \")]),_c('div',{staticClass:\"notification is-size-7\"},[_vm._v(\" If you select more items than can be shown on your screen then the burger menu will disappear. \")]),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_playlists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Playlists\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_music\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Music\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_podcasts\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Podcasts\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_audiobooks\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Audiobooks\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_radio\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Radio\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_files\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Files\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_search\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Search\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Album lists\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_cover_artwork_in_album_lists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show cover artwork in album list\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Now playing page\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_now_playing\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show composer\")]),_c('template',{slot:\"info\"},[_vm._v(\"If enabled the composer of the current playing track is shown on the \\\"now playing page\\\"\")])],2),_c('settings-textfield',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_for_genre\",\"disabled\":!_vm.settings_option_show_composer_now_playing,\"placeholder\":\"Genres\"}},[_c('template',{slot:\"label\"},[_vm._v(\"Show composer only for listed genres\")]),_c('template',{slot:\"info\"},[_c('p',{staticClass:\"help\"},[_vm._v(\" Comma separated list of genres the composer should be displayed on the \\\"now playing page\\\". \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" Leave empty to always show the composer. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to \"),_c('code',[_vm._v(\"classical, soundtrack\")]),_vm._v(\" will show the composer for tracks with a genre tag of \\\"Contemporary Classical\\\".\"),_c('br')])])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/webinterface\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Webinterface\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/remotes-outputs\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Remotes & Outputs\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/artwork\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Artwork\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/online-services\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Online Services\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSettings.vue?vue&type=template&id=6c0a7918&\"\nimport script from \"./TabsSettings.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSettings.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{ref:\"settings_checkbox\",attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":_vm.value},on:{\"change\":_vm.set_update_timer}}),_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsCheckbox.vue?vue&type=template&id=f722b06c&\"\nimport script from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('fieldset',{attrs:{\"disabled\":_vm.disabled}},[_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),_c('div',{staticClass:\"control\"},[_c('input',{ref:\"settings_text\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":_vm.placeholder},domProps:{\"value\":_vm.value},on:{\"input\":_vm.set_update_timer}})]),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsTextfield.vue?vue&type=template&id=4cc6d5ec&\"\nimport script from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageWebinterface.vue?vue&type=template&id=23484b31&\"\nimport script from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Artwork\")])]),_c('template',{slot:\"content\"},[_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. \")]),_c('p',[_vm._v(\"In addition to that, you can enable fetching artwork from the following artwork providers:\")])]),(_vm.spotify.libspotify_logged_in)?_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_spotify\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Spotify\")])],2):_vm._e(),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_discogs\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Discogs (\"),_c('a',{attrs:{\"href\":\"https://www.discogs.com/\"}},[_vm._v(\"https://www.discogs.com/\")]),_vm._v(\")\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_coverartarchive\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Cover Art Archive (\"),_c('a',{attrs:{\"href\":\"https://coverartarchive.org/\"}},[_vm._v(\"https://coverartarchive.org/\")]),_vm._v(\")\")])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageArtwork.vue?vue&type=template&id=41b3d8bf&\"\nimport script from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Spotify\")])]),_c('template',{slot:\"content\"},[(!_vm.spotify.libspotify_installed)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was either built without support for Spotify or libspotify is not installed.\")])]):_vm._e(),(_vm.spotify.libspotify_installed)?_c('div',[_c('div',{staticClass:\"notification is-size-7\"},[_c('b',[_vm._v(\"You must have a Spotify premium account\")]),_vm._v(\". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. \")]),_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"libspotify\")]),_vm._v(\" - Login with your Spotify username and password \")]),(_vm.spotify.libspotify_logged_in)?_c('p',{staticClass:\"fd-has-margin-bottom\"},[_vm._v(\" Logged in as \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.libspotify_user))])])]):_vm._e(),(_vm.spotify.libspotify_installed && !_vm.spotify.libspotify_logged_in)?_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_libspotify($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.user),expression:\"libspotify.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.libspotify.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.password),expression:\"libspotify.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.libspotify.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\"},[_vm._v(\"Login\")])])])]):_vm._e(),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" libspotify enables forked-daapd to play Spotify tracks. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. \")])]),_c('div',{staticClass:\"fd-has-margin-top\"},[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Spotify Web API\")]),_vm._v(\" - Grant access to the Spotify Web API \")]),(_vm.spotify.webapi_token_valid)?_c('p',[_vm._v(\" Access granted for \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.webapi_user))])])]):_vm._e(),(_vm.spotify_missing_scope.length > 0)?_c('p',{staticClass:\"help is-danger\"},[_vm._v(\" Please reauthorize Web API access to grant forked-daapd the following additional access rights: \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_missing_scope)))])])]):_vm._e(),_c('div',{staticClass:\"field fd-has-margin-top \"},[_c('div',{staticClass:\"control\"},[_c('a',{staticClass:\"button\",class:{ 'is-info': !_vm.spotify.webapi_token_valid || _vm.spotify_missing_scope.length > 0 },attrs:{\"href\":_vm.spotify.oauth_uri}},[_vm._v(\"Authorize Web API access\")])])]),_c('p',{staticClass:\"help\"},[_vm._v(\" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are \"),_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_required_scope)))]),_vm._v(\". \")])])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Last.fm\")])]),_c('template',{slot:\"content\"},[(!_vm.lastfm.enabled)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was built without support for Last.fm.\")])]):_vm._e(),(_vm.lastfm.enabled)?_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Last.fm\")]),_vm._v(\" - Login with your Last.fm username and password to enable scrobbling \")]),(_vm.lastfm.scrobbling_enabled)?_c('div',[_c('a',{staticClass:\"button\",on:{\"click\":_vm.logoutLastfm}},[_vm._v(\"Stop scrobbling\")])]):_vm._e(),(!_vm.lastfm.scrobbling_enabled)?_c('div',[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_lastfm($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.user),expression:\"lastfm_login.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.lastfm_login.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.password),expression:\"lastfm_login.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.lastfm_login.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Login\")])])]),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. \")])])]):_vm._e()]):_vm._e()])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageOnlineServices.vue?vue&type=template&id=da8f0386&\"\nimport script from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Remote Pairing\")])]),_c('template',{slot:\"content\"},[(_vm.pairing.active)?_c('div',{staticClass:\"notification\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._v(\" Remote pairing request from \"),_c('b',[_vm._v(_vm._s(_vm.pairing.remote))])]),_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Send\")])])])])]):_vm._e(),(!_vm.pairing.active)?_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\"No active pairing request.\")])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Device Verification\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. \")]),_vm._l((_vm.outputs),function(output){return _c('div',{key:output.id},[_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(output.selected),expression:\"output.selected\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(output.selected)?_vm._i(output.selected,null)>-1:(output.selected)},on:{\"change\":[function($event){var $$a=output.selected,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.$set(output, \"selected\", $$a.concat([$$v])))}else{$$i>-1&&(_vm.$set(output, \"selected\", $$a.slice(0,$$i).concat($$a.slice($$i+1))))}}else{_vm.$set(output, \"selected\", $$c)}},function($event){return _vm.output_toggle(output.id)}]}}),_vm._v(\" \"+_vm._s(output.name)+\" \")])])]),(output.needs_auth_key)?_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_verification(output.id)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.verification_req.pin),expression:\"verification_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter verification code\"},domProps:{\"value\":(_vm.verification_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.verification_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Verify\")])])])]):_vm._e()])})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageRemotesOutputs.vue?vue&type=template&id=2356d137&\"\nimport script from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport VueRouter from 'vue-router'\nimport store from '@/store'\nimport * as types from '@/store/mutation_types'\nimport PageQueue from '@/pages/PageQueue'\nimport PageNowPlaying from '@/pages/PageNowPlaying'\nimport PageBrowse from '@/pages/PageBrowse'\nimport PageBrowseRecentlyAdded from '@/pages/PageBrowseRecentlyAdded'\nimport PageBrowseRecentlyPlayed from '@/pages/PageBrowseRecentlyPlayed'\nimport PageArtists from '@/pages/PageArtists'\nimport PageArtist from '@/pages/PageArtist'\nimport PageAlbums from '@/pages/PageAlbums'\nimport PageAlbum from '@/pages/PageAlbum'\nimport PageGenres from '@/pages/PageGenres'\nimport PageGenre from '@/pages/PageGenre'\nimport PageGenreTracks from '@/pages/PageGenreTracks'\nimport PageArtistTracks from '@/pages/PageArtistTracks'\nimport PagePodcasts from '@/pages/PagePodcasts'\nimport PagePodcast from '@/pages/PagePodcast'\nimport PageAudiobooksAlbums from '@/pages/PageAudiobooksAlbums'\nimport PageAudiobooksArtists from '@/pages/PageAudiobooksArtists'\nimport PageAudiobooksArtist from '@/pages/PageAudiobooksArtist'\nimport PageAudiobooksAlbum from '@/pages/PageAudiobooksAlbum'\nimport PagePlaylists from '@/pages/PagePlaylists'\nimport PagePlaylist from '@/pages/PagePlaylist'\nimport PageFiles from '@/pages/PageFiles'\nimport PageRadioStreams from '@/pages/PageRadioStreams'\nimport PageSearch from '@/pages/PageSearch'\nimport PageAbout from '@/pages/PageAbout'\nimport SpotifyPageBrowse from '@/pages/SpotifyPageBrowse'\nimport SpotifyPageBrowseNewReleases from '@/pages/SpotifyPageBrowseNewReleases'\nimport SpotifyPageBrowseFeaturedPlaylists from '@/pages/SpotifyPageBrowseFeaturedPlaylists'\nimport SpotifyPageArtist from '@/pages/SpotifyPageArtist'\nimport SpotifyPageAlbum from '@/pages/SpotifyPageAlbum'\nimport SpotifyPagePlaylist from '@/pages/SpotifyPagePlaylist'\nimport SpotifyPageSearch from '@/pages/SpotifyPageSearch'\nimport SettingsPageWebinterface from '@/pages/SettingsPageWebinterface'\nimport SettingsPageArtwork from '@/pages/SettingsPageArtwork'\nimport SettingsPageOnlineServices from '@/pages/SettingsPageOnlineServices'\nimport SettingsPageRemotesOutputs from '@/pages/SettingsPageRemotesOutputs'\n\nVue.use(VueRouter)\n\nexport const router = new VueRouter({\n routes: [\n {\n path: '/',\n name: 'PageQueue',\n component: PageQueue\n },\n {\n path: '/about',\n name: 'About',\n component: PageAbout\n },\n {\n path: '/now-playing',\n name: 'Now playing',\n component: PageNowPlaying\n },\n {\n path: '/music',\n redirect: '/music/browse'\n },\n {\n path: '/music/browse',\n name: 'Browse',\n component: PageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_added',\n name: 'Browse Recently Added',\n component: PageBrowseRecentlyAdded,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_played',\n name: 'Browse Recently Played',\n component: PageBrowseRecentlyPlayed,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/artists',\n name: 'Artists',\n component: PageArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id',\n name: 'Artist',\n component: PageArtist,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id/tracks',\n name: 'Tracks',\n component: PageArtistTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/albums',\n name: 'Albums',\n component: PageAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/albums/:album_id',\n name: 'Album',\n component: PageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/genres',\n name: 'Genres',\n component: PageGenres,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/genres/:genre',\n name: 'Genre',\n component: PageGenre,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/genres/:genre/tracks',\n name: 'GenreTracks',\n component: PageGenreTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/podcasts',\n name: 'Podcasts',\n component: PagePodcasts,\n meta: { show_progress: true }\n },\n {\n path: '/podcasts/:album_id',\n name: 'Podcast',\n component: PagePodcast,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks',\n redirect: '/audiobooks/artists'\n },\n {\n path: '/audiobooks/artists',\n name: 'AudiobooksArtists',\n component: PageAudiobooksArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/artists/:artist_id',\n name: 'AudiobooksArtist',\n component: PageAudiobooksArtist,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks/albums',\n name: 'AudiobooksAlbums',\n component: PageAudiobooksAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/:album_id',\n name: 'Audiobook',\n component: PageAudiobooksAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/radio',\n name: 'Radio',\n component: PageRadioStreams,\n meta: { show_progress: true }\n },\n {\n path: '/files',\n name: 'Files',\n component: PageFiles,\n meta: { show_progress: true }\n },\n {\n path: '/playlists',\n redirect: '/playlists/0'\n },\n {\n path: '/playlists/:playlist_id',\n name: 'Playlists',\n component: PagePlaylists,\n meta: { show_progress: true }\n },\n {\n path: '/playlists/:playlist_id/tracks',\n name: 'Playlist',\n component: PagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search',\n redirect: '/search/library'\n },\n {\n path: '/search/library',\n name: 'Search Library',\n component: PageSearch\n },\n {\n path: '/music/spotify',\n name: 'Spotify',\n component: SpotifyPageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/new-releases',\n name: 'Spotify Browse New Releases',\n component: SpotifyPageBrowseNewReleases,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/featured-playlists',\n name: 'Spotify Browse Featured Playlists',\n component: SpotifyPageBrowseFeaturedPlaylists,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/artists/:artist_id',\n name: 'Spotify Artist',\n component: SpotifyPageArtist,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/albums/:album_id',\n name: 'Spotify Album',\n component: SpotifyPageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/playlists/:playlist_id',\n name: 'Spotify Playlist',\n component: SpotifyPagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search/spotify',\n name: 'Spotify Search',\n component: SpotifyPageSearch\n },\n {\n path: '/settings/webinterface',\n name: 'Settings Webinterface',\n component: SettingsPageWebinterface\n },\n {\n path: '/settings/artwork',\n name: 'Settings Artwork',\n component: SettingsPageArtwork\n },\n {\n path: '/settings/online-services',\n name: 'Settings Online Services',\n component: SettingsPageOnlineServices\n },\n {\n path: '/settings/remotes-outputs',\n name: 'Settings Remotes Outputs',\n component: SettingsPageRemotesOutputs\n }\n ],\n scrollBehavior (to, from, savedPosition) {\n // console.log(to.path + '_' + from.path + '__' + to.hash + ' savedPosition:' + savedPosition)\n if (savedPosition) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve(savedPosition)\n }, 10)\n })\n } else if (to.path === from.path && to.hash) {\n return { selector: to.hash, offset: { x: 0, y: 120 } }\n } else if (to.hash) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve({ selector: to.hash, offset: { x: 0, y: 120 } })\n }, 10)\n })\n } else if (to.meta.has_index) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n if (to.meta.has_tabs) {\n resolve({ selector: '#top', offset: { x: 0, y: 140 } })\n } else {\n resolve({ selector: '#top', offset: { x: 0, y: 100 } })\n }\n }, 10)\n })\n } else {\n return { x: 0, y: 0 }\n }\n }\n})\n\nrouter.beforeEach((to, from, next) => {\n if (store.state.show_burger_menu) {\n store.commit(types.SHOW_BURGER_MENU, false)\n next(false)\n return\n }\n if (store.state.show_player_menu) {\n store.commit(types.SHOW_PLAYER_MENU, false)\n next(false)\n return\n }\n next(true)\n})\n","import Vue from 'vue'\nimport moment from 'moment'\nimport momentDurationFormatSetup from 'moment-duration-format'\n\nmomentDurationFormatSetup(moment)\nVue.filter('duration', function (value, format) {\n if (format) {\n return moment.duration(value).format(format)\n }\n return moment.duration(value).format('hh:*mm:ss')\n})\n\nVue.filter('time', function (value, format) {\n if (format) {\n return moment(value).format(format)\n }\n return moment(value).format()\n})\n\nVue.filter('timeFromNow', function (value, withoutSuffix) {\n return moment(value).fromNow(withoutSuffix)\n})\n\nVue.filter('number', function (value) {\n return value.toLocaleString()\n})\n\nVue.filter('channels', function (value) {\n if (value === 1) {\n return 'mono'\n }\n if (value === 2) {\n return 'stereo'\n }\n if (!value) {\n return ''\n }\n return value + ' channels'\n})\n","import Vue from 'vue'\nimport VueProgressBar from 'vue-progressbar'\n\nVue.use(VueProgressBar, {\n color: 'hsl(204, 86%, 53%)',\n failedColor: 'red',\n height: '1px'\n})\n","// The Vue build version to load with the `import` command\n// (runtime-only or standalone) has been set in webpack.base.conf with an alias.\nimport Vue from 'vue'\nimport App from './App'\nimport { router } from './router'\nimport store from './store'\nimport './filter'\nimport './progress'\nimport vClickOutside from 'v-click-outside'\nimport VueTinyLazyloadImg from 'vue-tiny-lazyload-img'\nimport VueObserveVisibility from 'vue-observe-visibility'\nimport VueScrollTo from 'vue-scrollto'\nimport 'mdi/css/materialdesignicons.css'\nimport 'vue-range-slider/dist/vue-range-slider.css'\nimport './mystyles.scss'\n\nVue.config.productionTip = false\n\nVue.use(vClickOutside)\nVue.use(VueTinyLazyloadImg)\nVue.use(VueObserveVisibility)\nVue.use(VueScrollTo)\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n store,\n components: { App },\n template: ''\n})\n","export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=style&index=0&lang=css&\"","import { render, staticRenderFns } from \"./ContentWithHero.vue?vue&type=template&id=357bedaa&\"\nimport script from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/templates/ContentWithHero.vue?6919","webpack:///./src/templates/ContentWithHero.vue?0763","webpack:///./node_modules/moment/locale sync ^\\.\\/.*$","webpack:///./src/App.vue?a927","webpack:///./src/components/NavbarTop.vue?8a7f","webpack:///./src/components/NavbarItemLink.vue?3ea1","webpack:///./src/store/mutation_types.js","webpack:///src/components/NavbarItemLink.vue","webpack:///./src/components/NavbarItemLink.vue?7266","webpack:///./src/components/NavbarItemLink.vue","webpack:///./src/components/ModalDialog.vue?7e85","webpack:///src/components/ModalDialog.vue","webpack:///./src/components/ModalDialog.vue?9194","webpack:///./src/components/ModalDialog.vue","webpack:///./src/store/index.js","webpack:///./src/webapi/index.js","webpack:///src/components/NavbarTop.vue","webpack:///./src/components/NavbarTop.vue?2942","webpack:///./src/components/NavbarTop.vue","webpack:///./src/components/NavbarBottom.vue?4d13","webpack:///./src/audio.js","webpack:///./src/components/NavbarItemOutput.vue?644a","webpack:///src/components/NavbarItemOutput.vue","webpack:///./src/components/NavbarItemOutput.vue?f284","webpack:///./src/components/NavbarItemOutput.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?10da","webpack:///src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonPlayPause.vue?7730","webpack:///./src/components/PlayerButtonPlayPause.vue","webpack:///./src/components/PlayerButtonNext.vue?b09b","webpack:///src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonNext.vue?fbd2","webpack:///./src/components/PlayerButtonNext.vue","webpack:///./src/components/PlayerButtonPrevious.vue?dfcb","webpack:///src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonPrevious.vue?7ab3","webpack:///./src/components/PlayerButtonPrevious.vue","webpack:///./src/components/PlayerButtonShuffle.vue?d8e2","webpack:///src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonShuffle.vue?f823","webpack:///./src/components/PlayerButtonShuffle.vue","webpack:///./src/components/PlayerButtonConsume.vue?d535","webpack:///src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonConsume.vue?f19d","webpack:///./src/components/PlayerButtonConsume.vue","webpack:///./src/components/PlayerButtonRepeat.vue?3f70","webpack:///src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonRepeat.vue?51a7","webpack:///./src/components/PlayerButtonRepeat.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?b878","webpack:///src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekBack.vue?de1a","webpack:///./src/components/PlayerButtonSeekBack.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?48c2","webpack:///src/components/PlayerButtonSeekForward.vue","webpack:///./src/components/PlayerButtonSeekForward.vue?1252","webpack:///./src/components/PlayerButtonSeekForward.vue","webpack:///src/components/NavbarBottom.vue","webpack:///./src/components/NavbarBottom.vue?5719","webpack:///./src/components/NavbarBottom.vue","webpack:///./src/components/Notifications.vue?6cdc","webpack:///src/components/Notifications.vue","webpack:///./src/components/Notifications.vue?7a53","webpack:///./src/components/Notifications.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?e47b","webpack:///src/components/ModalDialogRemotePairing.vue","webpack:///./src/components/ModalDialogRemotePairing.vue?c5a3","webpack:///./src/components/ModalDialogRemotePairing.vue","webpack:///src/App.vue","webpack:///./src/App.vue?1160","webpack:///./src/App.vue","webpack:///./src/pages/PageQueue.vue?4d5e","webpack:///./src/templates/ContentWithHeading.vue?84d8","webpack:///src/templates/ContentWithHeading.vue","webpack:///./src/templates/ContentWithHeading.vue?9dc6","webpack:///./src/templates/ContentWithHeading.vue","webpack:///./src/components/ListItemQueueItem.vue?a258","webpack:///src/components/ListItemQueueItem.vue","webpack:///./src/components/ListItemQueueItem.vue?ce06","webpack:///./src/components/ListItemQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?2e8c","webpack:///src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogQueueItem.vue?f77a","webpack:///./src/components/ModalDialogQueueItem.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?f541","webpack:///src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogAddUrlStream.vue?1d31","webpack:///./src/components/ModalDialogAddUrlStream.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?1cde","webpack:///src/components/ModalDialogPlaylistSave.vue","webpack:///./src/components/ModalDialogPlaylistSave.vue?2442","webpack:///./src/components/ModalDialogPlaylistSave.vue","webpack:///src/pages/PageQueue.vue","webpack:///./src/pages/PageQueue.vue?adc0","webpack:///./src/pages/PageQueue.vue","webpack:///./src/pages/PageNowPlaying.vue?d3fb","webpack:///./src/components/CoverArtwork.vue?4059","webpack:///./src/lib/SVGRenderer.js","webpack:///src/components/CoverArtwork.vue","webpack:///./src/components/CoverArtwork.vue?5f40","webpack:///./src/components/CoverArtwork.vue","webpack:///src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageNowPlaying.vue?5a32","webpack:///./src/pages/PageNowPlaying.vue","webpack:///./src/pages/PageBrowse.vue?856e","webpack:///./src/pages/mixin.js","webpack:///./src/components/TabsMusic.vue?d269","webpack:///src/components/TabsMusic.vue","webpack:///./src/components/TabsMusic.vue?2d68","webpack:///./src/components/TabsMusic.vue","webpack:///./src/components/ListAlbums.vue?c127","webpack:///./src/components/ListItemAlbum.vue?8d6c","webpack:///src/components/ListItemAlbum.vue","webpack:///./src/components/ListItemAlbum.vue?b729","webpack:///./src/components/ListItemAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?3f44","webpack:///src/components/ModalDialogAlbum.vue","webpack:///./src/components/ModalDialogAlbum.vue?f2cf","webpack:///./src/components/ModalDialogAlbum.vue","webpack:///./src/lib/Albums.js","webpack:///src/components/ListAlbums.vue","webpack:///./src/components/ListAlbums.vue?f117","webpack:///./src/components/ListAlbums.vue","webpack:///./src/components/ListTracks.vue?0c32","webpack:///./src/components/ListItemTrack.vue?99a1","webpack:///src/components/ListItemTrack.vue","webpack:///./src/components/ListItemTrack.vue?c143","webpack:///./src/components/ListItemTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?7961","webpack:///src/components/ModalDialogTrack.vue","webpack:///./src/components/ModalDialogTrack.vue?b9e3","webpack:///./src/components/ModalDialogTrack.vue","webpack:///src/components/ListTracks.vue","webpack:///./src/components/ListTracks.vue?1a43","webpack:///./src/components/ListTracks.vue","webpack:///src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowse.vue?ac81","webpack:///./src/pages/PageBrowse.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?512d","webpack:///src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyAdded.vue?11a8","webpack:///./src/pages/PageBrowseRecentlyAdded.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?f81f","webpack:///src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue?b76d","webpack:///./src/pages/PageBrowseRecentlyPlayed.vue","webpack:///./src/pages/PageArtists.vue?7bfc","webpack:///./src/components/IndexButtonList.vue?a6c7","webpack:///src/components/IndexButtonList.vue","webpack:///./src/components/IndexButtonList.vue?fb40","webpack:///./src/components/IndexButtonList.vue","webpack:///./src/components/ListArtists.vue?c951","webpack:///./src/components/ListItemArtist.vue?9e4e","webpack:///src/components/ListItemArtist.vue","webpack:///./src/components/ListItemArtist.vue?e871","webpack:///./src/components/ListItemArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?72b0","webpack:///src/components/ModalDialogArtist.vue","webpack:///./src/components/ModalDialogArtist.vue?3f0b","webpack:///./src/components/ModalDialogArtist.vue","webpack:///./src/lib/Artists.js","webpack:///src/components/ListArtists.vue","webpack:///./src/components/ListArtists.vue?f6f9","webpack:///./src/components/ListArtists.vue","webpack:///./src/components/DropdownMenu.vue?ae51","webpack:///src/components/DropdownMenu.vue","webpack:///./src/components/DropdownMenu.vue?183a","webpack:///./src/components/DropdownMenu.vue","webpack:///src/pages/PageArtists.vue","webpack:///./src/pages/PageArtists.vue?06ce","webpack:///./src/pages/PageArtists.vue","webpack:///./src/pages/PageArtist.vue?dc22","webpack:///src/pages/PageArtist.vue","webpack:///./src/pages/PageArtist.vue?54da","webpack:///./src/pages/PageArtist.vue","webpack:///./src/pages/PageAlbums.vue?dc23","webpack:///src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbums.vue?dd41","webpack:///./src/pages/PageAlbums.vue","webpack:///./src/pages/PageAlbum.vue?0414","webpack:///src/pages/PageAlbum.vue","webpack:///./src/pages/PageAlbum.vue?07be","webpack:///./src/pages/PageAlbum.vue","webpack:///./src/pages/PageGenres.vue?7461","webpack:///./src/components/ListItemGenre.vue?71a2","webpack:///src/components/ListItemGenre.vue","webpack:///./src/components/ListItemGenre.vue?50b2","webpack:///./src/components/ListItemGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?2faf","webpack:///src/components/ModalDialogGenre.vue","webpack:///./src/components/ModalDialogGenre.vue?0658","webpack:///./src/components/ModalDialogGenre.vue","webpack:///src/pages/PageGenres.vue","webpack:///./src/pages/PageGenres.vue?9722","webpack:///./src/pages/PageGenres.vue","webpack:///./src/pages/PageGenre.vue?8a9b","webpack:///src/pages/PageGenre.vue","webpack:///./src/pages/PageGenre.vue?4090","webpack:///./src/pages/PageGenre.vue","webpack:///./src/pages/PageGenreTracks.vue?e991","webpack:///src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageGenreTracks.vue?0317","webpack:///./src/pages/PageGenreTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?14e6","webpack:///src/pages/PageArtistTracks.vue","webpack:///./src/pages/PageArtistTracks.vue?7e28","webpack:///./src/pages/PageArtistTracks.vue","webpack:///./src/pages/PagePodcasts.vue?c19e","webpack:///./src/components/ModalDialogAddRss.vue?6856","webpack:///src/components/ModalDialogAddRss.vue","webpack:///./src/components/ModalDialogAddRss.vue?3bb2","webpack:///./src/components/ModalDialogAddRss.vue","webpack:///src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcasts.vue?ec36","webpack:///./src/pages/PagePodcasts.vue","webpack:///./src/pages/PagePodcast.vue?da51","webpack:///src/pages/PagePodcast.vue","webpack:///./src/pages/PagePodcast.vue?7353","webpack:///./src/pages/PagePodcast.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?4c49","webpack:///./src/components/TabsAudiobooks.vue?5007","webpack:///src/components/TabsAudiobooks.vue","webpack:///./src/components/TabsAudiobooks.vue?b63b","webpack:///./src/components/TabsAudiobooks.vue","webpack:///src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksAlbums.vue?5019","webpack:///./src/pages/PageAudiobooksAlbums.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?ac69","webpack:///src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtists.vue?35bb","webpack:///./src/pages/PageAudiobooksArtists.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?aa53","webpack:///src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksArtist.vue?2426","webpack:///./src/pages/PageAudiobooksArtist.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?64fa","webpack:///src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PageAudiobooksAlbum.vue?49ae","webpack:///./src/pages/PageAudiobooksAlbum.vue","webpack:///./src/pages/PagePlaylists.vue?6b16","webpack:///./src/components/ListPlaylists.vue?ad8b","webpack:///./src/components/ListItemPlaylist.vue?fba7","webpack:///src/components/ListItemPlaylist.vue","webpack:///./src/components/ListItemPlaylist.vue?5b1a","webpack:///./src/components/ListItemPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?3fef","webpack:///src/components/ModalDialogPlaylist.vue","webpack:///./src/components/ModalDialogPlaylist.vue?8ac7","webpack:///./src/components/ModalDialogPlaylist.vue","webpack:///src/components/ListPlaylists.vue","webpack:///./src/components/ListPlaylists.vue?d5a9","webpack:///./src/components/ListPlaylists.vue","webpack:///src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylists.vue?5936","webpack:///./src/pages/PagePlaylists.vue","webpack:///./src/pages/PagePlaylist.vue?61d3","webpack:///src/pages/PagePlaylist.vue","webpack:///./src/pages/PagePlaylist.vue?f646","webpack:///./src/pages/PagePlaylist.vue","webpack:///./src/pages/PageFiles.vue?0bd8","webpack:///./src/components/ListItemDirectory.vue?ad53","webpack:///src/components/ListItemDirectory.vue","webpack:///./src/components/ListItemDirectory.vue?7c5d","webpack:///./src/components/ListItemDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?a98f","webpack:///src/components/ModalDialogDirectory.vue","webpack:///./src/components/ModalDialogDirectory.vue?cef6","webpack:///./src/components/ModalDialogDirectory.vue","webpack:///src/pages/PageFiles.vue","webpack:///./src/pages/PageFiles.vue?c791","webpack:///./src/pages/PageFiles.vue","webpack:///./src/pages/PageRadioStreams.vue?96d0","webpack:///src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageRadioStreams.vue?16e0","webpack:///./src/pages/PageRadioStreams.vue","webpack:///./src/pages/PageSearch.vue?2a82","webpack:///./src/templates/ContentText.vue?5186","webpack:///src/templates/ContentText.vue","webpack:///./src/templates/ContentText.vue?bdf7","webpack:///./src/templates/ContentText.vue","webpack:///./src/components/TabsSearch.vue?d883","webpack:///src/components/TabsSearch.vue","webpack:///./src/components/TabsSearch.vue?6aa8","webpack:///./src/components/TabsSearch.vue","webpack:///src/pages/PageSearch.vue","webpack:///./src/pages/PageSearch.vue?3d2a","webpack:///./src/pages/PageSearch.vue","webpack:///./src/pages/PageAbout.vue?a87c","webpack:///src/pages/PageAbout.vue","webpack:///./src/pages/PageAbout.vue?4563","webpack:///./src/pages/PageAbout.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?389c","webpack:///./src/components/SpotifyListItemAlbum.vue?c834","webpack:///src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemAlbum.vue?cf43","webpack:///./src/components/SpotifyListItemAlbum.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?490e","webpack:///src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyListItemPlaylist.vue?308c","webpack:///./src/components/SpotifyListItemPlaylist.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?3bfe","webpack:///src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogAlbum.vue?7978","webpack:///./src/components/SpotifyModalDialogAlbum.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?c0c9","webpack:///src/components/SpotifyModalDialogPlaylist.vue","webpack:///./src/components/SpotifyModalDialogPlaylist.vue?3b0b","webpack:///./src/components/SpotifyModalDialogPlaylist.vue","webpack:///src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowse.vue?0c73","webpack:///./src/pages/SpotifyPageBrowse.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?6d95","webpack:///src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue?d8c2","webpack:///./src/pages/SpotifyPageBrowseNewReleases.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?332a","webpack:///src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue?a73a","webpack:///./src/pages/SpotifyPageBrowseFeaturedPlaylists.vue","webpack:///./src/pages/SpotifyPageArtist.vue?b296","webpack:///./src/components/SpotifyModalDialogArtist.vue?24b5","webpack:///src/components/SpotifyModalDialogArtist.vue","webpack:///./src/components/SpotifyModalDialogArtist.vue?62f6","webpack:///./src/components/SpotifyModalDialogArtist.vue","webpack:///src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageArtist.vue?beba","webpack:///./src/pages/SpotifyPageArtist.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?0bdc","webpack:///./src/components/SpotifyListItemTrack.vue?0b3f","webpack:///src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyListItemTrack.vue?d9dc","webpack:///./src/components/SpotifyListItemTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?d852","webpack:///src/components/SpotifyModalDialogTrack.vue","webpack:///./src/components/SpotifyModalDialogTrack.vue?60d1","webpack:///./src/components/SpotifyModalDialogTrack.vue","webpack:///src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPageAlbum.vue?af1e","webpack:///./src/pages/SpotifyPageAlbum.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?be9d","webpack:///src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPagePlaylist.vue?4d63","webpack:///./src/pages/SpotifyPagePlaylist.vue","webpack:///./src/pages/SpotifyPageSearch.vue?eb0b","webpack:///./src/components/SpotifyListItemArtist.vue?2a21","webpack:///src/components/SpotifyListItemArtist.vue","webpack:///./src/components/SpotifyListItemArtist.vue?afa1","webpack:///./src/components/SpotifyListItemArtist.vue","webpack:///src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SpotifyPageSearch.vue?f792","webpack:///./src/pages/SpotifyPageSearch.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?0929","webpack:///./src/components/TabsSettings.vue?fba9","webpack:///src/components/TabsSettings.vue","webpack:///./src/components/TabsSettings.vue?e341","webpack:///./src/components/TabsSettings.vue","webpack:///./src/components/SettingsCheckbox.vue?d7e1","webpack:///src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsCheckbox.vue?4dd0","webpack:///./src/components/SettingsCheckbox.vue","webpack:///./src/components/SettingsTextfield.vue?1720","webpack:///src/components/SettingsTextfield.vue","webpack:///./src/components/SettingsTextfield.vue?aae5","webpack:///./src/components/SettingsTextfield.vue","webpack:///./src/components/SettingsIntfield.vue?7f96","webpack:///src/components/SettingsIntfield.vue","webpack:///./src/components/SettingsIntfield.vue?938e","webpack:///./src/components/SettingsIntfield.vue","webpack:///src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageWebinterface.vue?b41a","webpack:///./src/pages/SettingsPageWebinterface.vue","webpack:///./src/pages/SettingsPageArtwork.vue?ea46","webpack:///src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageArtwork.vue?4d58","webpack:///./src/pages/SettingsPageArtwork.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?2504","webpack:///src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageOnlineServices.vue?e878","webpack:///./src/pages/SettingsPageOnlineServices.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?75ab","webpack:///src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/pages/SettingsPageRemotesOutputs.vue?69f8","webpack:///./src/pages/SettingsPageRemotesOutputs.vue","webpack:///./src/router/index.js","webpack:///./src/filter/index.js","webpack:///./src/progress/index.js","webpack:///./src/main.js","webpack:///./src/components/Notifications.vue?838a","webpack:///./src/templates/ContentWithHero.vue"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","render","_vm","this","_h","$createElement","_c","_self","staticClass","staticStyle","_t","staticRenderFns","map","webpackContext","req","id","webpackContextResolve","e","Error","code","keys","resolve","attrs","directives","rawName","expression","pairing_active","on","$event","show_burger_menu","show_player_menu","style","_e","class","show_settings_menu","on_click_outside_settings","_m","_v","stopPropagation","preventDefault","show_update_library","library","updating","update_library","slot","domProps","Array","isArray","rescan_metadata","_i","$$a","$$el","target","$$c","checked","$$v","$$i","concat","is_active","full_path","open_link","UPDATE_CONFIG","UPDATE_SETTINGS","UPDATE_SETTINGS_OPTION","UPDATE_LIBRARY_STATS","UPDATE_LIBRARY_AUDIOBOOKS_COUNT","UPDATE_LIBRARY_PODCASTS_COUNT","UPDATE_OUTPUTS","UPDATE_PLAYER_STATUS","UPDATE_QUEUE","UPDATE_LASTFM","UPDATE_SPOTIFY","UPDATE_PAIRING","SPOTIFY_NEW_RELEASES","SPOTIFY_FEATURED_PLAYLISTS","ADD_NOTIFICATION","DELETE_NOTIFICATION","ADD_RECENT_SEARCH","HIDE_SINGLES","HIDE_SPOTIFY","ARTISTS_SORT","ARTIST_ALBUMS_SORT","ALBUMS_SORT","SHOW_ONLY_NEXT_ITEMS","SHOW_BURGER_MENU","SHOW_PLAYER_MENU","props","to","String","exact","Boolean","computed","$route","path","startsWith","$store","state","commit","methods","$router","resolved","href","component","$emit","_s","title","close_action","delete_action","ok_action","Vue","use","Vuex","Store","config","websocket_port","version","buildoptions","settings","categories","artists","albums","songs","db_playtime","audiobooks_count","podcasts_count","outputs","player","repeat","consume","shuffle","volume","item_id","item_length_ms","item_progress_ms","queue","count","items","lastfm","spotify","pairing","spotify_new_releases","spotify_featured_playlists","notifications","next_id","list","recent_searches","hide_singles","hide_spotify","artists_sort","artist_albums_sort","albums_sort","show_only_next_items","getters","now_playing","item","find","undefined","settings_webinterface","elem","settings_option_recently_added_limit","option","options","settings_option_show_composer_now_playing","settings_option_show_composer_for_genre","settings_category","categoryName","settings_option","optionName","category","mutations","types","settingCategory","settingOption","libraryStats","playerStatus","newReleases","featuredPlaylists","notification","topic","index","findIndex","indexOf","query","pop","hideSingles","hideSpotify","sort","showOnlyNextItems","showBurgerMenu","showPlayerMenu","actions","add_notification","newNotification","type","text","timeout","setTimeout","axios","interceptors","response","error","request","status","responseURL","store","dispatch","statusText","Promise","reject","settings_update","put","library_stats","library_update","library_rescan","library_count","queue_clear","queue_remove","itemId","delete","queue_move","newPosition","queue_add","uri","post","then","queue_add_next","position","queue_expression_add","params","queue_expression_add_next","queue_save_playlist","player_status","player_play_uri","uris","clear","playback","playback_from_position","player_play_expression","player_play","player_playpos","player_playid","player_pause","player_stop","player_next","player_previous","player_shuffle","newState","player_consume","player_repeat","newRepeatMode","player_volume","player_output_volume","outputId","outputVolume","player_seek_to_pos","player_seek","seekMs","output_update","output","output_toggle","library_artists","media_kind","library_artist","artistId","library_artist_albums","library_albums","library_album","albumId","library_album_tracks","filter","limit","offset","library_album_track_update","attributes","library_genres","library_genre","genre","genreParams","library_genre_tracks","library_radio_streams","library_artist_tracks","artist","artistParams","library_podcasts_new_episodes","episodesParams","library_podcast_episodes","library_add","url","library_playlist_delete","playlistId","library_playlists","library_playlist_folder","library_playlist","library_playlist_tracks","library_track","trackId","library_track_playlists","library_track_update","library_files","directory","filesParams","search","searchParams","spotify_login","credentials","lastfm_login","lastfm_logout","pairing_kickoff","pairingReq","artwork_url_append_size_params","artworkUrl","maxwidth","maxheight","includes","components","webapi_token_valid","webapi","watch","is_now_playing_page","data_kind","album","toggle_mute_volume","set_volume","_l","loading","playing","togglePlay","stream_volume","set_stream_volume","_audio","Audio","_context","_source","_gain","setupAudio","AudioContext","webkitAudioContext","createMediaElementSource","createGain","connect","destination","addEventListener","play","setVolume","parseFloat","gain","playSource","source","stopAudio","resume","src","Date","now","crossOrigin","load","pause","stop","close","selected","set_enabled","type_class","play_next","newVolume","values","disabled","toggle_play_pause","icon_style","is_playing","is_pause_allowed","show_disabled_message","play_previous","is_shuffle","toggle_shuffle_mode","is_consume","toggle_consume_mode","is_repeat_off","toggle_repeat_mode","is_repeat_all","is_repeat_single","seek","is_stopped","seek_ms","NavbarItemLink","NavbarItemOutput","RangeSlider","PlayerButtonPlayPause","PlayerButtonNext","PlayerButtonPrevious","PlayerButtonShuffle","PlayerButtonConsume","PlayerButtonRepeat","PlayerButtonSeekForward","PlayerButtonSeekBack","old_volume","show_outputs_menu","show_desktop_outputs_menu","a","closeAudio","playChannel","channel","remove","kickoff_pairing","remote","pairing_req","ref","composing","$set","pin","show","$refs","pin_field","focus","template","token_timer_id","reconnect_attempts","created","$Progress","start","beforeEach","from","next","meta","show_progress","progress","parseMeta","afterEach","finish","document","library_name","open_ws","vm","protocol","location","wsUrl","hostname","socket","onopen","send","JSON","stringify","update_outputs","update_player_status","update_library_stats","update_settings","update_queue","update_spotify","update_lastfm","update_pairing","onclose","onerror","onmessage","parse","notify","clearTimeout","webapi_token_expires_in","webapi_token","active","update_is_clipped","querySelector","classList","add","update_show_next_items","open_add_stream_dialog","edit_mode","queue_items","save_dialog","move_item","model","callback","current_position","open_dialog","show_details_modal","selected_item","show_url_modal","show_pls_save_modal","$slots","options_visible","scroll_to_content","scroll_to_top","observer_options","visibilityChanged","intersection","rootMargin","threshold","scrollTo","has_tabs","$scrollTo","isVisible","is_next","open_album","open_album_artist","album_artist","composer","year","open_genre","track_number","disc_number","_f","length_ms","open_spotify_artist","open_spotify_album","samplerate","channels","bitrate","spotify_track","spotifyApi","setAccessToken","getTrack","lastIndexOf","add_stream","url_field","save","playlist_name","playlist_name_field","allow_modifying_stored_playlists","default_playlist_directory","nowPlaying","oldPosition","oldIndex","newIndex","artwork_url","artwork_url_with_size","dataURI","SVGRenderer","svg","width","height","textColor","fontFamily","fontSize","fontWeight","backgroundColor","caption","encodeURIComponent","font_family","font_size","font_weight","substring","hex","background_color","replace","parseInt","substr","g","b","luma","is_background_light","text_color","rendererParams","interval_id","setInterval","tick","catch","recently_added","open_browse","recently_played","LoadDataBeforeEnterMixin","dataObject","beforeRouteEnter","set","beforeRouteUpdate","idx","grouped","selected_album","open_remove_podcast_dialog","show_remove_podcast_modal","remove_podcast","rss_playlist_to_remove","name_sort","charAt","toUpperCase","listeners","click","date_released","media_kind_resolved","mark_played","open_artist","track_count","time_added","artwork_visible","artwork_loaded","artwork_error","Albums","constructor","group","sortedAndFiltered","indexList","init","createSortedAndFilteredList","createGroupedList","createIndexList","getAlbumIndex","getRecentlyAddedBrowseIndex","recentlyAdded","diff","getTime","isAlbumVisible","Set","albumsSorted","hideOther","localeCompare","reduce","albums_list","is_grouped","rssPlaylists","pl","track","play_track","selected_track","slots","title_sort","play_count","mark_new","Math","floor","rating","browseData","all","tracks","mixins","show_track_details_modal","artists_list","sort_options","char","nav","specialChars","selected_artist","album_count","Artists","getArtistIndex","isArtistVisible","artistsSorted","select","artistsData","scrollToTop","show_artist_details_modal","open_tracks","artistData","join","albumsData","index_list","show_album_details_modal","albumData","genres","total","selected_genre","genresData","show_genre_details_modal","genre_albums","genreData","tracksData","track_uris","new_episodes","mark_all_played","open_track_dialog","reload_new_episodes","open_add_podcast_dialog","reload_podcasts","forEach","ep","reload_tracks","new_tracks","playlist","playlists","open_playlist","selected_playlist","folder","playlistsData","show_playlist_details_modal","playlistData","random","current_directory","open_directory_dialog","open_parent_directory","files","open_directory","open_playlist_dialog","show_directory_details_modal","selected_directory","filesData","directories","dir","parent","streamsData","new_search","search_query","recent_search","open_recent_search","show_tracks","open_search_tracks","toLocaleString","show_artists","open_search_artists","show_albums","open_search_albums","show_playlists","open_search_playlists","show_podcasts","podcasts","open_search_podcasts","show_audiobooks","audiobooks","open_search_audiobooks","search_library","search_spotify","route_query","route","search_field","searchMusic","searchAudiobooks","searchPodcasts","trim","blur","mounted","show_update_dropdown","update","update_meta","updated_at","started_at","filters","array","open_album_dialog","album_type","release_date","owner","display_name","images","getNewReleases","getFeaturedPlaylists","load_next","popularity","followers","append_albums","$state","getArtistAlbums","loaded","complete","context_uri","duration_ms","getAlbum","album_id","append_tracks","getPlaylistTracks","search_tracks_next","open_artist_dialog","search_artists_next","search_albums_next","search_playlists_next","search_param","validSearchTypes","reset","search_all","spotify_search","market","webapi_country","split","set_update_timer","statusUpdate","info","timerDelay","timerId","category_name","option_name","newValue","settings_checkbox","update_setting","clear_status","placeholder","settings_text","settings_number","libspotify_installed","libspotify_user","libspotify_logged_in","login_libspotify","libspotify","errors","user","password","webapi_user","spotify_missing_scope","oauth_uri","spotify_required_scope","enabled","logoutLastfm","scrobbling_enabled","login_lastfm","webapi_granted_scope","webapi_required_scope","scope","success","kickoff_verification","verification_req","VueRouter","router","routes","PageQueue","PageAbout","PageNowPlaying","redirect","PageBrowse","PageBrowseRecentlyAdded","PageBrowseRecentlyPlayed","PageArtists","has_index","PageArtist","PageArtistTracks","PageAlbums","PageAlbum","PageGenres","PageGenre","PageGenreTracks","PagePodcasts","PagePodcast","PageAudiobooksArtists","PageAudiobooksArtist","PageAudiobooksAlbums","PageAudiobooksAlbum","PageRadioStreams","PageFiles","PagePlaylists","PagePlaylist","PageSearch","SpotifyPageBrowse","SpotifyPageBrowseNewReleases","SpotifyPageBrowseFeaturedPlaylists","SpotifyPageArtist","SpotifyPageAlbum","SpotifyPagePlaylist","SpotifyPageSearch","SettingsPageWebinterface","SettingsPageArtwork","SettingsPageOnlineServices","SettingsPageRemotesOutputs","scrollBehavior","savedPosition","hash","selector","x","y","momentDurationFormatSetup","moment","format","duration","withoutSuffix","fromNow","VueProgressBar","color","failedColor","productionTip","vClickOutside","VueTinyLazyloadImg","VueObserveVisibility","VueScrollTo","el","App"],"mappings":"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","file":"player/js/app.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\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 = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && 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(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"app\": 0\n \t};\n\n \tvar deferredModules = [];\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, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\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 \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([0,\"chunk-vendors\"]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"hero is-light is-bold fd-content\"},[_c('div',{staticClass:\"hero-body\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"columns\",staticStyle:{\"flex-direction\":\"row-reverse\"}},[_c('div',{staticClass:\"column fd-has-cover\"},[_vm._t(\"heading-right\")],2),_c('div',{staticClass:\"column is-three-fifths has-text-centered-mobile\",staticStyle:{\"margin\":\"auto 0\"}},[_vm._t(\"heading-left\")],2)])])])])])]),_c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHero.vue?vue&type=script&lang=js&\"","var map = {\n\t\"./af\": \"2bfb\",\n\t\"./af.js\": \"2bfb\",\n\t\"./ar\": \"8e73\",\n\t\"./ar-dz\": \"a356\",\n\t\"./ar-dz.js\": \"a356\",\n\t\"./ar-kw\": \"423e\",\n\t\"./ar-kw.js\": \"423e\",\n\t\"./ar-ly\": \"1cfd\",\n\t\"./ar-ly.js\": \"1cfd\",\n\t\"./ar-ma\": \"0a84\",\n\t\"./ar-ma.js\": \"0a84\",\n\t\"./ar-sa\": \"8230\",\n\t\"./ar-sa.js\": \"8230\",\n\t\"./ar-tn\": \"6d83\",\n\t\"./ar-tn.js\": \"6d83\",\n\t\"./ar.js\": \"8e73\",\n\t\"./az\": \"485c\",\n\t\"./az.js\": \"485c\",\n\t\"./be\": \"1fc1\",\n\t\"./be.js\": \"1fc1\",\n\t\"./bg\": \"84aa\",\n\t\"./bg.js\": \"84aa\",\n\t\"./bm\": \"a7fa\",\n\t\"./bm.js\": \"a7fa\",\n\t\"./bn\": \"9043\",\n\t\"./bn-bd\": \"9686\",\n\t\"./bn-bd.js\": \"9686\",\n\t\"./bn.js\": \"9043\",\n\t\"./bo\": \"d26a\",\n\t\"./bo.js\": \"d26a\",\n\t\"./br\": \"6887\",\n\t\"./br.js\": \"6887\",\n\t\"./bs\": \"2554\",\n\t\"./bs.js\": \"2554\",\n\t\"./ca\": \"d716\",\n\t\"./ca.js\": \"d716\",\n\t\"./cs\": \"3c0d\",\n\t\"./cs.js\": \"3c0d\",\n\t\"./cv\": \"03ec\",\n\t\"./cv.js\": \"03ec\",\n\t\"./cy\": \"9797\",\n\t\"./cy.js\": \"9797\",\n\t\"./da\": \"0f14\",\n\t\"./da.js\": \"0f14\",\n\t\"./de\": \"b469\",\n\t\"./de-at\": \"b3eb\",\n\t\"./de-at.js\": \"b3eb\",\n\t\"./de-ch\": \"bb71\",\n\t\"./de-ch.js\": \"bb71\",\n\t\"./de.js\": \"b469\",\n\t\"./dv\": \"598a\",\n\t\"./dv.js\": \"598a\",\n\t\"./el\": \"8d47\",\n\t\"./el.js\": \"8d47\",\n\t\"./en-au\": \"0e6b\",\n\t\"./en-au.js\": \"0e6b\",\n\t\"./en-ca\": \"3886\",\n\t\"./en-ca.js\": \"3886\",\n\t\"./en-gb\": \"39a6\",\n\t\"./en-gb.js\": \"39a6\",\n\t\"./en-ie\": \"e1d3\",\n\t\"./en-ie.js\": \"e1d3\",\n\t\"./en-il\": \"7333\",\n\t\"./en-il.js\": \"7333\",\n\t\"./en-in\": \"ec2e\",\n\t\"./en-in.js\": \"ec2e\",\n\t\"./en-nz\": \"6f50\",\n\t\"./en-nz.js\": \"6f50\",\n\t\"./en-sg\": \"b7e9\",\n\t\"./en-sg.js\": \"b7e9\",\n\t\"./eo\": \"65db\",\n\t\"./eo.js\": \"65db\",\n\t\"./es\": \"898b\",\n\t\"./es-do\": \"0a3c\",\n\t\"./es-do.js\": \"0a3c\",\n\t\"./es-mx\": \"b5b7\",\n\t\"./es-mx.js\": \"b5b7\",\n\t\"./es-us\": \"55c9\",\n\t\"./es-us.js\": \"55c9\",\n\t\"./es.js\": \"898b\",\n\t\"./et\": \"ec18\",\n\t\"./et.js\": \"ec18\",\n\t\"./eu\": \"0ff2\",\n\t\"./eu.js\": \"0ff2\",\n\t\"./fa\": \"8df4\",\n\t\"./fa.js\": \"8df4\",\n\t\"./fi\": \"81e9\",\n\t\"./fi.js\": \"81e9\",\n\t\"./fil\": \"d69a\",\n\t\"./fil.js\": \"d69a\",\n\t\"./fo\": \"0721\",\n\t\"./fo.js\": \"0721\",\n\t\"./fr\": \"9f26\",\n\t\"./fr-ca\": \"d9f8\",\n\t\"./fr-ca.js\": \"d9f8\",\n\t\"./fr-ch\": \"0e49\",\n\t\"./fr-ch.js\": \"0e49\",\n\t\"./fr.js\": \"9f26\",\n\t\"./fy\": \"7118\",\n\t\"./fy.js\": \"7118\",\n\t\"./ga\": \"5120\",\n\t\"./ga.js\": \"5120\",\n\t\"./gd\": \"f6b4\",\n\t\"./gd.js\": \"f6b4\",\n\t\"./gl\": \"8840\",\n\t\"./gl.js\": \"8840\",\n\t\"./gom-deva\": \"aaf2\",\n\t\"./gom-deva.js\": \"aaf2\",\n\t\"./gom-latn\": \"0caa\",\n\t\"./gom-latn.js\": \"0caa\",\n\t\"./gu\": \"e0c5\",\n\t\"./gu.js\": \"e0c5\",\n\t\"./he\": \"c7aa\",\n\t\"./he.js\": \"c7aa\",\n\t\"./hi\": \"dc4d\",\n\t\"./hi.js\": \"dc4d\",\n\t\"./hr\": \"4ba9\",\n\t\"./hr.js\": \"4ba9\",\n\t\"./hu\": \"5b14\",\n\t\"./hu.js\": \"5b14\",\n\t\"./hy-am\": \"d6b6\",\n\t\"./hy-am.js\": \"d6b6\",\n\t\"./id\": \"5038\",\n\t\"./id.js\": \"5038\",\n\t\"./is\": \"0558\",\n\t\"./is.js\": \"0558\",\n\t\"./it\": \"6e98\",\n\t\"./it-ch\": \"6f12\",\n\t\"./it-ch.js\": \"6f12\",\n\t\"./it.js\": \"6e98\",\n\t\"./ja\": \"079e\",\n\t\"./ja.js\": \"079e\",\n\t\"./jv\": \"b540\",\n\t\"./jv.js\": \"b540\",\n\t\"./ka\": \"201b\",\n\t\"./ka.js\": \"201b\",\n\t\"./kk\": \"6d79\",\n\t\"./kk.js\": \"6d79\",\n\t\"./km\": \"e81d\",\n\t\"./km.js\": \"e81d\",\n\t\"./kn\": \"3e92\",\n\t\"./kn.js\": \"3e92\",\n\t\"./ko\": \"22f8\",\n\t\"./ko.js\": \"22f8\",\n\t\"./ku\": \"2421\",\n\t\"./ku.js\": \"2421\",\n\t\"./ky\": \"9609\",\n\t\"./ky.js\": \"9609\",\n\t\"./lb\": \"440c\",\n\t\"./lb.js\": \"440c\",\n\t\"./lo\": \"b29d\",\n\t\"./lo.js\": \"b29d\",\n\t\"./lt\": \"26f9\",\n\t\"./lt.js\": \"26f9\",\n\t\"./lv\": \"b97c\",\n\t\"./lv.js\": \"b97c\",\n\t\"./me\": \"293c\",\n\t\"./me.js\": \"293c\",\n\t\"./mi\": \"688b\",\n\t\"./mi.js\": \"688b\",\n\t\"./mk\": \"6909\",\n\t\"./mk.js\": \"6909\",\n\t\"./ml\": \"02fb\",\n\t\"./ml.js\": \"02fb\",\n\t\"./mn\": \"958b\",\n\t\"./mn.js\": \"958b\",\n\t\"./mr\": \"39bd\",\n\t\"./mr.js\": \"39bd\",\n\t\"./ms\": \"ebe4\",\n\t\"./ms-my\": \"6403\",\n\t\"./ms-my.js\": \"6403\",\n\t\"./ms.js\": \"ebe4\",\n\t\"./mt\": \"1b45\",\n\t\"./mt.js\": \"1b45\",\n\t\"./my\": \"8689\",\n\t\"./my.js\": \"8689\",\n\t\"./nb\": \"6ce3\",\n\t\"./nb.js\": \"6ce3\",\n\t\"./ne\": \"3a39\",\n\t\"./ne.js\": \"3a39\",\n\t\"./nl\": \"facd\",\n\t\"./nl-be\": \"db29\",\n\t\"./nl-be.js\": \"db29\",\n\t\"./nl.js\": \"facd\",\n\t\"./nn\": \"b84c\",\n\t\"./nn.js\": \"b84c\",\n\t\"./oc-lnc\": \"167b\",\n\t\"./oc-lnc.js\": \"167b\",\n\t\"./pa-in\": \"f3ff\",\n\t\"./pa-in.js\": \"f3ff\",\n\t\"./pl\": \"8d57\",\n\t\"./pl.js\": \"8d57\",\n\t\"./pt\": \"f260\",\n\t\"./pt-br\": \"d2d4\",\n\t\"./pt-br.js\": \"d2d4\",\n\t\"./pt.js\": \"f260\",\n\t\"./ro\": \"972c\",\n\t\"./ro.js\": \"972c\",\n\t\"./ru\": \"957c\",\n\t\"./ru.js\": \"957c\",\n\t\"./sd\": \"6784\",\n\t\"./sd.js\": \"6784\",\n\t\"./se\": \"ffff\",\n\t\"./se.js\": \"ffff\",\n\t\"./si\": \"eda5\",\n\t\"./si.js\": \"eda5\",\n\t\"./sk\": \"7be6\",\n\t\"./sk.js\": \"7be6\",\n\t\"./sl\": \"8155\",\n\t\"./sl.js\": \"8155\",\n\t\"./sq\": \"c8f3\",\n\t\"./sq.js\": \"c8f3\",\n\t\"./sr\": \"cf1e\",\n\t\"./sr-cyrl\": \"13e9\",\n\t\"./sr-cyrl.js\": \"13e9\",\n\t\"./sr.js\": \"cf1e\",\n\t\"./ss\": \"52bd\",\n\t\"./ss.js\": \"52bd\",\n\t\"./sv\": \"5fbd\",\n\t\"./sv.js\": \"5fbd\",\n\t\"./sw\": \"74dc\",\n\t\"./sw.js\": \"74dc\",\n\t\"./ta\": \"3de5\",\n\t\"./ta.js\": \"3de5\",\n\t\"./te\": \"5cbb\",\n\t\"./te.js\": \"5cbb\",\n\t\"./tet\": \"576c\",\n\t\"./tet.js\": \"576c\",\n\t\"./tg\": \"3b1b\",\n\t\"./tg.js\": \"3b1b\",\n\t\"./th\": \"10e8\",\n\t\"./th.js\": \"10e8\",\n\t\"./tk\": \"5aff\",\n\t\"./tk.js\": \"5aff\",\n\t\"./tl-ph\": \"0f38\",\n\t\"./tl-ph.js\": \"0f38\",\n\t\"./tlh\": \"cf75\",\n\t\"./tlh.js\": \"cf75\",\n\t\"./tr\": \"0e81\",\n\t\"./tr.js\": \"0e81\",\n\t\"./tzl\": \"cf51\",\n\t\"./tzl.js\": \"cf51\",\n\t\"./tzm\": \"c109\",\n\t\"./tzm-latn\": \"b53d\",\n\t\"./tzm-latn.js\": \"b53d\",\n\t\"./tzm.js\": \"c109\",\n\t\"./ug-cn\": \"6117\",\n\t\"./ug-cn.js\": \"6117\",\n\t\"./uk\": \"ada2\",\n\t\"./uk.js\": \"ada2\",\n\t\"./ur\": \"5294\",\n\t\"./ur.js\": \"5294\",\n\t\"./uz\": \"2e8c\",\n\t\"./uz-latn\": \"010e\",\n\t\"./uz-latn.js\": \"010e\",\n\t\"./uz.js\": \"2e8c\",\n\t\"./vi\": \"2921\",\n\t\"./vi.js\": \"2921\",\n\t\"./x-pseudo\": \"fd7e\",\n\t\"./x-pseudo.js\": \"fd7e\",\n\t\"./yo\": \"7f33\",\n\t\"./yo.js\": \"7f33\",\n\t\"./zh-cn\": \"5c3a\",\n\t\"./zh-cn.js\": \"5c3a\",\n\t\"./zh-hk\": \"49ab\",\n\t\"./zh-hk.js\": \"49ab\",\n\t\"./zh-mo\": \"3a6c\",\n\t\"./zh-mo.js\": \"3a6c\",\n\t\"./zh-tw\": \"90ea\",\n\t\"./zh-tw.js\": \"90ea\"\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = \"4678\";","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('navbar-top'),_c('vue-progress-bar',{staticClass:\"fd-progress-bar\"}),_c('transition',{attrs:{\"name\":\"fade\"}},[_c('router-view',{directives:[{name:\"show\",rawName:\"v-show\",value:(true),expression:\"true\"}]})],1),_c('modal-dialog-remote-pairing',{attrs:{\"show\":_vm.pairing_active},on:{\"close\":function($event){_vm.pairing_active = false}}}),_c('notifications',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.show_burger_menu),expression:\"!show_burger_menu\"}]}),_c('navbar-bottom'),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_burger_menu || _vm.show_player_menu),expression:\"show_burger_menu || show_player_menu\"}],staticClass:\"fd-overlay-fullscreen\",on:{\"click\":function($event){_vm.show_burger_menu = _vm.show_player_menu = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-top-navbar navbar is-light is-fixed-top\",style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"main navigation\"}},[_c('div',{staticClass:\"navbar-brand\"},[(_vm.is_visible_playlists)?_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]):_vm._e(),(_vm.is_visible_music)?_c('navbar-item-link',{attrs:{\"to\":\"/music\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})])]):_vm._e(),(_vm.is_visible_podcasts)?_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})])]):_vm._e(),(_vm.is_visible_audiobooks)?_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})])]):_vm._e(),(_vm.is_visible_radio)?_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})])]):_vm._e(),(_vm.is_visible_files)?_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})])]):_vm._e(),(_vm.is_visible_search)?_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])]):_vm._e(),_c('div',{staticClass:\"navbar-burger\",class:{ 'is-active': _vm.show_burger_menu },on:{\"click\":function($event){_vm.show_burger_menu = !_vm.show_burger_menu}}},[_c('span'),_c('span'),_c('span')])],1),_c('div',{staticClass:\"navbar-menu\",class:{ 'is-active': _vm.show_burger_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item has-dropdown is-hoverable\",class:{ 'is-active': _vm.show_settings_menu },on:{\"click\":_vm.on_click_outside_settings}},[_vm._m(0),_c('div',{staticClass:\"navbar-dropdown is-right\"},[_c('navbar-item-link',{attrs:{\"to\":\"/playlists\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Playlists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-music\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Music\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/artists\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Artists\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/albums\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Albums\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/music/genres\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Genres\")])]),(_vm.spotify_enabled)?_c('navbar-item-link',{attrs:{\"to\":\"/music/spotify\"}},[_c('span',{staticClass:\"fd-navbar-item-level2\"},[_vm._v(\"Spotify\")])]):_vm._e(),_c('navbar-item-link',{attrs:{\"to\":\"/podcasts\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-microphone\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Podcasts\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/audiobooks\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-book-open-variant\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Audiobooks\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/radio\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-radio\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Radio\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/files\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder-open\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Files\")])]),_c('navbar-item-link',{attrs:{\"to\":\"/search\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})]),_vm._v(\" \"),_c('b',[_vm._v(\"Search\")])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('navbar-item-link',{attrs:{\"to\":\"/settings/webinterface\"}},[_vm._v(\"Settings\")]),_c('a',{staticClass:\"navbar-item\",on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();_vm.show_update_library = true; _vm.show_settings_menu = false; _vm.show_burger_menu = false}}},[_vm._v(\" Update Library \")]),_c('navbar-item-link',{attrs:{\"to\":\"/about\"}},[_vm._v(\"About\")]),_c('div',{staticClass:\"navbar-item is-hidden-desktop\",staticStyle:{\"margin-bottom\":\"2.5rem\"}})],1)])])]),_c('modal-dialog',{attrs:{\"show\":_vm.show_update_library,\"title\":\"Update library\",\"ok_action\":_vm.library.updating ? '' : 'Rescan',\"close_action\":\"Close\"},on:{\"ok\":_vm.update_library,\"close\":function($event){_vm.show_update_library = false}}},[_c('template',{slot:\"modal-content\"},[(!_vm.library.updating)?_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Scan for new, deleted and modified files\")]),_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox is-size-7 is-small\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.rescan_metadata),expression:\"rescan_metadata\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(_vm.rescan_metadata)?_vm._i(_vm.rescan_metadata,null)>-1:(_vm.rescan_metadata)},on:{\"change\":function($event){var $$a=_vm.rescan_metadata,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.rescan_metadata=$$a.concat([$$v]))}else{$$i>-1&&(_vm.rescan_metadata=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.rescan_metadata=$$c}}}}),_vm._v(\" Rescan metadata for unmodified files \")])])]):_c('div',[_c('p',{staticClass:\"mb-3\"},[_vm._v(\"Library update in progress ...\")])])])],2),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show_settings_menu),expression:\"show_settings_menu\"}],staticClass:\"is-overlay\",staticStyle:{\"z-index\":\"10\",\"width\":\"100vw\",\"height\":\"100vh\"},on:{\"click\":function($event){_vm.show_settings_menu = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-link is-arrowless\"},[_c('span',{staticClass:\"icon is-hidden-touch\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-menu\"})]),_c('span',{staticClass:\"is-hidden-desktop has-text-weight-bold\"},[_vm._v(\"forked-daapd\")])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{staticClass:\"navbar-item\",class:{ 'is-active': _vm.is_active },attrs:{\"href\":_vm.full_path()},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.open_link()}}},[_vm._t(\"default\")],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","export const UPDATE_CONFIG = 'UPDATE_CONFIG'\nexport const UPDATE_SETTINGS = 'UPDATE_SETTINGS'\nexport const UPDATE_SETTINGS_OPTION = 'UPDATE_SETTINGS_OPTION'\nexport const UPDATE_LIBRARY_STATS = 'UPDATE_LIBRARY_STATS'\nexport const UPDATE_LIBRARY_AUDIOBOOKS_COUNT = 'UPDATE_LIBRARY_AUDIOBOOKS_COUNT'\nexport const UPDATE_LIBRARY_PODCASTS_COUNT = 'UPDATE_LIBRARY_PODCASTS_COUNT'\nexport const UPDATE_OUTPUTS = 'UPDATE_OUTPUTS'\nexport const UPDATE_PLAYER_STATUS = 'UPDATE_PLAYER_STATUS'\nexport const UPDATE_QUEUE = 'UPDATE_QUEUE'\nexport const UPDATE_LASTFM = 'UPDATE_LASTFM'\nexport const UPDATE_SPOTIFY = 'UPDATE_SPOTIFY'\nexport const UPDATE_PAIRING = 'UPDATE_PAIRING'\n\nexport const SPOTIFY_NEW_RELEASES = 'SPOTIFY_NEW_RELEASES'\nexport const SPOTIFY_FEATURED_PLAYLISTS = 'SPOTIFY_FEATURED_PLAYLISTS'\n\nexport const ADD_NOTIFICATION = 'ADD_NOTIFICATION'\nexport const DELETE_NOTIFICATION = 'DELETE_NOTIFICATION'\nexport const ADD_RECENT_SEARCH = 'ADD_RECENT_SEARCH'\n\nexport const HIDE_SINGLES = 'HIDE_SINGLES'\nexport const HIDE_SPOTIFY = 'HIDE_SPOTIFY'\nexport const ARTISTS_SORT = 'ARTISTS_SORT'\nexport const ARTIST_ALBUMS_SORT = 'ARTIST_ALBUMS_SORT'\nexport const ALBUMS_SORT = 'ALBUMS_SORT'\nexport const SHOW_ONLY_NEXT_ITEMS = 'SHOW_ONLY_NEXT_ITEMS'\nexport const SHOW_BURGER_MENU = 'SHOW_BURGER_MENU'\nexport const SHOW_PLAYER_MENU = 'SHOW_PLAYER_MENU'\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemLink.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemLink.vue?vue&type=template&id=69134921&\"\nimport script from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemLink.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[(_vm.title)?_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.title)+\" \")]):_vm._e(),_vm._t(\"modal-content\")],2),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.close_action ? _vm.close_action : 'Cancel'))])]),(_vm.delete_action)?_c('a',{staticClass:\"card-footer-item has-background-danger has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('delete')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.delete_action))])]):_vm._e(),(_vm.ok_action)?_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":function($event){return _vm.$emit('ok')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-check\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(_vm._s(_vm.ok_action))])]):_vm._e()])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialog.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialog.vue?vue&type=template&id=5739f0bd&\"\nimport script from \"./ModalDialog.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialog.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport Vuex from 'vuex'\nimport * as types from './mutation_types'\n\nVue.use(Vuex)\n\nexport default new Vuex.Store({\n state: {\n config: {\n websocket_port: 0,\n version: '',\n buildoptions: []\n },\n settings: {\n categories: []\n },\n library: {\n artists: 0,\n albums: 0,\n songs: 0,\n db_playtime: 0,\n updating: false\n },\n audiobooks_count: { },\n podcasts_count: { },\n outputs: [],\n player: {\n state: 'stop',\n repeat: 'off',\n consume: false,\n shuffle: false,\n volume: 0,\n item_id: 0,\n item_length_ms: 0,\n item_progress_ms: 0\n },\n queue: {\n version: 0,\n count: 0,\n items: []\n },\n lastfm: {},\n spotify: {},\n pairing: {},\n\n spotify_new_releases: [],\n spotify_featured_playlists: [],\n\n notifications: {\n next_id: 1,\n list: []\n },\n recent_searches: [],\n\n hide_singles: false,\n hide_spotify: false,\n artists_sort: 'Name',\n artist_albums_sort: 'Name',\n albums_sort: 'Name',\n show_only_next_items: false,\n show_burger_menu: false,\n show_player_menu: false\n },\n\n getters: {\n now_playing: state => {\n const item = state.queue.items.find(function (item) {\n return item.id === state.player.item_id\n })\n return (item === undefined) ? {} : item\n },\n\n settings_webinterface: state => {\n if (state.settings) {\n return state.settings.categories.find(elem => elem.name === 'webinterface')\n }\n return null\n },\n\n settings_option_recently_added_limit: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'recently_added_limit')\n if (option) {\n return option.value\n }\n }\n return 100\n },\n\n settings_option_show_composer_now_playing: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_now_playing')\n if (option) {\n return option.value\n }\n }\n return false\n },\n\n settings_option_show_composer_for_genre: (state, getters) => {\n if (getters.settings_webinterface) {\n const option = getters.settings_webinterface.options.find(elem => elem.name === 'show_composer_for_genre')\n if (option) {\n return option.value\n }\n }\n return null\n },\n\n settings_category: (state) => (categoryName) => {\n return state.settings.categories.find(elem => elem.name === categoryName)\n },\n\n settings_option: (state) => (categoryName, optionName) => {\n const category = state.settings.categories.find(elem => elem.name === categoryName)\n if (!category) {\n return {}\n }\n return category.options.find(elem => elem.name === optionName)\n }\n },\n\n mutations: {\n [types.UPDATE_CONFIG] (state, config) {\n state.config = config\n },\n [types.UPDATE_SETTINGS] (state, settings) {\n state.settings = settings\n },\n [types.UPDATE_SETTINGS_OPTION] (state, option) {\n const settingCategory = state.settings.categories.find(elem => elem.name === option.category)\n const settingOption = settingCategory.options.find(elem => elem.name === option.name)\n settingOption.value = option.value\n },\n [types.UPDATE_LIBRARY_STATS] (state, libraryStats) {\n state.library = libraryStats\n },\n [types.UPDATE_LIBRARY_AUDIOBOOKS_COUNT] (state, count) {\n state.audiobooks_count = count\n },\n [types.UPDATE_LIBRARY_PODCASTS_COUNT] (state, count) {\n state.podcasts_count = count\n },\n [types.UPDATE_OUTPUTS] (state, outputs) {\n state.outputs = outputs\n },\n [types.UPDATE_PLAYER_STATUS] (state, playerStatus) {\n state.player = playerStatus\n },\n [types.UPDATE_QUEUE] (state, queue) {\n state.queue = queue\n },\n [types.UPDATE_LASTFM] (state, lastfm) {\n state.lastfm = lastfm\n },\n [types.UPDATE_SPOTIFY] (state, spotify) {\n state.spotify = spotify\n },\n [types.UPDATE_PAIRING] (state, pairing) {\n state.pairing = pairing\n },\n [types.SPOTIFY_NEW_RELEASES] (state, newReleases) {\n state.spotify_new_releases = newReleases\n },\n [types.SPOTIFY_FEATURED_PLAYLISTS] (state, featuredPlaylists) {\n state.spotify_featured_playlists = featuredPlaylists\n },\n [types.ADD_NOTIFICATION] (state, notification) {\n if (notification.topic) {\n const index = state.notifications.list.findIndex(elem => elem.topic === notification.topic)\n if (index >= 0) {\n state.notifications.list.splice(index, 1, notification)\n return\n }\n }\n state.notifications.list.push(notification)\n },\n [types.DELETE_NOTIFICATION] (state, notification) {\n const index = state.notifications.list.indexOf(notification)\n\n if (index !== -1) {\n state.notifications.list.splice(index, 1)\n }\n },\n [types.ADD_RECENT_SEARCH] (state, query) {\n const index = state.recent_searches.findIndex(elem => elem === query)\n if (index >= 0) {\n state.recent_searches.splice(index, 1)\n }\n\n state.recent_searches.splice(0, 0, query)\n\n if (state.recent_searches.length > 5) {\n state.recent_searches.pop()\n }\n },\n [types.HIDE_SINGLES] (state, hideSingles) {\n state.hide_singles = hideSingles\n },\n [types.HIDE_SPOTIFY] (state, hideSpotify) {\n state.hide_spotify = hideSpotify\n },\n [types.ARTISTS_SORT] (state, sort) {\n state.artists_sort = sort\n },\n [types.ARTIST_ALBUMS_SORT] (state, sort) {\n state.artist_albums_sort = sort\n },\n [types.ALBUMS_SORT] (state, sort) {\n state.albums_sort = sort\n },\n [types.SHOW_ONLY_NEXT_ITEMS] (state, showOnlyNextItems) {\n state.show_only_next_items = showOnlyNextItems\n },\n [types.SHOW_BURGER_MENU] (state, showBurgerMenu) {\n state.show_burger_menu = showBurgerMenu\n },\n [types.SHOW_PLAYER_MENU] (state, showPlayerMenu) {\n state.show_player_menu = showPlayerMenu\n }\n },\n\n actions: {\n add_notification ({ commit, state }, notification) {\n const newNotification = {\n id: state.notifications.next_id++,\n type: notification.type,\n text: notification.text,\n topic: notification.topic,\n timeout: notification.timeout\n }\n\n commit(types.ADD_NOTIFICATION, newNotification)\n\n if (notification.timeout > 0) {\n setTimeout(() => {\n commit(types.DELETE_NOTIFICATION, newNotification)\n }, notification.timeout)\n }\n }\n }\n})\n","import axios from 'axios'\nimport store from '@/store'\n\naxios.interceptors.response.use(function (response) {\n return response\n}, function (error) {\n if (error.request.status && error.request.responseURL) {\n store.dispatch('add_notification', { text: 'Request failed (status: ' + error.request.status + ' ' + error.request.statusText + ', url: ' + error.request.responseURL + ')', type: 'danger' })\n }\n return Promise.reject(error)\n})\n\nexport default {\n config () {\n return axios.get('./api/config')\n },\n\n settings () {\n return axios.get('./api/settings')\n },\n\n settings_update (categoryName, option) {\n return axios.put('./api/settings/' + categoryName + '/' + option.name, option)\n },\n\n library_stats () {\n return axios.get('./api/library')\n },\n\n library_update () {\n return axios.put('./api/update')\n },\n\n library_rescan () {\n return axios.put('./api/rescan')\n },\n\n library_count (expression) {\n return axios.get('./api/library/count?expression=' + expression)\n },\n\n queue () {\n return axios.get('./api/queue')\n },\n\n queue_clear () {\n return axios.put('./api/queue/clear')\n },\n\n queue_remove (itemId) {\n return axios.delete('./api/queue/items/' + itemId)\n },\n\n queue_move (itemId, newPosition) {\n return axios.put('./api/queue/items/' + itemId + '?new_position=' + newPosition)\n },\n\n queue_add (uri) {\n return axios.post('./api/queue/items/add?uris=' + uri).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_add_next (uri) {\n let position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n position = store.getters.now_playing.position + 1\n }\n return axios.post('./api/queue/items/add?uris=' + uri + '&position=' + position).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add (expression) {\n const options = {}\n options.expression = expression\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_expression_add_next (expression) {\n const options = {}\n options.expression = expression\n options.position = 0\n if (store.getters.now_playing && store.getters.now_playing.id) {\n options.position = store.getters.now_playing.position + 1\n }\n\n return axios.post('./api/queue/items/add', undefined, { params: options }).then((response) => {\n store.dispatch('add_notification', { text: response.data.count + ' tracks appended to queue', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n queue_save_playlist (name) {\n return axios.post('./api/queue/save', undefined, { params: { name: name } }).then((response) => {\n store.dispatch('add_notification', { text: 'Queue saved to playlist \"' + name + '\"', type: 'info', timeout: 2000 })\n return Promise.resolve(response)\n })\n },\n\n player_status () {\n return axios.get('./api/player')\n },\n\n player_play_uri (uris, shuffle, position = undefined) {\n const options = {}\n options.uris = uris\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play_expression (expression, shuffle, position = undefined) {\n const options = {}\n options.expression = expression\n options.shuffle = shuffle ? 'true' : 'false'\n options.clear = 'true'\n options.playback = 'start'\n options.playback_from_position = position\n\n return axios.post('./api/queue/items/add', undefined, { params: options })\n },\n\n player_play (options = {}) {\n return axios.put('./api/player/play', undefined, { params: options })\n },\n\n player_playpos (position) {\n return axios.put('./api/player/play?position=' + position)\n },\n\n player_playid (itemId) {\n return axios.put('./api/player/play?item_id=' + itemId)\n },\n\n player_pause () {\n return axios.put('./api/player/pause')\n },\n\n player_stop () {\n return axios.put('./api/player/stop')\n },\n\n player_next () {\n return axios.put('./api/player/next')\n },\n\n player_previous () {\n return axios.put('./api/player/previous')\n },\n\n player_shuffle (newState) {\n const shuffle = newState ? 'true' : 'false'\n return axios.put('./api/player/shuffle?state=' + shuffle)\n },\n\n player_consume (newState) {\n const consume = newState ? 'true' : 'false'\n return axios.put('./api/player/consume?state=' + consume)\n },\n\n player_repeat (newRepeatMode) {\n return axios.put('./api/player/repeat?state=' + newRepeatMode)\n },\n\n player_volume (volume) {\n return axios.put('./api/player/volume?volume=' + volume)\n },\n\n player_output_volume (outputId, outputVolume) {\n return axios.put('./api/player/volume?volume=' + outputVolume + '&output_id=' + outputId)\n },\n\n player_seek_to_pos (newPosition) {\n return axios.put('./api/player/seek?position_ms=' + newPosition)\n },\n\n player_seek (seekMs) {\n return axios.put('./api/player/seek?seek_ms=' + seekMs)\n },\n\n outputs () {\n return axios.get('./api/outputs')\n },\n\n output_update (outputId, output) {\n return axios.put('./api/outputs/' + outputId, output)\n },\n\n output_toggle (outputId) {\n return axios.put('./api/outputs/' + outputId + '/toggle')\n },\n\n library_artists (media_kind = undefined) {\n return axios.get('./api/library/artists', { params: { media_kind: media_kind } })\n },\n\n library_artist (artistId) {\n return axios.get('./api/library/artists/' + artistId)\n },\n\n library_artist_albums (artistId) {\n return axios.get('./api/library/artists/' + artistId + '/albums')\n },\n\n library_albums (media_kind = undefined) {\n return axios.get('./api/library/albums', { params: { media_kind: media_kind } })\n },\n\n library_album (albumId) {\n return axios.get('./api/library/albums/' + albumId)\n },\n\n library_album_tracks (albumId, filter = { limit: -1, offset: 0 }) {\n return axios.get('./api/library/albums/' + albumId + '/tracks', {\n params: filter\n })\n },\n\n library_album_track_update (albumId, attributes) {\n return axios.put('./api/library/albums/' + albumId + '/tracks', undefined, { params: attributes })\n },\n\n library_genres () {\n return axios.get('./api/library/genres')\n },\n\n library_genre (genre) {\n const genreParams = {\n type: 'albums',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_genre_tracks (genre) {\n const genreParams = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'genre is \"' + genre + '\"'\n }\n return axios.get('./api/search', {\n params: genreParams\n })\n },\n\n library_radio_streams () {\n const params = {\n type: 'tracks',\n media_kind: 'music',\n expression: 'data_kind is url and song_length = 0'\n }\n return axios.get('./api/search', {\n params: params\n })\n },\n\n library_artist_tracks (artist) {\n if (artist) {\n const artistParams = {\n type: 'tracks',\n expression: 'songartistid is \"' + artist + '\"'\n }\n return axios.get('./api/search', {\n params: artistParams\n })\n }\n },\n\n library_podcasts_new_episodes () {\n const episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and play_count = 0 ORDER BY time_added DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_podcast_episodes (albumId) {\n const episodesParams = {\n type: 'tracks',\n expression: 'media_kind is podcast and songalbumid is \"' + albumId + '\" ORDER BY date_released DESC'\n }\n return axios.get('./api/search', {\n params: episodesParams\n })\n },\n\n library_add (url) {\n return axios.post('./api/library/add', undefined, { params: { url: url } })\n },\n\n library_playlist_delete (playlistId) {\n return axios.delete('./api/library/playlists/' + playlistId, undefined)\n },\n\n library_playlists () {\n return axios.get('./api/library/playlists')\n },\n\n library_playlist_folder (playlistId = 0) {\n return axios.get('./api/library/playlists/' + playlistId + '/playlists')\n },\n\n library_playlist (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId)\n },\n\n library_playlist_tracks (playlistId) {\n return axios.get('./api/library/playlists/' + playlistId + '/tracks')\n },\n\n library_track (trackId) {\n return axios.get('./api/library/tracks/' + trackId)\n },\n\n library_track_playlists (trackId) {\n return axios.get('./api/library/tracks/' + trackId + '/playlists')\n },\n\n library_track_update (trackId, attributes = {}) {\n return axios.put('./api/library/tracks/' + trackId, undefined, { params: attributes })\n },\n\n library_files (directory = undefined) {\n const filesParams = { directory: directory }\n return axios.get('./api/library/files', {\n params: filesParams\n })\n },\n\n search (searchParams) {\n return axios.get('./api/search', {\n params: searchParams\n })\n },\n\n spotify () {\n return axios.get('./api/spotify')\n },\n\n spotify_login (credentials) {\n return axios.post('./api/spotify-login', credentials)\n },\n\n lastfm () {\n return axios.get('./api/lastfm')\n },\n\n lastfm_login (credentials) {\n return axios.post('./api/lastfm-login', credentials)\n },\n\n lastfm_logout (credentials) {\n return axios.get('./api/lastfm-logout')\n },\n\n pairing () {\n return axios.get('./api/pairing')\n },\n\n pairing_kickoff (pairingReq) {\n return axios.post('./api/pairing', pairingReq)\n },\n\n artwork_url_append_size_params (artworkUrl, maxwidth = 600, maxheight = 600) {\n if (artworkUrl && artworkUrl.startsWith('/')) {\n if (artworkUrl.includes('?')) {\n return artworkUrl + '&maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl + '?maxwidth=' + maxwidth + '&maxheight=' + maxheight\n }\n return artworkUrl\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarTop.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarTop.vue?vue&type=template&id=bf9ea990&\"\nimport script from \"./NavbarTop.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarTop.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:\"fd-bottom-navbar navbar is-white is-fixed-bottom\",class:{ 'is-transparent': _vm.is_now_playing_page, 'is-dark': !_vm.is_now_playing_page },style:(_vm.zindex),attrs:{\"role\":\"navigation\",\"aria-label\":\"player controls\"}},[_c('div',{staticClass:\"navbar-brand fd-expanded\"},[_c('navbar-item-link',{attrs:{\"to\":\"/\",\"exact\":\"\"}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-24px mdi-playlist-play\"})])]),(!_vm.is_now_playing_page)?_c('router-link',{staticClass:\"navbar-item is-expanded is-clipped\",attrs:{\"to\":\"/now-playing\",\"active-class\":\"is-active\",\"exact\":\"\"}},[_c('div',{staticClass:\"is-clipped\"},[_c('p',{staticClass:\"is-size-7 fd-is-text-clipped\"},[_c('strong',[_vm._v(_vm._s(_vm.now_playing.title))]),_c('br'),_vm._v(\" \"+_vm._s(_vm.now_playing.artist)),(_vm.now_playing.data_kind === 'url')?_c('span',[_vm._v(\" - \"+_vm._s(_vm.now_playing.album))]):_vm._e()])])]):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-previous',{staticClass:\"navbar-item fd-margin-left-auto\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-seek-back',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"10000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('player-button-play-pause',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-36px\",\"show_disabled_message\":\"\"}}),(_vm.is_now_playing_page)?_c('player-button-seek-forward',{staticClass:\"navbar-item\",attrs:{\"seek_ms\":\"30000\",\"icon_style\":\"mdi-24px\"}}):_vm._e(),(_vm.is_now_playing_page)?_c('player-button-next',{staticClass:\"navbar-item\",attrs:{\"icon_style\":\"mdi-24px\"}}):_vm._e(),_c('a',{staticClass:\"navbar-item fd-margin-left-auto is-hidden-desktop\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-item has-dropdown has-dropdown-up fd-margin-left-auto is-hidden-touch\",class:{ 'is-active': _vm.show_player_menu }},[_c('a',{staticClass:\"navbar-link is-arrowless\",on:{\"click\":function($event){_vm.show_player_menu = !_vm.show_player_menu}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-chevron-up': !_vm.show_player_menu, 'mdi-chevron-down': _vm.show_player_menu }})])]),_c('div',{staticClass:\"navbar-dropdown is-right is-boxed\",staticStyle:{\"margin-right\":\"6px\",\"margin-bottom\":\"6px\",\"border-radius\":\"6px\"}},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(0)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile fd-expanded\"},[_c('div',{staticClass:\"level-item\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('player-button-repeat',{staticClass:\"button\"}),_c('player-button-shuffle',{staticClass:\"button\"}),_c('player-button-consume',{staticClass:\"button\"})],1)])])])],2)])],1),_c('div',{staticClass:\"navbar-menu is-hidden-desktop\",class:{ 'is-active': _vm.show_player_menu }},[_c('div',{staticClass:\"navbar-start\"}),_c('div',{staticClass:\"navbar-end\"},[_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('player-button-repeat',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-shuffle',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}}),_c('player-button-consume',{staticClass:\"button\",attrs:{\"icon_style\":\"mdi-18px\"}})],1)]),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",on:{\"click\":_vm.toggle_mute_volume}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-18px\",class:{ 'mdi-volume-off': _vm.player.volume <= 0, 'mdi-volume-high': _vm.player.volume > 0 }})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\"},[_vm._v(\"Volume\")]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"value\":_vm.player.volume},on:{\"change\":_vm.set_volume}})],1)])])])]),_vm._l((_vm.outputs),function(output){return _c('navbar-item-output',{key:output.id,attrs:{\"output\":output}})}),_c('hr',{staticClass:\"fd-navbar-divider\"}),_c('div',{staticClass:\"navbar-item fd-has-margin-bottom\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\",class:{ 'is-loading': _vm.loading }},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.playing && !_vm.loading, 'is-loading': _vm.loading },on:{\"click\":_vm.togglePlay}},[_c('i',{staticClass:\"mdi mdi-18px mdi-radio-tower\"})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.playing }},[_vm._v(\"HTTP stream \"),_vm._m(1)]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.playing,\"value\":_vm.stream_volume},on:{\"change\":_vm.set_stream_volume}})],1)])])])])],2)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"stream.mp3\"}},[_c('span',{staticClass:\"is-lowercase\"},[_vm._v(\"(stream.mp3)\")])])}]\n\nexport { render, staticRenderFns }","/**\n * Audio handler object\n * Taken from https://github.com/rainner/soma-fm-player (released under MIT licence)\n */\nexport default {\n _audio: new Audio(),\n _context: null,\n _source: null,\n _gain: null,\n\n // setup audio routing\n setupAudio () {\n const AudioContext = window.AudioContext || window.webkitAudioContext\n this._context = new AudioContext()\n this._source = this._context.createMediaElementSource(this._audio)\n this._gain = this._context.createGain()\n\n this._source.connect(this._gain)\n this._gain.connect(this._context.destination)\n\n this._audio.addEventListener('canplaythrough', e => {\n this._audio.play()\n })\n this._audio.addEventListener('canplay', e => {\n this._audio.play()\n })\n return this._audio\n },\n\n // set audio volume\n setVolume (volume) {\n if (!this._gain) return\n volume = parseFloat(volume) || 0.0\n volume = (volume < 0) ? 0 : volume\n volume = (volume > 1) ? 1 : volume\n this._gain.gain.value = volume\n },\n\n // play audio source url\n playSource (source) {\n this.stopAudio()\n this._context.resume().then(() => {\n this._audio.src = String(source || '') + '?x=' + Date.now()\n this._audio.crossOrigin = 'anonymous'\n this._audio.load()\n })\n },\n\n // stop playing audio\n stopAudio () {\n try { this._audio.pause() } catch (e) {}\n try { this._audio.stop() } catch (e) {}\n try { this._audio.close() } catch (e) {}\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"navbar-item\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left fd-expanded\"},[_c('div',{staticClass:\"level-item\",staticStyle:{\"flex-grow\":\"0\"}},[_c('a',{staticClass:\"button is-white is-small\"},[_c('span',{staticClass:\"icon fd-has-action\",class:{ 'has-text-grey-light': !_vm.output.selected },on:{\"click\":_vm.set_enabled}},[_c('i',{staticClass:\"mdi mdi-18px\",class:_vm.type_class,attrs:{\"title\":_vm.output.type}})])])]),_c('div',{staticClass:\"level-item fd-expanded\"},[_c('div',{staticClass:\"fd-expanded\"},[_c('p',{staticClass:\"heading\",class:{ 'has-text-grey-light': !_vm.output.selected }},[_vm._v(_vm._s(_vm.output.name))]),_c('range-slider',{staticClass:\"slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":\"100\",\"step\":\"1\",\"disabled\":!_vm.output.selected,\"value\":_vm.volume},on:{\"change\":_vm.set_volume}})],1)])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarItemOutput.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarItemOutput.vue?vue&type=template&id=df9b1590&\"\nimport script from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarItemOutput.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.toggle_play_pause}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-play': !_vm.is_playing, 'mdi-pause': _vm.is_playing && _vm.is_pause_allowed, 'mdi-stop': _vm.is_playing && !_vm.is_pause_allowed }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPlayPause.vue?vue&type=template&id=160e1e94&\"\nimport script from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPlayPause.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-forward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonNext.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonNext.vue?vue&type=template&id=105fa0b7&\"\nimport script from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonNext.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.play_previous}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-skip-backward\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonPrevious.vue?vue&type=template&id=de93cb4e&\"\nimport script from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonPrevious.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_shuffle },on:{\"click\":_vm.toggle_shuffle_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-shuffle': _vm.is_shuffle, 'mdi-shuffle-disabled': !_vm.is_shuffle }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonShuffle.vue?vue&type=template&id=6c682bca&\"\nimport script from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonShuffle.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': _vm.is_consume },on:{\"click\":_vm.toggle_consume_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fire\",class:_vm.icon_style})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonConsume.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonConsume.vue?vue&type=template&id=652605a0&\"\nimport script from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonConsume.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:{ 'is-warning': !_vm.is_repeat_off },on:{\"click\":_vm.toggle_repeat_mode}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:[_vm.icon_style, { 'mdi-repeat': _vm.is_repeat_all, 'mdi-repeat-once': _vm.is_repeat_single, 'mdi-repeat-off': _vm.is_repeat_off }]})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonRepeat.vue?vue&type=template&id=76c131bd&\"\nimport script from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonRepeat.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rewind\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekBack.vue?vue&type=template&id=6e68196d&\"\nimport script from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekBack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.visible)?_c('a',{attrs:{\"disabled\":_vm.disabled},on:{\"click\":_vm.seek}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-fast-forward\",class:_vm.icon_style})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PlayerButtonSeekForward.vue?vue&type=template&id=2f43a35a&\"\nimport script from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\nexport * from \"./PlayerButtonSeekForward.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavbarBottom.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NavbarBottom.vue?vue&type=template&id=7bc29059&\"\nimport script from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\nexport * from \"./NavbarBottom.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"fd-notifications\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-half\"},_vm._l((_vm.notifications),function(notification){return _c('div',{key:notification.id,staticClass:\"notification has-shadow \",class:['notification', notification.type ? (\"is-\" + (notification.type)) : '']},[_c('button',{staticClass:\"delete\",on:{\"click\":function($event){return _vm.remove(notification)}}}),_vm._v(\" \"+_vm._s(notification.text)+\" \")])}),0)])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Notifications.vue?vue&type=template&id=45b704a5&\"\nimport script from \"./Notifications.vue?vue&type=script&lang=js&\"\nexport * from \"./Notifications.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Notifications.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Remote pairing request \")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label\"},[_vm._v(\" \"+_vm._s(_vm.pairing.remote)+\" \")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],ref:\"pin_field\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.kickoff_pairing}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cellphone-iphone\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Pair Remote\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogRemotePairing.vue?vue&type=template&id=4491cb33&\"\nimport script from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogRemotePairing.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=d36cdf4a&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.queue.count)+\" tracks\")]),_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Queue\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.show_only_next_items },on:{\"click\":_vm.update_show_next_items}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-arrow-collapse-down\"})]),_c('span',[_vm._v(\"Hide previous\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_stream_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',[_vm._v(\"Add Stream\")])]),_c('a',{staticClass:\"button is-small\",class:{ 'is-info': _vm.edit_mode },on:{\"click\":function($event){_vm.edit_mode = !_vm.edit_mode}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Edit\")])]),_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.queue_clear}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete-empty\"})]),_c('span',[_vm._v(\"Clear\")])]),(_vm.is_queue_save_allowed)?_c('a',{staticClass:\"button is-small\",attrs:{\"disabled\":_vm.queue_items.length === 0},on:{\"click\":_vm.save_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_c('span',[_vm._v(\"Save\")])]):_vm._e()])]),_c('template',{slot:\"content\"},[_c('draggable',{attrs:{\"handle\":\".handle\"},on:{\"end\":_vm.move_item},model:{value:(_vm.queue_items),callback:function ($$v) {_vm.queue_items=$$v},expression:\"queue_items\"}},_vm._l((_vm.queue_items),function(item,index){return _c('list-item-queue-item',{key:item.id,attrs:{\"item\":item,\"position\":index,\"current_position\":_vm.current_position,\"show_only_next_items\":_vm.show_only_next_items,\"edit_mode\":_vm.edit_mode}},[_c('template',{slot:\"actions\"},[(!_vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.open_dialog(item)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])]):_vm._e(),(item.id !== _vm.state.item_id && _vm.edit_mode)?_c('a',{on:{\"click\":function($event){return _vm.remove(item)}}},[_c('span',{staticClass:\"icon has-text-grey\"},[_c('i',{staticClass:\"mdi mdi-delete mdi-18px\"})])]):_vm._e()])],2)}),1),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog-add-url-stream',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false}}}),(_vm.is_queue_save_allowed)?_c('modal-dialog-playlist-save',{attrs:{\"show\":_vm.show_pls_save_modal},on:{\"close\":function($event){_vm.show_pls_save_modal = false}}}):_vm._e()],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[(_vm.$slots['options'])?_c('section',[_c('div',{directives:[{name:\"observe-visibility\",rawName:\"v-observe-visibility\",value:(_vm.observer_options),expression:\"observer_options\"}],staticStyle:{\"height\":\"2px\"}}),_vm._t(\"options\"),_c('nav',{staticClass:\"buttons is-centered\",staticStyle:{\"margin-bottom\":\"6px\",\"margin-top\":\"16px\"}},[(!_vm.options_visible)?_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_top}},[_vm._m(0)]):_c('a',{staticClass:\"button is-small is-white\",on:{\"click\":_vm.scroll_to_content}},[_vm._m(1)])])],2):_vm._e(),_c('div',{class:{'fd-content-with-option': _vm.$slots['options']}},[_c('nav',{staticClass:\"level\",attrs:{\"id\":\"top\"}},[_c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item has-text-centered-mobile\"},[_c('div',[_vm._t(\"heading-left\")],2)])]),_c('div',{staticClass:\"level-right has-text-centered-mobile\"},[_vm._t(\"heading-right\")],2)]),_vm._t(\"content\"),_c('div',{staticStyle:{\"margin-top\":\"16px\"}},[_vm._t(\"footer\")],2)],2)])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-up\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentWithHeading.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentWithHeading.vue?vue&type=template&id=94dfd75a&\"\nimport script from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHeading.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.is_next || !_vm.show_only_next_items)?_c('div',{staticClass:\"media\"},[(_vm.edit_mode)?_c('div',{staticClass:\"media-left\"},[_vm._m(0)]):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next }},[_vm._v(_vm._s(_vm.item.title))]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_c('b',[_vm._v(_vm._s(_vm.item.artist))])]),_c('h2',{staticClass:\"subtitle is-7\",class:{ 'has-text-primary': _vm.item.id === _vm.state.item_id, 'has-text-grey-light': !_vm.is_next, 'has-text-grey': _vm.is_next && _vm.item.id !== _vm.state.item_id }},[_vm._v(_vm._s(_vm.item.album))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon has-text-grey fd-is-movable handle\"},[_c('i',{staticClass:\"mdi mdi-drag-horizontal mdi-18px\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemQueueItem.vue?vue&type=template&id=58363490&\"\nimport script from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.item.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.item.artist)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),(_vm.item.album_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.item.album))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album))])]),(_vm.item.album_artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),(_vm.item.album_artist_id)?_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album_artist}},[_vm._v(_vm._s(_vm.item.album_artist))]):_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.album_artist))])]):_vm._e(),(_vm.item.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.composer))])]):_vm._e(),(_vm.item.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.year))])]):_vm._e(),(_vm.item.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.item.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.track_number)+\" / \"+_vm._s(_vm.item.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.item.media_kind)+\" - \"+_vm._s(_vm.item.data_kind)+\" \"),(_vm.item.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.item.type)+\" \"),(_vm.item.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.samplerate)+\" Hz\")]):_vm._e(),(_vm.item.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.item.channels)))]):_vm._e(),(_vm.item.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.item.bitrate)+\" Kb/s\")]):_vm._e()])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.remove}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-delete\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Remove\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogQueueItem.vue?vue&type=template&id=5521a6c4&\"\nimport script from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogQueueItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Add stream URL \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.play($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-stream\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-web\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Loading ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddUrlStream.vue?vue&type=template&id=1c92eee2&\"\nimport script from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddUrlStream.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" Save queue to playlist \")]),_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.save($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.playlist_name),expression:\"playlist_name\"}],ref:\"playlist_name_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Playlist name\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.playlist_name)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.playlist_name=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-file-music\"})])])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Saving ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.save}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-content-save\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Save\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylistSave.vue?vue&type=template&id=5f414a1b&\"\nimport script from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylistSave.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageQueue.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageQueue.vue?vue&type=template&id=4b30cd46&\"\nimport script from \"./PageQueue.vue?vue&type=script&lang=js&\"\nexport * from \"./PageQueue.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[(_vm.now_playing.id > 0)?_c('div',{staticClass:\"fd-is-fullheight\"},[_c('div',{staticClass:\"fd-is-expanded\"},[_c('cover-artwork',{staticClass:\"fd-cover-image fd-has-action\",attrs:{\"artwork_url\":_vm.now_playing.artwork_url,\"artist\":_vm.now_playing.artist,\"album\":_vm.now_playing.album},on:{\"click\":function($event){return _vm.open_dialog(_vm.now_playing)}}})],1),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered\"},[_c('p',{staticClass:\"control has-text-centered fd-progress-now-playing\"},[_c('range-slider',{staticClass:\"seek-slider fd-has-action\",attrs:{\"min\":\"0\",\"max\":_vm.state.item_length_ms,\"value\":_vm.item_progress_ms,\"disabled\":_vm.state.state === 'stop',\"step\":\"1000\"},on:{\"change\":_vm.seek}})],1),_c('p',{staticClass:\"content\"},[_c('span',[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.item_progress_ms))+\" / \"+_vm._s(_vm._f(\"duration\")(_vm.now_playing.length_ms)))])])])]),_c('div',{staticClass:\"fd-has-padding-left-right\"},[_c('div',{staticClass:\"container has-text-centered fd-has-margin-top\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.title)+\" \")]),_c('h2',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.artist)+\" \")]),(_vm.composer)?_c('h2',{staticClass:\"subtitle is-6 has-text-grey has-text-weight-bold\"},[_vm._v(\" \"+_vm._s(_vm.composer)+\" \")]):_vm._e(),_c('h3',{staticClass:\"subtitle is-6\"},[_vm._v(\" \"+_vm._s(_vm.now_playing.album)+\" \")])])])]):_c('div',{staticClass:\"fd-is-fullheight\"},[_vm._m(0)]),_c('modal-dialog-queue-item',{attrs:{\"show\":_vm.show_details_modal,\"item\":_vm.selected_item},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"fd-is-expanded fd-has-padding-left-right\",staticStyle:{\"flex-direction\":\"column\"}},[_c('div',{staticClass:\"content has-text-centered\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(\" Your play queue is empty \")]),_c('p',[_vm._v(\" Add some tracks by browsing your library \")])])])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('figure',[_c('img',{directives:[{name:\"lazyload\",rawName:\"v-lazyload\"}],key:_vm.artwork_url_with_size,attrs:{\"data-src\":_vm.artwork_url_with_size,\"data-err\":_vm.dataURI},on:{\"click\":function($event){return _vm.$emit('click')}}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/*\n * SVGRenderer taken from https://github.com/bendera/placeholder published under MIT License\n * Copyright (c) 2017 Adam Bender\n * https://github.com/bendera/placeholder/blob/master/LICENSE\n */\nclass SVGRenderer {\n render (data) {\n const svg = '' +\n '' +\n '' +\n '' +\n '' +\n ' ' +\n ' ' +\n ' ' + data.caption + '' +\n ' ' +\n '' +\n ''\n\n return 'data:image/svg+xml;charset=UTF-8,' + encodeURIComponent(svg)\n }\n}\n\nexport default SVGRenderer\n","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CoverArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./CoverArtwork.vue?vue&type=template&id=377ab7d4&\"\nimport script from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./CoverArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageNowPlaying.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageNowPlaying.vue?vue&type=template&id=734899dc&\"\nimport script from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\nexport * from \"./PageNowPlaying.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.recently_added.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_added')}}},[_vm._v(\"Show more\")])])])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":function($event){return _vm.open_browse('recently_played')}}},[_vm._v(\"Show more\")])])])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\nexport const LoadDataBeforeEnterMixin = function (dataObject) {\n return {\n beforeRouteEnter (to, from, next) {\n dataObject.load(to).then((response) => {\n next(vm => dataObject.set(vm, response))\n })\n },\n beforeRouteUpdate (to, from, next) {\n const vm = this\n dataObject.load(to).then((response) => {\n dataObject.set(vm, response)\n next()\n })\n }\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/browse\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_c('span',{},[_vm._v(\"Browse\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Artists\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Albums\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/genres\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-speaker\"})]),_c('span',{},[_vm._v(\"Genres\")])])]),(_vm.spotify_enabled)?_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/music/spotify\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})]),_c('span',{},[_vm._v(\"Spotify\")])])]):_vm._e()],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsMusic.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsMusic.vue?vue&type=template&id=f9ae6826&\"\nimport script from \"./TabsMusic.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsMusic.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.albums.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.albums.grouped[idx]),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.albums_list),function(album){return _c('list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":album.artwork_url,\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album,\"media_kind\":_vm.media_kind},on:{\"remove-podcast\":function($event){return _vm.open_remove_podcast_dialog()},\"close\":function($event){_vm.show_details_modal = false}}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.album.name_sort.charAt(0).toUpperCase()}},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('div',{staticStyle:{\"margin-top\":\"0.7rem\"}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artist))])]),(_vm.props.album.date_released && _vm.props.album.media_kind === 'music')?_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\" \"+_vm._s(_vm._f(\"time\")(_vm.props.album.date_released,'L'))+\" \")]):_vm._e()])]),_c('div',{staticClass:\"media-right\",staticStyle:{\"padding-top\":\"0.7rem\"}},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemAlbum.vue?vue&type=template&id=0d4ab83f&functional=true&\"\nimport script from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('cover-artwork',{staticClass:\"image is-square fd-has-margin-bottom fd-has-shadow\",attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name}}),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),(_vm.media_kind_resolved === 'podcast')?_c('div',{staticClass:\"buttons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.$emit('remove-podcast')}}},[_vm._v(\"Remove podcast\")])]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[(_vm.album.artist)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]):_vm._e(),(_vm.album.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.date_released,'L')))])]):(_vm.album.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.year))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.album.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.media_kind)+\" - \"+_vm._s(_vm.album.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.time_added,'L LT')))])])])],1),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAlbum.vue?vue&type=template&id=43881b14&\"\nimport script from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Albums {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getAlbumIndex (album) {\n if (this.options.sort === 'Recently added') {\n return album.time_added.substring(0, 4)\n } else if (this.options.sort === 'Recently added (browse)') {\n return this.getRecentlyAddedBrowseIndex(album.time_added)\n } else if (this.options.sort === 'Recently released') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n } else if (this.options.sort === 'Release date') {\n return album.date_released ? album.date_released.substring(0, 4) : '0000'\n }\n return album.name_sort.charAt(0).toUpperCase()\n }\n\n getRecentlyAddedBrowseIndex (recentlyAdded) {\n if (!recentlyAdded) {\n return '0000'\n }\n\n const diff = new Date().getTime() - new Date(recentlyAdded).getTime()\n\n if (diff < 86400000) { // 24h\n return 'Today'\n } else if (diff < 604800000) { // 7 days\n return 'Last week'\n } else if (diff < 2592000000) { // 30 days\n return 'Last month'\n }\n return recentlyAdded.substring(0, 4)\n }\n\n isAlbumVisible (album) {\n if (this.options.hideSingles && album.track_count <= 2) {\n return false\n }\n if (this.options.hideSpotify && album.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(album => this.getAlbumIndex(album)))]\n }\n\n createSortedAndFilteredList () {\n let albumsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n albumsSorted = albumsSorted.filter(album => this.isAlbumVisible(album))\n }\n if (this.options.sort === 'Recently added' || this.options.sort === 'Recently added (browse)') {\n albumsSorted = [...albumsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n } else if (this.options.sort === 'Recently released') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return 1\n }\n if (!b.date_released) {\n return -1\n }\n return b.date_released.localeCompare(a.date_released)\n })\n } else if (this.options.sort === 'Release date') {\n albumsSorted = [...albumsSorted].sort((a, b) => {\n if (!a.date_released) {\n return -1\n }\n if (!b.date_released) {\n return 1\n }\n return a.date_released.localeCompare(b.date_released)\n })\n }\n this.sortedAndFiltered = albumsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, album) => {\n const idx = this.getAlbumIndex(album)\n r[idx] = [...r[idx] || [], album]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListAlbums.vue?vue&type=template&id=4c4c1fd6&\"\nimport script from \"./ListAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./ListAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.tracks),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index, track)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",class:{ 'with-progress': _vm.slots().progress },attrs:{\"id\":'index_' + _vm.props.track.title_sort.charAt(0).toUpperCase()}},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\",class:{ 'has-text-grey': _vm.props.track.media_kind === 'podcast' && _vm.props.track.play_count > 0 }},[_vm._v(_vm._s(_vm.props.track.title))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.track.artist))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.props.track.album))]),_vm._t(\"progress\")],2),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemTrack.vue?vue&type=template&id=b15cd80c&functional=true&\"\nimport script from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.title)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artist)+\" \")]),(_vm.track.media_kind === 'podcast')?_c('div',{staticClass:\"buttons\"},[(_vm.track.play_count > 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_new}},[_vm._v(\"Mark as new\")]):_vm._e(),(_vm.track.play_count === 0)?_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_played}},[_vm._v(\"Mark as played\")]):_vm._e()]):_vm._e(),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.track.album))])]),(_vm.track.album_artist && _vm.track.media_kind !== 'audiobook')?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.track.album_artist))])]):_vm._e(),(_vm.track.composer)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Composer\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.composer))])]):_vm._e(),(_vm.track.date_released)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.date_released,'L')))])]):(_vm.track.year > 0)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Year\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.year))])]):_vm._e(),(_vm.track.genre)?_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genre\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.track.genre))])]):_vm._e(),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.length_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.media_kind)+\" - \"+_vm._s(_vm.track.data_kind)+\" \"),(_vm.track.data_kind === 'spotify')?_c('span',{staticClass:\"has-text-weight-normal\"},[_vm._v(\"(\"),_c('a',{on:{\"click\":_vm.open_spotify_artist}},[_vm._v(\"artist\")]),_vm._v(\", \"),_c('a',{on:{\"click\":_vm.open_spotify_album}},[_vm._v(\"album\")]),_vm._v(\")\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Quality\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(\" \"+_vm._s(_vm.track.type)+\" \"),(_vm.track.samplerate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.samplerate)+\" Hz\")]):_vm._e(),(_vm.track.channels)?_c('span',[_vm._v(\" | \"+_vm._s(_vm._f(\"channels\")(_vm.track.channels)))]):_vm._e(),(_vm.track.bitrate)?_c('span',[_vm._v(\" | \"+_vm._s(_vm.track.bitrate)+\" Kb/s\")]):_vm._e()])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.track.time_added,'L LT')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Rating\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(Math.floor(_vm.track.rating / 10))+\" / 10\")])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play_track}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogTrack.vue?vue&type=template&id=2c4c4585&\"\nimport script from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListTracks.vue?vue&type=template&id=39565e8c&\"\nimport script from \"./ListTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./ListTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowse.vue?vue&type=template&id=377ad592&\"\nimport script from \"./PageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently added\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyAdded.vue?vue&type=template&id=669b1b24&\"\nimport script from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyAdded.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Recently played\")]),_c('p',{staticClass:\"heading\"},[_vm._v(\"tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.recently_played.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageBrowseRecentlyPlayed.vue?vue&type=template&id=6755b6f8&\"\nimport script from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\nexport * from \"./PageBrowseRecentlyPlayed.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear on singles or playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide artists from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides artists that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Artists\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',[_c('nav',{staticClass:\"buttons is-centered fd-is-square\",staticStyle:{\"margin-bottom\":\"16px\"}},_vm._l((_vm.filtered_index),function(char){return _c('a',{key:char,staticClass:\"button is-small\",on:{\"click\":function($event){return _vm.nav(char)}}},[_vm._v(_vm._s(char))])}),0)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./IndexButtonList.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./IndexButtonList.vue?vue&type=template&id=4b37eeb5&\"\nimport script from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\nexport * from \"./IndexButtonList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.is_grouped)?_c('div',_vm._l((_vm.artists.indexList),function(idx){return _c('div',{key:idx,staticClass:\"mb-6\"},[_c('span',{staticClass:\"tag is-info is-light is-small has-text-weight-bold\",attrs:{\"id\":'index_' + idx}},[_vm._v(_vm._s(idx))]),_vm._l((_vm.artists.grouped[idx]),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)})],2)}),0):_c('div',_vm._l((_vm.artists_list),function(artist){return _c('list-item-artist',{key:artist.id,attrs:{\"artist\":artist},on:{\"click\":function($event){return _vm.open_artist(artist)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),1),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_details_modal,\"artist\":_vm.selected_artist,\"media_kind\":_vm.media_kind},on:{\"close\":function($event){_vm.show_details_modal = false}}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemArtist.vue?vue&type=template&id=6f373e4f&functional=true&\"\nimport script from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Albums\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.album_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.track_count))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.data_kind))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Added at\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.artist.time_added,'L LT')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogArtist.vue?vue&type=template&id=c563adce&\"\nimport script from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\nexport default class Artists {\n constructor (items, options = { hideSingles: false, hideSpotify: false, sort: 'Name', group: false }) {\n this.items = items\n this.options = options\n this.grouped = {}\n this.sortedAndFiltered = []\n this.indexList = []\n\n this.init()\n }\n\n init () {\n this.createSortedAndFilteredList()\n this.createGroupedList()\n this.createIndexList()\n }\n\n getArtistIndex (artist) {\n if (this.options.sort === 'Name') {\n return artist.name_sort.charAt(0).toUpperCase()\n }\n return artist.time_added.substring(0, 4)\n }\n\n isArtistVisible (artist) {\n if (this.options.hideSingles && artist.track_count <= (artist.album_count * 2)) {\n return false\n }\n if (this.options.hideSpotify && artist.data_kind === 'spotify') {\n return false\n }\n return true\n }\n\n createIndexList () {\n this.indexList = [...new Set(this.sortedAndFiltered\n .map(artist => this.getArtistIndex(artist)))]\n }\n\n createSortedAndFilteredList () {\n let artistsSorted = this.items\n if (this.options.hideSingles || this.options.hideSpotify || this.options.hideOther) {\n artistsSorted = artistsSorted.filter(artist => this.isArtistVisible(artist))\n }\n if (this.options.sort === 'Recently added') {\n artistsSorted = [...artistsSorted].sort((a, b) => b.time_added.localeCompare(a.time_added))\n }\n this.sortedAndFiltered = artistsSorted\n }\n\n createGroupedList () {\n if (!this.options.group) {\n this.grouped = {}\n }\n this.grouped = this.sortedAndFiltered.reduce((r, artist) => {\n const idx = this.getArtistIndex(artist)\n r[idx] = [...r[idx] || [], artist]\n return r\n }, {})\n }\n}\n","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListArtists.vue?vue&type=template&id=a9a21416&\"\nimport script from \"./ListArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown\",class:{ 'is-active': _vm.is_active }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('button',{staticClass:\"button\",attrs:{\"aria-haspopup\":\"true\",\"aria-controls\":\"dropdown-menu\"},on:{\"click\":function($event){_vm.is_active = !_vm.is_active}}},[_c('span',[_vm._v(_vm._s(_vm.value))]),_vm._m(0)])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},_vm._l((_vm.options),function(option){return _c('a',{key:option,staticClass:\"dropdown-item\",class:{'is-active': _vm.value === option},on:{\"click\":function($event){return _vm.select(option)}}},[_vm._v(\" \"+_vm._s(option)+\" \")])}),0)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-chevron-down\",attrs:{\"aria-hidden\":\"true\"}})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DropdownMenu.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./DropdownMenu.vue?vue&type=template&id=56ac032b&\"\nimport script from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./DropdownMenu.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtists.vue?vue&type=template&id=3d4c8b43&\"\nimport script from \"./PageArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"options\"},[_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])]),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(_vm._s(_vm.artist.track_count)+\" tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.albums_list}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtist.vue?vue&type=template&id=03dca38a&\"\nimport script from \"./PageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Filter\")]),_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_singles),expression:\"hide_singles\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSingles\",\"type\":\"checkbox\",\"name\":\"switchHideSingles\"},domProps:{\"checked\":Array.isArray(_vm.hide_singles)?_vm._i(_vm.hide_singles,null)>-1:(_vm.hide_singles)},on:{\"change\":function($event){var $$a=_vm.hide_singles,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_singles=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_singles=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_singles=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSingles\"}},[_vm._v(\"Hide singles\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides singles and albums with tracks that only appear in playlists.\")])]),(_vm.spotify_enabled)?_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.hide_spotify),expression:\"hide_spotify\"}],staticClass:\"switch\",attrs:{\"id\":\"switchHideSpotify\",\"type\":\"checkbox\",\"name\":\"switchHideSpotify\"},domProps:{\"checked\":Array.isArray(_vm.hide_spotify)?_vm._i(_vm.hide_spotify,null)>-1:(_vm.hide_spotify)},on:{\"change\":function($event){var $$a=_vm.hide_spotify,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.hide_spotify=$$a.concat([$$v]))}else{$$i>-1&&(_vm.hide_spotify=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.hide_spotify=$$c}}}}),_c('label',{attrs:{\"for\":\"switchHideSpotify\"}},[_vm._v(\"Hide albums from Spotify\")])]),_c('p',{staticClass:\"help\"},[_vm._v(\"If active, hides albums that only appear in your Spotify library.\")])]):_vm._e()]),_c('div',{staticClass:\"column\"},[_c('p',{staticClass:\"heading\",staticStyle:{\"margin-bottom\":\"24px\"}},[_vm._v(\"Sort by\")]),_c('dropdown-menu',{attrs:{\"options\":_vm.sort_options},model:{value:(_vm.sort),callback:function ($$v) {_vm.sort=$$v},expression:\"sort\"}})],1)])],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Albums\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbums.vue?vue&type=template&id=f8e2027c&\"\nimport script from \"./PageAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAlbum.vue?vue&type=template&id=ad2b3a70&\"\nimport script from \"./PageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Genres\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.genres.total)+\" genres\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.genres.items),function(genre){return _c('list-item-genre',{key:genre.name,attrs:{\"genre\":genre},on:{\"click\":function($event){return _vm.open_genre(genre)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(genre)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_details_modal,\"genre\":_vm.selected_genre},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\",attrs:{\"id\":'index_' + _vm.props.genre.name.charAt(0).toUpperCase()}},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.genre.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemGenre.vue?vue&type=template&id=526e97c7&functional=true&\"\nimport script from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(_vm._s(_vm.genre.name))])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogGenre.vue?vue&type=template&id=f6ef5fb8&\"\nimport script from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenres.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenres.vue?vue&type=template&id=9a23c802&\"\nimport script from \"./PageGenres.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenres.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.genre_albums.total)+\" albums | \"),_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_tracks}},[_vm._v(\"tracks\")])]),_c('list-albums',{attrs:{\"albums\":_vm.genre_albums.items}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.name }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenre.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenre.vue?vue&type=template&id=2268caa3&\"\nimport script from \"./PageGenre.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenre.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.genre))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_genre_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_genre}},[_vm._v(\"albums\")]),_vm._v(\" | \"+_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"expression\":_vm.expression}}),_c('modal-dialog-genre',{attrs:{\"show\":_vm.show_genre_details_modal,\"genre\":{ 'name': _vm.genre }},on:{\"close\":function($event){_vm.show_genre_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageGenreTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageGenreTracks.vue?vue&type=template&id=0fff7765&\"\nimport script from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageGenreTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.index_list}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_vm._v(\" | \"+_vm._s(_vm.artist.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items,\"uris\":_vm.track_uris}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageArtistTracks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageArtistTracks.vue?vue&type=template&id=6da2b51e&\"\nimport script from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\nexport * from \"./PageArtistTracks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.new_episodes.items.length > 0)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New episodes\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.mark_all_played}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-pencil\"})]),_c('span',[_vm._v(\"Mark All Played\")])])])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_episodes.items),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false},\"play-count-changed\":_vm.reload_new_episodes}})],2)],2):_vm._e(),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums.total)+\" podcasts\")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.open_add_podcast_dialog}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-rss\"})]),_c('span',[_vm._v(\"Add Podcast\")])])])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items},on:{\"play-count-changed\":function($event){return _vm.reload_new_episodes()},\"podcast-deleted\":function($event){return _vm.reload_podcasts()}}}),_c('modal-dialog-add-rss',{attrs:{\"show\":_vm.show_url_modal},on:{\"close\":function($event){_vm.show_url_modal = false},\"podcast-added\":function($event){return _vm.reload_podcasts()}}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Add Podcast RSS feed URL\")]),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.add_stream($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.url),expression:\"url\"}],ref:\"url_field\",staticClass:\"input is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"http://url-to-rss\",\"disabled\":_vm.loading},domProps:{\"value\":(_vm.url)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.url=$event.target.value}}}),_c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-rss\"})])]),_c('p',{staticClass:\"help\"},[_vm._v(\"Adding a podcast includes creating an RSS playlist, that will allow forked-daapd to manage the podcast subscription. \")])])])]),(_vm.loading)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item button is-loading\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-web\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Processing ...\")])])]):_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-danger\",on:{\"click\":function($event){return _vm.$emit('close')}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-cancel\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Cancel\")])]),_c('a',{staticClass:\"card-footer-item has-background-info has-text-white has-text-weight-bold\",on:{\"click\":_vm.add_stream}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogAddRss.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogAddRss.vue?vue&type=template&id=21695499&\"\nimport script from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogAddRss.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcasts.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcasts.vue?vue&type=template&id=aa493f06&\"\nimport script from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcasts.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.album.name)+\" \")])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_vm._l((_vm.tracks),function(track){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(track)}}},[_c('template',{slot:\"progress\"},[_c('range-slider',{staticClass:\"track-progress\",attrs:{\"min\":\"0\",\"max\":track.length_ms,\"step\":\"1\",\"disabled\":true,\"value\":track.seek_ms}})],1),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_details_modal = false},\"play-count-changed\":_vm.reload_tracks}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'podcast',\"new_tracks\":_vm.new_tracks},on:{\"close\":function($event){_vm.show_album_details_modal = false},\"play-count-changed\":_vm.reload_tracks,\"remove-podcast\":_vm.open_remove_podcast_dialog}}),_c('modal-dialog',{attrs:{\"show\":_vm.show_remove_podcast_modal,\"title\":\"Remove podcast\",\"delete_action\":\"Remove\"},on:{\"close\":function($event){_vm.show_remove_podcast_modal = false},\"delete\":_vm.remove_podcast}},[_c('template',{slot:\"modal-content\"},[_c('p',[_vm._v(\"Permanently remove this podcast from your library?\")]),_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"(This will also remove the RSS playlist \"),_c('b',[_vm._v(_vm._s(_vm.rss_playlist_to_remove.name))]),_vm._v(\".)\")])])],2)],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePodcast.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePodcast.vue?vue&type=template&id=f135dc2e&\"\nimport script from \"./PagePodcast.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePodcast.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.albums_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.albums_list.sortedAndFiltered.length)+\" Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/artists\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-artist\"})]),_c('span',{},[_vm._v(\"Authors\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/audiobooks/albums\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-album\"})]),_c('span',{},[_vm._v(\"Audiobooks\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsAudiobooks.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsAudiobooks.vue?vue&type=template&id=0cda5528&\"\nimport script from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsAudiobooks.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbums.vue?vue&type=template&id=35fdc4d3&\"\nimport script from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbums.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-audiobooks'),_c('content-with-heading',[_c('template',{slot:\"options\"},[_c('index-button-list',{attrs:{\"index\":_vm.artists_list.indexList}})],1),_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Authors\")]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.artists_list.sortedAndFiltered.length)+\" Authors\")])]),_c('template',{slot:\"heading-right\"}),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists_list}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtists.vue?vue&type=template&id=57e179cc&\"\nimport script from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.artist.album_count)+\" albums\")]),_c('list-albums',{attrs:{\"albums\":_vm.albums.items}}),_c('modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksArtist.vue?vue&type=template&id=1d8187dc&\"\nimport script from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artist))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.album.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.track_count)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.album.uri}}),_c('modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album,\"media_kind\":'audiobook'},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAudiobooksAlbum.vue?vue&type=template&id=efa1b7f2&\"\nimport script from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAudiobooksAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('p',{staticClass:\"heading\"},[_vm._v(_vm._s(_vm.playlists.total)+\" playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.playlists),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-library-music': playlist.type !== 'folder', 'mdi-rss': playlist.type === 'rss', 'mdi-folder': playlist.type === 'folder' }})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_details_modal = false}}})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.slots().icon)?_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"icon\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.playlist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemPlaylist.vue?vue&type=template&id=70e1d159&functional=true&\"\nimport script from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.path))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.type))])])])]),(!_vm.playlist.folder)?_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])]):_vm._e()])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogPlaylist.vue?vue&type=template&id=eed38c78&\"\nimport script from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListPlaylists.vue?vue&type=template&id=cb1e7e92&\"\nimport script from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./ListPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylists.vue?vue&type=template&id=3470ce91&\"\nimport script from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.length)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks,\"uris\":_vm.uris}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist,\"uris\":_vm.uris},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],1)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PagePlaylist.vue?vue&type=template&id=71750814&\"\nimport script from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./PagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Files\")]),_c('p',{staticClass:\"title is-7 has-text-grey\"},[_vm._v(_vm._s(_vm.current_directory))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){return _vm.open_directory_dialog({ 'path': _vm.current_directory })}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Play\")])])])]),_c('template',{slot:\"content\"},[(_vm.$route.query.directory)?_c('div',{staticClass:\"media\",on:{\"click\":function($event){return _vm.open_parent_directory()}}},[_c('figure',{staticClass:\"media-left fd-has-action\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-subdirectory-arrow-left\"})])]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\"},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(\"..\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)]):_vm._e(),_vm._l((_vm.files.directories),function(directory){return _c('list-item-directory',{key:directory.path,attrs:{\"directory\":directory},on:{\"click\":function($event){return _vm.open_directory(directory)}}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_directory_dialog(directory)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.playlists.items),function(playlist){return _c('list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist},on:{\"click\":function($event){return _vm.open_playlist(playlist)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-library-music\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_vm._l((_vm.files.tracks.items),function(track,index){return _c('list-item-track',{key:track.id,attrs:{\"track\":track},on:{\"click\":function($event){return _vm.play_track(index)}}},[_c('template',{slot:\"icon\"},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-file-outline\"})])]),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('modal-dialog-directory',{attrs:{\"show\":_vm.show_directory_details_modal,\"directory\":_vm.selected_directory},on:{\"close\":function($event){_vm.show_directory_details_modal = false}}}),_c('modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}}),_c('modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[_c('figure',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._m(0)]),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.directory.path.substring(_vm.props.directory.path.lastIndexOf('/') + 1)))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey-light\"},[_vm._v(_vm._s(_vm.props.directory.path))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = [function (_h,_vm) {var _c=_vm._c;return _c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-folder\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ListItemDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ListItemDirectory.vue?vue&type=template&id=fc5a981a&functional=true&\"\nimport script from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ListItemDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.directory.path)+\" \")])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ModalDialogDirectory.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ModalDialogDirectory.vue?vue&type=template&id=47bd3efd&\"\nimport script from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\nexport * from \"./ModalDialogDirectory.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageFiles.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageFiles.vue?vue&type=template&id=52f9641a&\"\nimport script from \"./PageFiles.vue?vue&type=script&lang=js&\"\nexport * from \"./PageFiles.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Radio\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.tracks.total)+\" tracks\")]),_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageRadioStreams.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageRadioStreams.vue?vue&type=template&id=6286e82d&\"\nimport script from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\nexport * from \"./PageRadioStreams.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)]),_vm._m(1)])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_c('list-tracks',{attrs:{\"tracks\":_vm.tracks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_c('list-artists',{attrs:{\"artists\":_vm.artists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.albums.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_c('list-playlists',{attrs:{\"playlists\":_vm.playlists.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e(),(_vm.show_podcasts && _vm.podcasts.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Podcasts\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.podcasts.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_podcasts_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_podcasts}},[_vm._v(\"Show all \"+_vm._s(_vm.podcasts.total.toLocaleString())+\" podcasts\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_podcasts && !_vm.podcasts.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No podcasts found\")])])])],2):_vm._e(),(_vm.show_audiobooks && _vm.audiobooks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Audiobooks\")])]),_c('template',{slot:\"content\"},[_c('list-albums',{attrs:{\"albums\":_vm.audiobooks.items}})],1),_c('template',{slot:\"footer\"},[(_vm.show_all_audiobooks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_audiobooks}},[_vm._v(\"Show all \"+_vm._s(_vm.audiobooks.total.toLocaleString())+\" audiobooks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_audiobooks && !_vm.audiobooks.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No audiobooks found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"help has-text-centered\"},[_vm._v(\"Tip: you can search by a smart playlist query language \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/blob/master/README_SMARTPL.md\",\"target\":\"_blank\"}},[_vm._v(\"expression\")]),_vm._v(\" if you prefix it with \"),_c('code',[_vm._v(\"query:\")]),_vm._v(\". \")])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-content py-3\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_vm._t(\"content\")],2)])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ContentText.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ContentText.vue?vue&type=template&id=bfc5ab0a&\"\nimport script from \"./ContentText.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentText.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.spotify_enabled)?_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small is-toggle is-toggle-rounded\"},[_c('ul',[_c('li',{class:{ 'is-active': _vm.$route.path === '/search/library' }},[_c('a',{on:{\"click\":_vm.search_library}},[_vm._m(0),_c('span',{},[_vm._v(\"Library\")])])]),_c('li',{class:{ 'is-active': _vm.$route.path === '/search/spotify' }},[_c('a',{on:{\"click\":_vm.search_spotify}},[_vm._m(1),_c('span',{},[_vm._v(\"Spotify\")])])])])])])])])]):_vm._e()}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-library-books\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-small\"},[_c('i',{staticClass:\"mdi mdi-spotify\"})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSearch.vue?vue&type=template&id=3392045a&\"\nimport script from \"./TabsSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageSearch.vue?vue&type=template&id=29849e51&\"\nimport script from \"./PageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./PageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths has-text-centered-mobile\"},[_c('p',{staticClass:\"heading\"},[_c('b',[_vm._v(\"forked-daapd\")]),_vm._v(\" - version \"+_vm._s(_vm.config.version))]),_c('h1',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.config.library_name))])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content\"},[_c('nav',{staticClass:\"level is-mobile\"},[_vm._m(0),_c('div',{staticClass:\"level-right\"},[(_vm.library.updating)?_c('div',[_c('a',{staticClass:\"button is-small is-loading\"},[_vm._v(\"Update\")])]):_c('div',{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:(_vm.onClickOutside),expression:\"onClickOutside\"}],staticClass:\"dropdown is-right\",class:{ 'is-active': _vm.show_update_dropdown }},[_c('div',{staticClass:\"dropdown-trigger\"},[_c('div',{staticClass:\"buttons has-addons\"},[_c('a',{staticClass:\"button is-small\",on:{\"click\":_vm.update}},[_vm._v(\"Update\")]),_c('a',{staticClass:\"button is-small\",on:{\"click\":function($event){_vm.show_update_dropdown = !_vm.show_update_dropdown}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi\",class:{ 'mdi-chevron-down': !_vm.show_update_dropdown, 'mdi-chevron-up': _vm.show_update_dropdown }})])])])]),_c('div',{staticClass:\"dropdown-menu\",attrs:{\"id\":\"dropdown-menu\",\"role\":\"menu\"}},[_c('div',{staticClass:\"dropdown-content\"},[_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update}},[_c('strong',[_vm._v(\"Update\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Adds new, removes deleted and updates modified files.\")])])]),_c('hr',{staticClass:\"dropdown-divider\"}),_c('div',{staticClass:\"dropdown-item\"},[_c('a',{staticClass:\"has-text-dark\",on:{\"click\":_vm.update_meta}},[_c('strong',[_vm._v(\"Rescan metadata\")]),_c('br'),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Same as update, but also rescans unmodified files.\")])])])])])])])]),_c('table',{staticClass:\"table\"},[_c('tbody',[_c('tr',[_c('th',[_vm._v(\"Artists\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.artists)))])]),_c('tr',[_c('th',[_vm._v(\"Albums\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.albums)))])]),_c('tr',[_c('th',[_vm._v(\"Tracks\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"number\")(_vm.library.songs)))])]),_c('tr',[_c('th',[_vm._v(\"Total playtime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.library.db_playtime * 1000,'y [years], d [days], h [hours], m [minutes]')))])]),_c('tr',[_c('th',[_vm._v(\"Library updated\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.updated_at))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.updated_at,'lll'))+\")\")])])]),_c('tr',[_c('th',[_vm._v(\"Uptime\")]),_c('td',{staticClass:\"has-text-right\"},[_vm._v(_vm._s(_vm._f(\"timeFromNow\")(_vm.library.started_at,true))+\" \"),_c('span',{staticClass:\"has-text-grey\"},[_vm._v(\"(\"+_vm._s(_vm._f(\"time\")(_vm.library.started_at,'ll'))+\")\")])])])])])])])])])]),_c('section',{staticClass:\"section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"content has-text-centered-mobile\"},[_c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Compiled with support for \"+_vm._s(_vm._f(\"join\")(_vm.config.buildoptions))+\".\")]),_vm._m(1)])])])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"level-left\"},[_c('div',{staticClass:\"level-item\"},[_c('h2',{staticClass:\"title is-5\"},[_vm._v(\"Library\")])])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',{staticClass:\"is-size-7\"},[_vm._v(\"Web interface built with \"),_c('a',{attrs:{\"href\":\"http://bulma.io\"}},[_vm._v(\"Bulma\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://materialdesignicons.com/\"}},[_vm._v(\"Material Design Icons\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://vuejs.org/\"}},[_vm._v(\"Vue.js\")]),_vm._v(\", \"),_c('a',{attrs:{\"href\":\"https://github.com/mzabriskie/axios\"}},[_vm._v(\"axios\")]),_vm._v(\" and \"),_c('a',{attrs:{\"href\":\"https://github.com/ejurgensen/forked-daapd/network/dependencies\"}},[_vm._v(\"more\")]),_vm._v(\".\")])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PageAbout.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PageAbout.vue?vue&type=template&id=474a48e7&\"\nimport script from \"./PageAbout.vue?vue&type=script&lang=js&\"\nexport * from \"./PageAbout.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/new-releases\"}},[_vm._v(\" Show more \")])],1)])])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('router-link',{staticClass:\"button is-light is-small is-rounded\",attrs:{\"to\":\"/music/spotify/featured-playlists\"}},[_vm._v(\" Show more \")])],1)])])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:\"media\"},[(_vm.$slots['artwork'])?_c('div',{staticClass:\"media-left fd-has-action\",on:{\"click\":_vm.listeners.click}},[_vm._t(\"artwork\")],2):_vm._e(),_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.listeners.click}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.props.album.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.props.album.artists[0].name))])]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey has-text-weight-normal\"},[_vm._v(\"(\"+_vm._s(_vm.props.album.album_type)+\", \"+_vm._s(_vm._f(\"time\")(_vm.props.album.release_date,'L'))+\")\")])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemAlbum.vue?vue&type=template&id=62c75d12&functional=true&\"\nimport script from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n true,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_playlist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.name))]),_c('h2',{staticClass:\"subtitle is-7\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemPlaylist.vue?vue&type=template&id=5f06cfec&\"\nimport script from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('figure',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.artwork_visible),expression:\"artwork_visible\"}],staticClass:\"image is-square fd-has-margin-bottom\"},[_c('img',{staticClass:\"fd-has-shadow\",attrs:{\"src\":_vm.artwork_url},on:{\"load\":_vm.artwork_loaded,\"error\":_vm.artwork_error}})]),_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Type\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.album.album_type))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogAlbum.vue?vue&type=template&id=c74b0d5a&\"\nimport script from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_playlist}},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Owner\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.owner.display_name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Tracks\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.tracks.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.playlist.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogPlaylist.vue?vue&type=template&id=306ad148&\"\nimport script from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogPlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowse.vue?vue&type=template&id=55573f08&\"\nimport script from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowse.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"New Releases\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.new_releases),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseNewReleases.vue?vue&type=template&id=81c5055e&\"\nimport script from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseNewReleases.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-music'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Featured Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.featured_playlists),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=template&id=0258f289&\"\nimport script from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageBrowseFeaturedPlaylists.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_artist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.total)+\" albums\")]),_vm._l((_vm.albums),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_details_modal = false}}}),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Popularity / Followers\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.popularity)+\" / \"+_vm._s(_vm.artist.followers.total))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Genres\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.genres.join(', ')))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogArtist.vue?vue&type=template&id=7a611bba&\"\nimport script from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageArtist.vue?vue&type=template&id=b2a152d8&\"\nimport script from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-hero',[_c('template',{slot:\"heading-left\"},[_c('h1',{staticClass:\"title is-5\"},[_vm._v(_vm._s(_vm.album.name))]),_c('h2',{staticClass:\"subtitle is-6 has-text-link has-text-weight-normal\"},[_c('a',{staticClass:\"has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('div',{staticClass:\"buttons fd-is-centered-mobile fd-has-margin-top\"},[_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])]),_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_album_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])])])]),_c('template',{slot:\"heading-right\"},[_c('p',{staticClass:\"image is-square fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url,\"artist\":_vm.album.artist,\"album\":_vm.album.name},on:{\"click\":function($event){_vm.show_album_details_modal = true}}})],1)]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading is-7 has-text-centered-mobile fd-has-margin-top\"},[_vm._v(_vm._s(_vm.album.tracks.total)+\" tracks\")]),_vm._l((_vm.album.tracks.items),function(track,index){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"position\":index,\"album\":_vm.album,\"context_uri\":_vm.album.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.play}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.name))]),_c('h2',{staticClass:\"subtitle is-7 has-text-grey\"},[_c('b',[_vm._v(_vm._s(_vm.track.artists[0].name))])])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemTrack.vue?vue&type=template&id=28c7eaa1&\"\nimport script from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.show)?_c('div',{staticClass:\"modal is-active\"},[_c('div',{staticClass:\"modal-background\",on:{\"click\":function($event){return _vm.$emit('close')}}}),_c('div',{staticClass:\"modal-content fd-modal-card\"},[_c('div',{staticClass:\"card\"},[_c('div',{staticClass:\"card-content\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\" \"+_vm._s(_vm.track.name)+\" \")]),_c('p',{staticClass:\"subtitle\"},[_vm._v(\" \"+_vm._s(_vm.track.artists[0].name)+\" \")]),_c('div',{staticClass:\"content is-small\"},[_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_album}},[_vm._v(_vm._s(_vm.album.name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Album artist\")]),_c('a',{staticClass:\"title is-6 has-text-link\",on:{\"click\":_vm.open_artist}},[_vm._v(_vm._s(_vm.album.artists[0].name))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Release date\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"time\")(_vm.album.release_date,'L')))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Track / Disc\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.track_number)+\" / \"+_vm._s(_vm.track.disc_number))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Length\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm._f(\"duration\")(_vm.track.duration_ms)))])]),_c('p',[_c('span',{staticClass:\"heading\"},[_vm._v(\"Path\")]),_c('span',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.track.uri))])])])]),_c('footer',{staticClass:\"card-footer\"},[_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-plus\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.queue_add_next}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-playlist-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Add Next\")])]),_c('a',{staticClass:\"card-footer-item has-text-dark\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-play\"})]),_vm._v(\" \"),_c('span',{staticClass:\"is-size-7\"},[_vm._v(\"Play\")])])])])]),_c('button',{staticClass:\"modal-close is-large\",attrs:{\"aria-label\":\"close\"},on:{\"click\":function($event){return _vm.$emit('close')}}})]):_vm._e()])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyModalDialogTrack.vue?vue&type=template&id=094bebe4&\"\nimport script from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyModalDialogTrack.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageAlbum.vue?vue&type=template&id=63d70974&\"\nimport script from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageAlbum.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(_vm._s(_vm.playlist.name))])]),_c('template',{slot:\"heading-right\"},[_c('div',{staticClass:\"buttons is-centered\"},[_c('a',{staticClass:\"button is-small is-light is-rounded\",on:{\"click\":function($event){_vm.show_playlist_details_modal = true}}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-dots-horizontal mdi-18px\"})])]),_c('a',{staticClass:\"button is-small is-dark is-rounded\",on:{\"click\":_vm.play}},[_c('span',{staticClass:\"icon\"},[_c('i',{staticClass:\"mdi mdi-shuffle\"})]),_vm._v(\" \"),_c('span',[_vm._v(\"Shuffle\")])])])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"heading has-text-centered-mobile\"},[_vm._v(_vm._s(_vm.playlist.tracks.total)+\" tracks\")]),_vm._l((_vm.tracks),function(item,index){return _c('spotify-list-item-track',{key:item.track.id,attrs:{\"track\":item.track,\"album\":item.track.album,\"position\":index,\"context_uri\":_vm.playlist.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(item.track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.offset < _vm.total)?_c('infinite-loading',{on:{\"infinite\":_vm.load_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}}),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPagePlaylist.vue?vue&type=template&id=c72f0fb2&\"\nimport script from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPagePlaylist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('section',{staticClass:\"section fd-remove-padding-bottom\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.new_search($event)}}},[_c('div',{staticClass:\"field\"},[_c('p',{staticClass:\"control is-expanded has-icons-left\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.search_query),expression:\"search_query\"}],ref:\"search_field\",staticClass:\"input is-rounded is-shadowless\",attrs:{\"type\":\"text\",\"placeholder\":\"Search\",\"autocomplete\":\"off\"},domProps:{\"value\":(_vm.search_query)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.search_query=$event.target.value}}}),_vm._m(0)])])]),_c('div',{staticClass:\"tags\",staticStyle:{\"margin-top\":\"16px\"}},_vm._l((_vm.recent_searches),function(recent_search){return _c('a',{key:recent_search,staticClass:\"tag\",on:{\"click\":function($event){return _vm.open_recent_search(recent_search)}}},[_vm._v(_vm._s(recent_search))])}),0)])])])]),_c('tabs-search',{attrs:{\"query\":_vm.search_query}}),(_vm.show_tracks && _vm.tracks.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Tracks\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.tracks.items),function(track){return _c('spotify-list-item-track',{key:track.id,attrs:{\"track\":track,\"album\":track.album,\"position\":0,\"context_uri\":track.uri}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_track_dialog(track)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'track')?_c('infinite-loading',{on:{\"infinite\":_vm.search_tracks_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-track',{attrs:{\"show\":_vm.show_track_details_modal,\"track\":_vm.selected_track,\"album\":_vm.selected_track.album},on:{\"close\":function($event){_vm.show_track_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_tracks_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_tracks}},[_vm._v(\"Show all \"+_vm._s(_vm.tracks.total.toLocaleString())+\" tracks\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_tracks && !_vm.tracks.total)?_c('content-text',{staticClass:\"mt-6\"},[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No tracks found\")])])])],2):_vm._e(),(_vm.show_artists && _vm.artists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Artists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.artists.items),function(artist){return _c('spotify-list-item-artist',{key:artist.id,attrs:{\"artist\":artist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_artist_dialog(artist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'artist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_artists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-artist',{attrs:{\"show\":_vm.show_artist_details_modal,\"artist\":_vm.selected_artist},on:{\"close\":function($event){_vm.show_artist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_artists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_artists}},[_vm._v(\"Show all \"+_vm._s(_vm.artists.total.toLocaleString())+\" artists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_artists && !_vm.artists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No artists found\")])])])],2):_vm._e(),(_vm.show_albums && _vm.albums.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Albums\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.albums.items),function(album){return _c('spotify-list-item-album',{key:album.id,attrs:{\"album\":album},on:{\"click\":function($event){return _vm.open_album(album)}}},[(_vm.is_visible_artwork)?_c('template',{slot:\"artwork\"},[_c('p',{staticClass:\"image is-64x64 fd-has-shadow fd-has-action\"},[_c('cover-artwork',{attrs:{\"artwork_url\":_vm.artwork_url(album),\"artist\":album.artist,\"album\":album.name,\"maxwidth\":64,\"maxheight\":64}})],1)]):_vm._e(),_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_album_dialog(album)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'album')?_c('infinite-loading',{on:{\"infinite\":_vm.search_albums_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-album',{attrs:{\"show\":_vm.show_album_details_modal,\"album\":_vm.selected_album},on:{\"close\":function($event){_vm.show_album_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_albums_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_albums}},[_vm._v(\"Show all \"+_vm._s(_vm.albums.total.toLocaleString())+\" albums\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_albums && !_vm.albums.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No albums found\")])])])],2):_vm._e(),(_vm.show_playlists && _vm.playlists.total)?_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('p',{staticClass:\"title is-4\"},[_vm._v(\"Playlists\")])]),_c('template',{slot:\"content\"},[_vm._l((_vm.playlists.items),function(playlist){return _c('spotify-list-item-playlist',{key:playlist.id,attrs:{\"playlist\":playlist}},[_c('template',{slot:\"actions\"},[_c('a',{on:{\"click\":function($event){return _vm.open_playlist_dialog(playlist)}}},[_c('span',{staticClass:\"icon has-text-dark\"},[_c('i',{staticClass:\"mdi mdi-dots-vertical mdi-18px\"})])])])],2)}),(_vm.query.type === 'playlist')?_c('infinite-loading',{on:{\"infinite\":_vm.search_playlists_next}},[_c('span',{attrs:{\"slot\":\"no-more\"},slot:\"no-more\"},[_vm._v(\".\")])]):_vm._e(),_c('spotify-modal-dialog-playlist',{attrs:{\"show\":_vm.show_playlist_details_modal,\"playlist\":_vm.selected_playlist},on:{\"close\":function($event){_vm.show_playlist_details_modal = false}}})],2),_c('template',{slot:\"footer\"},[(_vm.show_all_playlists_button)?_c('nav',{staticClass:\"level\"},[_c('p',{staticClass:\"level-item\"},[_c('a',{staticClass:\"button is-light is-small is-rounded\",on:{\"click\":_vm.open_search_playlists}},[_vm._v(\"Show all \"+_vm._s(_vm.playlists.total.toLocaleString())+\" playlists\")])])]):_vm._e()])],2):_vm._e(),(_vm.show_playlists && !_vm.playlists.total)?_c('content-text',[_c('template',{slot:\"content\"},[_c('p',[_c('i',[_vm._v(\"No playlists found\")])])])],2):_vm._e()],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:\"icon is-left\"},[_c('i',{staticClass:\"mdi mdi-magnify\"})])}]\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"media\"},[_c('div',{staticClass:\"media-content fd-has-action is-clipped\",on:{\"click\":_vm.open_artist}},[_c('h1',{staticClass:\"title is-6\"},[_vm._v(_vm._s(_vm.artist.name))])]),_c('div',{staticClass:\"media-right\"},[_vm._t(\"actions\")],2)])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyListItemArtist.vue?vue&type=template&id=59bc374f&\"\nimport script from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyListItemArtist.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SpotifyPageSearch.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SpotifyPageSearch.vue?vue&type=template&id=6fd13a6d&\"\nimport script from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\nexport * from \"./SpotifyPageSearch.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Navbar items\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" Select the top navigation bar menu items \")]),_c('div',{staticClass:\"notification is-size-7\"},[_vm._v(\" If you select more items than can be shown on your screen then the burger menu will disappear. \")]),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_playlists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Playlists\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_music\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Music\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_podcasts\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Podcasts\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_audiobooks\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Audiobooks\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_radio\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Radio\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_files\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Files\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_menu_item_search\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Search\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Album lists\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_cover_artwork_in_album_lists\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show cover artwork in album list\")])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Now playing page\")])]),_c('template',{slot:\"content\"},[_c('settings-checkbox',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_now_playing\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Show composer\")]),_c('template',{slot:\"info\"},[_vm._v(\"If enabled the composer of the current playing track is shown on the \\\"now playing page\\\"\")])],2),_c('settings-textfield',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"show_composer_for_genre\",\"disabled\":!_vm.settings_option_show_composer_now_playing,\"placeholder\":\"Genres\"}},[_c('template',{slot:\"label\"},[_vm._v(\"Show composer only for listed genres\")]),_c('template',{slot:\"info\"},[_c('p',{staticClass:\"help\"},[_vm._v(\" Comma separated list of genres the composer should be displayed on the \\\"now playing page\\\". \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" Leave empty to always show the composer. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to \"),_c('code',[_vm._v(\"classical, soundtrack\")]),_vm._v(\" will show the composer for tracks with a genre tag of \\\"Contemporary Classical\\\".\"),_c('br')])])],2)],1)],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Recently added page\")])]),_c('template',{slot:\"content\"},[_c('settings-intfield',{attrs:{\"category_name\":\"webinterface\",\"option_name\":\"recently_added_limit\"}},[_c('template',{slot:\"label\"},[_vm._v(\"Limit the number of albums shown on the \\\"Recently Added\\\" page\")])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:\"section fd-tabs-section\"},[_c('div',{staticClass:\"container\"},[_c('div',{staticClass:\"columns is-centered\"},[_c('div',{staticClass:\"column is-four-fifths\"},[_c('div',{staticClass:\"tabs is-centered is-small\"},[_c('ul',[_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/webinterface\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Webinterface\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/remotes-outputs\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Remotes & Outputs\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/artwork\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Artwork\")])])]),_c('router-link',{attrs:{\"tag\":\"li\",\"to\":\"/settings/online-services\",\"active-class\":\"is-active\"}},[_c('a',[_c('span',{},[_vm._v(\"Online Services\")])])])],1)])])])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TabsSettings.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TabsSettings.vue?vue&type=template&id=6c0a7918&\"\nimport script from \"./TabsSettings.vue?vue&type=script&lang=js&\"\nexport * from \"./TabsSettings.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{ref:\"settings_checkbox\",attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":_vm.value},on:{\"change\":_vm.set_update_timer}}),_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsCheckbox.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsCheckbox.vue?vue&type=template&id=f722b06c&\"\nimport script from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsCheckbox.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('fieldset',{attrs:{\"disabled\":_vm.disabled}},[_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),_c('div',{staticClass:\"control\"},[_c('input',{ref:\"settings_text\",staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":_vm.placeholder},domProps:{\"value\":_vm.value},on:{\"input\":_vm.set_update_timer}})]),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsTextfield.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsTextfield.vue?vue&type=template&id=4cc6d5ec&\"\nimport script from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsTextfield.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('fieldset',{attrs:{\"disabled\":_vm.disabled}},[_c('div',{staticClass:\"field\"},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._t(\"label\"),_c('i',{staticClass:\"is-size-7\",class:{\n 'has-text-info': _vm.statusUpdate === 'success',\n 'has-text-danger': _vm.statusUpdate === 'error'\n }},[_vm._v(\" \"+_vm._s(_vm.info))])],2),_c('div',{staticClass:\"control\"},[_c('input',{ref:\"settings_number\",staticClass:\"input\",staticStyle:{\"width\":\"10em\"},attrs:{\"type\":\"number\",\"min\":\"0\",\"placeholder\":_vm.placeholder},domProps:{\"value\":_vm.value},on:{\"input\":_vm.set_update_timer}})]),(_vm.$slots['info'])?_c('p',{staticClass:\"help\"},[_vm._t(\"info\")],2):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsIntfield.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsIntfield.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsIntfield.vue?vue&type=template&id=3bf31942&\"\nimport script from \"./SettingsIntfield.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsIntfield.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageWebinterface.vue?vue&type=template&id=caf7e2e0&\"\nimport script from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageWebinterface.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Artwork\")])]),_c('template',{slot:\"content\"},[_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\" forked-daapd supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations. \")]),_c('p',[_vm._v(\"In addition to that, you can enable fetching artwork from the following artwork providers:\")])]),(_vm.spotify.libspotify_logged_in)?_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_spotify\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Spotify\")])],2):_vm._e(),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_discogs\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Discogs (\"),_c('a',{attrs:{\"href\":\"https://www.discogs.com/\"}},[_vm._v(\"https://www.discogs.com/\")]),_vm._v(\")\")])],2),_c('settings-checkbox',{attrs:{\"category_name\":\"artwork\",\"option_name\":\"use_artwork_source_coverartarchive\"}},[_c('template',{slot:\"label\"},[_vm._v(\" Cover Art Archive (\"),_c('a',{attrs:{\"href\":\"https://coverartarchive.org/\"}},[_vm._v(\"https://coverartarchive.org/\")]),_vm._v(\")\")])],2)],1)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageArtwork.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageArtwork.vue?vue&type=template&id=41b3d8bf&\"\nimport script from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageArtwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Spotify\")])]),_c('template',{slot:\"content\"},[(!_vm.spotify.libspotify_installed)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was either built without support for Spotify or libspotify is not installed.\")])]):_vm._e(),(_vm.spotify.libspotify_installed)?_c('div',[_c('div',{staticClass:\"notification is-size-7\"},[_c('b',[_vm._v(\"You must have a Spotify premium account\")]),_vm._v(\". If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account. \")]),_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"libspotify\")]),_vm._v(\" - Login with your Spotify username and password \")]),(_vm.spotify.libspotify_logged_in)?_c('p',{staticClass:\"fd-has-margin-bottom\"},[_vm._v(\" Logged in as \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.libspotify_user))])])]):_vm._e(),(_vm.spotify.libspotify_installed && !_vm.spotify.libspotify_logged_in)?_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_libspotify($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.user),expression:\"libspotify.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.libspotify.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.libspotify.password),expression:\"libspotify.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.libspotify.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.libspotify, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\"},[_vm._v(\"Login\")])])])]):_vm._e(),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.libspotify.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" libspotify enables forked-daapd to play Spotify tracks. \")]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token. \")])]),_c('div',{staticClass:\"fd-has-margin-top\"},[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Spotify Web API\")]),_vm._v(\" - Grant access to the Spotify Web API \")]),(_vm.spotify.webapi_token_valid)?_c('p',[_vm._v(\" Access granted for \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm.spotify.webapi_user))])])]):_vm._e(),(_vm.spotify_missing_scope.length > 0)?_c('p',{staticClass:\"help is-danger\"},[_vm._v(\" Please reauthorize Web API access to grant forked-daapd the following additional access rights: \"),_c('b',[_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_missing_scope)))])])]):_vm._e(),_c('div',{staticClass:\"field fd-has-margin-top \"},[_c('div',{staticClass:\"control\"},[_c('a',{staticClass:\"button\",class:{ 'is-info': !_vm.spotify.webapi_token_valid || _vm.spotify_missing_scope.length > 0 },attrs:{\"href\":_vm.spotify.oauth_uri}},[_vm._v(\"Authorize Web API access\")])])]),_c('p',{staticClass:\"help\"},[_vm._v(\" Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are \"),_c('code',[_vm._v(_vm._s(_vm._f(\"join\")(_vm.spotify_required_scope)))]),_vm._v(\". \")])])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Last.fm\")])]),_c('template',{slot:\"content\"},[(!_vm.lastfm.enabled)?_c('div',{staticClass:\"notification is-size-7\"},[_c('p',[_vm._v(\"forked-daapd was built without support for Last.fm.\")])]):_vm._e(),(_vm.lastfm.enabled)?_c('div',[_c('p',{staticClass:\"content\"},[_c('b',[_vm._v(\"Last.fm\")]),_vm._v(\" - Login with your Last.fm username and password to enable scrobbling \")]),(_vm.lastfm.scrobbling_enabled)?_c('div',[_c('a',{staticClass:\"button\",on:{\"click\":_vm.logoutLastfm}},[_vm._v(\"Stop scrobbling\")])]):_vm._e(),(!_vm.lastfm.scrobbling_enabled)?_c('div',[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.login_lastfm($event)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.user),expression:\"lastfm_login.user\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Username\"},domProps:{\"value\":(_vm.lastfm_login.user)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"user\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.user))])]),_c('div',{staticClass:\"control is-expanded\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.lastfm_login.password),expression:\"lastfm_login.password\"}],staticClass:\"input\",attrs:{\"type\":\"password\",\"placeholder\":\"Password\"},domProps:{\"value\":(_vm.lastfm_login.password)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.lastfm_login, \"password\", $event.target.value)}}}),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.password))])]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Login\")])])]),_c('p',{staticClass:\"help is-danger\"},[_vm._v(_vm._s(_vm.lastfm_login.errors.error))]),_c('p',{staticClass:\"help\"},[_vm._v(\" forked-daapd will not store your Last.fm username/password, only the session key. The session key does not expire. \")])])]):_vm._e()]):_vm._e()])],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageOnlineServices.vue?vue&type=template&id=da8f0386&\"\nimport script from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageOnlineServices.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('tabs-settings'),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Remote Pairing\")])]),_c('template',{slot:\"content\"},[(_vm.pairing.active)?_c('div',{staticClass:\"notification\"},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_pairing($event)}}},[_c('label',{staticClass:\"label has-text-weight-normal\"},[_vm._v(\" Remote pairing request from \"),_c('b',[_vm._v(_vm._s(_vm.pairing.remote))])]),_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.pairing_req.pin),expression:\"pairing_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter pairing code\"},domProps:{\"value\":(_vm.pairing_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.pairing_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Send\")])])])])]):_vm._e(),(!_vm.pairing.active)?_c('div',{staticClass:\"content\"},[_c('p',[_vm._v(\"No active pairing request.\")])]):_vm._e()])],2),_c('content-with-heading',[_c('template',{slot:\"heading-left\"},[_c('div',{staticClass:\"title is-4\"},[_vm._v(\"Device Verification\")])]),_c('template',{slot:\"content\"},[_c('p',{staticClass:\"content\"},[_vm._v(\" If your Apple TV requires device verification then activate the device below and enter the PIN that the Apple TV displays. \")]),_vm._l((_vm.outputs),function(output){return _c('div',{key:output.id},[_c('div',{staticClass:\"field\"},[_c('div',{staticClass:\"control\"},[_c('label',{staticClass:\"checkbox\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(output.selected),expression:\"output.selected\"}],attrs:{\"type\":\"checkbox\"},domProps:{\"checked\":Array.isArray(output.selected)?_vm._i(output.selected,null)>-1:(output.selected)},on:{\"change\":[function($event){var $$a=output.selected,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.$set(output, \"selected\", $$a.concat([$$v])))}else{$$i>-1&&(_vm.$set(output, \"selected\", $$a.slice(0,$$i).concat($$a.slice($$i+1))))}}else{_vm.$set(output, \"selected\", $$c)}},function($event){return _vm.output_toggle(output.id)}]}}),_vm._v(\" \"+_vm._s(output.name)+\" \")])])]),(output.needs_auth_key)?_c('form',{staticClass:\"fd-has-margin-bottom\",on:{\"submit\":function($event){$event.preventDefault();return _vm.kickoff_verification(output.id)}}},[_c('div',{staticClass:\"field is-grouped\"},[_c('div',{staticClass:\"control\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.verification_req.pin),expression:\"verification_req.pin\"}],staticClass:\"input\",attrs:{\"type\":\"text\",\"placeholder\":\"Enter verification code\"},domProps:{\"value\":(_vm.verification_req.pin)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.verification_req, \"pin\", $event.target.value)}}})]),_c('div',{staticClass:\"control\"},[_c('button',{staticClass:\"button is-info\",attrs:{\"type\":\"submit\"}},[_vm._v(\"Verify\")])])])]):_vm._e()])})],2)],2)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./SettingsPageRemotesOutputs.vue?vue&type=template&id=2356d137&\"\nimport script from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\nexport * from \"./SettingsPageRemotesOutputs.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport VueRouter from 'vue-router'\nimport store from '@/store'\nimport * as types from '@/store/mutation_types'\nimport PageQueue from '@/pages/PageQueue'\nimport PageNowPlaying from '@/pages/PageNowPlaying'\nimport PageBrowse from '@/pages/PageBrowse'\nimport PageBrowseRecentlyAdded from '@/pages/PageBrowseRecentlyAdded'\nimport PageBrowseRecentlyPlayed from '@/pages/PageBrowseRecentlyPlayed'\nimport PageArtists from '@/pages/PageArtists'\nimport PageArtist from '@/pages/PageArtist'\nimport PageAlbums from '@/pages/PageAlbums'\nimport PageAlbum from '@/pages/PageAlbum'\nimport PageGenres from '@/pages/PageGenres'\nimport PageGenre from '@/pages/PageGenre'\nimport PageGenreTracks from '@/pages/PageGenreTracks'\nimport PageArtistTracks from '@/pages/PageArtistTracks'\nimport PagePodcasts from '@/pages/PagePodcasts'\nimport PagePodcast from '@/pages/PagePodcast'\nimport PageAudiobooksAlbums from '@/pages/PageAudiobooksAlbums'\nimport PageAudiobooksArtists from '@/pages/PageAudiobooksArtists'\nimport PageAudiobooksArtist from '@/pages/PageAudiobooksArtist'\nimport PageAudiobooksAlbum from '@/pages/PageAudiobooksAlbum'\nimport PagePlaylists from '@/pages/PagePlaylists'\nimport PagePlaylist from '@/pages/PagePlaylist'\nimport PageFiles from '@/pages/PageFiles'\nimport PageRadioStreams from '@/pages/PageRadioStreams'\nimport PageSearch from '@/pages/PageSearch'\nimport PageAbout from '@/pages/PageAbout'\nimport SpotifyPageBrowse from '@/pages/SpotifyPageBrowse'\nimport SpotifyPageBrowseNewReleases from '@/pages/SpotifyPageBrowseNewReleases'\nimport SpotifyPageBrowseFeaturedPlaylists from '@/pages/SpotifyPageBrowseFeaturedPlaylists'\nimport SpotifyPageArtist from '@/pages/SpotifyPageArtist'\nimport SpotifyPageAlbum from '@/pages/SpotifyPageAlbum'\nimport SpotifyPagePlaylist from '@/pages/SpotifyPagePlaylist'\nimport SpotifyPageSearch from '@/pages/SpotifyPageSearch'\nimport SettingsPageWebinterface from '@/pages/SettingsPageWebinterface'\nimport SettingsPageArtwork from '@/pages/SettingsPageArtwork'\nimport SettingsPageOnlineServices from '@/pages/SettingsPageOnlineServices'\nimport SettingsPageRemotesOutputs from '@/pages/SettingsPageRemotesOutputs'\n\nVue.use(VueRouter)\n\nexport const router = new VueRouter({\n routes: [\n {\n path: '/',\n name: 'PageQueue',\n component: PageQueue\n },\n {\n path: '/about',\n name: 'About',\n component: PageAbout\n },\n {\n path: '/now-playing',\n name: 'Now playing',\n component: PageNowPlaying\n },\n {\n path: '/music',\n redirect: '/music/browse'\n },\n {\n path: '/music/browse',\n name: 'Browse',\n component: PageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_added',\n name: 'Browse Recently Added',\n component: PageBrowseRecentlyAdded,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/browse/recently_played',\n name: 'Browse Recently Played',\n component: PageBrowseRecentlyPlayed,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/artists',\n name: 'Artists',\n component: PageArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id',\n name: 'Artist',\n component: PageArtist,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/artists/:artist_id/tracks',\n name: 'Tracks',\n component: PageArtistTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/albums',\n name: 'Albums',\n component: PageAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/albums/:album_id',\n name: 'Album',\n component: PageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/genres',\n name: 'Genres',\n component: PageGenres,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/music/genres/:genre',\n name: 'Genre',\n component: PageGenre,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/music/genres/:genre/tracks',\n name: 'GenreTracks',\n component: PageGenreTracks,\n meta: { show_progress: true, has_index: true }\n },\n {\n path: '/podcasts',\n name: 'Podcasts',\n component: PagePodcasts,\n meta: { show_progress: true }\n },\n {\n path: '/podcasts/:album_id',\n name: 'Podcast',\n component: PagePodcast,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks',\n redirect: '/audiobooks/artists'\n },\n {\n path: '/audiobooks/artists',\n name: 'AudiobooksArtists',\n component: PageAudiobooksArtists,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/artists/:artist_id',\n name: 'AudiobooksArtist',\n component: PageAudiobooksArtist,\n meta: { show_progress: true }\n },\n {\n path: '/audiobooks/albums',\n name: 'AudiobooksAlbums',\n component: PageAudiobooksAlbums,\n meta: { show_progress: true, has_tabs: true, has_index: true }\n },\n {\n path: '/audiobooks/:album_id',\n name: 'Audiobook',\n component: PageAudiobooksAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/radio',\n name: 'Radio',\n component: PageRadioStreams,\n meta: { show_progress: true }\n },\n {\n path: '/files',\n name: 'Files',\n component: PageFiles,\n meta: { show_progress: true }\n },\n {\n path: '/playlists',\n redirect: '/playlists/0'\n },\n {\n path: '/playlists/:playlist_id',\n name: 'Playlists',\n component: PagePlaylists,\n meta: { show_progress: true }\n },\n {\n path: '/playlists/:playlist_id/tracks',\n name: 'Playlist',\n component: PagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search',\n redirect: '/search/library'\n },\n {\n path: '/search/library',\n name: 'Search Library',\n component: PageSearch\n },\n {\n path: '/music/spotify',\n name: 'Spotify',\n component: SpotifyPageBrowse,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/new-releases',\n name: 'Spotify Browse New Releases',\n component: SpotifyPageBrowseNewReleases,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/featured-playlists',\n name: 'Spotify Browse Featured Playlists',\n component: SpotifyPageBrowseFeaturedPlaylists,\n meta: { show_progress: true, has_tabs: true }\n },\n {\n path: '/music/spotify/artists/:artist_id',\n name: 'Spotify Artist',\n component: SpotifyPageArtist,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/albums/:album_id',\n name: 'Spotify Album',\n component: SpotifyPageAlbum,\n meta: { show_progress: true }\n },\n {\n path: '/music/spotify/playlists/:playlist_id',\n name: 'Spotify Playlist',\n component: SpotifyPagePlaylist,\n meta: { show_progress: true }\n },\n {\n path: '/search/spotify',\n name: 'Spotify Search',\n component: SpotifyPageSearch\n },\n {\n path: '/settings/webinterface',\n name: 'Settings Webinterface',\n component: SettingsPageWebinterface\n },\n {\n path: '/settings/artwork',\n name: 'Settings Artwork',\n component: SettingsPageArtwork\n },\n {\n path: '/settings/online-services',\n name: 'Settings Online Services',\n component: SettingsPageOnlineServices\n },\n {\n path: '/settings/remotes-outputs',\n name: 'Settings Remotes Outputs',\n component: SettingsPageRemotesOutputs\n }\n ],\n scrollBehavior (to, from, savedPosition) {\n // console.log(to.path + '_' + from.path + '__' + to.hash + ' savedPosition:' + savedPosition)\n if (savedPosition) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve(savedPosition)\n }, 10)\n })\n } else if (to.path === from.path && to.hash) {\n return { selector: to.hash, offset: { x: 0, y: 120 } }\n } else if (to.hash) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve({ selector: to.hash, offset: { x: 0, y: 120 } })\n }, 10)\n })\n } else if (to.meta.has_index) {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n if (to.meta.has_tabs) {\n resolve({ selector: '#top', offset: { x: 0, y: 140 } })\n } else {\n resolve({ selector: '#top', offset: { x: 0, y: 100 } })\n }\n }, 10)\n })\n } else {\n return { x: 0, y: 0 }\n }\n }\n})\n\nrouter.beforeEach((to, from, next) => {\n if (store.state.show_burger_menu) {\n store.commit(types.SHOW_BURGER_MENU, false)\n next(false)\n return\n }\n if (store.state.show_player_menu) {\n store.commit(types.SHOW_PLAYER_MENU, false)\n next(false)\n return\n }\n next(true)\n})\n","import Vue from 'vue'\nimport moment from 'moment'\nimport momentDurationFormatSetup from 'moment-duration-format'\n\nmomentDurationFormatSetup(moment)\nVue.filter('duration', function (value, format) {\n if (format) {\n return moment.duration(value).format(format)\n }\n return moment.duration(value).format('hh:*mm:ss')\n})\n\nVue.filter('time', function (value, format) {\n if (format) {\n return moment(value).format(format)\n }\n return moment(value).format()\n})\n\nVue.filter('timeFromNow', function (value, withoutSuffix) {\n return moment(value).fromNow(withoutSuffix)\n})\n\nVue.filter('number', function (value) {\n return value.toLocaleString()\n})\n\nVue.filter('channels', function (value) {\n if (value === 1) {\n return 'mono'\n }\n if (value === 2) {\n return 'stereo'\n }\n if (!value) {\n return ''\n }\n return value + ' channels'\n})\n","import Vue from 'vue'\nimport VueProgressBar from 'vue-progressbar'\n\nVue.use(VueProgressBar, {\n color: 'hsl(204, 86%, 53%)',\n failedColor: 'red',\n height: '1px'\n})\n","// The Vue build version to load with the `import` command\n// (runtime-only or standalone) has been set in webpack.base.conf with an alias.\nimport Vue from 'vue'\nimport App from './App'\nimport { router } from './router'\nimport store from './store'\nimport './filter'\nimport './progress'\nimport vClickOutside from 'v-click-outside'\nimport VueTinyLazyloadImg from 'vue-tiny-lazyload-img'\nimport VueObserveVisibility from 'vue-observe-visibility'\nimport VueScrollTo from 'vue-scrollto'\nimport 'mdi/css/materialdesignicons.css'\nimport 'vue-range-slider/dist/vue-range-slider.css'\nimport './mystyles.scss'\n\nVue.config.productionTip = false\n\nVue.use(vClickOutside)\nVue.use(VueTinyLazyloadImg)\nVue.use(VueObserveVisibility)\nVue.use(VueScrollTo)\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n store,\n components: { App },\n template: ''\n})\n","export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=style&index=0&lang=css&\"","import { render, staticRenderFns } from \"./ContentWithHero.vue?vue&type=template&id=357bedaa&\"\nimport script from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\nexport * from \"./ContentWithHero.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""} \ No newline at end of file diff --git a/htdocs/player/js/chunk-vendors-legacy.js b/htdocs/player/js/chunk-vendors-legacy.js index d3c718e6..47fb3787 100644 --- a/htdocs/player/js/chunk-vendors-legacy.js +++ b/htdocs/player/js/chunk-vendors-legacy.js @@ -16,7 +16,7 @@ var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n //! moment.js locale configuration var t=e.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}});return t}))},"0caa":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -function t(e,t,n,r){var a={s:["thoddea sekondamni","thodde sekond"],ss:[e+" sekondamni",e+" sekond"],m:["eka mintan","ek minut"],mm:[e+" mintamni",e+" mintam"],h:["eka voran","ek vor"],hh:[e+" voramni",e+" voram"],d:["eka disan","ek dis"],dd:[e+" disamni",e+" dis"],M:["eka mhoinean","ek mhoino"],MM:[e+" mhoineamni",e+" mhoine"],y:["eka vorsan","ek voros"],yy:[e+" vorsamni",e+" vorsam"]};return r?a[n][0]:a[n][1]}var n=e.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(e,t){switch(t){case"D":return e+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(e,t){return 12===e&&(e=0),"rati"===t?e<4?e:e+12:"sokallim"===t?e:"donparam"===t?e>12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"rati":e<12?"sokallim":e<16?"donparam":e<20?"sanje":"rati"}});return n}))},"0cfb":function(e,t,n){var r=n("83ab"),a=n("d039"),i=n("cc12");e.exports=!r&&!a((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},"0df6":function(e,t,n){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},"0e49":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function t(e,t,n,r){var a={s:["thoddea sekondamni","thodde sekond"],ss:[e+" sekondamni",e+" sekond"],m:["eka mintan","ek minut"],mm:[e+" mintamni",e+" mintam"],h:["eka voran","ek vor"],hh:[e+" voramni",e+" voram"],d:["eka disan","ek dis"],dd:[e+" disamni",e+" dis"],M:["eka mhoinean","ek mhoino"],MM:[e+" mhoineamni",e+" mhoine"],y:["eka vorsan","ek voros"],yy:[e+" vorsamni",e+" vorsam"]};return r?a[n][0]:a[n][1]}var n=e.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(e,t){switch(t){case"D":return e+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(e,t){return 12===e&&(e=0),"rati"===t?e<4?e:e+12:"sokallim"===t?e:"donparam"===t?e>12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"rati":e<12?"sokallim":e<16?"donparam":e<20?"sanje":"rati"}});return n}))},"0cb2":function(e,t,n){var r=n("7b0b"),a=Math.floor,i="".replace,o=/\$([$&'`]|\d\d?|<[^>]*>)/g,s=/\$([$&'`]|\d\d?)/g;e.exports=function(e,t,n,u,l,d){var c=n+e.length,f=u.length,m=s;return void 0!==l&&(l=r(l),m=o),i.call(d,m,(function(r,i){var o;switch(i.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,n);case"'":return t.slice(c);case"<":o=l[i.slice(1,-1)];break;default:var s=+i;if(0===s)return r;if(s>f){var d=a(s/10);return 0===d?r:d<=f?void 0===u[d-1]?i.charAt(1):u[d-1]+i.charAt(1):r}o=u[s-1]}return void 0===o?"":o}))}},"0cfb":function(e,t,n){var r=n("83ab"),a=n("d039"),i=n("cc12");e.exports=!r&&!a((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},"0df6":function(e,t,n){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},"0e49":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t=e.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}});return t}))},"0e6b":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration @@ -60,11 +60,11 @@ var t=e.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Juli //! moment.js locale configuration var t=e.defineLocale("uz",{months:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_"),monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба".split("_"),weekdaysShort:"Якш_Душ_Сеш_Чор_Пай_Жум_Шан".split("_"),weekdaysMin:"Як_Ду_Се_Чо_Па_Жу_Ша".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Бугун соат] LT [да]",nextDay:"[Эртага] LT [да]",nextWeek:"dddd [куни соат] LT [да]",lastDay:"[Кеча соат] LT [да]",lastWeek:"[Утган] dddd [куни соат] LT [да]",sameElse:"L"},relativeTime:{future:"Якин %s ичида",past:"Бир неча %s олдин",s:"фурсат",ss:"%d фурсат",m:"бир дакика",mm:"%d дакика",h:"бир соат",hh:"%d соат",d:"бир кун",dd:"%d кун",M:"бир ой",MM:"%d ой",y:"бир йил",yy:"%d йил"},week:{dow:1,doy:7}});return t}))},"2f62":function(e,t,n){"use strict";(function(e){ /*! - * vuex v3.5.1 + * vuex v3.6.0 * (c) 2020 Evan You * @license MIT */ -function n(e){var t=Number(e.version.split(".")[0]);if(t>=2)e.mixin({beforeCreate:r});else{var n=e.prototype._init;e.prototype._init=function(e){void 0===e&&(e={}),e.init=e.init?[r].concat(e.init):r,n.call(this,e)}}function r(){var e=this.$options;e.store?this.$store="function"===typeof e.store?e.store():e.store:e.parent&&e.parent.$store&&(this.$store=e.parent.$store)}}var r="undefined"!==typeof window?window:"undefined"!==typeof e?e:{},a=r.__VUE_DEVTOOLS_GLOBAL_HOOK__;function i(e){a&&(e._devtoolHook=a,a.emit("vuex:init",e),a.on("vuex:travel-to-state",(function(t){e.replaceState(t)})),e.subscribe((function(e,t){a.emit("vuex:mutation",e,t)}),{prepend:!0}),e.subscribeAction((function(e,t){a.emit("vuex:action",e,t)}),{prepend:!0}))}function o(e,t){return e.filter(t)[0]}function s(e,t){if(void 0===t&&(t=[]),null===e||"object"!==typeof e)return e;var n=o(t,(function(t){return t.original===e}));if(n)return n.copy;var r=Array.isArray(e)?[]:{};return t.push({original:e,copy:r}),Object.keys(e).forEach((function(n){r[n]=s(e[n],t)})),r}function u(e,t){Object.keys(e).forEach((function(n){return t(e[n],n)}))}function l(e){return null!==e&&"object"===typeof e}function d(e){return e&&"function"===typeof e.then}function c(e,t){return function(){return e(t)}}var f=function(e,t){this.runtime=t,this._children=Object.create(null),this._rawModule=e;var n=e.state;this.state=("function"===typeof n?n():n)||{}},m={namespaced:{configurable:!0}};m.namespaced.get=function(){return!!this._rawModule.namespaced},f.prototype.addChild=function(e,t){this._children[e]=t},f.prototype.removeChild=function(e){delete this._children[e]},f.prototype.getChild=function(e){return this._children[e]},f.prototype.hasChild=function(e){return e in this._children},f.prototype.update=function(e){this._rawModule.namespaced=e.namespaced,e.actions&&(this._rawModule.actions=e.actions),e.mutations&&(this._rawModule.mutations=e.mutations),e.getters&&(this._rawModule.getters=e.getters)},f.prototype.forEachChild=function(e){u(this._children,e)},f.prototype.forEachGetter=function(e){this._rawModule.getters&&u(this._rawModule.getters,e)},f.prototype.forEachAction=function(e){this._rawModule.actions&&u(this._rawModule.actions,e)},f.prototype.forEachMutation=function(e){this._rawModule.mutations&&u(this._rawModule.mutations,e)},Object.defineProperties(f.prototype,m);var _=function(e){this.register([],e,!1)};function h(e,t,n){if(t.update(n),n.modules)for(var r in n.modules){if(!t.getChild(r))return void 0;h(e.concat(r),t.getChild(r),n.modules[r])}}_.prototype.get=function(e){return e.reduce((function(e,t){return e.getChild(t)}),this.root)},_.prototype.getNamespace=function(e){var t=this.root;return e.reduce((function(e,n){return t=t.getChild(n),e+(t.namespaced?n+"/":"")}),"")},_.prototype.update=function(e){h([],this.root,e)},_.prototype.register=function(e,t,n){var r=this;void 0===n&&(n=!0);var a=new f(t,n);if(0===e.length)this.root=a;else{var i=this.get(e.slice(0,-1));i.addChild(e[e.length-1],a)}t.modules&&u(t.modules,(function(t,a){r.register(e.concat(a),t,n)}))},_.prototype.unregister=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1],r=t.getChild(n);r&&r.runtime&&t.removeChild(n)},_.prototype.isRegistered=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1];return t.hasChild(n)};var p;var v=function(e){var t=this;void 0===e&&(e={}),!p&&"undefined"!==typeof window&&window.Vue&&A(window.Vue);var n=e.plugins;void 0===n&&(n=[]);var r=e.strict;void 0===r&&(r=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new _(e),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new p,this._makeLocalGettersCache=Object.create(null);var a=this,o=this,s=o.dispatch,u=o.commit;this.dispatch=function(e,t){return s.call(a,e,t)},this.commit=function(e,t,n){return u.call(a,e,t,n)},this.strict=r;var l=this._modules.root.state;L(this,l,[],this._modules.root),b(this,l),n.forEach((function(e){return e(t)}));var d=void 0!==e.devtools?e.devtools:p.config.devtools;d&&i(this)},y={state:{configurable:!0}};function g(e,t,n){return t.indexOf(e)<0&&(n&&n.prepend?t.unshift(e):t.push(e)),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function M(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;L(e,n,[],e._modules.root,!0),b(e,n,t)}function b(e,t,n){var r=e._vm;e.getters={},e._makeLocalGettersCache=Object.create(null);var a=e._wrappedGetters,i={};u(a,(function(t,n){i[n]=c(t,e),Object.defineProperty(e.getters,n,{get:function(){return e._vm[n]},enumerable:!0})}));var o=p.config.silent;p.config.silent=!0,e._vm=new p({data:{$$state:t},computed:i}),p.config.silent=o,e.strict&&S(e),r&&(n&&e._withCommit((function(){r._data.$$state=null})),p.nextTick((function(){return r.$destroy()})))}function L(e,t,n,r,a){var i=!n.length,o=e._modules.getNamespace(n);if(r.namespaced&&(e._modulesNamespaceMap[o],e._modulesNamespaceMap[o]=r),!i&&!a){var s=x(t,n.slice(0,-1)),u=n[n.length-1];e._withCommit((function(){p.set(s,u,r.state)}))}var l=r.context=w(e,o,n);r.forEachMutation((function(t,n){var r=o+n;k(e,r,t,l)})),r.forEachAction((function(t,n){var r=t.root?n:o+n,a=t.handler||t;D(e,r,a,l)})),r.forEachGetter((function(t,n){var r=o+n;T(e,r,t,l)})),r.forEachChild((function(r,i){L(e,t,n.concat(i),r,a)}))}function w(e,t,n){var r=""===t,a={dispatch:r?e.dispatch:function(n,r,a){var i=E(n,r,a),o=i.payload,s=i.options,u=i.type;return s&&s.root||(u=t+u),e.dispatch(u,o)},commit:r?e.commit:function(n,r,a){var i=E(n,r,a),o=i.payload,s=i.options,u=i.type;s&&s.root||(u=t+u),e.commit(u,o,s)}};return Object.defineProperties(a,{getters:{get:r?function(){return e.getters}:function(){return Y(e,t)}},state:{get:function(){return x(e.state,n)}}}),a}function Y(e,t){if(!e._makeLocalGettersCache[t]){var n={},r=t.length;Object.keys(e.getters).forEach((function(a){if(a.slice(0,r)===t){var i=a.slice(r);Object.defineProperty(n,i,{get:function(){return e.getters[a]},enumerable:!0})}})),e._makeLocalGettersCache[t]=n}return e._makeLocalGettersCache[t]}function k(e,t,n,r){var a=e._mutations[t]||(e._mutations[t]=[]);a.push((function(t){n.call(e,r.state,t)}))}function D(e,t,n,r){var a=e._actions[t]||(e._actions[t]=[]);a.push((function(t){var a=n.call(e,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:e.getters,rootState:e.state},t);return d(a)||(a=Promise.resolve(a)),e._devtoolHook?a.catch((function(t){throw e._devtoolHook.emit("vuex:error",t),t})):a}))}function T(e,t,n,r){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(e){return n(r.state,r.getters,e.state,e.getters)})}function S(e){e._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}function x(e,t){return t.reduce((function(e,t){return e[t]}),e)}function E(e,t,n){return l(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}function A(e){p&&e===p||(p=e,n(p))}y.state.get=function(){return this._vm._data.$$state},y.state.set=function(e){0},v.prototype.commit=function(e,t,n){var r=this,a=E(e,t,n),i=a.type,o=a.payload,s=(a.options,{type:i,payload:o}),u=this._mutations[i];u&&(this._withCommit((function(){u.forEach((function(e){e(o)}))})),this._subscribers.slice().forEach((function(e){return e(s,r.state)})))},v.prototype.dispatch=function(e,t){var n=this,r=E(e,t),a=r.type,i=r.payload,o={type:a,payload:i},s=this._actions[a];if(s){try{this._actionSubscribers.slice().filter((function(e){return e.before})).forEach((function(e){return e.before(o,n.state)}))}catch(l){0}var u=s.length>1?Promise.all(s.map((function(e){return e(i)}))):s[0](i);return new Promise((function(e,t){u.then((function(t){try{n._actionSubscribers.filter((function(e){return e.after})).forEach((function(e){return e.after(o,n.state)}))}catch(l){0}e(t)}),(function(e){try{n._actionSubscribers.filter((function(e){return e.error})).forEach((function(t){return t.error(o,n.state,e)}))}catch(l){0}t(e)}))}))}},v.prototype.subscribe=function(e,t){return g(e,this._subscribers,t)},v.prototype.subscribeAction=function(e,t){var n="function"===typeof e?{before:e}:e;return g(n,this._actionSubscribers,t)},v.prototype.watch=function(e,t,n){var r=this;return this._watcherVM.$watch((function(){return e(r.state,r.getters)}),t,n)},v.prototype.replaceState=function(e){var t=this;this._withCommit((function(){t._vm._data.$$state=e}))},v.prototype.registerModule=function(e,t,n){void 0===n&&(n={}),"string"===typeof e&&(e=[e]),this._modules.register(e,t),L(this,this.state,e,this._modules.get(e),n.preserveState),b(this,this.state)},v.prototype.unregisterModule=function(e){var t=this;"string"===typeof e&&(e=[e]),this._modules.unregister(e),this._withCommit((function(){var n=x(t.state,e.slice(0,-1));p.delete(n,e[e.length-1])})),M(this)},v.prototype.hasModule=function(e){return"string"===typeof e&&(e=[e]),this._modules.isRegistered(e)},v.prototype.hotUpdate=function(e){this._modules.update(e),M(this,!0)},v.prototype._withCommit=function(e){var t=this._committing;this._committing=!0,e(),this._committing=t},Object.defineProperties(v.prototype,y);var O=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){var t=this.$store.state,n=this.$store.getters;if(e){var r=I(this.$store,"mapState",e);if(!r)return;t=r.context.state,n=r.context.getters}return"function"===typeof a?a.call(this,t,n):t[a]},n[r].vuex=!0})),n})),j=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var r=this.$store.commit;if(e){var i=I(this.$store,"mapMutations",e);if(!i)return;r=i.context.commit}return"function"===typeof a?a.apply(this,[r].concat(t)):r.apply(this.$store,[a].concat(t))}})),n})),H=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;a=e+a,n[r]=function(){if(!e||I(this.$store,"mapGetters",e))return this.$store.getters[a]},n[r].vuex=!0})),n})),C=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var r=this.$store.dispatch;if(e){var i=I(this.$store,"mapActions",e);if(!i)return;r=i.context.dispatch}return"function"===typeof a?a.apply(this,[r].concat(t)):r.apply(this.$store,[a].concat(t))}})),n})),F=function(e){return{mapState:O.bind(null,e),mapGetters:H.bind(null,e),mapMutations:j.bind(null,e),mapActions:C.bind(null,e)}};function P(e){return N(e)?Array.isArray(e)?e.map((function(e){return{key:e,val:e}})):Object.keys(e).map((function(t){return{key:t,val:e[t]}})):[]}function N(e){return Array.isArray(e)||l(e)}function R(e){return function(t,n){return"string"!==typeof t?(n=t,t=""):"/"!==t.charAt(t.length-1)&&(t+="/"),e(t,n)}}function I(e,t,n){var r=e._modulesNamespaceMap[n];return r}function $(e){void 0===e&&(e={});var t=e.collapsed;void 0===t&&(t=!0);var n=e.filter;void 0===n&&(n=function(e,t,n){return!0});var r=e.transformer;void 0===r&&(r=function(e){return e});var a=e.mutationTransformer;void 0===a&&(a=function(e){return e});var i=e.actionFilter;void 0===i&&(i=function(e,t){return!0});var o=e.actionTransformer;void 0===o&&(o=function(e){return e});var u=e.logMutations;void 0===u&&(u=!0);var l=e.logActions;void 0===l&&(l=!0);var d=e.logger;return void 0===d&&(d=console),function(e){var c=s(e.state);"undefined"!==typeof d&&(u&&e.subscribe((function(e,i){var o=s(i);if(n(e,c,o)){var u=z(),l=a(e),f="mutation "+e.type+u;W(d,f,t),d.log("%c prev state","color: #9E9E9E; font-weight: bold",r(c)),d.log("%c mutation","color: #03A9F4; font-weight: bold",l),d.log("%c next state","color: #4CAF50; font-weight: bold",r(o)),B(d)}c=o})),l&&e.subscribeAction((function(e,n){if(i(e,n)){var r=z(),a=o(e),s="action "+e.type+r;W(d,s,t),d.log("%c action","color: #03A9F4; font-weight: bold",a),B(d)}})))}}function W(e,t,n){var r=n?e.groupCollapsed:e.group;try{r.call(e,t)}catch(a){e.log(t)}}function B(e){try{e.groupEnd()}catch(t){e.log("—— log end ——")}}function z(){var e=new Date;return" @ "+V(e.getHours(),2)+":"+V(e.getMinutes(),2)+":"+V(e.getSeconds(),2)+"."+V(e.getMilliseconds(),3)}function U(e,t){return new Array(t+1).join(e)}function V(e,t){return U("0",t-e.toString().length)+e}var G={Store:v,install:A,version:"3.5.1",mapState:O,mapMutations:j,mapGetters:H,mapActions:C,createNamespacedHelpers:F,createLogger:$};t["a"]=G}).call(this,n("c8ba"))},"30b5":function(e,t,n){"use strict";var r=n("c532");function a(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var i;if(n)i=n(t);else if(r.isURLSearchParams(t))i=t.toString();else{var o=[];r.forEach(t,(function(e,t){null!==e&&"undefined"!==typeof e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),o.push(a(t)+"="+a(e))})))})),i=o.join("&")}if(i){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+i}return e}},"342f":function(e,t,n){var r=n("d066");e.exports=r("navigator","userAgent")||""},"35a1":function(e,t,n){var r=n("f5df"),a=n("3f8c"),i=n("b622"),o=i("iterator");e.exports=function(e){if(void 0!=e)return e[o]||e["@@iterator"]||a[r(e)]}},"35b0":function(e,t,n){(function(t){var n=1/0,r="[object Symbol]",a=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,i="\\ud800-\\udfff",o="\\u0300-\\u036f\\ufe20-\\ufe23",s="\\u20d0-\\u20f0",u="\\u2700-\\u27bf",l="a-z\\xdf-\\xf6\\xf8-\\xff",d="\\xac\\xb1\\xd7\\xf7",c="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",f="\\u2000-\\u206f",m=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",_="A-Z\\xc0-\\xd6\\xd8-\\xde",h="\\ufe0e\\ufe0f",p=d+c+f+m,v="['’]",y="["+p+"]",g="["+o+s+"]",M="\\d+",b="["+u+"]",L="["+l+"]",w="[^"+i+p+M+u+l+_+"]",Y="\\ud83c[\\udffb-\\udfff]",k="(?:"+g+"|"+Y+")",D="[^"+i+"]",T="(?:\\ud83c[\\udde6-\\uddff]){2}",S="[\\ud800-\\udbff][\\udc00-\\udfff]",x="["+_+"]",E="\\u200d",A="(?:"+L+"|"+w+")",O="(?:"+x+"|"+w+")",j="(?:"+v+"(?:d|ll|m|re|s|t|ve))?",H="(?:"+v+"(?:D|LL|M|RE|S|T|VE))?",C=k+"?",F="["+h+"]?",P="(?:"+E+"(?:"+[D,T,S].join("|")+")"+F+C+")*",N=F+C+P,R="(?:"+[b,T,S].join("|")+")"+N,I=RegExp([x+"?"+L+"+"+j+"(?="+[y,x,"$"].join("|")+")",O+"+"+H+"(?="+[y,x+A,"$"].join("|")+")",x+"?"+A+"+"+j,x+"+"+H,M,R].join("|"),"g"),$=/[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,W="object"==typeof t&&t&&t.Object===Object&&t,B="object"==typeof self&&self&&self.Object===Object&&self,z=W||B||Function("return this")();function U(e){return e.match(a)||[]}function V(e){return $.test(e)}function G(e){return e.match(I)||[]}var J=Object.prototype,q=J.toString,K=z.Symbol,X=K?K.prototype:void 0,Z=X?X.toString:void 0;function Q(e){if("string"==typeof e)return e;if(te(e))return Z?Z.call(e):"";var t=e+"";return"0"==t&&1/e==-n?"-0":t}function ee(e){return!!e&&"object"==typeof e}function te(e){return"symbol"==typeof e||ee(e)&&q.call(e)==r}function ne(e){return null==e?"":Q(e)}function re(e,t,n){return e=ne(e),t=n?void 0:t,void 0===t?V(e)?G(e):U(e):e.match(t)||[]}e.exports=re}).call(this,n("c8ba"))},3659:function(e,t,n){"use strict";var r="v-lazy-loading",a="v-lazy-loaded",i="v-lazy-error",o={_V_LOADING:r,_V_LOADED:a,_V_ERROR:i},s=null,u=function(e,t){e.classList.add(t),e.removeAttribute("data-src"),e.removeAttribute("data-err")};"IntersectionObserver"in window&&(s=new IntersectionObserver((function(e,t){e.forEach((function(e){if(e.isIntersecting){var t=e.target;t.classList.add(o._V_LOADING);var n=t.dataset.src,r=t.dataset.err,a=new Image;a.src=n,a.onload=function(){t.classList.remove(o._V_LOADING),n&&(t.src=n,u(t,o._V_LOADED))},a.onerror=function(){t.classList.remove(o._V_LOADING),r&&(t.src=r,u(t,o._V_ERROR))},s.unobserve(t)}}))})));var l=s,d={install:function(e){e.directive("lazyload",{bind:function(e){"IntersectionObserver"in window&&l.observe(e)},componentUpdated:function(e){"IntersectionObserver"in window&&e.classList.contains(o._V_LOADED)&&l.observe(e)}})}};e.exports=d},"37e8":function(e,t,n){var r=n("83ab"),a=n("9bf2"),i=n("825a"),o=n("df75");e.exports=r?Object.defineProperties:function(e,t){i(e);var n,r=o(t),s=r.length,u=0;while(s>u)a.f(e,n=r[u++],t[n]);return e}},"387f":function(e,t,n){"use strict";e.exports=function(e,t,n,r,a){return e.config=t,n&&(e.code=n),e.request=r,e.response=a,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},3886:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function n(e){var t=Number(e.version.split(".")[0]);if(t>=2)e.mixin({beforeCreate:r});else{var n=e.prototype._init;e.prototype._init=function(e){void 0===e&&(e={}),e.init=e.init?[r].concat(e.init):r,n.call(this,e)}}function r(){var e=this.$options;e.store?this.$store="function"===typeof e.store?e.store():e.store:e.parent&&e.parent.$store&&(this.$store=e.parent.$store)}}var r="undefined"!==typeof window?window:"undefined"!==typeof e?e:{},a=r.__VUE_DEVTOOLS_GLOBAL_HOOK__;function i(e){a&&(e._devtoolHook=a,a.emit("vuex:init",e),a.on("vuex:travel-to-state",(function(t){e.replaceState(t)})),e.subscribe((function(e,t){a.emit("vuex:mutation",e,t)}),{prepend:!0}),e.subscribeAction((function(e,t){a.emit("vuex:action",e,t)}),{prepend:!0}))}function o(e,t){return e.filter(t)[0]}function s(e,t){if(void 0===t&&(t=[]),null===e||"object"!==typeof e)return e;var n=o(t,(function(t){return t.original===e}));if(n)return n.copy;var r=Array.isArray(e)?[]:{};return t.push({original:e,copy:r}),Object.keys(e).forEach((function(n){r[n]=s(e[n],t)})),r}function u(e,t){Object.keys(e).forEach((function(n){return t(e[n],n)}))}function l(e){return null!==e&&"object"===typeof e}function d(e){return e&&"function"===typeof e.then}function c(e,t){return function(){return e(t)}}var f=function(e,t){this.runtime=t,this._children=Object.create(null),this._rawModule=e;var n=e.state;this.state=("function"===typeof n?n():n)||{}},m={namespaced:{configurable:!0}};m.namespaced.get=function(){return!!this._rawModule.namespaced},f.prototype.addChild=function(e,t){this._children[e]=t},f.prototype.removeChild=function(e){delete this._children[e]},f.prototype.getChild=function(e){return this._children[e]},f.prototype.hasChild=function(e){return e in this._children},f.prototype.update=function(e){this._rawModule.namespaced=e.namespaced,e.actions&&(this._rawModule.actions=e.actions),e.mutations&&(this._rawModule.mutations=e.mutations),e.getters&&(this._rawModule.getters=e.getters)},f.prototype.forEachChild=function(e){u(this._children,e)},f.prototype.forEachGetter=function(e){this._rawModule.getters&&u(this._rawModule.getters,e)},f.prototype.forEachAction=function(e){this._rawModule.actions&&u(this._rawModule.actions,e)},f.prototype.forEachMutation=function(e){this._rawModule.mutations&&u(this._rawModule.mutations,e)},Object.defineProperties(f.prototype,m);var _=function(e){this.register([],e,!1)};function h(e,t,n){if(t.update(n),n.modules)for(var r in n.modules){if(!t.getChild(r))return void 0;h(e.concat(r),t.getChild(r),n.modules[r])}}_.prototype.get=function(e){return e.reduce((function(e,t){return e.getChild(t)}),this.root)},_.prototype.getNamespace=function(e){var t=this.root;return e.reduce((function(e,n){return t=t.getChild(n),e+(t.namespaced?n+"/":"")}),"")},_.prototype.update=function(e){h([],this.root,e)},_.prototype.register=function(e,t,n){var r=this;void 0===n&&(n=!0);var a=new f(t,n);if(0===e.length)this.root=a;else{var i=this.get(e.slice(0,-1));i.addChild(e[e.length-1],a)}t.modules&&u(t.modules,(function(t,a){r.register(e.concat(a),t,n)}))},_.prototype.unregister=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1],r=t.getChild(n);r&&r.runtime&&t.removeChild(n)},_.prototype.isRegistered=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1];return!!t&&t.hasChild(n)};var p;var v=function(e){var t=this;void 0===e&&(e={}),!p&&"undefined"!==typeof window&&window.Vue&&A(window.Vue);var n=e.plugins;void 0===n&&(n=[]);var r=e.strict;void 0===r&&(r=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new _(e),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new p,this._makeLocalGettersCache=Object.create(null);var a=this,o=this,s=o.dispatch,u=o.commit;this.dispatch=function(e,t){return s.call(a,e,t)},this.commit=function(e,t,n){return u.call(a,e,t,n)},this.strict=r;var l=this._modules.root.state;L(this,l,[],this._modules.root),b(this,l),n.forEach((function(e){return e(t)}));var d=void 0!==e.devtools?e.devtools:p.config.devtools;d&&i(this)},y={state:{configurable:!0}};function g(e,t,n){return t.indexOf(e)<0&&(n&&n.prepend?t.unshift(e):t.push(e)),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function M(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;L(e,n,[],e._modules.root,!0),b(e,n,t)}function b(e,t,n){var r=e._vm;e.getters={},e._makeLocalGettersCache=Object.create(null);var a=e._wrappedGetters,i={};u(a,(function(t,n){i[n]=c(t,e),Object.defineProperty(e.getters,n,{get:function(){return e._vm[n]},enumerable:!0})}));var o=p.config.silent;p.config.silent=!0,e._vm=new p({data:{$$state:t},computed:i}),p.config.silent=o,e.strict&&S(e),r&&(n&&e._withCommit((function(){r._data.$$state=null})),p.nextTick((function(){return r.$destroy()})))}function L(e,t,n,r,a){var i=!n.length,o=e._modules.getNamespace(n);if(r.namespaced&&(e._modulesNamespaceMap[o],e._modulesNamespaceMap[o]=r),!i&&!a){var s=x(t,n.slice(0,-1)),u=n[n.length-1];e._withCommit((function(){p.set(s,u,r.state)}))}var l=r.context=w(e,o,n);r.forEachMutation((function(t,n){var r=o+n;k(e,r,t,l)})),r.forEachAction((function(t,n){var r=t.root?n:o+n,a=t.handler||t;D(e,r,a,l)})),r.forEachGetter((function(t,n){var r=o+n;T(e,r,t,l)})),r.forEachChild((function(r,i){L(e,t,n.concat(i),r,a)}))}function w(e,t,n){var r=""===t,a={dispatch:r?e.dispatch:function(n,r,a){var i=E(n,r,a),o=i.payload,s=i.options,u=i.type;return s&&s.root||(u=t+u),e.dispatch(u,o)},commit:r?e.commit:function(n,r,a){var i=E(n,r,a),o=i.payload,s=i.options,u=i.type;s&&s.root||(u=t+u),e.commit(u,o,s)}};return Object.defineProperties(a,{getters:{get:r?function(){return e.getters}:function(){return Y(e,t)}},state:{get:function(){return x(e.state,n)}}}),a}function Y(e,t){if(!e._makeLocalGettersCache[t]){var n={},r=t.length;Object.keys(e.getters).forEach((function(a){if(a.slice(0,r)===t){var i=a.slice(r);Object.defineProperty(n,i,{get:function(){return e.getters[a]},enumerable:!0})}})),e._makeLocalGettersCache[t]=n}return e._makeLocalGettersCache[t]}function k(e,t,n,r){var a=e._mutations[t]||(e._mutations[t]=[]);a.push((function(t){n.call(e,r.state,t)}))}function D(e,t,n,r){var a=e._actions[t]||(e._actions[t]=[]);a.push((function(t){var a=n.call(e,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:e.getters,rootState:e.state},t);return d(a)||(a=Promise.resolve(a)),e._devtoolHook?a.catch((function(t){throw e._devtoolHook.emit("vuex:error",t),t})):a}))}function T(e,t,n,r){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(e){return n(r.state,r.getters,e.state,e.getters)})}function S(e){e._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}function x(e,t){return t.reduce((function(e,t){return e[t]}),e)}function E(e,t,n){return l(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}function A(e){p&&e===p||(p=e,n(p))}y.state.get=function(){return this._vm._data.$$state},y.state.set=function(e){0},v.prototype.commit=function(e,t,n){var r=this,a=E(e,t,n),i=a.type,o=a.payload,s=(a.options,{type:i,payload:o}),u=this._mutations[i];u&&(this._withCommit((function(){u.forEach((function(e){e(o)}))})),this._subscribers.slice().forEach((function(e){return e(s,r.state)})))},v.prototype.dispatch=function(e,t){var n=this,r=E(e,t),a=r.type,i=r.payload,o={type:a,payload:i},s=this._actions[a];if(s){try{this._actionSubscribers.slice().filter((function(e){return e.before})).forEach((function(e){return e.before(o,n.state)}))}catch(l){0}var u=s.length>1?Promise.all(s.map((function(e){return e(i)}))):s[0](i);return new Promise((function(e,t){u.then((function(t){try{n._actionSubscribers.filter((function(e){return e.after})).forEach((function(e){return e.after(o,n.state)}))}catch(l){0}e(t)}),(function(e){try{n._actionSubscribers.filter((function(e){return e.error})).forEach((function(t){return t.error(o,n.state,e)}))}catch(l){0}t(e)}))}))}},v.prototype.subscribe=function(e,t){return g(e,this._subscribers,t)},v.prototype.subscribeAction=function(e,t){var n="function"===typeof e?{before:e}:e;return g(n,this._actionSubscribers,t)},v.prototype.watch=function(e,t,n){var r=this;return this._watcherVM.$watch((function(){return e(r.state,r.getters)}),t,n)},v.prototype.replaceState=function(e){var t=this;this._withCommit((function(){t._vm._data.$$state=e}))},v.prototype.registerModule=function(e,t,n){void 0===n&&(n={}),"string"===typeof e&&(e=[e]),this._modules.register(e,t),L(this,this.state,e,this._modules.get(e),n.preserveState),b(this,this.state)},v.prototype.unregisterModule=function(e){var t=this;"string"===typeof e&&(e=[e]),this._modules.unregister(e),this._withCommit((function(){var n=x(t.state,e.slice(0,-1));p.delete(n,e[e.length-1])})),M(this)},v.prototype.hasModule=function(e){return"string"===typeof e&&(e=[e]),this._modules.isRegistered(e)},v.prototype.hotUpdate=function(e){this._modules.update(e),M(this,!0)},v.prototype._withCommit=function(e){var t=this._committing;this._committing=!0,e(),this._committing=t},Object.defineProperties(v.prototype,y);var O=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){var t=this.$store.state,n=this.$store.getters;if(e){var r=I(this.$store,"mapState",e);if(!r)return;t=r.context.state,n=r.context.getters}return"function"===typeof a?a.call(this,t,n):t[a]},n[r].vuex=!0})),n})),j=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var r=this.$store.commit;if(e){var i=I(this.$store,"mapMutations",e);if(!i)return;r=i.context.commit}return"function"===typeof a?a.apply(this,[r].concat(t)):r.apply(this.$store,[a].concat(t))}})),n})),H=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;a=e+a,n[r]=function(){if(!e||I(this.$store,"mapGetters",e))return this.$store.getters[a]},n[r].vuex=!0})),n})),C=R((function(e,t){var n={};return P(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var r=this.$store.dispatch;if(e){var i=I(this.$store,"mapActions",e);if(!i)return;r=i.context.dispatch}return"function"===typeof a?a.apply(this,[r].concat(t)):r.apply(this.$store,[a].concat(t))}})),n})),F=function(e){return{mapState:O.bind(null,e),mapGetters:H.bind(null,e),mapMutations:j.bind(null,e),mapActions:C.bind(null,e)}};function P(e){return N(e)?Array.isArray(e)?e.map((function(e){return{key:e,val:e}})):Object.keys(e).map((function(t){return{key:t,val:e[t]}})):[]}function N(e){return Array.isArray(e)||l(e)}function R(e){return function(t,n){return"string"!==typeof t?(n=t,t=""):"/"!==t.charAt(t.length-1)&&(t+="/"),e(t,n)}}function I(e,t,n){var r=e._modulesNamespaceMap[n];return r}function $(e){void 0===e&&(e={});var t=e.collapsed;void 0===t&&(t=!0);var n=e.filter;void 0===n&&(n=function(e,t,n){return!0});var r=e.transformer;void 0===r&&(r=function(e){return e});var a=e.mutationTransformer;void 0===a&&(a=function(e){return e});var i=e.actionFilter;void 0===i&&(i=function(e,t){return!0});var o=e.actionTransformer;void 0===o&&(o=function(e){return e});var u=e.logMutations;void 0===u&&(u=!0);var l=e.logActions;void 0===l&&(l=!0);var d=e.logger;return void 0===d&&(d=console),function(e){var c=s(e.state);"undefined"!==typeof d&&(u&&e.subscribe((function(e,i){var o=s(i);if(n(e,c,o)){var u=z(),l=a(e),f="mutation "+e.type+u;W(d,f,t),d.log("%c prev state","color: #9E9E9E; font-weight: bold",r(c)),d.log("%c mutation","color: #03A9F4; font-weight: bold",l),d.log("%c next state","color: #4CAF50; font-weight: bold",r(o)),B(d)}c=o})),l&&e.subscribeAction((function(e,n){if(i(e,n)){var r=z(),a=o(e),s="action "+e.type+r;W(d,s,t),d.log("%c action","color: #03A9F4; font-weight: bold",a),B(d)}})))}}function W(e,t,n){var r=n?e.groupCollapsed:e.group;try{r.call(e,t)}catch(a){e.log(t)}}function B(e){try{e.groupEnd()}catch(t){e.log("—— log end ——")}}function z(){var e=new Date;return" @ "+V(e.getHours(),2)+":"+V(e.getMinutes(),2)+":"+V(e.getSeconds(),2)+"."+V(e.getMilliseconds(),3)}function U(e,t){return new Array(t+1).join(e)}function V(e,t){return U("0",t-e.toString().length)+e}var G={Store:v,install:A,version:"3.6.0",mapState:O,mapMutations:j,mapGetters:H,mapActions:C,createNamespacedHelpers:F,createLogger:$};t["a"]=G}).call(this,n("c8ba"))},"30b5":function(e,t,n){"use strict";var r=n("c532");function a(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var i;if(n)i=n(t);else if(r.isURLSearchParams(t))i=t.toString();else{var o=[];r.forEach(t,(function(e,t){null!==e&&"undefined"!==typeof e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),o.push(a(t)+"="+a(e))})))})),i=o.join("&")}if(i){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+i}return e}},"342f":function(e,t,n){var r=n("d066");e.exports=r("navigator","userAgent")||""},"35a1":function(e,t,n){var r=n("f5df"),a=n("3f8c"),i=n("b622"),o=i("iterator");e.exports=function(e){if(void 0!=e)return e[o]||e["@@iterator"]||a[r(e)]}},"35b0":function(e,t,n){(function(t){var n=1/0,r="[object Symbol]",a=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,i="\\ud800-\\udfff",o="\\u0300-\\u036f\\ufe20-\\ufe23",s="\\u20d0-\\u20f0",u="\\u2700-\\u27bf",l="a-z\\xdf-\\xf6\\xf8-\\xff",d="\\xac\\xb1\\xd7\\xf7",c="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",f="\\u2000-\\u206f",m=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",_="A-Z\\xc0-\\xd6\\xd8-\\xde",h="\\ufe0e\\ufe0f",p=d+c+f+m,v="['’]",y="["+p+"]",g="["+o+s+"]",M="\\d+",b="["+u+"]",L="["+l+"]",w="[^"+i+p+M+u+l+_+"]",Y="\\ud83c[\\udffb-\\udfff]",k="(?:"+g+"|"+Y+")",D="[^"+i+"]",T="(?:\\ud83c[\\udde6-\\uddff]){2}",S="[\\ud800-\\udbff][\\udc00-\\udfff]",x="["+_+"]",E="\\u200d",A="(?:"+L+"|"+w+")",O="(?:"+x+"|"+w+")",j="(?:"+v+"(?:d|ll|m|re|s|t|ve))?",H="(?:"+v+"(?:D|LL|M|RE|S|T|VE))?",C=k+"?",F="["+h+"]?",P="(?:"+E+"(?:"+[D,T,S].join("|")+")"+F+C+")*",N=F+C+P,R="(?:"+[b,T,S].join("|")+")"+N,I=RegExp([x+"?"+L+"+"+j+"(?="+[y,x,"$"].join("|")+")",O+"+"+H+"(?="+[y,x+A,"$"].join("|")+")",x+"?"+A+"+"+j,x+"+"+H,M,R].join("|"),"g"),$=/[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,W="object"==typeof t&&t&&t.Object===Object&&t,B="object"==typeof self&&self&&self.Object===Object&&self,z=W||B||Function("return this")();function U(e){return e.match(a)||[]}function V(e){return $.test(e)}function G(e){return e.match(I)||[]}var J=Object.prototype,q=J.toString,K=z.Symbol,X=K?K.prototype:void 0,Z=X?X.toString:void 0;function Q(e){if("string"==typeof e)return e;if(te(e))return Z?Z.call(e):"";var t=e+"";return"0"==t&&1/e==-n?"-0":t}function ee(e){return!!e&&"object"==typeof e}function te(e){return"symbol"==typeof e||ee(e)&&q.call(e)==r}function ne(e){return null==e?"":Q(e)}function re(e,t,n){return e=ne(e),t=n?void 0:t,void 0===t?V(e)?G(e):U(e):e.match(t)||[]}e.exports=re}).call(this,n("c8ba"))},3659:function(e,t,n){"use strict";var r="v-lazy-loading",a="v-lazy-loaded",i="v-lazy-error",o={_V_LOADING:r,_V_LOADED:a,_V_ERROR:i},s=null,u=function(e,t){e.classList.add(t),e.removeAttribute("data-src"),e.removeAttribute("data-err")};"IntersectionObserver"in window&&(s=new IntersectionObserver((function(e,t){e.forEach((function(e){if(e.isIntersecting){var t=e.target;t.classList.add(o._V_LOADING);var n=t.dataset.src,r=t.dataset.err,a=new Image;a.src=n,a.onload=function(){t.classList.remove(o._V_LOADING),n&&(t.src=n,u(t,o._V_LOADED))},a.onerror=function(){t.classList.remove(o._V_LOADING),r&&(t.src=r,u(t,o._V_ERROR))},s.unobserve(t)}}))})));var l=s,d={install:function(e){e.directive("lazyload",{bind:function(e){"IntersectionObserver"in window&&l.observe(e)},componentUpdated:function(e){"IntersectionObserver"in window&&e.classList.contains(o._V_LOADED)&&l.observe(e)}})}};e.exports=d},"37e8":function(e,t,n){var r=n("83ab"),a=n("9bf2"),i=n("825a"),o=n("df75");e.exports=r?Object.defineProperties:function(e,t){i(e);var n,r=o(t),s=r.length,u=0;while(s>u)a.f(e,n=r[u++],t[n]);return e}},"387f":function(e,t,n){"use strict";e.exports=function(e,t,n,r,a){return e.config=t,n&&(e.code=n),e.request=r,e.response=a,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},3886:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t=e.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n}});return t}))},"38cf":function(e,t,n){var r=n("23e7"),a=n("1148");r({target:"String",proto:!0},{repeat:a})},3934:function(e,t,n){"use strict";var r=n("c532");e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function a(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=a(window.location.href),function(t){var n=r.isString(t)?a(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return function(){return!0}}()},"39a6":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration @@ -102,7 +102,7 @@ var t={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20: //! moment.js locale configuration var t=e.defineLocale("zh-hk",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1200?"上午":1200===r?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}});return t}))},"4a7b":function(e,t,n){"use strict";var r=n("c532");e.exports=function(e,t){t=t||{};var n={},a=["url","method","data"],i=["headers","auth","proxy","params"],o=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function u(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function l(a){r.isUndefined(t[a])?r.isUndefined(e[a])||(n[a]=u(void 0,e[a])):n[a]=u(e[a],t[a])}r.forEach(a,(function(e){r.isUndefined(t[e])||(n[e]=u(void 0,t[e]))})),r.forEach(i,l),r.forEach(o,(function(a){r.isUndefined(t[a])?r.isUndefined(e[a])||(n[a]=u(void 0,e[a])):n[a]=u(void 0,t[a])})),r.forEach(s,(function(r){r in t?n[r]=u(e[r],t[r]):r in e&&(n[r]=u(void 0,e[r]))}));var d=a.concat(i).concat(o).concat(s),c=Object.keys(e).concat(Object.keys(t)).filter((function(e){return-1===d.indexOf(e)}));return r.forEach(c,l),n}},"4ba9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -function t(e,t,n){var r=e+" ";switch(n){case"ss":return r+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi",r;case"m":return t?"jedna minuta":"jedne minute";case"mm":return r+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta",r;case"h":return t?"jedan sat":"jednog sata";case"hh":return r+=1===e?"sat":2===e||3===e||4===e?"sata":"sati",r;case"dd":return r+=1===e?"dan":"dana",r;case"MM":return r+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci",r;case"yy":return r+=1===e?"godina":2===e||3===e||4===e?"godine":"godina",r}}var n=e.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:return"[prošlu] [nedjelju] [u] LT";case 3:return"[prošlu] [srijedu] [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"4d64":function(e,t,n){var r=n("fc6a"),a=n("50c4"),i=n("23cb"),o=function(e){return function(t,n,o){var s,u=r(t),l=a(u.length),d=i(o,l);if(e&&n!=n){while(l>d)if(s=u[d++],s!=s)return!0}else for(;l>d;d++)if((e||d in u)&&u[d]===n)return e||d||0;return!e&&-1}};e.exports={includes:o(!0),indexOf:o(!1)}},"4de4":function(e,t,n){"use strict";var r=n("23e7"),a=n("b727").filter,i=n("1dde"),o=n("ae40"),s=i("filter"),u=o("filter");r({target:"Array",proto:!0,forced:!s||!u},{filter:function(e){return a(this,e,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(e,t,n){"use strict";var r=n("0366"),a=n("7b0b"),i=n("9bdd"),o=n("e95a"),s=n("50c4"),u=n("8418"),l=n("35a1");e.exports=function(e){var t,n,d,c,f,m,_=a(e),h="function"==typeof this?this:Array,p=arguments.length,v=p>1?arguments[1]:void 0,y=void 0!==v,g=l(_),M=0;if(y&&(v=r(v,p>2?arguments[2]:void 0,2)),void 0==g||h==Array&&o(g))for(t=s(_.length),n=new h(t);t>M;M++)m=y?v(_[M],M):_[M],u(n,M,m);else for(c=g.call(_),f=c.next,n=new h;!(d=f.call(c)).done;M++)m=y?i(c,v,[d.value,M],!0):d.value,u(n,M,m);return n.length=M,n}},"4e82":function(e,t,n){"use strict";var r=n("23e7"),a=n("1c0b"),i=n("7b0b"),o=n("d039"),s=n("a640"),u=[],l=u.sort,d=o((function(){u.sort(void 0)})),c=o((function(){u.sort(null)})),f=s("sort"),m=d||!c||!f;r({target:"Array",proto:!0,forced:m},{sort:function(e){return void 0===e?l.call(i(this)):l.call(i(this),a(e))}})},5038:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function t(e,t,n){var r=e+" ";switch(n){case"ss":return r+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi",r;case"m":return t?"jedna minuta":"jedne minute";case"mm":return r+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta",r;case"h":return t?"jedan sat":"jednog sata";case"hh":return r+=1===e?"sat":2===e||3===e||4===e?"sata":"sati",r;case"dd":return r+=1===e?"dan":"dana",r;case"MM":return r+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci",r;case"yy":return r+=1===e?"godina":2===e||3===e||4===e?"godine":"godina",r}}var n=e.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:return"[prošlu] [nedjelju] [u] LT";case 3:return"[prošlu] [srijedu] [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"4d64":function(e,t,n){var r=n("fc6a"),a=n("50c4"),i=n("23cb"),o=function(e){return function(t,n,o){var s,u=r(t),l=a(u.length),d=i(o,l);if(e&&n!=n){while(l>d)if(s=u[d++],s!=s)return!0}else for(;l>d;d++)if((e||d in u)&&u[d]===n)return e||d||0;return!e&&-1}};e.exports={includes:o(!0),indexOf:o(!1)}},"4de4":function(e,t,n){"use strict";var r=n("23e7"),a=n("b727").filter,i=n("1dde"),o=n("ae40"),s=i("filter"),u=o("filter");r({target:"Array",proto:!0,forced:!s||!u},{filter:function(e){return a(this,e,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(e,t,n){"use strict";var r=n("0366"),a=n("7b0b"),i=n("9bdd"),o=n("e95a"),s=n("50c4"),u=n("8418"),l=n("35a1");e.exports=function(e){var t,n,d,c,f,m,_=a(e),h="function"==typeof this?this:Array,p=arguments.length,v=p>1?arguments[1]:void 0,y=void 0!==v,g=l(_),M=0;if(y&&(v=r(v,p>2?arguments[2]:void 0,2)),void 0==g||h==Array&&o(g))for(t=s(_.length),n=new h(t);t>M;M++)m=y?v(_[M],M):_[M],u(n,M,m);else for(c=g.call(_),f=c.next,n=new h;!(d=f.call(c)).done;M++)m=y?i(c,v,[d.value,M],!0):d.value,u(n,M,m);return n.length=M,n}},5038:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t=e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:0,doy:6}});return t}))},"50c4":function(e,t,n){var r=n("a691"),a=Math.min;e.exports=function(e){return e>0?a(r(e),9007199254740991):0}},5120:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration @@ -110,9 +110,9 @@ var t=["Eanáir","Feabhra","Márta","Aibreán","Bealtaine","Meitheamh","Iúil"," //! moment.js locale configuration var t=["جنوری","فروری","مارچ","اپریل","مئی","جون","جولائی","اگست","ستمبر","اکتوبر","نومبر","دسمبر"],n=["اتوار","پیر","منگل","بدھ","جمعرات","جمعہ","ہفتہ"],r=e.defineLocale("ur",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(e){return"شام"===e},meridiem:function(e,t,n){return e<12?"صبح":"شام"},calendar:{sameDay:"[آج بوقت] LT",nextDay:"[کل بوقت] LT",nextWeek:"dddd [بوقت] LT",lastDay:"[گذشتہ روز بوقت] LT",lastWeek:"[گذشتہ] dddd [بوقت] LT",sameElse:"L"},relativeTime:{future:"%s بعد",past:"%s قبل",s:"چند سیکنڈ",ss:"%d سیکنڈ",m:"ایک منٹ",mm:"%d منٹ",h:"ایک گھنٹہ",hh:"%d گھنٹے",d:"ایک دن",dd:"%d دن",M:"ایک ماہ",MM:"%d ماہ",y:"ایک سال",yy:"%d سال"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:4}});return r}))},"52bd":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?"ekuseni":e<15?"emini":e<19?"entsambama":"ebusuku"},meridiemHour:function(e,t){return 12===e&&(e=0),"ekuseni"===t?e:"emini"===t?e>=11?e:e+12:"entsambama"===t||"ebusuku"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}});return t}))},5319:function(e,t,n){"use strict";var r=n("d784"),a=n("825a"),i=n("7b0b"),o=n("50c4"),s=n("a691"),u=n("1d80"),l=n("8aa5"),d=n("14c3"),c=Math.max,f=Math.min,m=Math.floor,_=/\$([$&'`]|\d\d?|<[^>]*>)/g,h=/\$([$&'`]|\d\d?)/g,p=function(e){return void 0===e?e:String(e)};r("replace",2,(function(e,t,n,r){var v=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,y=r.REPLACE_KEEPS_$0,g=v?"$":"$0";return[function(n,r){var a=u(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,a,r):t.call(String(a),n,r)},function(e,r){if(!v&&y||"string"===typeof r&&-1===r.indexOf(g)){var i=n(t,e,this,r);if(i.done)return i.value}var u=a(e),m=String(this),_="function"===typeof r;_||(r=String(r));var h=u.global;if(h){var b=u.unicode;u.lastIndex=0}var L=[];while(1){var w=d(u,m);if(null===w)break;if(L.push(w),!h)break;var Y=String(w[0]);""===Y&&(u.lastIndex=l(m,o(u.lastIndex),b))}for(var k="",D=0,T=0;T=D&&(k+=m.slice(D,x)+H,D=x+S.length)}return k+m.slice(D)}];function M(e,n,r,a,o,s){var u=r+e.length,l=a.length,d=h;return void 0!==o&&(o=i(o),d=_),t.call(s,d,(function(t,i){var s;switch(i.charAt(0)){case"$":return"$";case"&":return e;case"`":return n.slice(0,r);case"'":return n.slice(u);case"<":s=o[i.slice(1,-1)];break;default:var d=+i;if(0===d)return t;if(d>l){var c=m(d/10);return 0===c?t:c<=l?void 0===a[c-1]?i.charAt(1):a[c-1]+i.charAt(1):t}s=a[d-1]}return void 0===s?"":s}))}}))},"55c9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t=e.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?"ekuseni":e<15?"emini":e<19?"entsambama":"ebusuku"},meridiemHour:function(e,t){return 12===e&&(e=0),"ekuseni"===t?e:"emini"===t?e>=11?e:e+12:"entsambama"===t||"ebusuku"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}});return t}))},5319:function(e,t,n){"use strict";var r=n("d784"),a=n("825a"),i=n("50c4"),o=n("a691"),s=n("1d80"),u=n("8aa5"),l=n("0cb2"),d=n("14c3"),c=Math.max,f=Math.min,m=function(e){return void 0===e?e:String(e)};r("replace",2,(function(e,t,n,r){var _=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,h=r.REPLACE_KEEPS_$0,p=_?"$":"$0";return[function(n,r){var a=s(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,a,r):t.call(String(a),n,r)},function(e,r){if(!_&&h||"string"===typeof r&&-1===r.indexOf(p)){var s=n(t,e,this,r);if(s.done)return s.value}var v=a(e),y=String(this),g="function"===typeof r;g||(r=String(r));var M=v.global;if(M){var b=v.unicode;v.lastIndex=0}var L=[];while(1){var w=d(v,y);if(null===w)break;if(L.push(w),!M)break;var Y=String(w[0]);""===Y&&(v.lastIndex=u(y,i(v.lastIndex),b))}for(var k="",D=0,T=0;T=D&&(k+=y.slice(D,x)+H,D=x+S.length)}return k+y.slice(D)}]}))},"55c9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],a=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,i=e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:a,monthsShortRegex:a,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}});return i}))},5692:function(e,t,n){var r=n("c430"),a=n("c6cd");(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.7.0",mode:r?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},"56ef":function(e,t,n){var r=n("d066"),a=n("241c"),i=n("7418"),o=n("825a");e.exports=r("Reflect","ownKeys")||function(e){var t=a.f(o(e)),n=i.f;return n?t.concat(n(e)):t}},"576c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],a=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,i=e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:a,monthsShortRegex:a,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}});return i}))},5692:function(e,t,n){var r=n("c430"),a=n("c6cd");(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.8.2",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},"56ef":function(e,t,n){var r=n("d066"),a=n("241c"),i=n("7418"),o=n("825a");e.exports=r("Reflect","ownKeys")||function(e){var t=a.f(o(e)),n=i.f;return n?t.concat(n(e)):t}},"576c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t=e.defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"segundu balun",ss:"segundu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:1,doy:4}});return t}))},5899:function(e,t){e.exports="\t\n\v\f\r                 \u2028\u2029\ufeff"},"58a8":function(e,t,n){var r=n("1d80"),a=n("5899"),i="["+a+"]",o=RegExp("^"+i+i+"*"),s=RegExp(i+i+"*$"),u=function(e){return function(t){var n=String(r(t));return 1&e&&(n=n.replace(o,"")),2&e&&(n=n.replace(s,"")),n}};e.exports={start:u(1),end:u(2),trim:u(3)}},"598a":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration @@ -124,7 +124,7 @@ var t="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".s //! moment.js locale configuration var t=e.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:function(e){return e.week()!==this.week()?"[下]dddLT":"[本]dddLT"},lastDay:"[昨天]LT",lastWeek:function(e){return this.week()!==e.week()?"[上]dddLT":"[本]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s后",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",w:"1 周",ww:"%d 周",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}});return t}))},"5c6c":function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},"5cbb":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("te",{months:"జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్".split("_"),monthsShort:"జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.".split("_"),monthsParseExact:!0,weekdays:"ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం".split("_"),weekdaysShort:"ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని".split("_"),weekdaysMin:"ఆ_సో_మం_బు_గు_శు_శ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[నేడు] LT",nextDay:"[రేపు] LT",nextWeek:"dddd, LT",lastDay:"[నిన్న] LT",lastWeek:"[గత] dddd, LT",sameElse:"L"},relativeTime:{future:"%s లో",past:"%s క్రితం",s:"కొన్ని క్షణాలు",ss:"%d సెకన్లు",m:"ఒక నిమిషం",mm:"%d నిమిషాలు",h:"ఒక గంట",hh:"%d గంటలు",d:"ఒక రోజు",dd:"%d రోజులు",M:"ఒక నెల",MM:"%d నెలలు",y:"ఒక సంవత్సరం",yy:"%d సంవత్సరాలు"},dayOfMonthOrdinalParse:/\d{1,2}వ/,ordinal:"%dవ",meridiemParse:/రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,meridiemHour:function(e,t){return 12===e&&(e=0),"రాత్రి"===t?e<4?e:e+12:"ఉదయం"===t?e:"మధ్యాహ్నం"===t?e>=10?e:e+12:"సాయంత్రం"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"రాత్రి":e<10?"ఉదయం":e<17?"మధ్యాహ్నం":e<20?"సాయంత్రం":"రాత్రి"},week:{dow:0,doy:6}});return t}))},"5d8a":function(e,t,n){var r=n("8709"),a=n("35b0"),i=n("2326"),o=n("bcb3"),s=n("ea6d"),u=n("bcaa");const l=.75,d=.25,c=16777215,f=49979693;function m(e){var t=a(e),n=[];return t.forEach((function(e){var t=r(e);t&&n.push(u(i(t,"#"),{format:"array"}))})),n}function _(e){var t=[0,0,0];return e.forEach((function(e){for(var n=0;n<3;n++)t[n]+=e[n]})),[t[0]/e.length,t[1]/e.length,t[2]/e.length]}function h(e){var t,n=m(e);n.length>0&&(t=_(n));var r=1,a=0,i=1;if(e.length>0)for(var h=0;ha&&(a=e[h].charCodeAt(0)),i=parseInt(c/a),r=(r+e[h].charCodeAt(0)*i*f)%c;var p=(r*e.length%c).toString(16);p=o(p,6,p);var v=u(p,{format:"array"});return t?s(d*v[0]+l*t[0],d*v[1]+l*t[1],d*v[2]+l*t[2]):p}e.exports=function(e){return"#"+h(String(JSON.stringify(e)))}},"5fbd":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t=e.defineLocale("te",{months:"జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్".split("_"),monthsShort:"జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.".split("_"),monthsParseExact:!0,weekdays:"ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం".split("_"),weekdaysShort:"ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని".split("_"),weekdaysMin:"ఆ_సో_మం_బు_గు_శు_శ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[నేడు] LT",nextDay:"[రేపు] LT",nextWeek:"dddd, LT",lastDay:"[నిన్న] LT",lastWeek:"[గత] dddd, LT",sameElse:"L"},relativeTime:{future:"%s లో",past:"%s క్రితం",s:"కొన్ని క్షణాలు",ss:"%d సెకన్లు",m:"ఒక నిమిషం",mm:"%d నిమిషాలు",h:"ఒక గంట",hh:"%d గంటలు",d:"ఒక రోజు",dd:"%d రోజులు",M:"ఒక నెల",MM:"%d నెలలు",y:"ఒక సంవత్సరం",yy:"%d సంవత్సరాలు"},dayOfMonthOrdinalParse:/\d{1,2}వ/,ordinal:"%dవ",meridiemParse:/రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,meridiemHour:function(e,t){return 12===e&&(e=0),"రాత్రి"===t?e<4?e:e+12:"ఉదయం"===t?e:"మధ్యాహ్నం"===t?e>=10?e:e+12:"సాయంత్రం"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"రాత్రి":e<10?"ఉదయం":e<17?"మధ్యాహ్నం":e<20?"సాయంత్రం":"రాత్రి"},week:{dow:0,doy:6}});return t}))},"5d8a":function(e,t,n){var r=n("8709"),a=n("35b0"),i=n("2326"),o=n("bcb3"),s=n("ea6d"),u=n("bcaa");const l=.75,d=.25,c=16777215,f=49979693;function m(e){var t=a(e),n=[];return t.forEach((function(e){var t=r(e);t&&n.push(u(i(t,"#"),{format:"array"}))})),n}function _(e){var t=[0,0,0];return e.forEach((function(e){for(var n=0;n<3;n++)t[n]+=e[n]})),[t[0]/e.length,t[1]/e.length,t[2]/e.length]}function h(e){var t,n=m(e);n.length>0&&(t=_(n));var r=1,a=0,i=1;if(e.length>0)for(var h=0;ha&&(a=e[h].charCodeAt(0)),i=parseInt(c/a),r=(r+e[h].charCodeAt(0)*i*f)%c;var p=(r*e.length%c).toString(16);p=o(p,6,p);var v=u(p,{format:"array"});return t?s(d*v[0]+l*t[0],d*v[1]+l*t[1],d*v[2]+l*t[2]):p}e.exports=function(e){return"#"+h(String(JSON.stringify(e)))}},"5f02":function(e,t,n){"use strict";e.exports=function(e){return"object"===typeof e&&!0===e.isAxiosError}},"5fbd":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t=e.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}(\:e|\:a)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?":e":1===t||2===t?":a":":e";return e+n},week:{dow:1,doy:4}});return t}))},"605d":function(e,t,n){var r=n("c6b6"),a=n("da84");e.exports="process"==r(a.process)},6062:function(e,t,n){"use strict";var r=n("6d61"),a=n("6566");e.exports=r("Set",(function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}}),a)},"60da":function(e,t,n){"use strict";var r=n("83ab"),a=n("d039"),i=n("df75"),o=n("7418"),s=n("d1e7"),u=n("7b0b"),l=n("44ad"),d=Object.assign,c=Object.defineProperty;e.exports=!d||a((function(){if(r&&1!==d({b:1},d(c({},"a",{enumerable:!0,get:function(){c(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},t={},n=Symbol(),a="abcdefghijklmnopqrst";return e[n]=7,a.split("").forEach((function(e){t[e]=e})),7!=d({},e)[n]||i(d({},t)).join("")!=a}))?function(e,t){var n=u(e),a=arguments.length,d=1,c=o.f,f=s.f;while(a>d){var m,_=l(arguments[d++]),h=c?i(_).concat(c(_)):i(_),p=h.length,v=0;while(p>v)m=h[v++],r&&!f.call(_,m)||(n[m]=_[m])}return n}:d},6117:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration @@ -170,7 +170,7 @@ var t="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän" //! moment.js locale configuration var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},r=e.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},week:{dow:0,doy:6}});return r}))},"825a":function(e,t,n){var r=n("861d");e.exports=function(e){if(!r(e))throw TypeError(String(e)+" is not an object");return e}},"83ab":function(e,t,n){var r=n("d039");e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},"83b9":function(e,t,n){"use strict";var r=n("d925"),a=n("e683");e.exports=function(e,t){return e&&!r(t)?a(e,t):t}},8418:function(e,t,n){"use strict";var r=n("c04e"),a=n("9bf2"),i=n("5c6c");e.exports=function(e,t,n){var o=r(t);o in e?a.f(e,o,i(0,n)):e[o]=n}},"841c":function(e,t,n){"use strict";var r=n("d784"),a=n("825a"),i=n("1d80"),o=n("129f"),s=n("14c3");r("search",1,(function(e,t,n){return[function(t){var n=i(this),r=void 0==t?void 0:t[e];return void 0!==r?r.call(t,n):new RegExp(t)[e](String(n))},function(e){var r=n(t,e,this);if(r.done)return r.value;var i=a(e),u=String(this),l=i.lastIndex;o(l,0)||(i.lastIndex=0);var d=s(i,u);return o(i.lastIndex,l)||(i.lastIndex=l),null===d?-1:d.index}]}))},"84aa":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Миналата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[Миналия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",w:"седмица",ww:"%d седмици",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return t}))},"85fe":function(e,t,n){"use strict";(function(e){function n(e){return n="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:{},s=function(s){for(var u=arguments.length,l=new Array(u>1?u-1:0),d=1;d1){var r=e.find((function(e){return e.isIntersecting}));r&&(t=r)}if(n.callback){var a=t.isIntersecting&&t.intersectionRatio>=n.threshold;if(a===n.oldResult)return;n.oldResult=a,n.callback(a,t)}}),this.options.intersection),t.context.$nextTick((function(){n.observer&&n.observer.observe(n.el)}))}}},{key:"destroyObserver",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:"threshold",get:function(){return this.options.intersection&&this.options.intersection.threshold||0}}]),e}();function _(e,t,n){var r=t.value;if(r)if("undefined"===typeof IntersectionObserver)console.warn("[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill");else{var a=new m(e,r,n);e._vue_visibilityState=a}}function h(e,t,n){var r=t.value,a=t.oldValue;if(!f(r,a)){var i=e._vue_visibilityState;r?i?i.createObserver(r,n):_(e,{value:r},n):p(e)}}function p(e){var t=e._vue_visibilityState;t&&(t.destroyObserver(),delete e._vue_visibilityState)}var v={bind:_,update:h,unbind:p};function y(e){e.directive("observe-visibility",v)}var g={version:"0.4.6",install:y},M=null;"undefined"!==typeof window?M=window.Vue:"undefined"!==typeof e&&(M=e.Vue),M&&M.use(g),t["a"]=g}).call(this,n("c8ba"))},"861d":function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},8689:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t=e.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Миналата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[Миналия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",w:"седмица",ww:"%d седмици",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return t}))},"85fe":function(e,t,n){"use strict";(function(e){function n(e){return n="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:{},s=function(s){for(var u=arguments.length,l=new Array(u>1?u-1:0),d=1;d1){var r=e.find((function(e){return e.isIntersecting}));r&&(t=r)}if(n.callback){var a=t.isIntersecting&&t.intersectionRatio>=n.threshold;if(a===n.oldResult)return;n.oldResult=a,n.callback(a,t)}}),this.options.intersection),t.context.$nextTick((function(){n.observer&&n.observer.observe(n.el)}))}}},{key:"destroyObserver",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:"threshold",get:function(){return this.options.intersection&&"number"===typeof this.options.intersection.threshold?this.options.intersection.threshold:0}}]),e}();function _(e,t,n){var r=t.value;if(r)if("undefined"===typeof IntersectionObserver)console.warn("[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill");else{var a=new m(e,r,n);e._vue_visibilityState=a}}function h(e,t,n){var r=t.value,a=t.oldValue;if(!f(r,a)){var i=e._vue_visibilityState;r?i?i.createObserver(r,n):_(e,{value:r},n):p(e)}}function p(e){var t=e._vue_visibilityState;t&&(t.destroyObserver(),delete e._vue_visibilityState)}var v={bind:_,update:h,unbind:p};function y(e){e.directive("observe-visibility",v)}var g={version:"1.0.0",install:y},M=null;"undefined"!==typeof window?M=window.Vue:"undefined"!==typeof e&&(M=e.Vue),M&&M.use(g),t["a"]=g}).call(this,n("c8ba"))},"861d":function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},8689:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t={1:"၁",2:"၂",3:"၃",4:"၄",5:"၅",6:"၆",7:"၇",8:"၈",9:"၉",0:"၀"},n={"၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","၀":"0"},r=e.defineLocale("my",{months:"ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ".split("_"),monthsShort:"ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ".split("_"),weekdays:"တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ".split("_"),weekdaysShort:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),weekdaysMin:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ယနေ.] LT [မှာ]",nextDay:"[မနက်ဖြန်] LT [မှာ]",nextWeek:"dddd LT [မှာ]",lastDay:"[မနေ.က] LT [မှာ]",lastWeek:"[ပြီးခဲ့သော] dddd LT [မှာ]",sameElse:"L"},relativeTime:{future:"လာမည့် %s မှာ",past:"လွန်ခဲ့သော %s က",s:"စက္ကန်.အနည်းငယ်",ss:"%d စက္ကန့်",m:"တစ်မိနစ်",mm:"%d မိနစ်",h:"တစ်နာရီ",hh:"%d နာရီ",d:"တစ်ရက်",dd:"%d ရက်",M:"တစ်လ",MM:"%d လ",y:"တစ်နှစ်",yy:"%d နှစ်"},preparse:function(e){return e.replace(/[၁၂၃၄၅၆၇၈၉၀]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}});return r}))},8709:function(e,t,n){var r=n("7e2e"),a=r.filter((function(e){return!!e.css})),i=r.filter((function(e){return!!e.vga}));e.exports=function(t){var n=e.exports.get(t);return n&&n.value},e.exports.get=function(e){return e=e||"",e=e.trim().toLowerCase(),r.filter((function(t){return t.name.toLowerCase()===e})).pop()},e.exports.all=e.exports.get.all=function(){return r},e.exports.get.css=function(e){return e?(e=e||"",e=e.trim().toLowerCase(),a.filter((function(t){return t.name.toLowerCase()===e})).pop()):a},e.exports.get.vga=function(e){return e?(e=e||"",e=e.trim().toLowerCase(),i.filter((function(t){return t.name.toLowerCase()===e})).pop()):i}},8840:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration @@ -215,7 +215,7 @@ var t=/^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|no */ var n=Object.freeze({});function r(e){return void 0===e||null===e}function a(e){return void 0!==e&&null!==e}function i(e){return!0===e}function o(e){return!1===e}function s(e){return"string"===typeof e||"number"===typeof e||"symbol"===typeof e||"boolean"===typeof e}function u(e){return null!==e&&"object"===typeof e}var l=Object.prototype.toString;function d(e){return"[object Object]"===l.call(e)}function c(e){return"[object RegExp]"===l.call(e)}function f(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function m(e){return a(e)&&"function"===typeof e.then&&"function"===typeof e.catch}function _(e){return null==e?"":Array.isArray(e)||d(e)&&e.toString===l?JSON.stringify(e,null,2):String(e)}function h(e){var t=parseFloat(e);return isNaN(t)?e:t}function p(e,t){for(var n=Object.create(null),r=e.split(","),a=0;a-1)return e.splice(n,1)}}var M=Object.prototype.hasOwnProperty;function b(e,t){return M.call(e,t)}function L(e){var t=Object.create(null);return function(n){var r=t[n];return r||(t[n]=e(n))}}var w=/-(\w)/g,Y=L((function(e){return e.replace(w,(function(e,t){return t?t.toUpperCase():""}))})),k=L((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),D=/\B([A-Z])/g,T=L((function(e){return e.replace(D,"-$1").toLowerCase()}));function S(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function x(e,t){return e.bind(t)}var E=Function.prototype.bind?x:S;function A(e,t){t=t||0;var n=e.length-t,r=new Array(n);while(n--)r[n]=e[n+t];return r}function O(e,t){for(var n in t)e[n]=t[n];return e}function j(e){for(var t={},n=0;n0,ae=te&&te.indexOf("edge/")>0,ie=(te&&te.indexOf("android"),te&&/iphone|ipad|ipod|ios/.test(te)||"ios"===ee),oe=(te&&/chrome\/\d+/.test(te),te&&/phantomjs/.test(te),te&&te.match(/firefox\/(\d+)/)),se={}.watch,ue=!1;if(Z)try{var le={};Object.defineProperty(le,"passive",{get:function(){ue=!0}}),window.addEventListener("test-passive",null,le)}catch(Xl){}var de=function(){return void 0===K&&(K=!Z&&!Q&&"undefined"!==typeof e&&(e["process"]&&"server"===e["process"].env.VUE_ENV)),K},ce=Z&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function fe(e){return"function"===typeof e&&/native code/.test(e.toString())}var me,_e="undefined"!==typeof Symbol&&fe(Symbol)&&"undefined"!==typeof Reflect&&fe(Reflect.ownKeys);me="undefined"!==typeof Set&&fe(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var he=H,pe=0,ve=function(){this.id=pe++,this.subs=[]};ve.prototype.addSub=function(e){this.subs.push(e)},ve.prototype.removeSub=function(e){g(this.subs,e)},ve.prototype.depend=function(){ve.target&&ve.target.addDep(this)},ve.prototype.notify=function(){var e=this.subs.slice();for(var t=0,n=e.length;t-1)if(i&&!b(a,"default"))o=!1;else if(""===o||o===T(e)){var u=nt(String,a.type);(u<0||s0&&(o=xt(o,(t||"")+"_"+n),St(o[0])&&St(l)&&(d[u]=Ye(l.text+o[0].text),o.shift()),d.push.apply(d,o)):s(o)?St(l)?d[u]=Ye(l.text+o):""!==o&&d.push(Ye(o)):St(o)&&St(l)?d[u]=Ye(l.text+o.text):(i(e._isVList)&&a(o.tag)&&r(o.key)&&a(t)&&(o.key="__vlist"+t+"_"+n+"__"),d.push(o)));return d}function Et(e){var t=e.$options.provide;t&&(e._provided="function"===typeof t?t.call(e):t)}function At(e){var t=Ot(e.$options.inject,e);t&&(Ae(!1),Object.keys(t).forEach((function(n){Fe(e,n,t[n])})),Ae(!0))}function Ot(e,t){if(e){for(var n=Object.create(null),r=_e?Reflect.ownKeys(e):Object.keys(e),a=0;a0,o=e?!!e.$stable:!i,s=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(o&&r&&r!==n&&s===r.$key&&!i&&!r.$hasNormal)return r;for(var u in a={},e)e[u]&&"$"!==u[0]&&(a[u]=Ft(t,u,e[u]))}else a={};for(var l in t)l in a||(a[l]=Pt(t,l));return e&&Object.isExtensible(e)&&(e._normalized=a),G(a,"$stable",o),G(a,"$key",s),G(a,"$hasNormal",i),a}function Ft(e,t,n){var r=function(){var e=arguments.length?n.apply(null,arguments):n({});return e=e&&"object"===typeof e&&!Array.isArray(e)?[e]:Tt(e),e&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return n.proxy&&Object.defineProperty(e,t,{get:r,enumerable:!0,configurable:!0}),r}function Pt(e,t){return function(){return e[t]}}function Nt(e,t){var n,r,i,o,s;if(Array.isArray(e)||"string"===typeof e)for(n=new Array(e.length),r=0,i=e.length;r1?A(n):n;for(var r=A(arguments,1),a='event handler for "'+e+'"',i=0,o=n.length;idocument.createEvent("Event").timeStamp&&(Kn=function(){return Xn.now()})}function Zn(){var e,t;for(qn=Kn(),Vn=!0,Wn.sort((function(e,t){return e.id-t.id})),Gn=0;GnGn&&Wn[n].id>e.id)n--;Wn.splice(n+1,0,e)}else Wn.push(e);Un||(Un=!0,pt(Zn))}}var rr=0,ar=function(e,t,n,r,a){this.vm=e,a&&(e._watcher=this),e._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++rr,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new me,this.newDepIds=new me,this.expression="","function"===typeof t?this.getter=t:(this.getter=q(t),this.getter||(this.getter=H)),this.value=this.lazy?void 0:this.get()};ar.prototype.get=function(){var e;ge(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(Xl){if(!this.user)throw Xl;rt(Xl,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&yt(e),Me(),this.cleanupDeps()}return e},ar.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},ar.prototype.cleanupDeps=function(){var e=this.deps.length;while(e--){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},ar.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():nr(this)},ar.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||u(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(Xl){rt(Xl,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},ar.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},ar.prototype.depend=function(){var e=this.deps.length;while(e--)this.deps[e].depend()},ar.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var e=this.deps.length;while(e--)this.deps[e].removeSub(this);this.active=!1}};var ir={enumerable:!0,configurable:!0,get:H,set:H};function or(e,t,n){ir.get=function(){return this[t][n]},ir.set=function(e){this[t][n]=e},Object.defineProperty(e,n,ir)}function sr(e){e._watchers=[];var t=e.$options;t.props&&ur(e,t.props),t.methods&&pr(e,t.methods),t.data?lr(e):Ce(e._data={},!0),t.computed&&fr(e,t.computed),t.watch&&t.watch!==se&&vr(e,t.watch)}function ur(e,t){var n=e.$options.propsData||{},r=e._props={},a=e.$options._propKeys=[],i=!e.$parent;i||Ae(!1);var o=function(i){a.push(i);var o=Ze(i,t,n,e);Fe(r,i,o),i in e||or(e,"_props",i)};for(var s in t)o(s);Ae(!0)}function lr(e){var t=e.$options.data;t=e._data="function"===typeof t?dr(t,e):t||{},d(t)||(t={});var n=Object.keys(t),r=e.$options.props,a=(e.$options.methods,n.length);while(a--){var i=n[a];0,r&&b(r,i)||V(i)||or(e,"_data",i)}Ce(t,!0)}function dr(e,t){ge();try{return e.call(t,t)}catch(Xl){return rt(Xl,t,"data()"),{}}finally{Me()}}var cr={lazy:!0};function fr(e,t){var n=e._computedWatchers=Object.create(null),r=de();for(var a in t){var i=t[a],o="function"===typeof i?i:i.get;0,r||(n[a]=new ar(e,o||H,H,cr)),a in e||mr(e,a,i)}}function mr(e,t,n){var r=!de();"function"===typeof n?(ir.get=r?_r(t):hr(n),ir.set=H):(ir.get=n.get?r&&!1!==n.cache?_r(t):hr(n.get):H,ir.set=n.set||H),Object.defineProperty(e,t,ir)}function _r(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),ve.target&&t.depend(),t.value}}function hr(e){return function(){return e.call(this,this)}}function pr(e,t){e.$options.props;for(var n in t)e[n]="function"!==typeof t[n]?H:E(t[n],e)}function vr(e,t){for(var n in t){var r=t[n];if(Array.isArray(r))for(var a=0;a-1)return this;var n=A(arguments,1);return n.unshift(this),"function"===typeof e.install?e.install.apply(e,n):"function"===typeof e&&e.apply(null,n),t.push(e),this}}function Tr(e){e.mixin=function(e){return this.options=Ke(this.options,e),this}}function Sr(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,a=e._Ctor||(e._Ctor={});if(a[r])return a[r];var i=e.name||n.options.name;var o=function(e){this._init(e)};return o.prototype=Object.create(n.prototype),o.prototype.constructor=o,o.cid=t++,o.options=Ke(n.options,e),o["super"]=n,o.options.props&&xr(o),o.options.computed&&Er(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,W.forEach((function(e){o[e]=n[e]})),i&&(o.options.components[i]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=O({},o.options),a[r]=o,o}}function xr(e){var t=e.options.props;for(var n in t)or(e.prototype,"_props",n)}function Er(e){var t=e.options.computed;for(var n in t)mr(e.prototype,n,t[n])}function Ar(e){W.forEach((function(t){e[t]=function(e,n){return n?("component"===t&&d(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"===typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}))}function Or(e){return e&&(e.Ctor.options.name||e.tag)}function jr(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"===typeof e?e.split(",").indexOf(t)>-1:!!c(e)&&e.test(t)}function Hr(e,t){var n=e.cache,r=e.keys,a=e._vnode;for(var i in n){var o=n[i];if(o){var s=Or(o.componentOptions);s&&!t(s)&&Cr(n,i,r,a)}}}function Cr(e,t,n,r){var a=e[t];!a||r&&a.tag===r.tag||a.componentInstance.$destroy(),e[t]=null,g(n,t)}br(kr),gr(kr),An(kr),Cn(kr),Mn(kr);var Fr=[String,RegExp,Array],Pr={name:"keep-alive",abstract:!0,props:{include:Fr,exclude:Fr,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)Cr(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch("include",(function(t){Hr(e,(function(e){return jr(t,e)}))})),this.$watch("exclude",(function(t){Hr(e,(function(e){return!jr(t,e)}))}))},render:function(){var e=this.$slots.default,t=kn(e),n=t&&t.componentOptions;if(n){var r=Or(n),a=this,i=a.include,o=a.exclude;if(i&&(!r||!jr(i,r))||o&&r&&jr(o,r))return t;var s=this,u=s.cache,l=s.keys,d=null==t.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):t.key;u[d]?(t.componentInstance=u[d].componentInstance,g(l,d),l.push(d)):(u[d]=t,l.push(d),this.max&&l.length>parseInt(this.max)&&Cr(u,l[0],l,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}},Nr={KeepAlive:Pr};function Rr(e){var t={get:function(){return z}};Object.defineProperty(e,"config",t),e.util={warn:he,extend:O,mergeOptions:Ke,defineReactive:Fe},e.set=Pe,e.delete=Ne,e.nextTick=pt,e.observable=function(e){return Ce(e),e},e.options=Object.create(null),W.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,O(e.options.components,Nr),Dr(e),Tr(e),Sr(e),Ar(e)}Rr(kr),Object.defineProperty(kr.prototype,"$isServer",{get:de}),Object.defineProperty(kr.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(kr,"FunctionalRenderContext",{value:Qt}),kr.version="2.6.12";var Ir=p("style,class"),$r=p("input,textarea,option,select,progress"),Wr=function(e,t,n){return"value"===n&&$r(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Br=p("contenteditable,draggable,spellcheck"),zr=p("events,caret,typing,plaintext-only"),Ur=function(e,t){return Kr(t)||"false"===t?"false":"contenteditable"===e&&zr(t)?t:"true"},Vr=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"),Gr="http://www.w3.org/1999/xlink",Jr=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},qr=function(e){return Jr(e)?e.slice(6,e.length):""},Kr=function(e){return null==e||!1===e};function Xr(e){var t=e.data,n=e,r=e;while(a(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(t=Zr(r.data,t));while(a(n=n.parent))n&&n.data&&(t=Zr(t,n.data));return Qr(t.staticClass,t.class)}function Zr(e,t){return{staticClass:ea(e.staticClass,t.staticClass),class:a(e.class)?[e.class,t.class]:t.class}}function Qr(e,t){return a(e)||a(t)?ea(e,ta(t)):""}function ea(e,t){return e?t?e+" "+t:e:t||""}function ta(e){return Array.isArray(e)?na(e):u(e)?ra(e):"string"===typeof e?e:""}function na(e){for(var t,n="",r=0,i=e.length;r-1?da[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:da[e]=/HTMLUnknownElement/.test(t.toString())}var fa=p("text,number,password,search,email,tel,url");function ma(e){if("string"===typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}function _a(e,t){var n=document.createElement(e);return"select"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n}function ha(e,t){return document.createElementNS(aa[e],t)}function pa(e){return document.createTextNode(e)}function va(e){return document.createComment(e)}function ya(e,t,n){e.insertBefore(t,n)}function ga(e,t){e.removeChild(t)}function Ma(e,t){e.appendChild(t)}function ba(e){return e.parentNode}function La(e){return e.nextSibling}function wa(e){return e.tagName}function Ya(e,t){e.textContent=t}function ka(e,t){e.setAttribute(t,"")}var Da=Object.freeze({createElement:_a,createElementNS:ha,createTextNode:pa,createComment:va,insertBefore:ya,removeChild:ga,appendChild:Ma,parentNode:ba,nextSibling:La,tagName:wa,setTextContent:Ya,setStyleScope:ka}),Ta={create:function(e,t){Sa(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Sa(e,!0),Sa(t))},destroy:function(e){Sa(e,!0)}};function Sa(e,t){var n=e.data.ref;if(a(n)){var r=e.context,i=e.componentInstance||e.elm,o=r.$refs;t?Array.isArray(o[n])?g(o[n],i):o[n]===i&&(o[n]=void 0):e.data.refInFor?Array.isArray(o[n])?o[n].indexOf(i)<0&&o[n].push(i):o[n]=[i]:o[n]=i}}var xa=new be("",{},[]),Ea=["create","activate","update","remove","destroy"];function Aa(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&a(e.data)===a(t.data)&&Oa(e,t)||i(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&r(t.asyncFactory.error))}function Oa(e,t){if("input"!==e.tag)return!0;var n,r=a(n=e.data)&&a(n=n.attrs)&&n.type,i=a(n=t.data)&&a(n=n.attrs)&&n.type;return r===i||fa(r)&&fa(i)}function ja(e,t,n){var r,i,o={};for(r=t;r<=n;++r)i=e[r].key,a(i)&&(o[i]=r);return o}function Ha(e){var t,n,o={},u=e.modules,l=e.nodeOps;for(t=0;th?(c=r(n[y+1])?null:n[y+1].elm,w(e,c,n,_,y,i)):_>y&&k(t,f,h)}function S(e,t,n,r){for(var i=n;i-1?Ua(e,t,n):Vr(t)?Kr(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):Br(t)?e.setAttribute(t,Ur(t,n)):Jr(t)?Kr(n)?e.removeAttributeNS(Gr,qr(t)):e.setAttributeNS(Gr,t,n):Ua(e,t,n)}function Ua(e,t,n){if(Kr(n))e.removeAttribute(t);else{if(ne&&!re&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==n&&!e.__ieph){var r=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",r)};e.addEventListener("input",r),e.__ieph=!0}e.setAttribute(t,n)}}var Va={create:Ba,update:Ba};function Ga(e,t){var n=t.elm,i=t.data,o=e.data;if(!(r(i.staticClass)&&r(i.class)&&(r(o)||r(o.staticClass)&&r(o.class)))){var s=Xr(t),u=n._transitionClasses;a(u)&&(s=ea(s,ta(u))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var Ja,qa,Ka,Xa,Za,Qa,ei={create:Ga,update:Ga},ti=/[\w).+\-_$\]]/;function ni(e){var t,n,r,a,i,o=!1,s=!1,u=!1,l=!1,d=0,c=0,f=0,m=0;for(r=0;r=0;_--)if(h=e.charAt(_)," "!==h)break;h&&ti.test(h)||(l=!0)}}else void 0===a?(m=r+1,a=e.slice(0,r).trim()):p();function p(){(i||(i=[])).push(e.slice(m,r).trim()),m=r+1}if(void 0===a?a=e.slice(0,r).trim():0!==m&&p(),i)for(r=0;r-1?{exp:e.slice(0,Xa),key:'"'+e.slice(Xa+1)+'"'}:{exp:e,key:null};qa=e,Xa=Za=Qa=0;while(!bi())Ka=Mi(),Li(Ka)?Yi(Ka):91===Ka&&wi(Ka);return{exp:e.slice(0,Za),key:e.slice(Za+1,Qa)}}function Mi(){return qa.charCodeAt(++Xa)}function bi(){return Xa>=Ja}function Li(e){return 34===e||39===e}function wi(e){var t=1;Za=Xa;while(!bi())if(e=Mi(),Li(e))Yi(e);else if(91===e&&t++,93===e&&t--,0===t){Qa=Xa;break}}function Yi(e){var t=e;while(!bi())if(e=Mi(),e===t)break}var ki,Di="__r",Ti="__c";function Si(e,t,n){n;var r=t.value,a=t.modifiers,i=e.tag,o=e.attrsMap.type;if(e.component)return vi(e,r,a),!1;if("select"===i)Ai(e,r,a);else if("input"===i&&"checkbox"===o)xi(e,r,a);else if("input"===i&&"radio"===o)Ei(e,r,a);else if("input"===i||"textarea"===i)Oi(e,r,a);else{if(!z.isReservedTag(i))return vi(e,r,a),!1}return!0}function xi(e,t,n){var r=n&&n.number,a=mi(e,"value")||"null",i=mi(e,"true-value")||"true",o=mi(e,"false-value")||"false";oi(e,"checked","Array.isArray("+t+")?_i("+t+","+a+")>-1"+("true"===i?":("+t+")":":_q("+t+","+i+")")),ci(e,"change","var $$a="+t+",$$el=$event.target,$$c=$$el.checked?("+i+"):("+o+");if(Array.isArray($$a)){var $$v="+(r?"_n("+a+")":a)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+yi(t,"$$a.concat([$$v])")+")}else{$$i>-1&&("+yi(t,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+yi(t,"$$c")+"}",null,!0)}function Ei(e,t,n){var r=n&&n.number,a=mi(e,"value")||"null";a=r?"_n("+a+")":a,oi(e,"checked","_q("+t+","+a+")"),ci(e,"change",yi(t,a),null,!0)}function Ai(e,t,n){var r=n&&n.number,a='Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return '+(r?"_n(val)":"val")+"})",i="$event.target.multiple ? $$selectedVal : $$selectedVal[0]",o="var $$selectedVal = "+a+";";o=o+" "+yi(t,i),ci(e,"change",o,null,!0)}function Oi(e,t,n){var r=e.attrsMap.type,a=n||{},i=a.lazy,o=a.number,s=a.trim,u=!i&&"range"!==r,l=i?"change":"range"===r?Di:"input",d="$event.target.value";s&&(d="$event.target.value.trim()"),o&&(d="_n("+d+")");var c=yi(t,d);u&&(c="if($event.target.composing)return;"+c),oi(e,"value","("+t+")"),ci(e,l,c,null,!0),(s||o)&&ci(e,"blur","$forceUpdate()")}function ji(e){if(a(e[Di])){var t=ne?"change":"input";e[t]=[].concat(e[Di],e[t]||[]),delete e[Di]}a(e[Ti])&&(e.change=[].concat(e[Ti],e.change||[]),delete e[Ti])}function Hi(e,t,n){var r=ki;return function a(){var i=t.apply(null,arguments);null!==i&&Pi(e,a,n,r)}}var Ci=ut&&!(oe&&Number(oe[1])<=53);function Fi(e,t,n,r){if(Ci){var a=qn,i=t;t=i._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=a||e.timeStamp<=0||e.target.ownerDocument!==document)return i.apply(this,arguments)}}ki.addEventListener(e,t,ue?{capture:n,passive:r}:n)}function Pi(e,t,n,r){(r||ki).removeEventListener(e,t._wrapper||t,n)}function Ni(e,t){if(!r(e.data.on)||!r(t.data.on)){var n=t.data.on||{},a=e.data.on||{};ki=t.elm,ji(n),Lt(n,a,Fi,Pi,Hi,t.context),ki=void 0}}var Ri,Ii={create:Ni,update:Ni};function $i(e,t){if(!r(e.data.domProps)||!r(t.data.domProps)){var n,i,o=t.elm,s=e.data.domProps||{},u=t.data.domProps||{};for(n in a(u.__ob__)&&(u=t.data.domProps=O({},u)),s)n in u||(o[n]="");for(n in u){if(i=u[n],"textContent"===n||"innerHTML"===n){if(t.children&&(t.children.length=0),i===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=i;var l=r(i)?"":String(i);Wi(o,l)&&(o.value=l)}else if("innerHTML"===n&&oa(o.tagName)&&r(o.innerHTML)){Ri=Ri||document.createElement("div"),Ri.innerHTML=""+i+"";var d=Ri.firstChild;while(o.firstChild)o.removeChild(o.firstChild);while(d.firstChild)o.appendChild(d.firstChild)}else if(i!==s[n])try{o[n]=i}catch(Xl){}}}}function Wi(e,t){return!e.composing&&("OPTION"===e.tagName||Bi(e,t)||zi(e,t))}function Bi(e,t){var n=!0;try{n=document.activeElement!==e}catch(Xl){}return n&&e.value!==t}function zi(e,t){var n=e.value,r=e._vModifiers;if(a(r)){if(r.number)return h(n)!==h(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}var Ui={create:$i,update:$i},Vi=L((function(e){var t={},n=/;(?![^(]*\))/g,r=/:(.+)/;return e.split(n).forEach((function(e){if(e){var n=e.split(r);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}));function Gi(e){var t=Ji(e.style);return e.staticStyle?O(e.staticStyle,t):t}function Ji(e){return Array.isArray(e)?j(e):"string"===typeof e?Vi(e):e}function qi(e,t){var n,r={};if(t){var a=e;while(a.componentInstance)a=a.componentInstance._vnode,a&&a.data&&(n=Gi(a.data))&&O(r,n)}(n=Gi(e.data))&&O(r,n);var i=e;while(i=i.parent)i.data&&(n=Gi(i.data))&&O(r,n);return r}var Ki,Xi=/^--/,Zi=/\s*!important$/,Qi=function(e,t,n){if(Xi.test(t))e.style.setProperty(t,n);else if(Zi.test(n))e.style.setProperty(T(t),n.replace(Zi,""),"important");else{var r=to(t);if(Array.isArray(n))for(var a=0,i=n.length;a-1?t.split(ao).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function oo(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(ao).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";while(n.indexOf(r)>=0)n=n.replace(r," ");n=n.trim(),n?e.setAttribute("class",n):e.removeAttribute("class")}}function so(e){if(e){if("object"===typeof e){var t={};return!1!==e.css&&O(t,uo(e.name||"v")),O(t,e),t}return"string"===typeof e?uo(e):void 0}}var uo=L((function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}})),lo=Z&&!re,co="transition",fo="animation",mo="transition",_o="transitionend",ho="animation",po="animationend";lo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(mo="WebkitTransition",_o="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(ho="WebkitAnimation",po="webkitAnimationEnd"));var vo=Z?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function yo(e){vo((function(){vo(e)}))}function go(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),io(e,t))}function Mo(e,t){e._transitionClasses&&g(e._transitionClasses,t),oo(e,t)}function bo(e,t,n){var r=wo(e,t),a=r.type,i=r.timeout,o=r.propCount;if(!a)return n();var s=a===co?_o:po,u=0,l=function(){e.removeEventListener(s,d),n()},d=function(t){t.target===e&&++u>=o&&l()};setTimeout((function(){u0&&(n=co,d=o,c=i.length):t===fo?l>0&&(n=fo,d=l,c=u.length):(d=Math.max(o,l),n=d>0?o>l?co:fo:null,c=n?n===co?i.length:u.length:0);var f=n===co&&Lo.test(r[mo+"Property"]);return{type:n,timeout:d,propCount:c,hasTransform:f}}function Yo(e,t){while(e.length1}function Eo(e,t){!0!==t.data.show&&Do(t)}var Ao=Z?{create:Eo,activate:Eo,remove:function(e,t){!0!==e.data.show?To(e,t):t()}}:{},Oo=[Va,ei,Ii,Ui,ro,Ao],jo=Oo.concat(Wa),Ho=Ha({nodeOps:Da,modules:jo});re&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&Wo(e,"input")}));var Co={inserted:function(e,t,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?wt(n,"postpatch",(function(){Co.componentUpdated(e,t,n)})):Fo(e,t,n.context),e._vOptions=[].map.call(e.options,Ro)):("textarea"===n.tag||fa(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",Io),e.addEventListener("compositionend",$o),e.addEventListener("change",$o),re&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){Fo(e,t,n.context);var r=e._vOptions,a=e._vOptions=[].map.call(e.options,Ro);if(a.some((function(e,t){return!N(e,r[t])}))){var i=e.multiple?t.value.some((function(e){return No(e,a)})):t.value!==t.oldValue&&No(t.value,a);i&&Wo(e,"change")}}}};function Fo(e,t,n){Po(e,t,n),(ne||ae)&&setTimeout((function(){Po(e,t,n)}),0)}function Po(e,t,n){var r=t.value,a=e.multiple;if(!a||Array.isArray(r)){for(var i,o,s=0,u=e.options.length;s-1,o.selected!==i&&(o.selected=i);else if(N(Ro(o),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));a||(e.selectedIndex=-1)}}function No(e,t){return t.every((function(t){return!N(t,e)}))}function Ro(e){return"_value"in e?e._value:e.value}function Io(e){e.target.composing=!0}function $o(e){e.target.composing&&(e.target.composing=!1,Wo(e.target,"input"))}function Wo(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bo(e){return!e.componentInstance||e.data&&e.data.transition?e:Bo(e.componentInstance._vnode)}var zo={bind:function(e,t,n){var r=t.value;n=Bo(n);var a=n.data&&n.data.transition,i=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;r&&a?(n.data.show=!0,Do(n,(function(){e.style.display=i}))):e.style.display=r?i:"none"},update:function(e,t,n){var r=t.value,a=t.oldValue;if(!r!==!a){n=Bo(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Do(n,(function(){e.style.display=e.__vOriginalDisplay})):To(n,(function(){e.style.display="none"}))):e.style.display=r?e.__vOriginalDisplay:"none"}},unbind:function(e,t,n,r,a){a||(e.style.display=e.__vOriginalDisplay)}},Uo={model:Co,show:zo},Vo={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 Go(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Go(kn(t.children)):e}function Jo(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var a=n._parentListeners;for(var i in a)t[Y(i)]=a[i];return t}function qo(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ko(e){while(e=e.parent)if(e.data.transition)return!0}function Xo(e,t){return t.key===e.key&&t.tag===e.tag}var Zo=function(e){return e.tag||Yn(e)},Qo=function(e){return"show"===e.name},es={name:"transition",props:Vo,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(Zo),n.length)){0;var r=this.mode;0;var a=n[0];if(Ko(this.$vnode))return a;var i=Go(a);if(!i)return a;if(this._leaving)return qo(e,a);var o="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?o+"comment":o+i.tag:s(i.key)?0===String(i.key).indexOf(o)?i.key:o+i.key:i.key;var u=(i.data||(i.data={})).transition=Jo(this),l=this._vnode,d=Go(l);if(i.data.directives&&i.data.directives.some(Qo)&&(i.data.show=!0),d&&d.data&&!Xo(i,d)&&!Yn(d)&&(!d.componentInstance||!d.componentInstance._vnode.isComment)){var c=d.data.transition=O({},u);if("out-in"===r)return this._leaving=!0,wt(c,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),qo(e,a);if("in-out"===r){if(Yn(i))return l;var f,m=function(){f()};wt(u,"afterEnter",m),wt(u,"enterCancelled",m),wt(c,"delayLeave",(function(e){f=e}))}}return a}}},ts=O({tag:String,moveClass:String},Vo);delete ts.mode;var ns={props:ts,beforeMount:function(){var e=this,t=this._update;this._update=function(n,r){var a=jn(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,a(),t.call(e,n,r)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,a=this.$slots.default||[],i=this.children=[],o=Jo(this),s=0;su&&(s.push(i=e.slice(u,a)),o.push(JSON.stringify(i)));var l=ni(r[1].trim());o.push("_s("+l+")"),s.push({"@binding":l}),u=a+r[0].length}return u\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ws=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,Ys="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+U.source+"]*",ks="((?:"+Ys+"\\:)?"+Ys+")",Ds=new RegExp("^<"+ks),Ts=/^\s*(\/?)>/,Ss=new RegExp("^<\\/"+ks+"[^>]*>"),xs=/^]+>/i,Es=/^",""":'"',"&":"&"," ":"\n"," ":"\t","'":"'"},Cs=/&(?:lt|gt|quot|amp|#39);/g,Fs=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Ps=p("pre,textarea",!0),Ns=function(e,t){return e&&Ps(e)&&"\n"===t[0]};function Rs(e,t){var n=t?Fs:Cs;return e.replace(n,(function(e){return Hs[e]}))}function Is(e,t){var n,r,a=[],i=t.expectHTML,o=t.isUnaryTag||C,s=t.canBeLeftOpenTag||C,u=0;while(e){if(n=e,r&&Os(r)){var l=0,d=r.toLowerCase(),c=js[d]||(js[d]=new RegExp("([\\s\\S]*?)(]*>)","i")),f=e.replace(c,(function(e,n,r){return l=r.length,Os(d)||"noscript"===d||(n=n.replace(//g,"$1").replace(//g,"$1")),Ns(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""}));u+=e.length-f.length,e=f,D(d,u-l,u)}else{var m=e.indexOf("<");if(0===m){if(Es.test(e)){var _=e.indexOf("--\x3e");if(_>=0){t.shouldKeepComment&&t.comment(e.substring(4,_),u,u+_+3),w(_+3);continue}}if(As.test(e)){var h=e.indexOf("]>");if(h>=0){w(h+2);continue}}var p=e.match(xs);if(p){w(p[0].length);continue}var v=e.match(Ss);if(v){var y=u;w(v[0].length),D(v[1],y,u);continue}var g=Y();if(g){k(g),Ns(g.tagName,e)&&w(1);continue}}var M=void 0,b=void 0,L=void 0;if(m>=0){b=e.slice(m);while(!Ss.test(b)&&!Ds.test(b)&&!Es.test(b)&&!As.test(b)){if(L=b.indexOf("<",1),L<0)break;m+=L,b=e.slice(m)}M=e.substring(0,m)}m<0&&(M=e),M&&w(M.length),t.chars&&M&&t.chars(M,u-M.length,u)}if(e===n){t.chars&&t.chars(e);break}}function w(t){u+=t,e=e.substring(t)}function Y(){var t=e.match(Ds);if(t){var n,r,a={tagName:t[1],attrs:[],start:u};w(t[0].length);while(!(n=e.match(Ts))&&(r=e.match(ws)||e.match(Ls)))r.start=u,w(r[0].length),r.end=u,a.attrs.push(r);if(n)return a.unarySlash=n[1],w(n[0].length),a.end=u,a}}function k(e){var n=e.tagName,u=e.unarySlash;i&&("p"===r&&bs(n)&&D(r),s(n)&&r===n&&D(n));for(var l=o(n)||!!u,d=e.attrs.length,c=new Array(d),f=0;f=0;o--)if(a[o].lowerCasedTag===s)break}else o=0;if(o>=0){for(var l=a.length-1;l>=o;l--)t.end&&t.end(a[l].tag,n,i);a.length=o,r=o&&a[o-1].tag}else"br"===s?t.start&&t.start(e,[],!0,n,i):"p"===s&&(t.start&&t.start(e,[],!1,n,i),t.end&&t.end(e,n,i))}D()}var $s,Ws,Bs,zs,Us,Vs,Gs,Js,qs=/^@|^v-on:/,Ks=/^v-|^@|^:|^#/,Xs=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Zs=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Qs=/^\(|\)$/g,eu=/^\[.*\]$/,tu=/:(.*)$/,nu=/^:|^\.|^v-bind:/,ru=/\.[^.\]]+(?=[^\]]*$)/g,au=/^v-slot(:|$)|^#/,iu=/[\r\n]/,ou=/\s+/g,su=L(ys.decode),uu="_empty_";function lu(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:Eu(t),rawAttrsMap:{},parent:n,children:[]}}function du(e,t){$s=t.warn||ai,Vs=t.isPreTag||C,Gs=t.mustUseProp||C,Js=t.getTagNamespace||C;var n=t.isReservedTag||C;(function(e){return!!e.component||!n(e.tag)}),Bs=ii(t.modules,"transformNode"),zs=ii(t.modules,"preTransformNode"),Us=ii(t.modules,"postTransformNode"),Ws=t.delimiters;var r,a,i=[],o=!1!==t.preserveWhitespace,s=t.whitespace,u=!1,l=!1;function d(e){if(c(e),u||e.processed||(e=mu(e,t)),i.length||e===r||r.if&&(e.elseif||e.else)&&bu(r,{exp:e.elseif,block:e}),a&&!e.forbidden)if(e.elseif||e.else)gu(e,a);else{if(e.slotScope){var n=e.slotTarget||'"default"';(a.scopedSlots||(a.scopedSlots={}))[n]=e}a.children.push(e),e.parent=a}e.children=e.children.filter((function(e){return!e.slotScope})),c(e),e.pre&&(u=!1),Vs(e.tag)&&(l=!1);for(var o=0;o|^function(?:\s+[\w$]+)?\s*\(/,el=/\([^)]*?\);*$/,tl=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,nl={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},rl={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},al=function(e){return"if("+e+")return null;"},il={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:al("$event.target !== $event.currentTarget"),ctrl:al("!$event.ctrlKey"),shift:al("!$event.shiftKey"),alt:al("!$event.altKey"),meta:al("!$event.metaKey"),left:al("'button' in $event && $event.button !== 0"),middle:al("'button' in $event && $event.button !== 1"),right:al("'button' in $event && $event.button !== 2")};function ol(e,t){var n=t?"nativeOn:":"on:",r="",a="";for(var i in e){var o=sl(e[i]);e[i]&&e[i].dynamic?a+=i+","+o+",":r+='"'+i+'":'+o+","}return r="{"+r.slice(0,-1)+"}",a?n+"_d("+r+",["+a.slice(0,-1)+"])":n+r}function sl(e){if(!e)return"function(){}";if(Array.isArray(e))return"["+e.map((function(e){return sl(e)})).join(",")+"]";var t=tl.test(e.value),n=Qu.test(e.value),r=tl.test(e.value.replace(el,""));if(e.modifiers){var a="",i="",o=[];for(var s in e.modifiers)if(il[s])i+=il[s],nl[s]&&o.push(s);else if("exact"===s){var u=e.modifiers;i+=al(["ctrl","shift","alt","meta"].filter((function(e){return!u[e]})).map((function(e){return"$event."+e+"Key"})).join("||"))}else o.push(s);o.length&&(a+=ul(o)),i&&(a+=i);var l=t?"return "+e.value+"($event)":n?"return ("+e.value+")($event)":r?"return "+e.value:e.value;return"function($event){"+a+l+"}"}return t||n?e.value:"function($event){"+(r?"return "+e.value:e.value)+"}"}function ul(e){return"if(!$event.type.indexOf('key')&&"+e.map(ll).join("&&")+")return null;"}function ll(e){var t=parseInt(e,10);if(t)return"$event.keyCode!=="+t;var n=nl[e],r=rl[e];return"_k($event.keyCode,"+JSON.stringify(e)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(r)+")"}function dl(e,t){e.wrapListeners=function(e){return"_g("+e+","+t.value+")"}}function cl(e,t){e.wrapData=function(n){return"_b("+n+",'"+e.tag+"',"+t.value+","+(t.modifiers&&t.modifiers.prop?"true":"false")+(t.modifiers&&t.modifiers.sync?",true":"")+")"}}var fl={on:dl,bind:cl,cloak:H},ml=function(e){this.options=e,this.warn=e.warn||ai,this.transforms=ii(e.modules,"transformCode"),this.dataGenFns=ii(e.modules,"genData"),this.directives=O(O({},fl),e.directives);var t=e.isReservedTag||C;this.maybeComponent=function(e){return!!e.component||!t(e.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function _l(e,t){var n=new ml(t),r=e?hl(e,n):'_c("div")';return{render:"with(this){return "+r+"}",staticRenderFns:n.staticRenderFns}}function hl(e,t){if(e.parent&&(e.pre=e.pre||e.parent.pre),e.staticRoot&&!e.staticProcessed)return pl(e,t);if(e.once&&!e.onceProcessed)return vl(e,t);if(e.for&&!e.forProcessed)return Ml(e,t);if(e.if&&!e.ifProcessed)return yl(e,t);if("template"!==e.tag||e.slotTarget||t.pre){if("slot"===e.tag)return Hl(e,t);var n;if(e.component)n=Cl(e.component,e,t);else{var r;(!e.plain||e.pre&&t.maybeComponent(e))&&(r=bl(e,t));var a=e.inlineTemplate?null:Sl(e,t,!0);n="_c('"+e.tag+"'"+(r?","+r:"")+(a?","+a:"")+")"}for(var i=0;i>>0}function Dl(e){return 1===e.type&&("slot"===e.tag||e.children.some(Dl))}function Tl(e,t){var n=e.attrsMap["slot-scope"];if(e.if&&!e.ifProcessed&&!n)return yl(e,t,Tl,"null");if(e.for&&!e.forProcessed)return Ml(e,t,Tl);var r=e.slotScope===uu?"":String(e.slotScope),a="function("+r+"){return "+("template"===e.tag?e.if&&n?"("+e.if+")?"+(Sl(e,t)||"undefined")+":undefined":Sl(e,t)||"undefined":hl(e,t))+"}",i=r?"":",proxy:true";return"{key:"+(e.slotTarget||'"default"')+",fn:"+a+i+"}"}function Sl(e,t,n,r,a){var i=e.children;if(i.length){var o=i[0];if(1===i.length&&o.for&&"template"!==o.tag&&"slot"!==o.tag){var s=n?t.maybeComponent(o)?",1":",0":"";return""+(r||hl)(o,t)+s}var u=n?xl(i,t.maybeComponent):0,l=a||Al;return"["+i.map((function(e){return l(e,t)})).join(",")+"]"+(u?","+u:"")}}function xl(e,t){for(var n=0,r=0;r':'
',$l.innerHTML.indexOf(" ")>0}var Vl=!!Z&&Ul(!1),Gl=!!Z&&Ul(!0),Jl=L((function(e){var t=ma(e);return t&&t.innerHTML})),ql=kr.prototype.$mount;function Kl(e){if(e.outerHTML)return e.outerHTML;var t=document.createElement("div");return t.appendChild(e.cloneNode(!0)),t.innerHTML}kr.prototype.$mount=function(e,t){if(e=e&&ma(e),e===document.body||e===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if("string"===typeof r)"#"===r.charAt(0)&&(r=Jl(r));else{if(!r.nodeType)return this;r=r.innerHTML}else e&&(r=Kl(e));if(r){0;var a=zl(r,{outputSourceRange:!1,shouldDecodeNewlines:Vl,shouldDecodeNewlinesForHref:Gl,delimiters:n.delimiters,comments:n.comments},this),i=a.render,o=a.staticRenderFns;n.render=i,n.staticRenderFns=o}}return ql.call(this,e,t)},kr.compile=zl,t["a"]=kr}).call(this,n("c8ba"))},a15b:function(e,t,n){"use strict";var r=n("23e7"),a=n("44ad"),i=n("fc6a"),o=n("a640"),s=[].join,u=a!=Object,l=o("join",",");r({target:"Array",proto:!0,forced:u||!l},{join:function(e){return s.call(i(this),void 0===e?",":e)}})},a356:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},r=function(e){return function(r,a,i,o){var s=t(r),u=n[e][t(r)];return 2===s&&(u=u[a?0:1]),u.replace(/%d/i,r)}},a=["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويلية","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],i=e.defineLocale("ar-dz",{months:a,monthsShort:a,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:r("s"),ss:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"),MM:r("M"),y:r("y"),yy:r("y")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:0,doy:4}});return i}))},a434:function(e,t,n){"use strict";var r=n("23e7"),a=n("23cb"),i=n("a691"),o=n("50c4"),s=n("7b0b"),u=n("65f0"),l=n("8418"),d=n("1dde"),c=n("ae40"),f=d("splice"),m=c("splice",{ACCESSORS:!0,0:0,1:2}),_=Math.max,h=Math.min,p=9007199254740991,v="Maximum allowed length exceeded";r({target:"Array",proto:!0,forced:!f||!m},{splice:function(e,t){var n,r,d,c,f,m,y=s(this),g=o(y.length),M=a(e,g),b=arguments.length;if(0===b?n=r=0:1===b?(n=0,r=g-M):(n=b-2,r=h(_(i(t),0),g-M)),g+n-r>p)throw TypeError(v);for(d=u(y,r),c=0;cg-r+n;c--)delete y[c-1]}else if(n>r)for(c=g-r;c>M;c--)f=c+r-1,m=c+n-1,f in y?y[m]=y[f]:delete y[m];for(c=0;ci)a.push(arguments[i++]);if(r=t,(m(t)||void 0!==e)&&!se(e))return f(t)||(t=function(e,t){if("function"==typeof r&&(t=r.call(this,e,t)),!se(t))return t}),a[1]=t,G.apply(null,a)}})}V[$][W]||T(V[$],W,V[$].valueOf),F(V,I),A[R]=!0},a630:function(e,t,n){var r=n("23e7"),a=n("4df4"),i=n("1c7e"),o=!i((function(e){Array.from(e)}));r({target:"Array",stat:!0,forced:o},{from:a})},a640:function(e,t,n){"use strict";var r=n("d039");e.exports=function(e,t){var n=[][e];return!!n&&r((function(){n.call(null,t||function(){throw 1},1)}))}},a691:function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},a79d:function(e,t,n){"use strict";var r=n("23e7"),a=n("c430"),i=n("fea9"),o=n("d039"),s=n("d066"),u=n("4840"),l=n("cdf9"),d=n("6eeb"),c=!!i&&o((function(){i.prototype["finally"].call({then:function(){}},(function(){}))}));r({target:"Promise",proto:!0,real:!0,forced:c},{finally:function(e){var t=u(this,s("Promise")),n="function"==typeof e;return this.then(n?function(n){return l(t,e()).then((function(){return n}))}:e,n?function(n){return l(t,e()).then((function(){throw n}))}:e)}}),a||"function"!=typeof i||i.prototype["finally"]||d(i.prototype,"finally",s("Promise").prototype["finally"])},a7fa:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},r=function(e){return function(r,a,i,o){var s=t(r),u=n[e][t(r)];return 2===s&&(u=u[a?0:1]),u.replace(/%d/i,r)}},a=["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويلية","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],i=e.defineLocale("ar-dz",{months:a,monthsShort:a,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:r("s"),ss:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"),MM:r("M"),y:r("y"),yy:r("y")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:0,doy:4}});return i}))},a434:function(e,t,n){"use strict";var r=n("23e7"),a=n("23cb"),i=n("a691"),o=n("50c4"),s=n("7b0b"),u=n("65f0"),l=n("8418"),d=n("1dde"),c=n("ae40"),f=d("splice"),m=c("splice",{ACCESSORS:!0,0:0,1:2}),_=Math.max,h=Math.min,p=9007199254740991,v="Maximum allowed length exceeded";r({target:"Array",proto:!0,forced:!f||!m},{splice:function(e,t){var n,r,d,c,f,m,y=s(this),g=o(y.length),M=a(e,g),b=arguments.length;if(0===b?n=r=0:1===b?(n=0,r=g-M):(n=b-2,r=h(_(i(t),0),g-M)),g+n-r>p)throw TypeError(v);for(d=u(y,r),c=0;cg-r+n;c--)delete y[c-1]}else if(n>r)for(c=g-r;c>M;c--)f=c+r-1,m=c+n-1,f in y?y[m]=y[f]:delete y[m];for(c=0;ci)a.push(arguments[i++]);if(r=t,(m(t)||void 0!==e)&&!se(e))return f(t)||(t=function(e,t){if("function"==typeof r&&(t=r.call(this,e,t)),!se(t))return t}),a[1]=t,G.apply(null,a)}})}V[$][W]||T(V[$],W,V[$].valueOf),F(V,I),A[R]=!0},a630:function(e,t,n){var r=n("23e7"),a=n("4df4"),i=n("1c7e"),o=!i((function(e){Array.from(e)}));r({target:"Array",stat:!0,forced:o},{from:a})},a640:function(e,t,n){"use strict";var r=n("d039");e.exports=function(e,t){var n=[][e];return!!n&&r((function(){n.call(null,t||function(){throw 1},1)}))}},a691:function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},a79d:function(e,t,n){"use strict";var r=n("23e7"),a=n("c430"),i=n("fea9"),o=n("d039"),s=n("d066"),u=n("4840"),l=n("cdf9"),d=n("6eeb"),c=!!i&&o((function(){i.prototype["finally"].call({then:function(){}},(function(){}))}));r({target:"Promise",proto:!0,real:!0,forced:c},{finally:function(e){var t=u(this,s("Promise")),n="function"==typeof e;return this.then(n?function(n){return l(t,e()).then((function(){return n}))}:e,n?function(n){return l(t,e()).then((function(){throw n}))}:e)}}),a||"function"!=typeof i||i.prototype["finally"]||d(i.prototype,"finally",s("Promise").prototype["finally"])},a7fa:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t=e.defineLocale("bm",{months:"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo".split("_"),monthsShort:"Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des".split("_"),weekdays:"Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),weekdaysShort:"Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib".split("_"),weekdaysMin:"Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM [tile] D [san] YYYY",LLL:"MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm",LLLL:"dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm"},calendar:{sameDay:"[Bi lɛrɛ] LT",nextDay:"[Sini lɛrɛ] LT",nextWeek:"dddd [don lɛrɛ] LT",lastDay:"[Kunu lɛrɛ] LT",lastWeek:"dddd [tɛmɛnen lɛrɛ] LT",sameElse:"L"},relativeTime:{future:"%s kɔnɔ",past:"a bɛ %s bɔ",s:"sanga dama dama",ss:"sekondi %d",m:"miniti kelen",mm:"miniti %d",h:"lɛrɛ kelen",hh:"lɛrɛ %d",d:"tile kelen",dd:"tile %d",M:"kalo kelen",MM:"kalo %d",y:"san kelen",yy:"san %d"},week:{dow:1,doy:4}});return t}))},aa47:function(e,t,n){"use strict"; /**! @@ -238,9 +238,9 @@ function t(e,t,n,r){var a={m:["eine Minute","einer Minute"],h:["eine Stunde","ei //! moment.js locale configuration var t=e.defineLocale("tzm-latn",{months:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),monthsShort:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),weekdays:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),weekdaysShort:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),weekdaysMin:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[asdkh g] LT",nextDay:"[aska g] LT",nextWeek:"dddd [g] LT",lastDay:"[assant g] LT",lastWeek:"dddd [g] LT",sameElse:"L"},relativeTime:{future:"dadkh s yan %s",past:"yan %s",s:"imik",ss:"%d imik",m:"minuḍ",mm:"%d minuḍ",h:"saɛa",hh:"%d tassaɛin",d:"ass",dd:"%d ossan",M:"ayowr",MM:"%d iyyirn",y:"asgas",yy:"%d isgasn"},week:{dow:6,doy:12}});return t}))},b540:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),"enjing"===t?e:"siyang"===t?e>=11?e:e+12:"sonten"===t||"ndalu"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"enjing":e<15?"siyang":e<19?"sonten":"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}});return t}))},b575:function(e,t,n){var r,a,i,o,s,u,l,d,c=n("da84"),f=n("06cf").f,m=n("2cf4").set,_=n("1cdc"),h=n("605d"),p=c.MutationObserver||c.WebKitMutationObserver,v=c.document,y=c.process,g=c.Promise,M=f(c,"queueMicrotask"),b=M&&M.value;b||(r=function(){var e,t;h&&(e=y.domain)&&e.exit();while(a){t=a.fn,a=a.next;try{t()}catch(n){throw a?o():i=void 0,n}}i=void 0,e&&e.enter()},!_&&!h&&p&&v?(s=!0,u=v.createTextNode(""),new p(r).observe(u,{characterData:!0}),o=function(){u.data=s=!s}):g&&g.resolve?(l=g.resolve(void 0),d=l.then,o=function(){d.call(l,r)}):o=h?function(){y.nextTick(r)}:function(){m.call(c,r)}),e.exports=b||function(e){var t={fn:e,next:void 0};i&&(i.next=t),a||(a=t,o()),i=t}},b5b7:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t=e.defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),"enjing"===t?e:"siyang"===t?e>=11?e:e+12:"sonten"===t||"ndalu"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"enjing":e<15?"siyang":e<19?"sonten":"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}});return t}))},b575:function(e,t,n){var r,a,i,o,s,u,l,d,c=n("da84"),f=n("06cf").f,m=n("2cf4").set,_=n("1cdc"),h=n("a4b4"),p=n("605d"),v=c.MutationObserver||c.WebKitMutationObserver,y=c.document,g=c.process,M=c.Promise,b=f(c,"queueMicrotask"),L=b&&b.value;L||(r=function(){var e,t;p&&(e=g.domain)&&e.exit();while(a){t=a.fn,a=a.next;try{t()}catch(n){throw a?o():i=void 0,n}}i=void 0,e&&e.enter()},_||p||h||!v||!y?M&&M.resolve?(l=M.resolve(void 0),d=l.then,o=function(){d.call(l,r)}):o=p?function(){g.nextTick(r)}:function(){m.call(c,r)}:(s=!0,u=y.createTextNode(""),new v(r).observe(u,{characterData:!0}),o=function(){u.data=s=!s})),e.exports=L||function(e){var t={fn:e,next:void 0};i&&(i.next=t),a||(a=t,o()),i=t}},b5b7:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],a=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,i=e.defineLocale("es-mx",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:a,monthsShortRegex:a,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:4},invalidDate:"Fecha inválida"});return i}))},b622:function(e,t,n){var r=n("da84"),a=n("5692"),i=n("5135"),o=n("90e3"),s=n("4930"),u=n("fdbf"),l=a("wks"),d=r.Symbol,c=u?d:d&&d.withoutSetter||o;e.exports=function(e){return i(l,e)||(s&&i(d,e)?l[e]=d[e]:l[e]=c("Symbol."+e)),l[e]}},b727:function(e,t,n){var r=n("0366"),a=n("44ad"),i=n("7b0b"),o=n("50c4"),s=n("65f0"),u=[].push,l=function(e){var t=1==e,n=2==e,l=3==e,d=4==e,c=6==e,f=5==e||c;return function(m,_,h,p){for(var v,y,g=i(m),M=a(g),b=r(_,h,3),L=o(M.length),w=0,Y=p||s,k=t?Y(m,L):n?Y(m,0):void 0;L>w;w++)if((f||w in M)&&(v=M[w],y=b(v,w,g),e))if(t)k[w]=y;else if(y)switch(e){case 3:return!0;case 5:return v;case 6:return w;case 2:u.call(k,v)}else if(d)return!1;return c?-1:l||d?d:k}};e.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6)}},b76a:function(e,t,n){(function(t,r){e.exports=r(n("aa47"))})("undefined"!==typeof self&&self,(function(e){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s="fb15")}({"01f9":function(e,t,n){"use strict";var r=n("2d00"),a=n("5ca1"),i=n("2aba"),o=n("32e9"),s=n("84f2"),u=n("41a0"),l=n("7f20"),d=n("38fd"),c=n("2b4c")("iterator"),f=!([].keys&&"next"in[].keys()),m="@@iterator",_="keys",h="values",p=function(){return this};e.exports=function(e,t,n,v,y,g,M){u(n,t,v);var b,L,w,Y=function(e){if(!f&&e in S)return S[e];switch(e){case _:return function(){return new n(this,e)};case h:return function(){return new n(this,e)}}return function(){return new n(this,e)}},k=t+" Iterator",D=y==h,T=!1,S=e.prototype,x=S[c]||S[m]||y&&S[y],E=x||Y(y),A=y?D?Y("entries"):E:void 0,O="Array"==t&&S.entries||x;if(O&&(w=d(O.call(new e)),w!==Object.prototype&&w.next&&(l(w,k,!0),r||"function"==typeof w[c]||o(w,c,p))),D&&x&&x.name!==h&&(T=!0,E=function(){return x.call(this)}),r&&!M||!f&&!T&&S[c]||o(S,c,E),s[t]=E,s[k]=p,y)if(b={values:D?E:Y(h),keys:g?E:Y(_),entries:A},M)for(L in b)L in S||i(S,L,b[L]);else a(a.P+a.F*(f||T),t,b);return b}},"02f4":function(e,t,n){var r=n("4588"),a=n("be13");e.exports=function(e){return function(t,n){var i,o,s=String(a(t)),u=r(n),l=s.length;return u<0||u>=l?e?"":void 0:(i=s.charCodeAt(u),i<55296||i>56319||u+1===l||(o=s.charCodeAt(u+1))<56320||o>57343?e?s.charAt(u):i:e?s.slice(u,u+2):o-56320+(i-55296<<10)+65536)}}},"0390":function(e,t,n){"use strict";var r=n("02f4")(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},"0bfb":function(e,t,n){"use strict";var r=n("cb7c");e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},"0d58":function(e,t,n){var r=n("ce10"),a=n("e11e");e.exports=Object.keys||function(e){return r(e,a)}},1495:function(e,t,n){var r=n("86cc"),a=n("cb7c"),i=n("0d58");e.exports=n("9e1e")?Object.defineProperties:function(e,t){a(e);var n,o=i(t),s=o.length,u=0;while(s>u)r.f(e,n=o[u++],t[n]);return e}},"214f":function(e,t,n){"use strict";n("b0c5");var r=n("2aba"),a=n("32e9"),i=n("79e5"),o=n("be13"),s=n("2b4c"),u=n("520a"),l=s("species"),d=!i((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$")})),c=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();e.exports=function(e,t,n){var f=s(e),m=!i((function(){var t={};return t[f]=function(){return 7},7!=""[e](t)})),_=m?!i((function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},"split"===e&&(n.constructor={},n.constructor[l]=function(){return n}),n[f](""),!t})):void 0;if(!m||!_||"replace"===e&&!d||"split"===e&&!c){var h=/./[f],p=n(o,f,""[e],(function(e,t,n,r,a){return t.exec===u?m&&!a?{done:!0,value:h.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}})),v=p[0],y=p[1];r(String.prototype,e,v),a(RegExp.prototype,f,2==t?function(e,t){return y.call(e,this,t)}:function(e){return y.call(e,this)})}}},"230e":function(e,t,n){var r=n("d3f4"),a=n("7726").document,i=r(a)&&r(a.createElement);e.exports=function(e){return i?a.createElement(e):{}}},"23c6":function(e,t,n){var r=n("2d95"),a=n("2b4c")("toStringTag"),i="Arguments"==r(function(){return arguments}()),o=function(e,t){try{return e[t]}catch(n){}};e.exports=function(e){var t,n,s;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=o(t=Object(e),a))?n:i?r(t):"Object"==(s=r(t))&&"function"==typeof t.callee?"Arguments":s}},2621:function(e,t){t.f=Object.getOwnPropertySymbols},"2aba":function(e,t,n){var r=n("7726"),a=n("32e9"),i=n("69a8"),o=n("ca5a")("src"),s=n("fa5b"),u="toString",l=(""+s).split(u);n("8378").inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var u="function"==typeof n;u&&(i(n,"name")||a(n,"name",t)),e[t]!==n&&(u&&(i(n,o)||a(n,o,e[t]?""+e[t]:l.join(String(t)))),e===r?e[t]=n:s?e[t]?e[t]=n:a(e,t,n):(delete e[t],a(e,t,n)))})(Function.prototype,u,(function(){return"function"==typeof this&&this[o]||s.call(this)}))},"2aeb":function(e,t,n){var r=n("cb7c"),a=n("1495"),i=n("e11e"),o=n("613b")("IE_PROTO"),s=function(){},u="prototype",l=function(){var e,t=n("230e")("iframe"),r=i.length,a="<",o=">";t.style.display="none",n("fab2").appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(a+"script"+o+"document.F=Object"+a+"/script"+o),e.close(),l=e.F;while(r--)delete l[u][i[r]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[u]=r(e),n=new s,s[u]=null,n[o]=e):n=l(),void 0===t?n:a(n,t)}},"2b4c":function(e,t,n){var r=n("5537")("wks"),a=n("ca5a"),i=n("7726").Symbol,o="function"==typeof i,s=e.exports=function(e){return r[e]||(r[e]=o&&i[e]||(o?i:a)("Symbol."+e))};s.store=r},"2d00":function(e,t){e.exports=!1},"2d95":function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},"2fdb":function(e,t,n){"use strict";var r=n("5ca1"),a=n("d2c8"),i="includes";r(r.P+r.F*n("5147")(i),"String",{includes:function(e){return!!~a(this,e,i).indexOf(e,arguments.length>1?arguments[1]:void 0)}})},"32e9":function(e,t,n){var r=n("86cc"),a=n("4630");e.exports=n("9e1e")?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},"38fd":function(e,t,n){var r=n("69a8"),a=n("4bf8"),i=n("613b")("IE_PROTO"),o=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=a(e),r(e,i)?e[i]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?o:null}},"41a0":function(e,t,n){"use strict";var r=n("2aeb"),a=n("4630"),i=n("7f20"),o={};n("32e9")(o,n("2b4c")("iterator"),(function(){return this})),e.exports=function(e,t,n){e.prototype=r(o,{next:a(1,n)}),i(e,t+" Iterator")}},"456d":function(e,t,n){var r=n("4bf8"),a=n("0d58");n("5eda")("keys",(function(){return function(e){return a(r(e))}}))},4588:function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},4630:function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},"4bf8":function(e,t,n){var r=n("be13");e.exports=function(e){return Object(r(e))}},5147:function(e,t,n){var r=n("2b4c")("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(a){}}return!0}},"520a":function(e,t,n){"use strict";var r=n("0bfb"),a=RegExp.prototype.exec,i=String.prototype.replace,o=a,s="lastIndex",u=function(){var e=/a/,t=/b*/g;return a.call(e,"a"),a.call(t,"a"),0!==e[s]||0!==t[s]}(),l=void 0!==/()??/.exec("")[1],d=u||l;d&&(o=function(e){var t,n,o,d,c=this;return l&&(n=new RegExp("^"+c.source+"$(?!\\s)",r.call(c))),u&&(t=c[s]),o=a.call(c,e),u&&o&&(c[s]=c.global?o.index+o[0].length:t),l&&o&&o.length>1&&i.call(o[0],n,(function(){for(d=1;d1?arguments[1]:void 0)}}),n("9c6c")("includes")},6821:function(e,t,n){var r=n("626a"),a=n("be13");e.exports=function(e){return r(a(e))}},"69a8":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},"6a99":function(e,t,n){var r=n("d3f4");e.exports=function(e,t){if(!r(e))return e;var n,a;if(t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;if("function"==typeof(n=e.valueOf)&&!r(a=n.call(e)))return a;if(!t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;throw TypeError("Can't convert object to primitive value")}},7333:function(e,t,n){"use strict";var r=n("0d58"),a=n("2621"),i=n("52a7"),o=n("4bf8"),s=n("626a"),u=Object.assign;e.exports=!u||n("79e5")((function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=r}))?function(e,t){var n=o(e),u=arguments.length,l=1,d=a.f,c=i.f;while(u>l){var f,m=s(arguments[l++]),_=d?r(m).concat(d(m)):r(m),h=_.length,p=0;while(h>p)c.call(m,f=_[p++])&&(n[f]=m[f])}return n}:u},7726:function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},"77f1":function(e,t,n){var r=n("4588"),a=Math.max,i=Math.min;e.exports=function(e,t){return e=r(e),e<0?a(e+t,0):i(e,t)}},"79e5":function(e,t){e.exports=function(e){try{return!!e()}catch(t){return!0}}},"7f20":function(e,t,n){var r=n("86cc").f,a=n("69a8"),i=n("2b4c")("toStringTag");e.exports=function(e,t,n){e&&!a(e=n?e:e.prototype,i)&&r(e,i,{configurable:!0,value:t})}},8378:function(e,t){var n=e.exports={version:"2.6.5"};"number"==typeof __e&&(__e=n)},"84f2":function(e,t){e.exports={}},"86cc":function(e,t,n){var r=n("cb7c"),a=n("c69a"),i=n("6a99"),o=Object.defineProperty;t.f=n("9e1e")?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),a)try{return o(e,t,n)}catch(s){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},"9b43":function(e,t,n){var r=n("d8e8");e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,a){return e.call(t,n,r,a)}}return function(){return e.apply(t,arguments)}}},"9c6c":function(e,t,n){var r=n("2b4c")("unscopables"),a=Array.prototype;void 0==a[r]&&n("32e9")(a,r,{}),e.exports=function(e){a[r][e]=!0}},"9def":function(e,t,n){var r=n("4588"),a=Math.min;e.exports=function(e){return e>0?a(r(e),9007199254740991):0}},"9e1e":function(e,t,n){e.exports=!n("79e5")((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},a352:function(t,n){t.exports=e},a481:function(e,t,n){"use strict";var r=n("cb7c"),a=n("4bf8"),i=n("9def"),o=n("4588"),s=n("0390"),u=n("5f1b"),l=Math.max,d=Math.min,c=Math.floor,f=/\$([$&`']|\d\d?|<[^>]*>)/g,m=/\$([$&`']|\d\d?)/g,_=function(e){return void 0===e?e:String(e)};n("214f")("replace",2,(function(e,t,n,h){return[function(r,a){var i=e(this),o=void 0==r?void 0:r[t];return void 0!==o?o.call(r,i,a):n.call(String(i),r,a)},function(e,t){var a=h(n,e,this,t);if(a.done)return a.value;var c=r(e),f=String(this),m="function"===typeof t;m||(t=String(t));var v=c.global;if(v){var y=c.unicode;c.lastIndex=0}var g=[];while(1){var M=u(c,f);if(null===M)break;if(g.push(M),!v)break;var b=String(M[0]);""===b&&(c.lastIndex=s(f,i(c.lastIndex),y))}for(var L="",w=0,Y=0;Y=w&&(L+=f.slice(w,D)+A,w=D+k.length)}return L+f.slice(w)}];function p(e,t,r,i,o,s){var u=r+e.length,l=i.length,d=m;return void 0!==o&&(o=a(o),d=f),n.call(s,d,(function(n,a){var s;switch(a.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,r);case"'":return t.slice(u);case"<":s=o[a.slice(1,-1)];break;default:var d=+a;if(0===d)return n;if(d>l){var f=c(d/10);return 0===f?n:f<=l?void 0===i[f-1]?a.charAt(1):i[f-1]+a.charAt(1):n}s=i[d-1]}return void 0===s?"":s}))}}))},aae3:function(e,t,n){var r=n("d3f4"),a=n("2d95"),i=n("2b4c")("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==a(e))}},ac6a:function(e,t,n){for(var r=n("cadf"),a=n("0d58"),i=n("2aba"),o=n("7726"),s=n("32e9"),u=n("84f2"),l=n("2b4c"),d=l("iterator"),c=l("toStringTag"),f=u.Array,m={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},_=a(m),h=0;h<_.length;h++){var p,v=_[h],y=m[v],g=o[v],M=g&&g.prototype;if(M&&(M[d]||s(M,d,f),M[c]||s(M,c,v),u[v]=f,y))for(p in r)M[p]||i(M,p,r[p],!0)}},b0c5:function(e,t,n){"use strict";var r=n("520a");n("5ca1")({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},be13:function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},c366:function(e,t,n){var r=n("6821"),a=n("9def"),i=n("77f1");e.exports=function(e){return function(t,n,o){var s,u=r(t),l=a(u.length),d=i(o,l);if(e&&n!=n){while(l>d)if(s=u[d++],s!=s)return!0}else for(;l>d;d++)if((e||d in u)&&u[d]===n)return e||d||0;return!e&&-1}}},c649:function(e,t,n){"use strict";(function(e){n.d(t,"c",(function(){return l})),n.d(t,"a",(function(){return s})),n.d(t,"b",(function(){return a})),n.d(t,"d",(function(){return u}));n("a481");function r(){return"undefined"!==typeof window?window.console:e.console}var a=r();function i(e){var t=Object.create(null);return function(n){var r=t[n];return r||(t[n]=e(n))}}var o=/-(\w)/g,s=i((function(e){return e.replace(o,(function(e,t){return t?t.toUpperCase():""}))}));function u(e){null!==e.parentElement&&e.parentElement.removeChild(e)}function l(e,t,n){var r=0===n?e.children[0]:e.children[n-1].nextSibling;e.insertBefore(t,r)}}).call(this,n("c8ba"))},c69a:function(e,t,n){e.exports=!n("9e1e")&&!n("79e5")((function(){return 7!=Object.defineProperty(n("230e")("div"),"a",{get:function(){return 7}}).a}))},c8ba:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}e.exports=n},ca5a:function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},cadf:function(e,t,n){"use strict";var r=n("9c6c"),a=n("d53b"),i=n("84f2"),o=n("6821");e.exports=n("01f9")(Array,"Array",(function(e,t){this._t=o(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,a(1)):a(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},cb7c:function(e,t,n){var r=n("d3f4");e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},ce10:function(e,t,n){var r=n("69a8"),a=n("6821"),i=n("c366")(!1),o=n("613b")("IE_PROTO");e.exports=function(e,t){var n,s=a(e),u=0,l=[];for(n in s)n!=o&&r(s,n)&&l.push(n);while(t.length>u)r(s,n=t[u++])&&(~i(l,n)||l.push(n));return l}},d2c8:function(e,t,n){var r=n("aae3"),a=n("be13");e.exports=function(e,t,n){if(r(t))throw TypeError("String#"+n+" doesn't accept regex!");return String(a(e))}},d3f4:function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},d53b:function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},d8e8:function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},e11e:function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},f559:function(e,t,n){"use strict";var r=n("5ca1"),a=n("9def"),i=n("d2c8"),o="startsWith",s=""[o];r(r.P+r.F*n("5147")(o),"String",{startsWith:function(e){var t=i(this,e,o),n=a(Math.min(arguments.length>1?arguments[1]:void 0,t.length)),r=String(e);return s?s.call(t,r,n):t.slice(n,n+r.length)===r}})},f6fd:function(e,t){(function(e){var t="currentScript",n=e.getElementsByTagName("script");t in e||Object.defineProperty(e,t,{get:function(){try{throw new Error}catch(r){var e,t=(/.*at [^\(]*\((.*):.+:.+\)$/gi.exec(r.stack)||[!1])[1];for(e in n)if(n[e].src==t||"interactive"==n[e].readyState)return n[e];return null}}})})(document)},f751:function(e,t,n){var r=n("5ca1");r(r.S+r.F,"Object",{assign:n("7333")})},fa5b:function(e,t,n){e.exports=n("5537")("native-function-to-string",Function.toString)},fab2:function(e,t,n){var r=n("7726").document;e.exports=r&&r.documentElement},fb15:function(e,t,n){"use strict";var r;(n.r(t),"undefined"!==typeof window)&&(n("f6fd"),(r=window.document.currentScript)&&(r=r.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(n.p=r[1]));n("f751"),n("f559"),n("ac6a"),n("cadf"),n("456d");function a(e){if(Array.isArray(e))return e}function i(e,t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,a=!1,i=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done);r=!0)if(n.push(o.value),t&&n.length===t)break}catch(u){a=!0,i=u}finally{try{r||null==s["return"]||s["return"]()}finally{if(a)throw i}}return n}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=i?a.length:a.indexOf(e)}));return n?o.filter((function(e){return-1!==e})):o}function M(e,t){var n=this;this.$nextTick((function(){return n.$emit(e.toLowerCase(),t)}))}function b(e){var t=this;return function(n){null!==t.realList&&t["onDrag"+e](n),M.call(t,e,n)}}function L(e){return["transition-group","TransitionGroup"].includes(e)}function w(e){if(!e||1!==e.length)return!1;var t=l(e,1),n=t[0].componentOptions;return!!n&&L(n.tag)}function Y(e,t,n){return e[n]||(t[n]?t[n]():void 0)}function k(e,t,n){var r=0,a=0,i=Y(t,n,"header");i&&(r=i.length,e=e?[].concat(m(i),m(e)):m(i));var o=Y(t,n,"footer");return o&&(a=o.length,e=e?[].concat(m(e),m(o)):m(o)),{children:e,headerOffset:r,footerOffset:a}}function D(e,t){var n=null,r=function(e,t){n=v(n,e,t)},a=Object.keys(e).filter((function(e){return"id"===e||e.startsWith("data-")})).reduce((function(t,n){return t[n]=e[n],t}),{});if(r("attrs",a),!t)return n;var i=t.on,o=t.props,s=t.attrs;return r("on",i),r("props",o),Object.assign(n.attrs,s),n}var T=["Start","Add","Remove","Update","End"],S=["Choose","Unchoose","Sort","Filter","Clone"],x=["Move"].concat(T,S).map((function(e){return"on"+e})),E=null,A={options:Object,list:{type:Array,required:!1,default:null},value:{type:Array,required:!1,default:null},noTransitionOnDrag:{type:Boolean,default:!1},clone:{type:Function,default:function(e){return e}},element:{type:String,default:"div"},tag:{type:String,default:null},move:{type:Function,default:null},componentData:{type:Object,required:!1,default:null}},O={name:"draggable",inheritAttrs:!1,props:A,data:function(){return{transitionMode:!1,noneFunctionalComponentMode:!1}},render:function(e){var t=this.$slots.default;this.transitionMode=w(t);var n=k(t,this.$slots,this.$scopedSlots),r=n.children,a=n.headerOffset,i=n.footerOffset;this.headerOffset=a,this.footerOffset=i;var o=D(this.$attrs,this.componentData);return e(this.getTag(),o,r)},created:function(){null!==this.list&&null!==this.value&&p["b"].error("Value and list props are mutually exclusive! Please set one or another."),"div"!==this.element&&p["b"].warn("Element props is deprecated please use tag props instead. See https://github.com/SortableJS/Vue.Draggable/blob/master/documentation/migrate.md#element-props"),void 0!==this.options&&p["b"].warn("Options props is deprecated, add sortable options directly as vue.draggable item, or use v-bind. See https://github.com/SortableJS/Vue.Draggable/blob/master/documentation/migrate.md#options-props")},mounted:function(){var e=this;if(this.noneFunctionalComponentMode=this.getTag().toLowerCase()!==this.$el.nodeName.toLowerCase()&&!this.getIsFunctional(),this.noneFunctionalComponentMode&&this.transitionMode)throw new Error("Transition-group inside component is not supported. Please alter tag value or remove transition-group. Current tag value: ".concat(this.getTag()));var t={};T.forEach((function(n){t["on"+n]=b.call(e,n)})),S.forEach((function(n){t["on"+n]=M.bind(e,n)}));var n=Object.keys(this.$attrs).reduce((function(t,n){return t[Object(p["a"])(n)]=e.$attrs[n],t}),{}),r=Object.assign({},this.options,n,t,{onMove:function(t,n){return e.onDragMove(t,n)}});!("draggable"in r)&&(r.draggable=">*"),this._sortable=new h.a(this.rootContainer,r),this.computeIndexes()},beforeDestroy:function(){void 0!==this._sortable&&this._sortable.destroy()},computed:{rootContainer:function(){return this.transitionMode?this.$el.children[0]:this.$el},realList:function(){return this.list?this.list:this.value}},watch:{options:{handler:function(e){this.updateOptions(e)},deep:!0},$attrs:{handler:function(e){this.updateOptions(e)},deep:!0},realList:function(){this.computeIndexes()}},methods:{getIsFunctional:function(){var e=this._vnode.fnOptions;return e&&e.functional},getTag:function(){return this.tag||this.element},updateOptions:function(e){for(var t in e){var n=Object(p["a"])(t);-1===x.indexOf(n)&&this._sortable.option(n,e[t])}},getChildrenNodes:function(){if(this.noneFunctionalComponentMode)return this.$children[0].$slots.default;var e=this.$slots.default;return this.transitionMode?e[0].child.$slots.default:e},computeIndexes:function(){var e=this;this.$nextTick((function(){e.visibleIndexes=g(e.getChildrenNodes(),e.rootContainer.children,e.transitionMode,e.footerOffset)}))},getUnderlyingVm:function(e){var t=y(this.getChildrenNodes()||[],e);if(-1===t)return null;var n=this.realList[t];return{index:t,element:n}},getUnderlyingPotencialDraggableComponent:function(e){var t=e.__vue__;return t&&t.$options&&L(t.$options._componentTag)?t.$parent:!("realList"in t)&&1===t.$children.length&&"realList"in t.$children[0]?t.$children[0]:t},emitChanges:function(e){var t=this;this.$nextTick((function(){t.$emit("change",e)}))},alterList:function(e){if(this.list)e(this.list);else{var t=m(this.value);e(t),this.$emit("input",t)}},spliceList:function(){var e=arguments,t=function(t){return t.splice.apply(t,m(e))};this.alterList(t)},updatePosition:function(e,t){var n=function(n){return n.splice(t,0,n.splice(e,1)[0])};this.alterList(n)},getRelatedContextFromMoveEvent:function(e){var t=e.to,n=e.related,r=this.getUnderlyingPotencialDraggableComponent(t);if(!r)return{component:r};var a=r.realList,i={list:a,component:r};if(t!==n&&a&&r.getUnderlyingVm){var o=r.getUnderlyingVm(n);if(o)return Object.assign(o,i)}return i},getVmIndex:function(e){var t=this.visibleIndexes,n=t.length;return e>n-1?n:t[e]},getComponent:function(){return this.$slots.default[0].componentInstance},resetTransitionData:function(e){if(this.noTransitionOnDrag&&this.transitionMode){var t=this.getChildrenNodes();t[e].data=null;var n=this.getComponent();n.children=[],n.kept=void 0}},onDragStart:function(e){this.context=this.getUnderlyingVm(e.item),e.item._underlying_vm_=this.clone(this.context.element),E=e.item},onDragAdd:function(e){var t=e.item._underlying_vm_;if(void 0!==t){Object(p["d"])(e.item);var n=this.getVmIndex(e.newIndex);this.spliceList(n,0,t),this.computeIndexes();var r={element:t,newIndex:n};this.emitChanges({added:r})}},onDragRemove:function(e){if(Object(p["c"])(this.rootContainer,e.item,e.oldIndex),"clone"!==e.pullMode){var t=this.context.index;this.spliceList(t,1);var n={element:this.context.element,oldIndex:t};this.resetTransitionData(t),this.emitChanges({removed:n})}else Object(p["d"])(e.clone)},onDragUpdate:function(e){Object(p["d"])(e.item),Object(p["c"])(e.from,e.item,e.oldIndex);var t=this.context.index,n=this.getVmIndex(e.newIndex);this.updatePosition(t,n);var r={element:this.context.element,oldIndex:t,newIndex:n};this.emitChanges({moved:r})},updateProperty:function(e,t){e.hasOwnProperty(t)&&(e[t]+=this.headerOffset)},computeFutureIndex:function(e,t){if(!e.element)return 0;var n=m(t.to.children).filter((function(e){return"none"!==e.style["display"]})),r=n.indexOf(t.related),a=e.component.getVmIndex(r),i=-1!==n.indexOf(E);return i||!t.willInsertAfter?a:a+1},onDragMove:function(e,t){var n=this.move;if(!n||!this.realList)return!0;var r=this.getRelatedContextFromMoveEvent(e),a=this.context,i=this.computeFutureIndex(r,e);Object.assign(a,{futureIndex:i});var o=Object.assign({},e,{relatedContext:r,draggedContext:a});return n(o,t)},onDragEnd:function(){this.computeIndexes(),E=null}}};"undefined"!==typeof window&&"Vue"in window&&window.Vue.component("draggable",O);var j=O;t["default"]=j}})["default"]}))},b7e9:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],a=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,i=e.defineLocale("es-mx",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:a,monthsShortRegex:a,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:4},invalidDate:"Fecha inválida"});return i}))},b622:function(e,t,n){var r=n("da84"),a=n("5692"),i=n("5135"),o=n("90e3"),s=n("4930"),u=n("fdbf"),l=a("wks"),d=r.Symbol,c=u?d:d&&d.withoutSetter||o;e.exports=function(e){return i(l,e)||(s&&i(d,e)?l[e]=d[e]:l[e]=c("Symbol."+e)),l[e]}},b727:function(e,t,n){var r=n("0366"),a=n("44ad"),i=n("7b0b"),o=n("50c4"),s=n("65f0"),u=[].push,l=function(e){var t=1==e,n=2==e,l=3==e,d=4==e,c=6==e,f=7==e,m=5==e||c;return function(_,h,p,v){for(var y,g,M=i(_),b=a(M),L=r(h,p,3),w=o(b.length),Y=0,k=v||s,D=t?k(_,w):n||f?k(_,0):void 0;w>Y;Y++)if((m||Y in b)&&(y=b[Y],g=L(y,Y,M),e))if(t)D[Y]=g;else if(g)switch(e){case 3:return!0;case 5:return y;case 6:return Y;case 2:u.call(D,y)}else switch(e){case 4:return!1;case 7:u.call(D,y)}return c?-1:l||d?d:D}};e.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6),filterOut:l(7)}},b76a:function(e,t,n){(function(t,r){e.exports=r(n("aa47"))})("undefined"!==typeof self&&self,(function(e){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s="fb15")}({"01f9":function(e,t,n){"use strict";var r=n("2d00"),a=n("5ca1"),i=n("2aba"),o=n("32e9"),s=n("84f2"),u=n("41a0"),l=n("7f20"),d=n("38fd"),c=n("2b4c")("iterator"),f=!([].keys&&"next"in[].keys()),m="@@iterator",_="keys",h="values",p=function(){return this};e.exports=function(e,t,n,v,y,g,M){u(n,t,v);var b,L,w,Y=function(e){if(!f&&e in S)return S[e];switch(e){case _:return function(){return new n(this,e)};case h:return function(){return new n(this,e)}}return function(){return new n(this,e)}},k=t+" Iterator",D=y==h,T=!1,S=e.prototype,x=S[c]||S[m]||y&&S[y],E=x||Y(y),A=y?D?Y("entries"):E:void 0,O="Array"==t&&S.entries||x;if(O&&(w=d(O.call(new e)),w!==Object.prototype&&w.next&&(l(w,k,!0),r||"function"==typeof w[c]||o(w,c,p))),D&&x&&x.name!==h&&(T=!0,E=function(){return x.call(this)}),r&&!M||!f&&!T&&S[c]||o(S,c,E),s[t]=E,s[k]=p,y)if(b={values:D?E:Y(h),keys:g?E:Y(_),entries:A},M)for(L in b)L in S||i(S,L,b[L]);else a(a.P+a.F*(f||T),t,b);return b}},"02f4":function(e,t,n){var r=n("4588"),a=n("be13");e.exports=function(e){return function(t,n){var i,o,s=String(a(t)),u=r(n),l=s.length;return u<0||u>=l?e?"":void 0:(i=s.charCodeAt(u),i<55296||i>56319||u+1===l||(o=s.charCodeAt(u+1))<56320||o>57343?e?s.charAt(u):i:e?s.slice(u,u+2):o-56320+(i-55296<<10)+65536)}}},"0390":function(e,t,n){"use strict";var r=n("02f4")(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},"0bfb":function(e,t,n){"use strict";var r=n("cb7c");e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},"0d58":function(e,t,n){var r=n("ce10"),a=n("e11e");e.exports=Object.keys||function(e){return r(e,a)}},1495:function(e,t,n){var r=n("86cc"),a=n("cb7c"),i=n("0d58");e.exports=n("9e1e")?Object.defineProperties:function(e,t){a(e);var n,o=i(t),s=o.length,u=0;while(s>u)r.f(e,n=o[u++],t[n]);return e}},"214f":function(e,t,n){"use strict";n("b0c5");var r=n("2aba"),a=n("32e9"),i=n("79e5"),o=n("be13"),s=n("2b4c"),u=n("520a"),l=s("species"),d=!i((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$")})),c=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();e.exports=function(e,t,n){var f=s(e),m=!i((function(){var t={};return t[f]=function(){return 7},7!=""[e](t)})),_=m?!i((function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},"split"===e&&(n.constructor={},n.constructor[l]=function(){return n}),n[f](""),!t})):void 0;if(!m||!_||"replace"===e&&!d||"split"===e&&!c){var h=/./[f],p=n(o,f,""[e],(function(e,t,n,r,a){return t.exec===u?m&&!a?{done:!0,value:h.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}})),v=p[0],y=p[1];r(String.prototype,e,v),a(RegExp.prototype,f,2==t?function(e,t){return y.call(e,this,t)}:function(e){return y.call(e,this)})}}},"230e":function(e,t,n){var r=n("d3f4"),a=n("7726").document,i=r(a)&&r(a.createElement);e.exports=function(e){return i?a.createElement(e):{}}},"23c6":function(e,t,n){var r=n("2d95"),a=n("2b4c")("toStringTag"),i="Arguments"==r(function(){return arguments}()),o=function(e,t){try{return e[t]}catch(n){}};e.exports=function(e){var t,n,s;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=o(t=Object(e),a))?n:i?r(t):"Object"==(s=r(t))&&"function"==typeof t.callee?"Arguments":s}},2621:function(e,t){t.f=Object.getOwnPropertySymbols},"2aba":function(e,t,n){var r=n("7726"),a=n("32e9"),i=n("69a8"),o=n("ca5a")("src"),s=n("fa5b"),u="toString",l=(""+s).split(u);n("8378").inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var u="function"==typeof n;u&&(i(n,"name")||a(n,"name",t)),e[t]!==n&&(u&&(i(n,o)||a(n,o,e[t]?""+e[t]:l.join(String(t)))),e===r?e[t]=n:s?e[t]?e[t]=n:a(e,t,n):(delete e[t],a(e,t,n)))})(Function.prototype,u,(function(){return"function"==typeof this&&this[o]||s.call(this)}))},"2aeb":function(e,t,n){var r=n("cb7c"),a=n("1495"),i=n("e11e"),o=n("613b")("IE_PROTO"),s=function(){},u="prototype",l=function(){var e,t=n("230e")("iframe"),r=i.length,a="<",o=">";t.style.display="none",n("fab2").appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(a+"script"+o+"document.F=Object"+a+"/script"+o),e.close(),l=e.F;while(r--)delete l[u][i[r]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[u]=r(e),n=new s,s[u]=null,n[o]=e):n=l(),void 0===t?n:a(n,t)}},"2b4c":function(e,t,n){var r=n("5537")("wks"),a=n("ca5a"),i=n("7726").Symbol,o="function"==typeof i,s=e.exports=function(e){return r[e]||(r[e]=o&&i[e]||(o?i:a)("Symbol."+e))};s.store=r},"2d00":function(e,t){e.exports=!1},"2d95":function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},"2fdb":function(e,t,n){"use strict";var r=n("5ca1"),a=n("d2c8"),i="includes";r(r.P+r.F*n("5147")(i),"String",{includes:function(e){return!!~a(this,e,i).indexOf(e,arguments.length>1?arguments[1]:void 0)}})},"32e9":function(e,t,n){var r=n("86cc"),a=n("4630");e.exports=n("9e1e")?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},"38fd":function(e,t,n){var r=n("69a8"),a=n("4bf8"),i=n("613b")("IE_PROTO"),o=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=a(e),r(e,i)?e[i]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?o:null}},"41a0":function(e,t,n){"use strict";var r=n("2aeb"),a=n("4630"),i=n("7f20"),o={};n("32e9")(o,n("2b4c")("iterator"),(function(){return this})),e.exports=function(e,t,n){e.prototype=r(o,{next:a(1,n)}),i(e,t+" Iterator")}},"456d":function(e,t,n){var r=n("4bf8"),a=n("0d58");n("5eda")("keys",(function(){return function(e){return a(r(e))}}))},4588:function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},4630:function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},"4bf8":function(e,t,n){var r=n("be13");e.exports=function(e){return Object(r(e))}},5147:function(e,t,n){var r=n("2b4c")("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(a){}}return!0}},"520a":function(e,t,n){"use strict";var r=n("0bfb"),a=RegExp.prototype.exec,i=String.prototype.replace,o=a,s="lastIndex",u=function(){var e=/a/,t=/b*/g;return a.call(e,"a"),a.call(t,"a"),0!==e[s]||0!==t[s]}(),l=void 0!==/()??/.exec("")[1],d=u||l;d&&(o=function(e){var t,n,o,d,c=this;return l&&(n=new RegExp("^"+c.source+"$(?!\\s)",r.call(c))),u&&(t=c[s]),o=a.call(c,e),u&&o&&(c[s]=c.global?o.index+o[0].length:t),l&&o&&o.length>1&&i.call(o[0],n,(function(){for(d=1;d1?arguments[1]:void 0)}}),n("9c6c")("includes")},6821:function(e,t,n){var r=n("626a"),a=n("be13");e.exports=function(e){return r(a(e))}},"69a8":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},"6a99":function(e,t,n){var r=n("d3f4");e.exports=function(e,t){if(!r(e))return e;var n,a;if(t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;if("function"==typeof(n=e.valueOf)&&!r(a=n.call(e)))return a;if(!t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;throw TypeError("Can't convert object to primitive value")}},7333:function(e,t,n){"use strict";var r=n("0d58"),a=n("2621"),i=n("52a7"),o=n("4bf8"),s=n("626a"),u=Object.assign;e.exports=!u||n("79e5")((function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=r}))?function(e,t){var n=o(e),u=arguments.length,l=1,d=a.f,c=i.f;while(u>l){var f,m=s(arguments[l++]),_=d?r(m).concat(d(m)):r(m),h=_.length,p=0;while(h>p)c.call(m,f=_[p++])&&(n[f]=m[f])}return n}:u},7726:function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},"77f1":function(e,t,n){var r=n("4588"),a=Math.max,i=Math.min;e.exports=function(e,t){return e=r(e),e<0?a(e+t,0):i(e,t)}},"79e5":function(e,t){e.exports=function(e){try{return!!e()}catch(t){return!0}}},"7f20":function(e,t,n){var r=n("86cc").f,a=n("69a8"),i=n("2b4c")("toStringTag");e.exports=function(e,t,n){e&&!a(e=n?e:e.prototype,i)&&r(e,i,{configurable:!0,value:t})}},8378:function(e,t){var n=e.exports={version:"2.6.5"};"number"==typeof __e&&(__e=n)},"84f2":function(e,t){e.exports={}},"86cc":function(e,t,n){var r=n("cb7c"),a=n("c69a"),i=n("6a99"),o=Object.defineProperty;t.f=n("9e1e")?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),a)try{return o(e,t,n)}catch(s){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},"9b43":function(e,t,n){var r=n("d8e8");e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,a){return e.call(t,n,r,a)}}return function(){return e.apply(t,arguments)}}},"9c6c":function(e,t,n){var r=n("2b4c")("unscopables"),a=Array.prototype;void 0==a[r]&&n("32e9")(a,r,{}),e.exports=function(e){a[r][e]=!0}},"9def":function(e,t,n){var r=n("4588"),a=Math.min;e.exports=function(e){return e>0?a(r(e),9007199254740991):0}},"9e1e":function(e,t,n){e.exports=!n("79e5")((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},a352:function(t,n){t.exports=e},a481:function(e,t,n){"use strict";var r=n("cb7c"),a=n("4bf8"),i=n("9def"),o=n("4588"),s=n("0390"),u=n("5f1b"),l=Math.max,d=Math.min,c=Math.floor,f=/\$([$&`']|\d\d?|<[^>]*>)/g,m=/\$([$&`']|\d\d?)/g,_=function(e){return void 0===e?e:String(e)};n("214f")("replace",2,(function(e,t,n,h){return[function(r,a){var i=e(this),o=void 0==r?void 0:r[t];return void 0!==o?o.call(r,i,a):n.call(String(i),r,a)},function(e,t){var a=h(n,e,this,t);if(a.done)return a.value;var c=r(e),f=String(this),m="function"===typeof t;m||(t=String(t));var v=c.global;if(v){var y=c.unicode;c.lastIndex=0}var g=[];while(1){var M=u(c,f);if(null===M)break;if(g.push(M),!v)break;var b=String(M[0]);""===b&&(c.lastIndex=s(f,i(c.lastIndex),y))}for(var L="",w=0,Y=0;Y=w&&(L+=f.slice(w,D)+A,w=D+k.length)}return L+f.slice(w)}];function p(e,t,r,i,o,s){var u=r+e.length,l=i.length,d=m;return void 0!==o&&(o=a(o),d=f),n.call(s,d,(function(n,a){var s;switch(a.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,r);case"'":return t.slice(u);case"<":s=o[a.slice(1,-1)];break;default:var d=+a;if(0===d)return n;if(d>l){var f=c(d/10);return 0===f?n:f<=l?void 0===i[f-1]?a.charAt(1):i[f-1]+a.charAt(1):n}s=i[d-1]}return void 0===s?"":s}))}}))},aae3:function(e,t,n){var r=n("d3f4"),a=n("2d95"),i=n("2b4c")("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==a(e))}},ac6a:function(e,t,n){for(var r=n("cadf"),a=n("0d58"),i=n("2aba"),o=n("7726"),s=n("32e9"),u=n("84f2"),l=n("2b4c"),d=l("iterator"),c=l("toStringTag"),f=u.Array,m={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},_=a(m),h=0;h<_.length;h++){var p,v=_[h],y=m[v],g=o[v],M=g&&g.prototype;if(M&&(M[d]||s(M,d,f),M[c]||s(M,c,v),u[v]=f,y))for(p in r)M[p]||i(M,p,r[p],!0)}},b0c5:function(e,t,n){"use strict";var r=n("520a");n("5ca1")({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},be13:function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},c366:function(e,t,n){var r=n("6821"),a=n("9def"),i=n("77f1");e.exports=function(e){return function(t,n,o){var s,u=r(t),l=a(u.length),d=i(o,l);if(e&&n!=n){while(l>d)if(s=u[d++],s!=s)return!0}else for(;l>d;d++)if((e||d in u)&&u[d]===n)return e||d||0;return!e&&-1}}},c649:function(e,t,n){"use strict";(function(e){n.d(t,"c",(function(){return l})),n.d(t,"a",(function(){return s})),n.d(t,"b",(function(){return a})),n.d(t,"d",(function(){return u}));n("a481");function r(){return"undefined"!==typeof window?window.console:e.console}var a=r();function i(e){var t=Object.create(null);return function(n){var r=t[n];return r||(t[n]=e(n))}}var o=/-(\w)/g,s=i((function(e){return e.replace(o,(function(e,t){return t?t.toUpperCase():""}))}));function u(e){null!==e.parentElement&&e.parentElement.removeChild(e)}function l(e,t,n){var r=0===n?e.children[0]:e.children[n-1].nextSibling;e.insertBefore(t,r)}}).call(this,n("c8ba"))},c69a:function(e,t,n){e.exports=!n("9e1e")&&!n("79e5")((function(){return 7!=Object.defineProperty(n("230e")("div"),"a",{get:function(){return 7}}).a}))},c8ba:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}e.exports=n},ca5a:function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},cadf:function(e,t,n){"use strict";var r=n("9c6c"),a=n("d53b"),i=n("84f2"),o=n("6821");e.exports=n("01f9")(Array,"Array",(function(e,t){this._t=o(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,a(1)):a(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},cb7c:function(e,t,n){var r=n("d3f4");e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},ce10:function(e,t,n){var r=n("69a8"),a=n("6821"),i=n("c366")(!1),o=n("613b")("IE_PROTO");e.exports=function(e,t){var n,s=a(e),u=0,l=[];for(n in s)n!=o&&r(s,n)&&l.push(n);while(t.length>u)r(s,n=t[u++])&&(~i(l,n)||l.push(n));return l}},d2c8:function(e,t,n){var r=n("aae3"),a=n("be13");e.exports=function(e,t,n){if(r(t))throw TypeError("String#"+n+" doesn't accept regex!");return String(a(e))}},d3f4:function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},d53b:function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},d8e8:function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},e11e:function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},f559:function(e,t,n){"use strict";var r=n("5ca1"),a=n("9def"),i=n("d2c8"),o="startsWith",s=""[o];r(r.P+r.F*n("5147")(o),"String",{startsWith:function(e){var t=i(this,e,o),n=a(Math.min(arguments.length>1?arguments[1]:void 0,t.length)),r=String(e);return s?s.call(t,r,n):t.slice(n,n+r.length)===r}})},f6fd:function(e,t){(function(e){var t="currentScript",n=e.getElementsByTagName("script");t in e||Object.defineProperty(e,t,{get:function(){try{throw new Error}catch(r){var e,t=(/.*at [^\(]*\((.*):.+:.+\)$/gi.exec(r.stack)||[!1])[1];for(e in n)if(n[e].src==t||"interactive"==n[e].readyState)return n[e];return null}}})})(document)},f751:function(e,t,n){var r=n("5ca1");r(r.S+r.F,"Object",{assign:n("7333")})},fa5b:function(e,t,n){e.exports=n("5537")("native-function-to-string",Function.toString)},fab2:function(e,t,n){var r=n("7726").document;e.exports=r&&r.documentElement},fb15:function(e,t,n){"use strict";var r;(n.r(t),"undefined"!==typeof window)&&(n("f6fd"),(r=window.document.currentScript)&&(r=r.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(n.p=r[1]));n("f751"),n("f559"),n("ac6a"),n("cadf"),n("456d");function a(e){if(Array.isArray(e))return e}function i(e,t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,a=!1,i=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done);r=!0)if(n.push(o.value),t&&n.length===t)break}catch(u){a=!0,i=u}finally{try{r||null==s["return"]||s["return"]()}finally{if(a)throw i}}return n}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=i?a.length:a.indexOf(e)}));return n?o.filter((function(e){return-1!==e})):o}function M(e,t){var n=this;this.$nextTick((function(){return n.$emit(e.toLowerCase(),t)}))}function b(e){var t=this;return function(n){null!==t.realList&&t["onDrag"+e](n),M.call(t,e,n)}}function L(e){return["transition-group","TransitionGroup"].includes(e)}function w(e){if(!e||1!==e.length)return!1;var t=l(e,1),n=t[0].componentOptions;return!!n&&L(n.tag)}function Y(e,t,n){return e[n]||(t[n]?t[n]():void 0)}function k(e,t,n){var r=0,a=0,i=Y(t,n,"header");i&&(r=i.length,e=e?[].concat(m(i),m(e)):m(i));var o=Y(t,n,"footer");return o&&(a=o.length,e=e?[].concat(m(e),m(o)):m(o)),{children:e,headerOffset:r,footerOffset:a}}function D(e,t){var n=null,r=function(e,t){n=v(n,e,t)},a=Object.keys(e).filter((function(e){return"id"===e||e.startsWith("data-")})).reduce((function(t,n){return t[n]=e[n],t}),{});if(r("attrs",a),!t)return n;var i=t.on,o=t.props,s=t.attrs;return r("on",i),r("props",o),Object.assign(n.attrs,s),n}var T=["Start","Add","Remove","Update","End"],S=["Choose","Unchoose","Sort","Filter","Clone"],x=["Move"].concat(T,S).map((function(e){return"on"+e})),E=null,A={options:Object,list:{type:Array,required:!1,default:null},value:{type:Array,required:!1,default:null},noTransitionOnDrag:{type:Boolean,default:!1},clone:{type:Function,default:function(e){return e}},element:{type:String,default:"div"},tag:{type:String,default:null},move:{type:Function,default:null},componentData:{type:Object,required:!1,default:null}},O={name:"draggable",inheritAttrs:!1,props:A,data:function(){return{transitionMode:!1,noneFunctionalComponentMode:!1}},render:function(e){var t=this.$slots.default;this.transitionMode=w(t);var n=k(t,this.$slots,this.$scopedSlots),r=n.children,a=n.headerOffset,i=n.footerOffset;this.headerOffset=a,this.footerOffset=i;var o=D(this.$attrs,this.componentData);return e(this.getTag(),o,r)},created:function(){null!==this.list&&null!==this.value&&p["b"].error("Value and list props are mutually exclusive! Please set one or another."),"div"!==this.element&&p["b"].warn("Element props is deprecated please use tag props instead. See https://github.com/SortableJS/Vue.Draggable/blob/master/documentation/migrate.md#element-props"),void 0!==this.options&&p["b"].warn("Options props is deprecated, add sortable options directly as vue.draggable item, or use v-bind. See https://github.com/SortableJS/Vue.Draggable/blob/master/documentation/migrate.md#options-props")},mounted:function(){var e=this;if(this.noneFunctionalComponentMode=this.getTag().toLowerCase()!==this.$el.nodeName.toLowerCase()&&!this.getIsFunctional(),this.noneFunctionalComponentMode&&this.transitionMode)throw new Error("Transition-group inside component is not supported. Please alter tag value or remove transition-group. Current tag value: ".concat(this.getTag()));var t={};T.forEach((function(n){t["on"+n]=b.call(e,n)})),S.forEach((function(n){t["on"+n]=M.bind(e,n)}));var n=Object.keys(this.$attrs).reduce((function(t,n){return t[Object(p["a"])(n)]=e.$attrs[n],t}),{}),r=Object.assign({},this.options,n,t,{onMove:function(t,n){return e.onDragMove(t,n)}});!("draggable"in r)&&(r.draggable=">*"),this._sortable=new h.a(this.rootContainer,r),this.computeIndexes()},beforeDestroy:function(){void 0!==this._sortable&&this._sortable.destroy()},computed:{rootContainer:function(){return this.transitionMode?this.$el.children[0]:this.$el},realList:function(){return this.list?this.list:this.value}},watch:{options:{handler:function(e){this.updateOptions(e)},deep:!0},$attrs:{handler:function(e){this.updateOptions(e)},deep:!0},realList:function(){this.computeIndexes()}},methods:{getIsFunctional:function(){var e=this._vnode.fnOptions;return e&&e.functional},getTag:function(){return this.tag||this.element},updateOptions:function(e){for(var t in e){var n=Object(p["a"])(t);-1===x.indexOf(n)&&this._sortable.option(n,e[t])}},getChildrenNodes:function(){if(this.noneFunctionalComponentMode)return this.$children[0].$slots.default;var e=this.$slots.default;return this.transitionMode?e[0].child.$slots.default:e},computeIndexes:function(){var e=this;this.$nextTick((function(){e.visibleIndexes=g(e.getChildrenNodes(),e.rootContainer.children,e.transitionMode,e.footerOffset)}))},getUnderlyingVm:function(e){var t=y(this.getChildrenNodes()||[],e);if(-1===t)return null;var n=this.realList[t];return{index:t,element:n}},getUnderlyingPotencialDraggableComponent:function(e){var t=e.__vue__;return t&&t.$options&&L(t.$options._componentTag)?t.$parent:!("realList"in t)&&1===t.$children.length&&"realList"in t.$children[0]?t.$children[0]:t},emitChanges:function(e){var t=this;this.$nextTick((function(){t.$emit("change",e)}))},alterList:function(e){if(this.list)e(this.list);else{var t=m(this.value);e(t),this.$emit("input",t)}},spliceList:function(){var e=arguments,t=function(t){return t.splice.apply(t,m(e))};this.alterList(t)},updatePosition:function(e,t){var n=function(n){return n.splice(t,0,n.splice(e,1)[0])};this.alterList(n)},getRelatedContextFromMoveEvent:function(e){var t=e.to,n=e.related,r=this.getUnderlyingPotencialDraggableComponent(t);if(!r)return{component:r};var a=r.realList,i={list:a,component:r};if(t!==n&&a&&r.getUnderlyingVm){var o=r.getUnderlyingVm(n);if(o)return Object.assign(o,i)}return i},getVmIndex:function(e){var t=this.visibleIndexes,n=t.length;return e>n-1?n:t[e]},getComponent:function(){return this.$slots.default[0].componentInstance},resetTransitionData:function(e){if(this.noTransitionOnDrag&&this.transitionMode){var t=this.getChildrenNodes();t[e].data=null;var n=this.getComponent();n.children=[],n.kept=void 0}},onDragStart:function(e){this.context=this.getUnderlyingVm(e.item),e.item._underlying_vm_=this.clone(this.context.element),E=e.item},onDragAdd:function(e){var t=e.item._underlying_vm_;if(void 0!==t){Object(p["d"])(e.item);var n=this.getVmIndex(e.newIndex);this.spliceList(n,0,t),this.computeIndexes();var r={element:t,newIndex:n};this.emitChanges({added:r})}},onDragRemove:function(e){if(Object(p["c"])(this.rootContainer,e.item,e.oldIndex),"clone"!==e.pullMode){var t=this.context.index;this.spliceList(t,1);var n={element:this.context.element,oldIndex:t};this.resetTransitionData(t),this.emitChanges({removed:n})}else Object(p["d"])(e.clone)},onDragUpdate:function(e){Object(p["d"])(e.item),Object(p["c"])(e.from,e.item,e.oldIndex);var t=this.context.index,n=this.getVmIndex(e.newIndex);this.updatePosition(t,n);var r={element:this.context.element,oldIndex:t,newIndex:n};this.emitChanges({moved:r})},updateProperty:function(e,t){e.hasOwnProperty(t)&&(e[t]+=this.headerOffset)},computeFutureIndex:function(e,t){if(!e.element)return 0;var n=m(t.to.children).filter((function(e){return"none"!==e.style["display"]})),r=n.indexOf(t.related),a=e.component.getVmIndex(r),i=-1!==n.indexOf(E);return i||!t.willInsertAfter?a:a+1},onDragMove:function(e,t){var n=this.move;if(!n||!this.realList)return!0;var r=this.getRelatedContextFromMoveEvent(e),a=this.context,i=this.computeFutureIndex(r,e);Object.assign(a,{futureIndex:i});var o=Object.assign({},e,{relatedContext:r,draggedContext:a});return n(o,t)},onDragEnd:function(){this.computeIndexes(),E=null}}};"undefined"!==typeof window&&"Vue"in window&&window.Vue.component("draggable",O);var j=O;t["default"]=j}})["default"]}))},b7e9:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t=e.defineLocale("en-sg",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:1,doy:4}});return t}))},b84c:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration @@ -270,7 +270,7 @@ var t=e.defineLocale("he",{months:"ינואר_פברואר_מרץ_אפריל_מ * https://github.com/ktsn/vue-range-slider/blob/master/LICENSE */var r={created:function(){"undefined"!==typeof document&&o(this,(function(e,t){s(document,e,t)}))},beforeDestroy:function(){"undefined"!==typeof document&&o(this,(function(e,t){u(document,e,t)}))}},a="undefined"!==typeof window,i=a&&function(){var e=!1;try{var t={get:function(){e=!0}},n=Object.defineProperty({},"passive",t);window.addEventListener("test",null,n),window.removeEventListener("test",null,n)}catch(r){e=!1}return e}();function o(e,t){var n=e.$options.events;Object.keys(n).forEach((function(r){t(r,(function(t){return n[r].call(e,t)}))}))}function s(e,t,n){var r=i?{passive:!1}:void 0;e.addEventListener(t,n,r)}function u(e,t,n){var r=i?{passive:!1}:void 0;e.removeEventListener(t,n,r)}function l(e,t){var n=t.getBoundingClientRect();return{left:e.clientX-n.left,top:e.clientY-n.top}}function d(e,t,n,r){if(e<=t)return t;var a=Math.floor((n-t)/r)*r+t;if(e>=a)return a;var i=(e-t)/r,o=Math.floor(i),s=i-o;return 0===s?e:s<.5?r*o+t:r*(o+1)+t}var c={mixins:[r],props:{disabled:Boolean},data:function(){return{isDrag:!1}},events:{mousedown:function(e){return this.dragStart(e,this.offsetByMouse)},mousemove:function(e){return this.dragMove(e,this.offsetByMouse)},mouseup:function(e){return this.dragEnd(e,this.offsetByMouse)},touchstart:function(e){return this.dragStart(e,this.offsetByTouch)},touchmove:function(e){return this.dragMove(e,this.offsetByTouch)},touchend:function(e){return this.dragEnd(e,this.offsetByTouch)},touchcancel:function(e){return this.dragEnd(e,this.offsetByTouch)}},methods:{isInTarget:function(e){return!!e&&(e===this.$el||this.isInTarget(e.parentElement))},offsetByMouse:function(e){return l(e,this.$el)},offsetByTouch:function(e){var t=0===e.touches.length?e.changedTouches[0]:e.touches[0];return l(t,this.$el)},dragStart:function(e,t){this.disabled||void 0!==e.button&&0!==e.button||!this.isInTarget(e.target)||(e.preventDefault(),this.isDrag=!0,this.$emit("dragstart",e,t(e),this.$el))},dragMove:function(e,t){this.isDrag&&(e.preventDefault(),this.$emit("drag",e,t(e),this.$el))},dragEnd:function(e,t){this.isDrag&&(e.preventDefault(),this.isDrag=!1,this.$emit("dragend",e,t(e),this.$el))}},render:function(){return this.$slots.default&&this.$slots.default[0]}},f={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"range-slider",class:{disabled:e.disabled}},[n("drag-helper",{attrs:{disabled:e.disabled},on:{dragstart:e.dragStart,drag:e.drag,dragend:e.dragEnd}},[n("span",{ref:"inner",staticClass:"range-slider-inner"},[n("input",{staticClass:"range-slider-hidden",attrs:{type:"text",name:e.name,disabled:e.disabled},domProps:{value:e.actualValue}}),e._v(" "),n("span",{staticClass:"range-slider-rail"}),e._v(" "),n("span",{staticClass:"range-slider-fill",style:{width:e.valuePercent+"%"}}),e._v(" "),n("span",{ref:"knob",staticClass:"range-slider-knob",style:{left:e.valuePercent+"%"}},[e._t("knob")],2)])])],1)},staticRenderFns:[],props:{name:String,value:[String,Number],disabled:{type:Boolean,default:!1},min:{type:[String,Number],default:0},max:{type:[String,Number],default:100},step:{type:[String,Number],default:1}},data:function(){return{actualValue:null,dragStartValue:null}},created:function(){var e=this._min,t=this._max,n=Number(this.value);(null==this.value||isNaN(n))&&(n=e>t?e:(e+t)/2),this.actualValue=this.round(n)},computed:{_min:function(){return Number(this.min)},_max:function(){return Number(this.max)},_step:function(){return Number(this.step)},valuePercent:function(){return(this.actualValue-this._min)/(this._max-this._min)*100}},watch:{value:function(e){var t=Number(e);null==e||isNaN(t)||(this.actualValue=this.round(t))},min:function(){this.actualValue=this.round(this.actualValue)},max:function(){this.actualValue=this.round(this.actualValue)}},methods:{dragStart:function(e,t){this.dragStartValue=this.actualValue,e.target!==this.$refs.knob&&this.drag(e,t)},drag:function(e,t){var n=this.$refs.inner.offsetWidth;this.actualValue=this.round(this.valueFromBounds(t.left,n)),this.emitInput(this.actualValue)},dragEnd:function(e,t){var n=this.$refs.inner.offsetWidth;this.actualValue=this.round(this.valueFromBounds(t.left,n)),this.dragStartValue!==this.actualValue&&this.emitChange(this.actualValue)},emitInput:function(e){this.$emit("input",e)},emitChange:function(e){this.$emit("change",e)},valueFromBounds:function(e,t){return e/t*(this._max-this._min)+this._min},round:function(e){return d(e,this._min,this._max,this._step)}},components:{DragHelper:c}};e.exports=f},c8af:function(e,t,n){"use strict";var r=n("c532");e.exports=function(e,t){r.forEach(e,(function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])}))}},c8ba:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}e.exports=n},c8d2:function(e,t,n){var r=n("d039"),a=n("5899"),i="​…᠎";e.exports=function(e){return r((function(){return!!a[e]()||i[e]()!=i||a[e].name!==e}))}},c8f3:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),weekdays:"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë".split("_"),weekdaysShort:"Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_Më_E_P_Sh".split("_"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return"M"===e.charAt(0)},meridiem:function(e,t,n){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot në] LT",nextDay:"[Nesër në] LT",nextWeek:"dddd [në] LT",lastDay:"[Dje në] LT",lastWeek:"dddd [e kaluar në] LT",sameElse:"L"},relativeTime:{future:"në %s",past:"%s më parë",s:"disa sekonda",ss:"%d sekonda",m:"një minutë",mm:"%d minuta",h:"një orë",hh:"%d orë",d:"një ditë",dd:"%d ditë",M:"një muaj",MM:"%d muaj",y:"një vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}))},c975:function(e,t,n){"use strict";var r=n("23e7"),a=n("4d64").indexOf,i=n("a640"),o=n("ae40"),s=[].indexOf,u=!!s&&1/[1].indexOf(1,-0)<0,l=i("indexOf"),d=o("indexOf",{ACCESSORS:!0,1:0});r({target:"Array",proto:!0,forced:u||!l||!d},{indexOf:function(e){return u?s.apply(this,arguments)||0:a(this,e,arguments.length>1?arguments[1]:void 0)}})},ca84:function(e,t,n){var r=n("5135"),a=n("fc6a"),i=n("4d64").indexOf,o=n("d012");e.exports=function(e,t){var n,s=a(e),u=0,l=[];for(n in s)!r(o,n)&&r(s,n)&&l.push(n);while(t.length>u)r(s,n=t[u++])&&(~i(l,n)||l.push(n));return l}},caad:function(e,t,n){"use strict";var r=n("23e7"),a=n("4d64").includes,i=n("44d2"),o=n("ae40"),s=o("indexOf",{ACCESSORS:!0,1:0});r({target:"Array",proto:!0,forced:!s},{includes:function(e){return a(this,e,arguments.length>1?arguments[1]:void 0)}}),i("includes")},cc12:function(e,t,n){var r=n("da84"),a=n("861d"),i=r.document,o=a(i)&&a(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},cca6:function(e,t,n){var r=n("23e7"),a=n("60da");r({target:"Object",stat:!0,forced:Object.assign!==a},{assign:a})},cdf9:function(e,t,n){var r=n("825a"),a=n("861d"),i=n("f069");e.exports=function(e,t){if(r(e),a(t)&&t.constructor===e)return t;var n=i.f(e),o=n.resolve;return o(t),n.promise}},ce4e:function(e,t,n){var r=n("da84"),a=n("9112");e.exports=function(e,t){try{a(r,e,t)}catch(n){r[e]=t}return t}},cee4:function(e,t,n){"use strict";var r=n("c532"),a=n("1d2b"),i=n("0a06"),o=n("4a7b"),s=n("2444");function u(e){var t=new i(e),n=a(i.prototype.request,t);return r.extend(n,i.prototype,t),r.extend(n,t),n}var l=u(s);l.Axios=i,l.create=function(e){return u(o(l.defaults,e))},l.Cancel=n("7a77"),l.CancelToken=n("8df4b"),l.isCancel=n("2e67"),l.all=function(e){return Promise.all(e)},l.spread=n("0df6"),e.exports=l,e.exports.default=l},cf1e:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var t=e.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),weekdays:"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë".split("_"),weekdaysShort:"Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_Më_E_P_Sh".split("_"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return"M"===e.charAt(0)},meridiem:function(e,t,n){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot në] LT",nextDay:"[Nesër në] LT",nextWeek:"dddd [në] LT",lastDay:"[Dje në] LT",lastWeek:"dddd [e kaluar në] LT",sameElse:"L"},relativeTime:{future:"në %s",past:"%s më parë",s:"disa sekonda",ss:"%d sekonda",m:"një minutë",mm:"%d minuta",h:"një orë",hh:"%d orë",d:"një ditë",dd:"%d ditë",M:"një muaj",MM:"%d muaj",y:"një vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}))},c975:function(e,t,n){"use strict";var r=n("23e7"),a=n("4d64").indexOf,i=n("a640"),o=n("ae40"),s=[].indexOf,u=!!s&&1/[1].indexOf(1,-0)<0,l=i("indexOf"),d=o("indexOf",{ACCESSORS:!0,1:0});r({target:"Array",proto:!0,forced:u||!l||!d},{indexOf:function(e){return u?s.apply(this,arguments)||0:a(this,e,arguments.length>1?arguments[1]:void 0)}})},ca84:function(e,t,n){var r=n("5135"),a=n("fc6a"),i=n("4d64").indexOf,o=n("d012");e.exports=function(e,t){var n,s=a(e),u=0,l=[];for(n in s)!r(o,n)&&r(s,n)&&l.push(n);while(t.length>u)r(s,n=t[u++])&&(~i(l,n)||l.push(n));return l}},caad:function(e,t,n){"use strict";var r=n("23e7"),a=n("4d64").includes,i=n("44d2"),o=n("ae40"),s=o("indexOf",{ACCESSORS:!0,1:0});r({target:"Array",proto:!0,forced:!s},{includes:function(e){return a(this,e,arguments.length>1?arguments[1]:void 0)}}),i("includes")},cc12:function(e,t,n){var r=n("da84"),a=n("861d"),i=r.document,o=a(i)&&a(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},cca6:function(e,t,n){var r=n("23e7"),a=n("60da");r({target:"Object",stat:!0,forced:Object.assign!==a},{assign:a})},cdf9:function(e,t,n){var r=n("825a"),a=n("861d"),i=n("f069");e.exports=function(e,t){if(r(e),a(t)&&t.constructor===e)return t;var n=i.f(e),o=n.resolve;return o(t),n.promise}},ce4e:function(e,t,n){var r=n("da84"),a=n("9112");e.exports=function(e,t){try{a(r,e,t)}catch(n){r[e]=t}return t}},cee4:function(e,t,n){"use strict";var r=n("c532"),a=n("1d2b"),i=n("0a06"),o=n("4a7b"),s=n("2444");function u(e){var t=new i(e),n=a(i.prototype.request,t);return r.extend(n,i.prototype,t),r.extend(n,t),n}var l=u(s);l.Axios=i,l.create=function(e){return u(o(l.defaults,e))},l.Cancel=n("7a77"),l.CancelToken=n("8df4b"),l.isCancel=n("2e67"),l.all=function(e){return Promise.all(e)},l.spread=n("0df6"),l.isAxiosError=n("5f02"),e.exports=l,e.exports.default=l},cf1e:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration var t={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var a=t.words[r];return 1===r.length?n?a[0]:a[1]:e+" "+t.correctGrammaticalCase(e,a)}},n=e.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){var e=["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},cf51:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; //! moment.js locale configuration diff --git a/htdocs/player/js/chunk-vendors-legacy.js.map b/htdocs/player/js/chunk-vendors-legacy.js.map index 22ea68e4..c69b7045 100644 --- a/htdocs/player/js/chunk-vendors-legacy.js.map +++ b/htdocs/player/js/chunk-vendors-legacy.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///./node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/moment/locale/uz-latn.js","webpack:///./node_modules/moment/locale/ml.js","webpack:///./node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/moment/locale/cv.js","webpack:///./node_modules/moment/locale/is.js","webpack:///./node_modules/core-js/internals/object-get-own-property-names-external.js","webpack:///./node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/moment/locale/fo.js","webpack:///./node_modules/moment/locale/ja.js","webpack:///./node_modules/axios/lib/core/Axios.js","webpack:///./node_modules/moment/locale/es-do.js","webpack:///./node_modules/moment/locale/ar-ma.js","webpack:///./node_modules/moment/locale/gom-latn.js","webpack:///./node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/axios/lib/helpers/spread.js","webpack:///./node_modules/moment/locale/fr-ch.js","webpack:///./node_modules/moment/locale/en-au.js","webpack:///./node_modules/moment/locale/tr.js","webpack:///./node_modules/moment/locale/da.js","webpack:///./node_modules/moment/locale/tl-ph.js","webpack:///./node_modules/moment/locale/eu.js","webpack:///./node_modules/moment/locale/th.js","webpack:///./node_modules/core-js/internals/string-repeat.js","webpack:///./node_modules/core-js/modules/es.string.split.js","webpack:///./node_modules/core-js/internals/same-value.js","webpack:///./node_modules/core-js/modules/es.array.reduce.js","webpack:///./node_modules/moment/locale/sr-cyrl.js","webpack:///./node_modules/core-js/internals/regexp-exec-abstract.js","webpack:///./node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/moment/locale/oc-lnc.js","webpack:///./node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/moment/locale/mt.js","webpack:///./node_modules/core-js/internals/html.js","webpack:///./node_modules/core-js/internals/a-function.js","webpack:///./node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/core-js/internals/engine-is-ios.js","webpack:///./node_modules/moment/locale/ar-ly.js","webpack:///./node_modules/axios/lib/helpers/bind.js","webpack:///./node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/moment/locale/be.js","webpack:///./node_modules/moment/locale/ka.js","webpack:///./node_modules/core-js/internals/iterate.js","webpack:///./node_modules/moment/locale/ko.js","webpack:///./node_modules/lodash.trimstart/index.js","webpack:///./node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/core-js/internals/export.js","webpack:///./node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/moment/locale/ku.js","webpack:///./node_modules/axios/lib/defaults.js","webpack:///./node_modules/core-js/modules/es.string.includes.js","webpack:///./node_modules/moment/locale/bs.js","webpack:///./node_modules/core-js/modules/es.regexp.to-string.js","webpack:///./node_modules/core-js/internals/set-species.js","webpack:///./node_modules/vue-progressbar/dist/vue-progressbar.js","webpack:///./node_modules/moment/locale/lt.js","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js","webpack:///./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js","webpack:///./node_modules/@babel/runtime/helpers/esm/iterableToArray.js","webpack:///./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js","webpack:///./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js","webpack:///./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js","webpack:///./node_modules/moment/locale/vi.js","webpack:///./node_modules/moment/locale/me.js","webpack:///./node_modules/core-js/internals/iterator-close.js","webpack:///./node_modules/moment/locale/af.js","webpack:///./node_modules/core-js/modules/es.string.starts-with.js","webpack:///./node_modules/core-js/internals/task.js","webpack:///./node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/axios/lib/core/createError.js","webpack:///./node_modules/axios/lib/cancel/isCancel.js","webpack:///./node_modules/moment/locale/uz.js","webpack:///./node_modules/vuex/dist/vuex.esm.js","webpack:///./node_modules/axios/lib/helpers/buildURL.js","webpack:///./node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/lodash.words/index.js","webpack:///./node_modules/vue-tiny-lazyload-img/dist/vue-tiny-lazyload-img.cjs.min.js","webpack:///./node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/axios/lib/core/enhanceError.js","webpack:///./node_modules/moment/locale/en-ca.js","webpack:///./node_modules/core-js/modules/es.string.repeat.js","webpack:///./node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack:///./node_modules/moment/locale/en-gb.js","webpack:///./node_modules/moment/locale/mr.js","webpack:///./node_modules/moment/locale/ne.js","webpack:///./node_modules/moment/locale/zh-mo.js","webpack:///./node_modules/moment/locale/tg.js","webpack:///./node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/moment/locale/cs.js","webpack:///./node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/moment/locale/ta.js","webpack:///./node_modules/moment/locale/kn.js","webpack:///./node_modules/core-js/internals/iterators.js","webpack:///./node_modules/core-js/modules/es.array.for-each.js","webpack:///./node_modules/moment/locale/ar-kw.js","webpack:///./node_modules/core-js/internals/path.js","webpack:///./node_modules/node-libs-browser/mock/process.js","webpack:///./node_modules/moment/locale/lb.js","webpack:///./node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/core-js/internals/host-report-errors.js","webpack:///./node_modules/core-js/internals/is-regexp.js","webpack:///./node_modules/moment-duration-format/lib/moment-duration-format.js","webpack:///./node_modules/axios/lib/core/settle.js","webpack:///./node_modules/core-js/internals/species-constructor.js","webpack:///./node_modules/moment/locale/az.js","webpack:///./node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/core-js/modules/es.string.trim.js","webpack:///./node_modules/moment/locale/zh-hk.js","webpack:///./node_modules/axios/lib/core/mergeConfig.js","webpack:///./node_modules/moment/locale/hr.js","webpack:///./node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/core-js/internals/array-from.js","webpack:///./node_modules/core-js/modules/es.array.sort.js","webpack:///./node_modules/moment/locale/id.js","webpack:///./node_modules/core-js/internals/to-length.js","webpack:///./node_modules/moment/locale/ga.js","webpack:///./node_modules/core-js/internals/has.js","webpack:///./node_modules/axios/lib/core/dispatchRequest.js","webpack:///./node_modules/moment/locale/ur.js","webpack:///./node_modules/moment/locale/ss.js","webpack:///./node_modules/core-js/modules/es.string.replace.js","webpack:///./node_modules/moment/locale/es-us.js","webpack:///./node_modules/core-js/internals/shared.js","webpack:///./node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/moment/locale/tet.js","webpack:///./node_modules/core-js/internals/whitespaces.js","webpack:///./node_modules/core-js/internals/string-trim.js","webpack:///./node_modules/moment/locale/dv.js","webpack:///./node_modules/core-js/internals/not-a-regexp.js","webpack:///./node_modules/moment/locale/tk.js","webpack:///./node_modules/moment/locale/hu.js","webpack:///./node_modules/moment/locale/zh-cn.js","webpack:///./node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/moment/locale/te.js","webpack:///./node_modules/string-to-color/index.js","webpack:///./node_modules/moment/locale/sv.js","webpack:///./node_modules/core-js/internals/engine-is-node.js","webpack:///./node_modules/core-js/modules/es.set.js","webpack:///./node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/moment/locale/ug-cn.js","webpack:///(webpack)/buildin/module.js","webpack:///./node_modules/moment/locale/ms-my.js","webpack:///./node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/moment/locale/eo.js","webpack:///./node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/moment/locale/sd.js","webpack:///./node_modules/moment/locale/br.js","webpack:///./node_modules/moment/locale/mi.js","webpack:///./node_modules/moment/locale/mk.js","webpack:///./node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/moment/locale/nb.js","webpack:///./node_modules/core-js/internals/collection.js","webpack:///./node_modules/moment/locale/kk.js","webpack:///./node_modules/moment/locale/ar-tn.js","webpack:///./node_modules/moment/locale/it.js","webpack:///./node_modules/core-js/internals/redefine.js","webpack:///./node_modules/moment/locale/it-ch.js","webpack:///./node_modules/moment/locale/en-nz.js","webpack:///./node_modules/moment/locale/fy.js","webpack:///./node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/moment/locale/en-il.js","webpack:///./node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/core-js/internals/define-well-known-symbol.js","webpack:///./node_modules/moment/locale/sw.js","webpack:///./node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/axios/lib/cancel/Cancel.js","webpack:///./node_modules/axios/lib/helpers/cookies.js","webpack:///./node_modules/core-js/internals/to-object.js","webpack:///./node_modules/moment/locale/sk.js","webpack:///./node_modules/core-js/internals/object-create.js","webpack:///./node_modules/core-js/modules/es.array.find.js","webpack:///./node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/colornames/colors.js","webpack:///./node_modules/moment/locale/yo.js","webpack:///./node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/moment/locale/sl.js","webpack:///./node_modules/moment/locale/fi.js","webpack:///./node_modules/moment/locale/ar-sa.js","webpack:///./node_modules/core-js/internals/an-object.js","webpack:///./node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/axios/lib/core/buildFullPath.js","webpack:///./node_modules/core-js/internals/create-property.js","webpack:///./node_modules/core-js/modules/es.string.search.js","webpack:///./node_modules/moment/locale/bg.js","webpack:///./node_modules/vue-observe-visibility/dist/vue-observe-visibility.esm.js","webpack:///./node_modules/core-js/internals/is-object.js","webpack:///./node_modules/moment/locale/my.js","webpack:///./node_modules/colornames/index.js","webpack:///./node_modules/moment/locale/gl.js","webpack:///./node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/moment/locale/es.js","webpack:///./node_modules/core-js/internals/advance-string-index.js","webpack:///./node_modules/vue-router/dist/vue-router.esm.js","webpack:///./node_modules/moment/locale/el.js","webpack:///./node_modules/moment/locale/pl.js","webpack:///./node_modules/moment/locale/fa.js","webpack:///./node_modules/axios/lib/cancel/CancelToken.js","webpack:///./node_modules/moment/locale/ar.js","webpack:///./node_modules/moment/locale/bn.js","webpack:///./node_modules/core-js/internals/uid.js","webpack:///./node_modules/moment/locale/zh-tw.js","webpack:///./node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/core-js/internals/regexp-exec.js","webpack:///./node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/moment/locale/ru.js","webpack:///./node_modules/moment/locale/mn.js","webpack:///./node_modules/moment/locale/ky.js","webpack:///./node_modules/moment/locale/bn-bd.js","webpack:///./node_modules/moment/locale/ro.js","webpack:///./node_modules/moment/locale/cy.js","webpack:///./node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/core-js/internals/call-with-safe-iteration-closing.js","webpack:///./node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/moment/locale/fr.js","webpack:///./node_modules/core-js/internals/regexp-sticky-helpers.js","webpack:///./node_modules/vue/dist/vue.esm.js","webpack:///./node_modules/core-js/modules/es.array.join.js","webpack:///./node_modules/moment/locale/ar-dz.js","webpack:///./node_modules/core-js/modules/es.array.splice.js","webpack:///./node_modules/core-js/modules/es.symbol.js","webpack:///./node_modules/core-js/modules/es.array.from.js","webpack:///./node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/core-js/modules/es.promise.finally.js","webpack:///./node_modules/moment/locale/bm.js","webpack:///./node_modules/sortablejs/modular/sortable.esm.js","webpack:///./node_modules/moment/locale/gom-deva.js","webpack:///./node_modules/core-js/internals/correct-is-regexp-logic.js","webpack:///./node_modules/core-js/modules/es.regexp.exec.js","webpack:///./node_modules/core-js/internals/regexp-flags.js","webpack:///./node_modules/moment/locale/uk.js","webpack:///./node_modules/@babel/runtime/helpers/esm/defineProperty.js","webpack:///./node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/core-js/modules/es.function.name.js","webpack:///./node_modules/moment/locale/lo.js","webpack:///./node_modules/moment/locale/de-at.js","webpack:///./node_modules/moment/locale/de.js","webpack:///./node_modules/axios/lib/adapters/xhr.js","webpack:///./node_modules/moment/locale/tzm-latn.js","webpack:///./node_modules/moment/locale/jv.js","webpack:///./node_modules/core-js/internals/microtask.js","webpack:///./node_modules/moment/locale/es-mx.js","webpack:///./node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/vuedraggable/dist/vuedraggable.umd.js","webpack:///./node_modules/moment/locale/en-sg.js","webpack:///./node_modules/moment/locale/nn.js","webpack:///./node_modules/moment/locale/lv.js","webpack:///./node_modules/core-js/modules/es.array.last-index-of.js","webpack:///./node_modules/core-js/internals/freezing.js","webpack:///./node_modules/moment/locale/de-ch.js","webpack:///./node_modules/axios/index.js","webpack:///./node_modules/hex-rgb/index.js","webpack:///./node_modules/lodash.padend/index.js","webpack:///./node_modules/spotify-web-api-js/src/spotify-web-api.js","webpack:///./node_modules/@babel/runtime/helpers/esm/createClass.js","webpack:///./node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/moment/locale/tzm.js","webpack:///./node_modules/moment/moment.js","webpack:///./node_modules/v-click-outside/dist/v-click-outside.umd.js","webpack:///./node_modules/axios/lib/helpers/parseHeaders.js","webpack:///./node_modules/axios/lib/core/transformData.js","webpack:///./node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/axios/lib/utils.js","webpack:///./node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/core-js/modules/es.array.find-index.js","webpack:///./node_modules/moment/locale/he.js","webpack:///./node_modules/vue-range-slider/dist/vue-range-slider.cjs.js","webpack:///./node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/core-js/internals/string-trim-forced.js","webpack:///./node_modules/moment/locale/sq.js","webpack:///./node_modules/core-js/modules/es.array.index-of.js","webpack:///./node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/core-js/modules/es.array.includes.js","webpack:///./node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/core-js/internals/promise-resolve.js","webpack:///./node_modules/core-js/internals/set-global.js","webpack:///./node_modules/axios/lib/axios.js","webpack:///./node_modules/moment/locale/sr.js","webpack:///./node_modules/moment/locale/tzl.js","webpack:///./node_modules/moment/locale/tlh.js","webpack:///./node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/core-js/internals/fails.js","webpack:///./node_modules/reconnectingwebsocket/reconnecting-websocket.js","webpack:///./node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/moment/locale/bo.js","webpack:///./node_modules/core-js/modules/es.symbol.iterator.js","webpack:///./node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/moment/locale/pt-br.js","webpack:///./node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/@babel/runtime/helpers/esm/classCallCheck.js","webpack:///./node_modules/core-js/internals/array-reduce.js","webpack:///./node_modules/moment/locale/fil.js","webpack:///./node_modules/moment/locale/hy-am.js","webpack:///./node_modules/moment/locale/ca.js","webpack:///./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js","webpack:///./node_modules/core-js/modules/es.array.map.js","webpack:///./node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack:///./node_modules/moment/locale/fr-ca.js","webpack:///./node_modules/core-js/internals/global.js","webpack:///./node_modules/moment/locale/nl-be.js","webpack:///./node_modules/moment/locale/hi.js","webpack:///./node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/path-browserify/index.js","webpack:///./node_modules/core-js/modules/es.symbol.description.js","webpack:///./node_modules/moment/locale/gu.js","webpack:///./node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/vue-infinite-loading/dist/vue-infinite-loading.js","webpack:///./node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/moment/locale/en-ie.js","webpack:///./node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/core-js/internals/well-known-symbol-wrapped.js","webpack:///./node_modules/core-js/internals/array-last-index-of.js","webpack:///./node_modules/core-js/internals/perform.js","webpack:///./node_modules/axios/lib/helpers/combineURLs.js","webpack:///./node_modules/core-js/modules/es.promise.js","webpack:///./node_modules/moment/locale/km.js","webpack:///./node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/core-js/internals/is-array.js","webpack:///./node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/rgb-hex/index.js","webpack:///./node_modules/moment/locale/ms.js","webpack:///./node_modules/moment/locale/et.js","webpack:///./node_modules/moment/locale/en-in.js","webpack:///./node_modules/moment/locale/si.js","webpack:///./node_modules/core-js/internals/new-promise-capability.js","webpack:///./node_modules/vue-scrollto/vue-scrollto.js","webpack:///./node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/moment/locale/pt.js","webpack:///./node_modules/moment/locale/pa-in.js","webpack:///./node_modules/core-js/internals/classof.js","webpack:///./node_modules/moment/locale/gd.js","webpack:///./node_modules/axios/lib/core/InterceptorManager.js","webpack:///./node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/moment/locale/nl.js","webpack:///./node_modules/core-js/modules/es.array.slice.js","webpack:///./node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/moment/locale/x-pseudo.js","webpack:///./node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/core-js/internals/native-promise-constructor.js","webpack:///./node_modules/moment/locale/se.js"],"names":["wellKnownSymbol","TO_STRING_TAG","test","module","exports","String","global","factory","this","moment","uzLatn","defineLocale","months","split","monthsShort","weekdays","weekdaysShort","weekdaysMin","longDateFormat","LT","LTS","L","LL","LLL","LLLL","calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","relativeTime","future","past","s","ss","m","mm","h","hh","d","dd","M","MM","y","yy","week","dow","doy","ml","monthsParseExact","meridiemParse","meridiemHour","hour","meridiem","minute","isLower","aFunction","fn","that","length","undefined","call","a","b","c","apply","arguments","cv","output","affix","exec","dayOfMonthOrdinalParse","ordinal","plural","n","translate","number","withoutSuffix","key","isFuture","result","is","toIndexedObject","nativeGetOwnPropertyNames","f","toString","windowNames","window","Object","getOwnPropertyNames","getWindowNames","it","error","slice","DESCRIPTORS","propertyIsEnumerableModule","createPropertyDescriptor","toPrimitive","has","IE8_DOM_DEFINE","nativeGetOwnPropertyDescriptor","getOwnPropertyDescriptor","O","P","fo","ja","eras","since","offset","name","narrow","abbr","until","Infinity","eraYearOrdinalRegex","eraYearOrdinalParse","input","match","parseInt","l","ll","lll","llll","isPM","now","period","utils","buildURL","InterceptorManager","dispatchRequest","mergeConfig","Axios","instanceConfig","defaults","interceptors","request","response","prototype","config","url","method","toLowerCase","chain","promise","Promise","resolve","forEach","interceptor","unshift","fulfilled","rejected","push","then","shift","getUri","params","paramsSerializer","replace","data","monthsShortDot","monthsParse","monthsRegex","esDo","format","month","monthsShortRegex","monthsStrictRegex","monthsShortStrictRegex","longMonthsParse","shortMonthsParse","weekdaysParseExact","hours","w","ww","arMa","processRelativeTime","gomLatn","standalone","isFormat","fails","createElement","defineProperty","get","callback","arr","frCh","enAu","suffixes","1","5","8","70","80","2","7","20","50","3","4","100","6","9","10","30","60","90","tr","minutes","da","tlPh","eu","th","toInteger","requireObjectCoercible","repeat","count","str","RangeError","fixRegExpWellKnownSymbolLogic","isRegExp","anObject","speciesConstructor","advanceStringIndex","toLength","callRegExpExec","regexpExec","arrayPush","min","Math","MAX_UINT32","SUPPORTS_Y","RegExp","SPLIT","nativeSplit","maybeCallNative","internalSplit","separator","limit","string","lim","lastIndex","lastLength","flags","ignoreCase","multiline","unicode","sticky","lastLastIndex","separatorCopy","source","index","splitter","regexp","res","done","value","rx","S","C","unicodeMatching","p","q","A","e","z","i","x","$","$reduce","left","arrayMethodIsStrict","arrayMethodUsesToLength","CHROME_VERSION","IS_NODE","STRICT_METHOD","USES_TO_LENGTH","CHROME_BUG","target","proto","forced","reduce","callbackfn","translator","words","correctGrammaticalCase","wordKey","srCyrl","day","lastWeekDays","classof","R","TypeError","DOMIterables","createNonEnumerableProperty","COLLECTION_NAME","Collection","CollectionPrototype","ocLnc","$forEach","Constructor","mt","getBuiltIn","ITERATOR","SAFE_CLOSING","called","iteratorWithReturn","next","Array","from","SKIP_CLOSING","ITERATION_SUPPORT","object","userAgent","symbolMap","0","pluralForm","plurals","pluralize","u","arLy","preparse","postformat","thisArg","args","V8_VERSION","SPECIES","METHOD_NAME","array","constructor","foo","Boolean","word","num","forms","relativeTimeWithPlural","be","ka","$0","$1","$2","isArrayIteratorMethod","bind","getIteratorMethod","iteratorClose","Result","stopped","iterable","unboundFunction","options","iterator","iterFn","step","AS_ENTRIES","IS_ITERATOR","INTERRUPTED","stop","condition","callFn","ko","token","isUpper","INFINITY","symbolTag","reTrimStart","rsAstralRange","rsComboMarksRange","rsComboSymbolsRange","rsVarRange","rsAstral","rsCombo","rsFitz","rsModifier","rsNonAstral","rsRegional","rsSurrPair","rsZWJ","reOptMod","rsOptVar","rsOptJoin","join","rsSeq","rsSymbol","reUnicode","reHasUnicode","freeGlobal","freeSelf","self","root","Function","asciiToArray","baseFindIndex","predicate","fromIndex","fromRight","baseIndexOf","baseIsNaN","charsStartIndex","strSymbols","chrSymbols","hasUnicode","stringToArray","unicodeToArray","objectProto","objectToString","Symbol","symbolProto","symbolToString","baseSlice","start","end","baseToString","isSymbol","castSlice","isObjectLike","trimStart","chars","guard","max","integer","redefine","setGlobal","copyConstructorProperties","isForced","FORCED","targetProperty","sourceProperty","descriptor","TARGET","GLOBAL","STATIC","stat","noTargetGet","sham","internalObjectKeys","enumBugKeys","hiddenKeys","concat","numberMap","ku","normalizeHeaderName","DEFAULT_CONTENT_TYPE","setContentTypeIfUnset","headers","isUndefined","getDefaultAdapter","adapter","XMLHttpRequest","process","transformRequest","isFormData","isArrayBuffer","isBuffer","isStream","isFile","isBlob","isArrayBufferView","buffer","isURLSearchParams","isObject","JSON","stringify","transformResponse","parse","timeout","xsrfCookieName","xsrfHeaderName","maxContentLength","maxBodyLength","validateStatus","status","common","merge","notARegExp","correctIsRegExpLogic","includes","searchString","indexOf","bs","TO_STRING","RegExpPrototype","nativeToString","NOT_GENERIC","INCORRECT_NAME","rf","unsafe","definePropertyModule","CONSTRUCTOR_NAME","configurable","t","o","document","head","getElementsByTagName","type","styleSheet","cssText","appendChild","createTextNode","r","render","$createElement","_self","_c","staticClass","style","staticRenderFns","serverCacheKey","computed","progress","show","location","canSuccess","color","failedColor","opacity","position","top","bottom","inverse","right","width","percent","height","thickness","transition","speed","VueProgressBarEventBus","RADON_LOADING_BAR","termination","autoRevert","install","version","$vm","state","tFailColor","tColor","timer","cut","init","floor","clearInterval","setInterval","increase","random","autoFinish","finish","set","decrease","hide","setTimeout","nextTick","revert","pause","fail","setFailColor","setColor","setLocation","setTransition","tempFailColor","tempColor","tempLocation","tLocation","tempTransition","tTransition","revertColor","revertFailColor","revertLocation","revertTransition","parseMeta","func","modifier","argument","hasOwnProperty","component","$Progress","units","translateSeconds","translateSingular","special","lt","normalizeComponent","scriptExports","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","hook","_compiled","functional","_scopeId","context","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","shadowRoot","_injectStyles","originalRender","existing","beforeCreate","_arrayLikeToArray","len","arr2","_arrayWithoutHoles","isArray","arrayLikeToArray","_iterableToArray","iter","_unsupportedIterableToArray","minLen","_nonIterableSpread","_toConsumableArray","arrayWithoutHoles","iterableToArray","unsupportedIterableToArray","nonIterableSpread","vi","me","returnMethod","af","IS_PURE","nativeStartsWith","startsWith","CORRECT_IS_REGEXP_LOGIC","MDN_POLYFILL_BUG","writable","search","defer","channel","port","html","IS_IOS","setImmediate","clear","clearImmediate","MessageChannel","Dispatch","counter","queue","ONREADYSTATECHANGE","run","id","runner","listener","event","post","postMessage","protocol","host","port2","port1","onmessage","addEventListener","importScripts","removeChild","versions","v8","enhanceError","message","code","Error","__CANCEL__","uz","applyMixin","Vue","Number","mixin","vuexInit","_init","store","$store","devtoolHook","__VUE_DEVTOOLS_GLOBAL_HOOK__","devtoolPlugin","_devtoolHook","emit","on","targetState","replaceState","subscribe","mutation","prepend","subscribeAction","action","find","list","filter","deepCopy","obj","cache","hit","original","copy","keys","forEachValue","isPromise","val","partial","arg","Module","rawModule","runtime","_children","create","_rawModule","rawState","prototypeAccessors","namespaced","addChild","getChild","hasChild","update","actions","mutations","getters","forEachChild","forEachGetter","forEachAction","forEachMutation","defineProperties","ModuleCollection","rawRootModule","register","path","targetModule","newModule","modules","getNamespace","namespace","this$1","rawChildModule","unregister","child","isRegistered","Store","plugins","strict","_committing","_actions","_actionSubscribers","_mutations","_wrappedGetters","_modules","_modulesNamespaceMap","_subscribers","_watcherVM","_makeLocalGettersCache","ref","dispatch","commit","payload","installModule","resetStoreVM","plugin","useDevtools","devtools","prototypeAccessors$1","genericSubscribe","subs","splice","resetStore","hot","oldVm","_vm","wrappedGetters","enumerable","silent","$$state","enableStrictMode","_withCommit","_data","$destroy","rootState","isRoot","parentState","getNestedState","moduleName","local","makeLocalContext","namespacedType","registerMutation","handler","registerAction","getter","registerGetter","noNamespace","_type","_payload","_options","unifyObjectStyle","makeLocalGetters","gettersProxy","splitPos","localType","entry","rootGetters","catch","err","rawGetter","$watch","deep","sync","_Vue","v","sub","before","all","map","reject","after","watch","cb","registerModule","preserveState","unregisterModule","delete","hasModule","hotUpdate","newOptions","committing","mapState","normalizeNamespace","states","normalizeMap","getModuleByNamespace","vuex","mapMutations","mapGetters","mapActions","createNamespacedHelpers","isValidMap","charAt","helper","createLogger","collapsed","stateBefore","stateAfter","transformer","mutationTransformer","mut","actionFilter","actionTransformer","act","logMutations","logActions","logger","console","prevState","nextState","formattedTime","getFormattedTime","formattedMutation","startMessage","log","endMessage","formattedAction","groupCollapsed","group","groupEnd","time","Date","pad","getHours","getMinutes","getSeconds","getMilliseconds","times","maxLength","encode","encodeURIComponent","serializedParams","parts","isDate","toISOString","hashmarkIndex","Iterators","reAsciiWord","rsDingbatRange","rsLowerRange","rsMathOpRange","rsNonCharRange","rsPunctuationRange","rsSpaceRange","rsUpperRange","rsBreakRange","rsApos","rsBreak","rsDigits","rsDingbat","rsLower","rsMisc","rsUpper","rsLowerMisc","rsUpperMisc","rsOptLowerContr","rsOptUpperContr","rsEmoji","reUnicodeWord","reHasUnicodeWord","asciiWords","hasUnicodeWord","unicodeWords","pattern","_V_LOADING","_V_LOADED","_V_ERROR","constant","lazyImageObserver","clearDataSrc","classList","removeAttribute","IntersectionObserver","isIntersecting","dataset","src","Image","onload","remove","onerror","unobserve","lazyImageObserver$1","directive","observe","componentUpdated","contains","objectKeys","Properties","isAxiosError","toJSON","description","fileName","lineNumber","columnNumber","stack","enCa","isStandardBrowserEnv","originURL","msie","navigator","urlParsingNode","resolveURL","href","setAttribute","hash","hostname","pathname","requestURL","parsed","isString","enGb","relativeTimeMr","mr","ne","zhMo","hm","12","13","40","tg","cs","InternalStateModule","defineIterator","STRING_ITERATOR","setInternalState","getInternalState","getterFor","iterated","point","ta","kn","arKw","platform","arch","execPath","title","pid","browser","env","argv","binding","cwd","chdir","dir","exit","kill","umask","dlopen","uptime","memoryUsage","uvCounters","features","processFutureTime","substr","eifelerRegelAppliesToNumber","processPastTime","isNaN","lastDigit","firstDigit","lb","propertyIsEnumerable","UNSCOPABLES","ArrayPrototype","MATCH","momentDurationFormatSetup","toLocaleStringWorks","toLocaleStringRoundingWorks","intlNumberFormatWorks","intlNumberFormatRoundingWorks","types","bubbles","targets","stringIncludes","repeatZero","qty","stringRound","digits","digitsArray","reverse","carry","cachedNumberFormat","locale","optionsString","sort","cacheKey","Intl","NumberFormat","formatNumber","userLocale","numberString","integerString","fractionString","exponentString","useToLocaleString","useGrouping","grouping","maximumSignificantDigits","minimumIntegerDigits","fractionDigits","groupingSeparator","decimalSeparator","localeStringOptions","maximumFractionDigits","minimumFractionDigits","roundingOptions","extend","parseFloat","toLocaleString","toPrecision","toFixed","temp","integerLength","fractionLength","digitCount","exponent","abs","formattedString","durationLabelCompare","label","durationGetLabels","localeData","labels","each","localeDataKey","labelType","labelKey","durationPluralKey","integerValue","decimalValue","engLocale","durationLabelsStandard","SS","durationLabelsShort","durationTimeTemplates","HMS","HM","MS","durationLabelTypes","findLast","item","ret","pluck","prop","compact","unique","_a","intersection","_b","rest","initial","reversed","any","flatten","toLocaleStringSupportsLocales","featureTestFormatterRounding","formatter","featureTestFormatter","passed","durationsFormat","durations","settings","precision","template","returnMomentTypes","formattedDurations","dur","outputTypes","largest","durationFormat","asMilliseconds","asMonths","isValid","isNegative","remainder","duration","remainderMonths","momentTokens","years","weeks","days","seconds","milliseconds","tokenDefs","escape","general","typeMap","tokenizer","stopTrim","_durationTimeTemplates","useLeftUnits","usePlural","forceLength","trunc","useSignificantDigits","significantDigits","significantDigitsCache","minValue","isMinValue","maxValue","isMaxValue","trim","trimIncludes","rLarge","rSmall","rBoth","rMid","rAll","rFinal","trimLarge","trimSmall","trimMid","trimFinal","rawTokens","text","currentToken","tokens","momentTypes","momentType","rawValue","isSmallest","isLargest","as","wholeValue","subtract","tokenLength","truncMethod","round","truncate","places","factor","pow","foundFirst","bubbled","formatValue","formatOptions","formattedValue","formattedValueEn","formattedValueMS","findType","bubbleTypes","bubble","bubbleMomentType","targetMomentType","outputType","values","pluralKey","autoLocalized","pluralizedLabels","_durationLabelTypes","out","defaultFormatTemplate","firstType","lastType","updateLocale","toLocaleStringFormatter","intlNumberFormatFormatter","createError","defaultConstructor","az","getOwnPropertySymbols","$trim","forcedStringTrimMethod","zhHk","config1","config2","valueFromConfig2Keys","mergeDeepPropertiesKeys","defaultToConfig2Keys","directMergeKeys","getMergedValue","isPlainObject","mergeDeepProperties","axiosKeys","otherKeys","hr","toAbsoluteIndex","createMethod","IS_INCLUDES","$this","el","$filter","arrayMethodHasSpeciesSupport","HAS_SPECIES_SUPPORT","toObject","callWithSafeIterationClosing","createProperty","arrayLike","argumentsLength","mapfn","mapping","iteratorMethod","nativeSort","FAILS_ON_UNDEFINED","FAILS_ON_NULL","comparefn","ga","transformData","isCancel","throwIfCancellationRequested","cancelToken","throwIfRequested","reason","ur","regExpExec","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","maybeToString","REPLACE","nativeReplace","REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE","REPLACE_KEEPS_$0","UNSAFE_SUBSTITUTE","searchValue","replaceValue","replacer","functionalReplace","fullUnicode","results","matchStr","accumulatedResult","nextSourcePosition","matched","captures","j","namedCaptures","groups","replacerArgs","replacement","getSubstitution","tailPos","symbols","ch","capture","esUs","mode","copyright","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","tet","whitespaces","whitespace","ltrim","rtrim","TYPE","dv","tk","weekEndings","hu","zhCn","bitmap","te","toHex","_words","padEnd","rgbHex","hexRgb","MIXED_WEIGHT","TEXT_WEIGHT","SEED","FACTOR","getColors","colors","mixColors","mixed","generateColor","charCodeAt","hex","rgb","sv","collection","collectionStrong","IndexedObject","nativeAssign","assign","B","symbol","alphabet","chr","T","ugCn","webpackPolyfill","deprecate","paths","children","msMy","CONVERT_TO_STRING","pos","first","second","size","codeAt","redefineAll","anInstance","iterate","setSpecies","fastKey","internalStateGetterFor","getConstructor","wrapper","IS_MAP","ADDER","last","define","previous","getEntry","removed","prev","boundFunction","setStrong","ITERATOR_NAME","getInternalCollectionState","getInternalIteratorState","kind","eo","originalArray","sd","relativeTimeWithMutation","specialMutationForYears","lastNumber","softMutation","mutationTable","substring","fullWeekdaysParse","shortWeekdaysParse","minWeekdaysParse","br","weekdaysParse","mi","mk","last2Digits","NATIVE_WEAK_MAP","objectHas","shared","sharedKey","WeakMap","enforce","wmget","wmhas","wmset","metadata","facade","STATE","nb","InternalMetadataModule","checkCorrectnessOfIteration","setToStringTag","inheritIfRequired","IS_WEAK","NativeConstructor","NativePrototype","exported","fixMethod","KEY","nativeMethod","entries","REQUIRED","instance","HASNT_CHAINING","THROWS_ON_PRIMITIVES","ACCEPT_ITERABLES","BUGGY_ZERO","$instance","dummy","kk","arTn","inspectSource","enforceInternalState","TEMPLATE","simple","itCh","enNz","monthsShortWithDots","monthsShortWithoutDots","fy","setPrototypeOf","Wrapper","NewTarget","NewTargetPrototype","enIl","wrappedWellKnownSymbolModule","NAME","sw","Cancel","write","expires","domain","secure","cookie","isNumber","toGMTString","read","decodeURIComponent","sk","activeXDocument","documentCreateElement","GT","PROTOTYPE","SCRIPT","IE_PROTO","EmptyConstructor","scriptTag","content","NullProtoObjectViaActiveX","close","parentWindow","NullProtoObjectViaIFrame","iframeDocument","iframe","JS","display","contentWindow","open","F","NullProtoObject","ActiveXObject","$find","addToUnscopables","FIND","SKIPS_HOLES","createIteratorConstructor","getPrototypeOf","IteratorsCore","IteratorPrototype","BUGGY_SAFARI_ITERATORS","KEYS","VALUES","ENTRIES","returnThis","Iterable","IteratorConstructor","DEFAULT","IS_SET","CurrentIteratorPrototype","methods","getIterationMethod","KIND","defaultIterator","IterablePrototype","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","yo","sl","numbersPast","numbersFuture","verbalNumber","fi","arSa","isAbsoluteURL","combineURLs","baseURL","requestedURL","propertyKey","sameValue","SEARCH","nativeSearch","searcher","previousLastIndex","bg","_typeof","_classCallCheck","_defineProperties","props","_createClass","protoProps","staticProps","processOptions","throttle","delay","lastState","currentArgs","throttled","_len","_key","leading","clearTimeout","_clear","deepEqual","val1","val2","VisibilityState","vnode","observer","frozen","createObserver","_this","destroyObserver","once","_ref","throttleOptions","_leading","oldResult","intersectingEntry","intersectionRatio","threshold","$nextTick","disconnect","_ref2","warn","_vue_visibilityState","_ref3","oldValue","unbind","ObserveVisibility","GlobalVue","use","my","cssColors","css","vgaColors","vga","pop","gl","functionToString","es","invalidDate","encodeReserveRE","encodeReserveReplacer","commaRE","decode","resolveQuery","query","extraQuery","_parseQuery","parsedQuery","parseQuery","castQueryParamValue","param","stringifyQuery","trailingSlashRE","createRoute","record","redirectedFrom","router","clone","route","meta","fullPath","getFullPath","formatMatch","freeze","START","_stringifyQuery","isSameRoute","isObjectEqual","aKeys","bKeys","every","aVal","bKey","bVal","isIncludedRoute","current","queryIncludes","handleRouteEntered","instances","cbs","enteredCbs","i$1","_isBeingDestroyed","View","default","_","routerView","$route","_routerViewCache","depth","inactive","_routerRoot","vnodeData","keepAlive","_directInactive","_inactive","$parent","routerViewDepth","cachedData","cachedComponent","configProps","fillPropsinData","components","registerRouteInstance","vm","prepatch","componentInstance","propsToPass","resolveProps","attrs","resolvePath","relative","base","append","firstChar","segments","segment","parsePath","hashIndex","queryIndex","cleanPath","isarray","pathToRegexp_1","pathToRegexp","parse_1","compile_1","compile","tokensToFunction_1","tokensToFunction","tokensToRegExp_1","tokensToRegExp","PATH_REGEXP","defaultDelimiter","delimiter","escaped","prefix","asterisk","optional","escapeGroup","escapeString","encodeURIComponentPretty","encodeURI","toUpperCase","encodeAsterisk","matches","opts","pretty","attachKeys","re","sensitive","regexpToRegexp","arrayToRegexp","stringToRegexp","endsWithDelimiter","regexpCompileCache","fillParams","routeMsg","filler","pathMatch","normalizeLocation","raw","_normalized","params$1","rawPath","parsedPath","basePath","toTypes","eventTypes","noop","Link","to","required","tag","exact","activeClass","exactActiveClass","ariaCurrentValue","$router","classes","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","guardEvent","click","class","scopedSlot","$scopedSlots","$hasNormal","navigate","isActive","isExactActive","findAnchor","$slots","isStatic","aData","handler$1","event$1","aAttrs","metaKey","altKey","ctrlKey","shiftKey","defaultPrevented","button","currentTarget","getAttribute","preventDefault","installed","isDef","registerInstance","callVal","_parentVnode","_router","util","defineReactive","history","destroyed","_route","strats","optionMergeStrategies","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","created","inBrowser","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","pathList","pathMap","nameMap","addRouteRecord","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","redirect","beforeEnter","childMatchAs","alias","aliases","aliasRoute","createMatcher","addRoutes","currentRoute","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","resolvedPath","aliasedPath","aliasedMatch","aliasedRecord","Time","performance","genStateKey","getStateKey","setStateKey","positionStore","setupScroll","scrollRestoration","protocolAndPath","absolutePath","stateCopy","handlePopState","removeEventListener","handleScroll","isPop","app","behavior","scrollBehavior","getScrollPosition","shouldScroll","scrollToPosition","saveScrollPosition","pageXOffset","pageYOffset","getElementPosition","docEl","documentElement","docRect","getBoundingClientRect","elRect","isValidPosition","normalizePosition","normalizeOffset","hashStartsWithNumberRE","selector","getElementById","querySelector","scrollTo","supportsPushState","ua","pushState","runQueue","NavigationFailureType","redirected","aborted","cancelled","duplicated","createNavigationRedirectedError","createRouterError","stringifyRoute","createNavigationDuplicatedError","createNavigationCancelledError","createNavigationAbortedError","_isRouter","propertiesToLog","isError","isNavigationFailure","errorType","resolveAsyncComponents","hasAsync","pending","flatMapComponents","def","cid","resolvedDef","isESModule","resolved","msg","comp","hasSymbol","toStringTag","__esModule","History","normalizeBase","ready","readyCbs","readyErrorCbs","errorCbs","listeners","baseEl","resolveQueue","updated","activated","deactivated","extractGuards","records","guards","extractGuard","extractLeaveGuards","bindGuard","extractUpdateHooks","extractEnterGuards","bindEnterGuard","listen","onReady","errorCb","onError","transitionTo","onComplete","onAbort","confirmTransition","updateRoute","ensureURL","afterHooks","abort","lastRouteIndex","lastCurrentIndex","beforeHooks","enterGuards","resolveHooks","setupListeners","teardown","cleanupListener","HTML5History","_startLocation","getLocation","__proto__","expectScroll","supportsScroll","handleRoutingEvent","go","fromRoute","getCurrentLocation","HashHistory","fallback","checkFallback","ensureSlash","getHash","replaceHash","eventType","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","registerHook","createHref","$once","handleInitialScroll","routeOrError","beforeEach","beforeResolve","afterEach","back","forward","getMatchedComponents","normalizedTo","isFunction","monthsNominativeEl","monthsGenitiveEl","momentToFormat","_monthsGenitiveEl","_monthsNominativeEl","calendarEl","mom","_calendarEl","monthsNominative","monthsSubjective","pl","fa","CancelToken","executor","resolvePromise","cancel","ar","bn","postfix","zhTw","regexpFlags","stickyHelpers","nativeExec","patchedExec","UPDATES_LAST_INDEX_WRONG","re1","re2","UNSUPPORTED_Y","BROKEN_CARET","NPCG_INCLUDED","PATCH","reCopy","charsAdded","strCopy","feature","detection","normalize","POLYFILL","NATIVE","ru","mn","ky","bnBd","ro","cy","lookup","arraySpeciesCreate","IS_CONCAT_SPREADABLE","MAX_SAFE_INTEGER","MAXIMUM_ALLOWED_INDEX_EXCEEDED","IS_CONCAT_SPREADABLE_SUPPORT","SPECIES_SUPPORT","isConcatSpreadable","spreadable","k","E","nativeDefineProperty","Attributes","fr","RE","emptyObject","isUndef","isTrue","isFalse","isPrimitive","_toString","isValidArrayIndex","isFinite","toNumber","makeMap","expectsLowerCase","isBuiltInTag","isReservedAttribute","hasOwn","cached","camelizeRE","camelize","capitalize","hyphenateRE","hyphenate","polyfillBind","ctx","boundFn","_length","nativeBind","toArray","_from","no","identity","genStaticKeys","staticKeys","looseEqual","isObjectA","isObjectB","isArrayA","isArrayB","getTime","keysA","keysB","looseIndexOf","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","productionTip","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","async","_lifecycleHooks","unicodeRegExp","isReserved","bailRE","_isServer","hasProto","inWeex","WXEnvironment","weexPlatform","UA","isIE","isIE9","isEdge","isIOS","isFF","nativeWatch","supportsPassive","isServerRendering","VUE_ENV","isNative","Ctor","_Set","Reflect","ownKeys","Set","uid","Dep","addSub","removeSub","depend","addDep","notify","targetStack","pushTarget","popTarget","VNode","elm","componentOptions","asyncFactory","ns","fnContext","fnOptions","fnScopeId","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","createEmptyVNode","node","createTextVNode","cloneVNode","cloned","arrayProto","arrayMethods","methodsToPatch","inserted","ob","__ob__","observeArray","dep","arrayKeys","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","asRootData","isExtensible","_isVue","defineReactive$$1","customSetter","shallow","property","setter","childOb","dependArray","newVal","del","items","mergeData","toVal","fromVal","mergeDataOrFn","parentVal","childVal","instanceData","defaultData","mergeHook","dedupeHooks","hooks","mergeAssets","key$1","inject","provide","defaultStrat","normalizeProps","normalizeInject","normalized","normalizeDirectives","dirs","directives","def$$1","mergeOptions","_base","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","absent","booleanIndex","getTypeIndex","stringIndex","getPropDefaultValue","prevShouldObserve","_props","getType","isSameType","expectedTypes","handleError","info","cur","errorCaptured","globalHandleError","invokeWithErrorHandling","_handled","logError","timerFunc","isUsingMicroTask","callbacks","flushCallbacks","copies","MutationObserver","textNode","characterData","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","createFnInvoker","fns","invoker","arguments$1","updateListeners","oldOn","remove$$1","createOnceHandler","old","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","extractPropsFromVNodeData","checkProp","preserve","simpleNormalizeChildren","normalizeChildren","normalizeArrayChildren","isTextNode","nestedIndex","_isVList","initProvide","_provided","initInjections","resolveInject","provideKey","provideDefault","resolveSlots","slots","slot","name$1","isWhitespace","normalizeScopedSlots","normalSlots","prevSlots","hasNormalSlots","isStable","$stable","$key","normalizeScopedSlot","key$2","proxyNormalSlot","proxy","renderList","renderSlot","bindObject","nodes","scopedSlotFn","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","loop","domProps","camelizedKey","hyphenatedKey","$event","renderStatic","isInFor","_staticTrees","tree","_renderProxy","markStatic","markOnce","markStaticNode","bindObjectListeners","ours","resolveScopedSlots","hasDynamicKeys","contentHashKey","bindDynamicKeys","baseObj","prependModifier","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_v","_e","_u","_g","_d","_p","FunctionalRenderContext","contextVm","_original","isCompiled","needNormalization","injections","scopedSlots","createFunctionalComponent","mergeProps","renderContext","cloneAndMarkFunctionalResult","vnodes","componentVNodeHooks","hydrating","_isDestroyed","mountedNode","createComponentInstanceForVnode","activeInstance","$mount","oldVnode","updateChildComponent","insert","_isMounted","callHook","queueActivatedComponent","activateChildComponent","destroy","deactivateChildComponent","hooksToMerge","createComponent","baseCtor","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","transformModel","nativeOn","abstract","installComponentHooks","_isComponent","inlineTemplate","toMerge","_merged","mergeHook$1","f1","f2","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","_createElement","pre","applyNS","registerDeepBindings","force","initRender","_vnode","parentVnode","_renderChildren","parentData","_parentListeners","currentRenderingInstance","renderMixin","_render","ensureCtor","errorComp","owner","owners","loading","loadingComp","timerLoading","timerTimeout","$on","forceRender","renderCompleted","$forceUpdate","getFirstComponentChild","initEvents","_events","_hasHookEvent","updateComponentListeners","remove$1","$off","_target","onceHandler","oldListeners","eventsMixin","hookRE","$emit","setActiveInstance","prevActiveInstance","initLifecycle","$children","$refs","_watcher","lifecycleMixin","_update","prevEl","$el","prevVnode","restoreActiveInstance","__patch__","__vue__","_watchers","mountComponent","updateComponent","Watcher","renderChildren","newScopedSlots","oldScopedSlots","hasDynamicScopedSlot","needsForceUpdate","$attrs","$listeners","propKeys","_propKeys","isInInactiveTree","direct","handlers","activatedChildren","waiting","flushing","resetSchedulerState","currentFlushTimestamp","getNow","createEvent","timeStamp","flushSchedulerQueue","watcher","activatedQueue","updatedQueue","callActivatedHooks","callUpdatedHooks","queueWatcher","uid$2","expOrFn","isRenderWatcher","user","lazy","active","dirty","deps","newDeps","depIds","newDepIds","expression","cleanupDeps","tmp","evaluate","sharedPropertyDefinition","sourceKey","initState","initProps","initMethods","initData","initComputed","initWatch","propsOptions","getData","computedWatcherOptions","watchers","_computedWatchers","isSSR","userDef","defineComputed","shouldCache","createComputedGetter","createGetterInvoker","createWatcher","stateMixin","dataDef","propsDef","$set","$delete","immediate","uid$3","initMixin","_uid","initInternalComponent","vnodeComponentOptions","_componentTag","super","superOptions","cachedSuperOptions","modifiedOptions","resolveModifiedOptions","extendOptions","modified","latest","sealed","sealedOptions","initUse","installedPlugins","_installedPlugins","initMixin$1","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","initProps$1","initComputed$1","Comp","initAssetRegisters","definition","getComponentName","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","cached$$1","patternTypes","KeepAlive","include","exclude","mounted","ref$1","builtInComponents","initGlobalAPI","configDef","observable","acceptValue","attr","isEnumeratedAttr","isValidContentEditableValue","convertEnumeratedValue","isFalsyAttrValue","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","genClassForVnode","parentNode","childNode","mergeClassData","renderClass","dynamicClass","stringifyClass","stringifyArray","stringifyObject","stringified","namespaceMap","svg","math","isHTMLTag","isSVG","isPreTag","unknownElementCache","HTMLUnknownElement","HTMLElement","isTextInputType","selected","createElement$1","tagName","multiple","createElementNS","createComment","insertBefore","newNode","referenceNode","nextSibling","setTextContent","textContent","setStyleScope","nodeOps","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","sameInputType","typeA","typeB","createKeyToOldIdx","beginIdx","endIdx","createPatchFunction","backend","emptyNodeAt","createRmCb","childElm","removeNode","createElm","insertedVnodeQueue","parentElm","refElm","nested","ownerArray","setScope","createChildren","invokeCreateHooks","isReactivated","initComponent","reactivateComponent","pendingInsert","isPatchable","innerNode","activate","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","removeAndInvokeRemoveHook","rm","updateChildren","oldCh","newCh","removeOnly","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","patchVnode","findIdxInOld","hydrate","postpatch","invokeInsertHook","isRenderedModule","inVPre","hasChildNodes","innerHTML","childrenMatch","firstChild","fullInvoke","isInitialPatch","isRealElement","nodeType","hasAttribute","oldElm","_leaveCb","patchable","i$2","updateDirectives","oldDir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","oldArg","callHook$1","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","index$1","expressionPos","expressionEndPos","klass","validDivisionCharRE","parseFilters","exp","filters","inSingle","inDouble","inTemplateString","inRegex","curly","square","paren","lastFilterIndex","pushFilter","wrapFilter","baseWarn","range","pluckModuleFunction","addProp","dynamic","rangeSetItem","plain","addAttr","dynamicAttrs","addRawAttr","attrsMap","attrsList","addDirective","isDynamicArg","prependModifierMarker","addHandler","important","events","middle","native","nativeEvents","newHandler","getRawBindingAttr","rawAttrsMap","getBindingAttr","getStatic","dynamicValue","getAndRemoveAttr","staticValue","removeFromMap","getAndRemoveAttrByRegex","genComponentModel","baseValueExpression","valueExpression","assignment","genAssignmentCode","parseModel","lastIndexOf","eof","isStringStart","parseString","parseBracket","inBracket","stringQuote","target$1","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","_warn","genSelect","genCheckboxModel","genRadioModel","genDefaultModel","valueBinding","trueValueBinding","falseValueBinding","selectedVal","needCompositionGuard","normalizeEvents","change","createOnceHandler$1","remove$2","useMicrotaskFix","add$1","attachedTimestamp","_wrapper","ownerDocument","updateDOMListeners","svgContainer","updateDOMProps","oldProps","childNodes","_value","strCur","shouldUpdateValue","checkVal","composing","isNotInFocusAndDirty","isDirtyWithModifiers","notInFocus","activeElement","_vModifiers","parseStyleText","listDelimiter","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","getStyle","checkChild","styleData","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","whitespaceRE","addClass","removeClass","tar","resolveTransition","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","toMs","enter","toggleDisplay","_enterCb","appearClass","appearToClass","appearActiveClass","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","transitionNode","isAppear","startClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","pendingNode","_pending","isValidDuration","leave","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","platformModules","patch","vmodel","trigger","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","some","needReset","hasNoMatchingOption","actuallySetSelected","isMultiple","option","selectedIndex","initEvent","dispatchEvent","locateNode","transition$$1","originalDisplay","__vOriginalDisplay","platformDirectives","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","rawChild","hasParentTransition","isSameChild","oldChild","isNotTextNode","isVShowDirective","Transition","_leaving","oldRawChild","delayedLeave","moveClass","TransitionGroup","beforeMount","kept","prevChildren","rawChildren","transitionData","c$1","hasMove","callPendingCbs","recordPosition","applyTranslation","_reflow","body","offsetHeight","moved","transform","WebkitTransform","transitionDuration","_moveCb","propertyName","_hasMove","cloneNode","newPos","oldPos","dx","dy","platformComponents","defaultTagRE","regexEscapeRE","buildRegex","delimiters","parseText","tagRE","tokenValue","transformNode","classBinding","genData","klass$1","transformNode$1","styleBinding","genData$1","decoder","style$1","he","isUnaryTag","canBeLeftOpenTag","isNonPhrasingTag","attribute","dynamicArgAttribute","ncname","qnameCapture","startTagOpen","startTagClose","endTag","doctype","comment","conditionalComment","isPlainTextElement","reCache","decodingMap","encodedAttr","encodedAttrWithNewLines","isIgnoreNewlineTag","shouldIgnoreFirstNewline","decodeAttr","shouldDecodeNewlines","parseHTML","lastTag","expectHTML","isUnaryTag$$1","canBeLeftOpenTag$$1","endTagLength","stackedTag","reStackedTag","rest$1","parseEndTag","textEnd","commentEnd","shouldKeepComment","advance","conditionalEnd","doctypeMatch","endTagMatch","curIndex","startTagMatch","parseStartTag","handleStartTag","unarySlash","unary","shouldDecodeNewlinesForHref","lowerCasedTag","lowerCasedTagName","warn$2","transforms","preTransforms","postTransforms","platformIsPreTag","platformMustUseProp","platformGetTagNamespace","onRE","dirRE","forAliasRE","forIteratorRE","stripParensRE","dynamicArgRE","argRE","bindRE","modifierRE","slotRE","lineBreakRE","whitespaceRE$1","decodeHTMLCached","emptySlotScopeToken","createASTElement","makeAttrsMap","currentParent","preserveWhitespace","whitespaceOption","inPre","closeElement","element","trimEndingWhitespace","processed","processElement","if","elseif","else","addIfCondition","block","forbidden","processIfConditions","slotScope","slotTarget","lastNode","comments","outputSourceRange","start$1","guardIESVGBug","isForbiddenTag","processPre","processRawAttrs","processFor","processIf","processOnce","end$1","isTextTag","processKey","processRef","processSlotContent","processSlotOutlet","processComponent","processAttrs","checkInFor","parseFor","inMatch","for","iteratorMatch","iterator1","iterator2","findPrevElement","ifConditions","slotTargetDynamic","slotBinding","getSlotName","slotBinding$1","dynamic$1","slotContainer","slotName","syncGen","isDynamic","hasBindings","parseModifiers","camel","argMatch","ieNSBug","ieNSPrefix","preTransformNode","typeBinding","ifCondition","ifConditionExtra","hasElse","elseIfCondition","branch0","cloneASTElement","branch1","branch2","model$1","modules$1","isStaticKey","isPlatformReservedTag","directives$1","baseOptions","genStaticKeysCached","genStaticKeys$1","optimize","markStatic$1","markStaticRoots","static","l$1","staticInFor","staticRoot","isDirectChildOfTemplateFor","fnExpRE","fnInvokeRE","simplePathRE","esc","tab","space","up","down","keyNames","genGuard","modifierCode","prevent","ctrl","alt","genHandlers","staticHandlers","dynamicHandlers","handlerCode","genHandler","isMethodPath","isFunctionExpression","isFunctionInvocation","genModifierCode","keyModifier","genKeyFilter","genFilterCode","keyVal","keyCode","keyName","wrapListeners","bind$1","wrapData","baseDirectives","cloak","CodegenState","dataGenFns","maybeComponent","onceId","generate","ast","genElement","staticProcessed","genStatic","onceProcessed","genOnce","forProcessed","genFor","ifProcessed","genIf","genSlot","genComponent","genData$2","genChildren","originalPreState","altGen","altEmpty","genIfConditions","conditions","genTernaryExp","altHelper","genDirectives","genProps","genScopedSlots","genInlineTemplate","needRuntime","hasRuntime","gen","inlineRenderFns","containsSlotChild","needsKey","generatedSlots","genScopedSlot","isLegacySyntax","reverseProxy","checkSkip","altGenElement","altGenNode","el$1","normalizationType$1","getNormalizationType","genNode","needsNormalization","genComment","genText","transformSpecialNewlines","bind$$1","componentName","dynamicProps","createFunction","errors","createCompileToFunctionFn","compiled","fnGenErrors","createCompilerCreator","baseCompile","finalOptions","tips","tip","compileToFunctions","div","createCompiler","getShouldDecode","idToTemplate","mount","getOuterHTML","outerHTML","container","nativeJoin","ES3_STRINGS","arDz","ACCESSORS","MAXIMUM_ALLOWED_LENGTH_EXCEEDED","deleteCount","insertCount","actualDeleteCount","actualStart","NATIVE_SYMBOL","USE_SYMBOL_AS_UID","nativeObjectCreate","getOwnPropertyNamesExternal","getOwnPropertyDescriptorModule","defineWellKnownSymbol","HIDDEN","SYMBOL","TO_PRIMITIVE","ObjectPrototype","$Symbol","$stringify","nativePropertyIsEnumerable","AllSymbols","ObjectPrototypeSymbols","StringToSymbolRegistry","SymbolToStringRegistry","WellKnownSymbolsStore","QObject","USE_SETTER","findChild","setSymbolDescriptor","ObjectPrototypeDescriptor","wrap","$defineProperty","$defineProperties","properties","$getOwnPropertySymbols","$propertyIsEnumerable","$create","V","$getOwnPropertyDescriptor","$getOwnPropertyNames","names","IS_OBJECT_PROTOTYPE","keyFor","sym","useSetter","useSimple","FORCED_JSON_STRINGIFY","$replacer","valueOf","INCORRECT_ITERATION","ceil","NativePromise","promiseResolve","NON_GENERIC","real","onFinally","bm","_defineProperty","_extends","_objectSpread","_objectWithoutPropertiesLoose","excluded","sourceKeys","_objectWithoutProperties","sourceSymbolKeys","IE11OrLess","Edge","FireFox","Safari","IOS","ChromeForAndroid","captureMode","off","msMatchesSelector","webkitMatchesSelector","getParentOrHost","closest","includeCTX","_throttleTimeout","R_SPACE","toggleClass","className","defaultView","currentStyle","matrix","selfOnly","appliedTransforms","matrixFn","DOMMatrix","WebKitCSSMatrix","CSSMatrix","MSCSSMatrix","getWindowScrollingElement","scrollingElement","getRect","relativeToContainingBlock","relativeToNonStaticParent","undoScale","innerHeight","innerWidth","containerRect","elMatrix","scaleX","scaleY","isScrolledPast","elSide","parentSide","getParentAutoScrollElement","elSideVal","parentSideVal","visible","childNum","currentChild","Sortable","ghost","dragged","draggable","lastChild","lastElementChild","previousElementSibling","nodeName","getRelativeScrollOffset","offsetLeft","offsetTop","winScroller","scrollLeft","scrollTop","indexOfObject","includeSelf","elem","gotSelf","clientWidth","scrollWidth","clientHeight","scrollHeight","elemCSS","overflowX","overflowY","dst","isRectEqual","rect1","rect2","ms","cancelThrottle","scrollBy","Polymer","jQuery","Zepto","dom","setRect","rect","unsetRect","expando","AnimationStateManager","animationCallbackId","animationStates","captureAnimationState","animation","fromRect","thisAnimationDuration","childMatrix","addAnimationState","removeAnimationState","animateAll","animating","animationTime","toRect","prevFromRect","prevToRect","animatingRect","targetMatrix","calculateRealTime","animate","animationResetTimer","currentRect","translateX","translateY","animatingX","animatingY","repaint","easing","animated","offsetWidth","sqrt","initializeByDefault","PluginManager","pluginEvent","eventName","sortable","evt","eventCanceled","eventNameGlobal","pluginName","initializePlugins","initialized","modifyOption","getEventProperties","eventProperties","modifiedValue","optionListeners","rootEl","targetEl","cloneEl","toEl","fromEl","oldIndex","newIndex","oldDraggableIndex","newDraggableIndex","originalEvent","putSortable","extraEventProperties","onName","CustomEvent","cancelable","pullMode","lastPutMode","allEventProperties","dragEl","parentEl","ghostEl","nextEl","lastDownEl","cloneHidden","dragStarted","activeSortable","hideGhostForTarget","_hideGhostForTarget","unhideGhostForTarget","_unhideGhostForTarget","cloneNowHidden","cloneNowShown","dispatchSortableEvent","_dispatchEvent","activeGroup","tapEvt","touchEvt","lastDx","lastDy","tapDistanceLeft","tapDistanceTop","lastTarget","lastDirection","targetMoveDistance","ghostRelativeParent","awaitingDragStarted","ignoreNextClick","sortables","pastFirstInvertThresh","isCircumstantialInvert","ghostRelativeParentInitialScroll","_silent","savedInputChecked","documentExists","PositionGhostAbsolutely","CSSFloatProperty","supportDraggable","supportCssPointerEvents","pointerEvents","_detectDirection","elCSS","elWidth","paddingLeft","paddingRight","borderLeftWidth","borderRightWidth","child1","child2","firstChildCSS","secondChildCSS","firstChildWidth","marginLeft","marginRight","secondChildWidth","flexDirection","gridTemplateColumns","touchingSideChild2","_dragElInRowColumn","dragRect","targetRect","vertical","dragElS1Opp","dragElS2Opp","dragElOppLength","targetS1Opp","targetS2Opp","targetOppLength","_detectNearestEmptySortable","emptyInsertThreshold","insideHorizontally","insideVertically","_prepareGroup","toFn","pull","sameGroup","otherGroup","originalGroup","checkPull","checkPut","put","revertClone","stopPropagation","nearestEmptyInsertDetectEvent","touches","nearest","clientX","clientY","_onDragOver","_checkOutsideTargetEl","_isOutsideThisEl","disabled","handle","swapThreshold","invertSwap","invertedSwapThreshold","removeCloneOnHide","direction","ghostClass","chosenClass","dragClass","ignore","preventOnFilter","setData","dataTransfer","dropBubble","dragoverBubble","dataIdAttr","delayOnTouchOnly","touchStartThreshold","devicePixelRatio","forceFallback","fallbackClass","fallbackOnBody","fallbackTolerance","fallbackOffset","supportPointer","nativeDraggable","_onTapStart","_globalDragOver","dropEffect","_onMove","willInsertAfter","retVal","onMoveFn","onMove","draggedRect","related","relatedRect","_disableDraggable","_unsilent","_ghostIsLast","spacer","_getSwapDirection","isLastTarget","mouseOnAxis","targetLength","targetS1","targetS2","invert","_getInsertDirection","_generateId","sum","_saveInputCheckedState","inputs","idx","checked","_nextTick","_cancelNextTick","_getDirection","touch","pointerType","originalTarget","composedPath","isContentEditable","criteria","_prepareDragStart","dragStartFn","_lastX","_lastY","_onDrop","_disableDelayedDragEvents","_triggerDragStart","_disableDelayedDrag","_delayedDragTouchMoveHandler","_dragStartTimer","_onTouchMove","_onDragStart","selection","empty","getSelection","removeAllRanges","_dragStarted","_appendGhost","_nulling","_emulateDragOver","elementFromPoint","ghostMatrix","relativeScrollOffset","cssMatrix","_hideClone","cloneId","_loopId","effectAllowed","_dragStartId","isOwner","canSort","fromSortable","completedFired","dragOverEvent","_ignoreWhileAnimating","completed","elLastChild","changed","targetBeforeFirstSwap","sibling","differentLevel","differentRowCol","side1","scrolledPastTop","scrollBefore","dragIndex","nextElementSibling","moveVector","extra","axis","insertion","_showClone","_offMoveEvents","_offUpEvents","save","handleEvent","order","querySelectorAll","cancelNextTick","detectDirection","scrollEl","scrollRootEl","lastAutoScrollX","lastAutoScrollY","touchEvt$1","pointerElemChangedInterval","autoScrolls","scrolling","AutoScrollPlugin","AutoScroll","scroll","scrollSensitivity","scrollSpeed","bubbleScroll","_handleAutoScroll","_handleFallbackAutoScroll","dragOverCompleted","dragOverBubble","drop","clearPointerElemChangedInterval","clearAutoScrolls","nulling","autoScroll","ogElemScroller","newElem","lastSwapEl","isFallback","scrollCustomFn","sens","scrollThisInstance","scrollFn","layersOut","canScrollX","canScrollY","scrollPosX","scrollPosY","vx","vy","layer","scrollOffsetY","scrollOffsetX","toSortable","changedTouches","onSpill","Revert","Remove","SwapPlugin","Swap","swapClass","dragStart","dragOverValid","swap","prevSwapEl","swapNodes","swapItem","n1","n2","i1","i2","p1","p2","isEqualNode","startIndex","_ref4","parentSortable","lastMultiDragSelect","multiDragSortable","dragEl$1","clonesFromRect","clonesHidden","multiDragElements","multiDragClones","initialFolding","folding","MultiDragPlugin","MultiDrag","_deselectMultiDrag","_checkKeyDown","_checkKeyUp","selectedClass","multiDragKey","multiDragElement","multiDragKeyDown","isMultiDrag","delayStartGlobal","delayEnded","setupClone","sortableIndex","insertMultiDragClones","showClone","hideClone","_ref5","dragStartGlobal","_ref6","multiDrag","_ref7","_this2","removeMultiDragElements","dragOver","_ref8","_ref9","insertMultiDragElements","_ref10","dragRectAbsolute","clonesHiddenBefore","dragOverAnimationCapture","_ref11","dragMatrix","dragOverAnimationComplete","_ref12","originalEvt","currentIndex","multiDragIndex","nullingGlobal","destroyGlobal","select","deselect","_this3","oldIndicies","newIndicies","clones","clonesInserted","elementsInserted","gomDeva","error1","error2","dotAll","weekdaysCaseReplace","nounCase","nominative","accusative","genitive","processHoursFunction","uk","thrower","argument0","argument1","PrototypeOfArrayIteratorPrototype","arrayIterator","TO_STRING_TAG_SUPPORT","FunctionPrototype","FunctionPrototypeToString","nameRE","lo","deAt","de","settle","cookies","buildFullPath","parseHeaders","isURLSameOrigin","requestData","requestHeaders","auth","username","password","unescape","Authorization","btoa","onreadystatechange","readyState","responseURL","responseHeaders","getAllResponseHeaders","responseData","responseType","responseText","statusText","onabort","ontimeout","timeoutErrorMessage","xsrfValue","withCredentials","setRequestHeader","onDownloadProgress","onUploadProgress","upload","send","tzmLatn","jv","flush","toggle","macrotask","WebKitMutationObserver","queueMicrotaskDescriptor","queueMicrotask","task","esMx","createWellKnownSymbol","withoutSetter","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","NO_HOLES","specificCreate","findIndex","__WEBPACK_EXTERNAL_MODULE_a352__","installedModules","__webpack_require__","moduleId","LIBRARY","$export","$iterCreate","BUGGY","FF_ITERATOR","Base","getMethod","TAG","DEF_VALUES","VALUES_BUG","$native","$default","$entries","$anyNative","defined","at","$keys","dP","getKeys","wks","REPLACE_SUPPORTS_NAMED_GROUPS","SPLIT_WORKS_WITH_OVERWRITTEN_EXEC","originalExec","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","nativeRegExpMethod","arg2","forceStringMethod","strfn","rxfn","cof","ARG","tryGet","callee","SRC","$toString","TPL","safe","dPs","Empty","createDict","gt","USE_SYMBOL","$exports","INCLUDES","createDesc","ObjectProto","LAST_INDEX","core","SHARED","own","IS_FORCED","IS_GLOBAL","G","IS_STATIC","IS_PROTO","IS_BIND","expProto","U","W","builtinExec","$includes","IObject","gOPS","pIE","$assign","K","aLen","getSymbols","isEnum","__g","__e","ArrayProto","$replace","$iterators","ArrayValues","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","collections","explicit","toIObject","__webpack_exports__","insertNodeAt","getConsole","parentElement","fatherNode","refNode","g","px","Arguments","arrayIndexOf","STARTS_WITH","$startsWith","currentScript","scripts","setPublicPath_i","_arrayWithHoles","_iterableToArrayLimit","_arr","_nonIterableRest","_slicedToArray","external_commonjs_sortablejs_commonjs2_sortablejs_amd_sortablejs_root_Sortable_","external_commonjs_sortablejs_commonjs2_sortablejs_amd_sortablejs_root_Sortable_default","buildAttribute","propName","computeVmIndex","elt","_computeIndexes","isTransition","footerOffset","elmFromNodes","footerIndex","rawIndexes","ind","evtName","evtData","delegateAndEmit","realList","isTransitionName","vuedraggable_isTransition","_slots","getSlot","computeChildrenAndOffsets","headerOffset","header","footer","getComponentAttributes","componentData","attributes","componentDataAttrs","eventsListened","eventsToEmit","readonlyProperties","draggingElement","noTransitionOnDrag","move","draggableComponent","transitionMode","noneFunctionalComponentMode","_computeChildrenAndOf","getTag","getIsFunctional","optionsAdded","onDragMove","_sortable","rootContainer","computeIndexes","beforeDestroy","newOptionValue","updateOptions","getChildrenNodes","rawNodes","_this4","visibleIndexes","getUnderlyingVm","htmlElt","getUnderlyingPotencialDraggableComponent","vue","emitChanges","_this5","alterList","onList","newList","spliceList","_arguments","updatePosition","getRelatedContextFromMoveEvent","destination","getVmIndex","domIndex","indexes","numberIndexes","getComponent","resetTransitionData","transitionContainer","onDragStart","_underlying_vm_","onDragAdd","added","onDragRemove","onDragUpdate","updateProperty","computeFutureIndex","relatedContext","domChildren","currentDOMIndex","draggedInList","draggedContext","futureIndex","sendEvt","onDragEnd","vuedraggable","enSg","nn","relativeTimeWithSingular","relativeSeconds","lv","preventExtensions","deCh","hexCharacters","match3or4Hex","match6or8Hex","nonHexChars","validHexSize","alpha","red","green","blue","MAX_INTEGER","NAN","reTrim","reIsBadHex","reIsBinary","reIsOctal","freeParseInt","asciiSize","baseProperty","stringSize","unicodeSize","nativeCeil","nativeFloor","baseRepeat","createPadding","charsLength","toFinite","sign","other","isBinary","strLength","SpotifyWebApi","_baseUri","_accessToken","_promiseImplementation","WrapPromiseWithAbort","_promiseProvider","promiseFunction","returnedPromise","deferred","resolvedResult","rejectedResult","_extend","objects","_buildUrl","parameters","qs","_performRequest","req","success","failure","postData","contentType","_checkParamsAndPerformRequest","optionsAlwaysExtendParams","opt","Constr","getGeneric","getMe","getMySavedTracks","addToMySavedTracks","trackIds","removeFromMySavedTracks","containsMySavedTracks","ids","getMySavedAlbums","addToMySavedAlbums","albumIds","removeFromMySavedAlbums","containsMySavedAlbums","getMyTopArtists","getMyTopTracks","getMyRecentlyPlayedTracks","followUsers","userIds","followArtists","artistIds","followPlaylist","playlistId","unfollowUsers","unfollowArtists","unfollowPlaylist","isFollowingUsers","isFollowingArtists","areFollowingPlaylist","getFollowedArtists","getUser","userId","getUserPlaylists","getPlaylist","getPlaylistTracks","getPlaylistCoverImage","createPlaylist","changePlaylistDetails","addTracksToPlaylist","uris","replaceTracksInPlaylist","reorderTracksInPlaylist","rangeStart","range_start","insert_before","removeTracksFromPlaylist","dataToBeSent","uri","tracks","removeTracksFromPlaylistWithSnapshotId","snapshotId","snapshot_id","removeTracksFromPlaylistInPositions","positions","uploadCustomPlaylistCoverImage","imageData","getAlbum","albumId","getAlbumTracks","getAlbums","getTrack","trackId","getTracks","getArtist","artistId","getArtists","getArtistAlbums","getArtistTopTracks","countryId","country","getArtistRelatedArtists","getFeaturedPlaylists","getNewReleases","getCategories","getCategory","categoryId","getCategoryPlaylists","searchAlbums","searchArtists","searchTracks","searchPlaylists","searchShows","searchEpisodes","getAudioFeaturesForTrack","getAudioFeaturesForTracks","getAudioAnalysisForTrack","getRecommendations","getAvailableGenreSeeds","getMyDevices","getMyCurrentPlaybackState","getMyCurrentPlayingTrack","transferMyPlayback","deviceIds","device_ids","play","device_id","field","skipToNext","skipToPrevious","seek","position_ms","setRepeat","setVolume","volume_percent","setShuffle","getShow","showId","getShows","showIds","getMySavedShows","addToMySavedShows","removeFromMySavedShows","containsMySavedShows","getShowEpisodes","getEpisode","episodeId","getEpisodes","episodeIds","getAccessToken","setAccessToken","accessToken","setPromiseImplementation","PromiseImplementation","valid","PREFERRED_STRING","tzm","hookCallback","setHookCallback","hasOwnProp","isObjectEmpty","createUTC","createLocalOrUTC","utc","defaultParsingFlags","unusedTokens","unusedInput","overflow","charsLeftOver","nullInput","invalidEra","invalidMonth","invalidFormat","userInvalidated","iso","parsedDateParts","era","rfc2822","weekdayMismatch","getParsingFlags","_pf","_isValid","parsedParts","isNowValid","invalidWeekday","_strict","bigHour","createInvalid","NaN","fun","momentProperties","updateInProgress","copyConfig","_isAMomentObject","_tzm","_isUTC","_offset","_locale","Moment","updateOffset","isMoment","suppressDeprecationWarnings","firstTime","deprecationHandler","deprecations","deprecateSimple","_config","_dayOfMonthOrdinalParseLenient","_dayOfMonthOrdinalParse","_ordinalParse","mergeConfigs","parentConfig","childConfig","Locale","defaultCalendar","_calendar","zeroFill","forceSign","absNumber","zerosToFill","formattingTokens","localFormattingTokens","formatFunctions","formatTokenFunctions","addFormatToken","padded","removeFormattingTokens","makeFormatFunction","formatMoment","expandFormat","replaceLongDateFormatTokens","defaultLongDateFormat","_longDateFormat","formatUpper","tok","defaultInvalidDate","_invalidDate","defaultOrdinal","defaultDayOfMonthOrdinalParse","_ordinal","defaultRelativeTime","_relativeTime","pastFuture","diff","addUnitAlias","unit","shorthand","lowerCase","normalizeUnits","normalizeObjectUnits","inputObject","normalizedProp","normalizedInput","priorities","addUnitPriority","priority","getPrioritizedUnits","unitsObj","isLeapYear","year","absFloor","toInt","argumentForCoercion","coercedNumber","makeGetSet","keepTime","set$1","date","daysInMonth","stringGet","stringSet","prioritized","regexes","match1","match2","match3","match4","match6","match1to2","match3to4","match5to6","match1to3","match1to4","match1to6","matchUnsigned","matchSigned","matchOffset","matchShortOffset","matchTimestamp","matchWord","addRegexToken","strictRegex","isStrict","getParseRegexForToken","unescapeFormat","regexEscape","p3","p4","addParseToken","addWeekParseToken","_w","addTimeToArrayFromToken","YEAR","MONTH","DATE","HOUR","MINUTE","SECOND","MILLISECOND","WEEK","WEEKDAY","mod","modMonth","defaultLocaleMonths","defaultLocaleMonthsShort","MONTHS_IN_FORMAT","defaultMonthsShortRegex","defaultMonthsRegex","localeMonths","_months","localeMonthsShort","_monthsShort","handleStrictParse","monthName","ii","llc","toLocaleLowerCase","_monthsParse","_longMonthsParse","_shortMonthsParse","localeMonthsParse","_monthsParseExact","setMonth","dayOfMonth","getSetMonth","getDaysInMonth","computeMonthsParse","_monthsShortStrictRegex","_monthsShortRegex","_monthsStrictRegex","_monthsRegex","cmpLenRev","shortPieces","longPieces","mixedPieces","daysInYear","parseTwoDigitYear","getSetYear","getIsLeapYear","createDate","getFullYear","setFullYear","createUTCDate","UTC","getUTCFullYear","setUTCFullYear","firstWeekOffset","fwd","fwdlw","getUTCDay","dayOfYearFromWeeks","weekday","resYear","resDayOfYear","localWeekday","weekOffset","dayOfYear","weekOfYear","resWeek","weeksInYear","weekOffsetNext","localeWeek","_week","defaultLocaleWeek","localeFirstDayOfWeek","localeFirstDayOfYear","getSetWeek","getSetISOWeek","parseWeekday","parseIsoWeekday","shiftWeekdays","ws","weekdaysMinRegex","weekdaysShortRegex","weekdaysRegex","defaultLocaleWeekdays","defaultLocaleWeekdaysShort","defaultLocaleWeekdaysMin","defaultWeekdaysRegex","defaultWeekdaysShortRegex","defaultWeekdaysMinRegex","localeWeekdays","_weekdays","localeWeekdaysShort","_weekdaysShort","localeWeekdaysMin","_weekdaysMin","handleStrictParse$1","weekdayName","_weekdaysParse","_shortWeekdaysParse","_minWeekdaysParse","localeWeekdaysParse","_weekdaysParseExact","_fullWeekdaysParse","getSetDayOfWeek","getDay","getSetLocaleDayOfWeek","getSetISODayOfWeek","computeWeekdaysParse","_weekdaysStrictRegex","_weekdaysRegex","_weekdaysShortStrictRegex","_weekdaysShortRegex","_weekdaysMinStrictRegex","_weekdaysMinRegex","minp","shortp","longp","minPieces","hFormat","kFormat","lowercase","matchMeridiem","_meridiemParse","localeIsPM","kInput","_isPm","_meridiem","pos1","pos2","defaultLocaleMeridiemParse","getSetHour","localeMeridiem","globalLocale","baseConfig","locales","localeFamilies","commonPrefix","arr1","minl","normalizeLocale","chooseLocale","loadLocale","oldLocale","_abbr","require","getSetGlobalLocale","getLocale","parentLocale","tmpLocale","listLocales","checkOverflow","_overflowDayOfYear","_overflowWeeks","_overflowWeekday","extendedIsoRegex","basicIsoRegex","tzRegex","isoDates","isoTimes","aspNetJsonRegex","obsOffsets","UT","GMT","EDT","EST","CDT","CST","MDT","MST","PDT","PST","configFromISO","allowTime","dateFormat","timeFormat","tzFormat","configFromStringAndFormat","extractFromRFC2822Strings","yearStr","monthStr","dayStr","hourStr","minuteStr","secondStr","untruncateYear","preprocessRFC2822","checkWeekday","weekdayStr","parsedInput","weekdayProvided","weekdayActual","calculateOffset","obsOffset","militaryOffset","numOffset","configFromRFC2822","parsedArray","setUTCMinutes","getUTCMinutes","configFromString","createFromInputFallback","currentDateArray","nowValue","_useUTC","getUTCMonth","getUTCDate","getMonth","getDate","configFromArray","currentDate","expectedWeekday","yearToUse","dayOfYearFromWeekInfo","_dayOfYear","_nextDay","weekYear","weekdayOverflow","curWeek","GG","createLocal","gg","ISO_8601","RFC_2822","skipped","stringLength","totalParsedInputLength","meridiemFixWrap","erasConvertYear","isPm","configFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","validFormatFound","bestFormatIsValid","score","configFromObject","dayOrDate","millisecond","createFromConfig","prepareConfig","configFromInput","isUTC","prototypeMin","prototypeMax","pickBy","moments","ordering","isDurationValid","unitHasDecimal","isValid$1","createInvalid$1","createDuration","Duration","quarters","quarter","isoWeek","_milliseconds","_days","_bubble","isDuration","absRound","compareArrays","array1","array2","dontConvert","lengthDiff","diffs","utcOffset","offsetFromString","chunkOffset","chunk","cloneWithOffset","setTime","getDateOffset","getTimezoneOffset","getSetOffset","keepLocalTime","keepMinutes","localAdjust","_changeInProgress","addSubtract","getSetZone","setOffsetToUTC","setOffsetToLocal","setOffsetToParsedOffset","tZone","hasAlignedHourOffset","isDaylightSavingTime","isDaylightSavingTimeShifted","_isDSTShifted","isLocal","isUtcOffset","isUtc","aspNetRegex","isoRegex","diffRes","parseIso","momentsDifference","inp","positiveMomentsDifference","isAfter","isBefore","createAdder","isAdding","invalid","isMomentInput","isNumberOrStringArray","isMomentInputObject","objectTest","propertyTest","arrayTest","dataTypeTest","isCalendarSpec","getCalendarFormat","myMoment","calendar$1","formats","sod","startOf","calendarFormat","localInput","endOf","isBetween","inclusivity","localFrom","localTo","isSame","inputMs","isSameOrAfter","isSameOrBefore","asFloat","zoneDelta","monthDiff","anchor2","adjust","wholeMonthDiff","anchor","keepOffset","toDate","inspect","datetime","suffix","zone","inputString","defaultFormatUtc","defaultFormat","humanize","fromNow","toNow","newLocaleData","lang","MS_PER_SECOND","MS_PER_MINUTE","MS_PER_HOUR","MS_PER_400_YEARS","mod$1","dividend","divisor","localStartOfDate","utcStartOfDate","startOfDate","isoWeekday","unix","isValid$2","parsingFlags","invalidAt","creationData","localeEras","_eras","localeErasParse","eraName","localeErasConvertYear","getEraName","getEraNarrow","getEraAbbr","getEraYear","erasNameRegex","computeErasParse","_erasNameRegex","_erasRegex","erasAbbrRegex","_erasAbbrRegex","erasNarrowRegex","_erasNarrowRegex","matchEraAbbr","matchEraName","matchEraNarrow","matchEraYearOrdinal","_eraYearOrdinalRegex","abbrPieces","namePieces","narrowPieces","addWeekYearFormatToken","getSetWeekYear","getSetWeekYearHelper","getSetISOWeekYear","getISOWeeksInYear","getISOWeeksInISOWeekYear","isoWeekYear","getWeeksInYear","weekInfo","getWeeksInWeekYear","weeksTarget","setWeekAll","dayOfYearData","getSetQuarter","erasParse","getSetDayOfMonth","getSetDayOfYear","getSetMinute","getSetMillisecond","getSetSecond","parseMs","getZoneAbbr","getZoneName","createUnix","createInZone","parseZone","preParsePostFormat","eraNarrow","eraAbbr","eraYear","isoWeeks","weeksInWeekYear","isoWeeksInYear","isoWeeksInISOWeekYear","isDST","zoneAbbr","zoneName","dates","isDSTShifted","proto$1","get$1","listMonthsImpl","listWeekdaysImpl","localeSorted","listMonths","listMonthsShort","listWeekdays","listWeekdaysShort","listWeekdaysMin","firstDayOfYear","firstDayOfWeek","langData","mathAbs","addSubtract$1","subtract$1","absCeil","monthsFromDays","monthsToDays","daysToMonths","valueOf$1","makeAs","asSeconds","asMinutes","asHours","asDays","asWeeks","asQuarters","asYears","clone$1","get$2","makeGetter","thresholds","substituteTimeAgo","relativeTime$1","posNegDuration","getSetRelativeTimeRounding","roundingFunction","getSetRelativeTimeThreshold","argWithSuffix","argThresholds","withSuffix","abs$1","toISOString$1","totalSign","ymSign","daysSign","hmsSign","total","proto$2","toIsoString","relativeTimeRounding","relativeTimeThreshold","HTML5_FMT","DATETIME_LOCAL","DATETIME_LOCAL_SECONDS","DATETIME_LOCAL_MS","TIME","TIME_SECONDS","TIME_MS","msMaxTouchPoints","middleware","detectIframe","srcTarget","ignoreDuplicateOf","line","FormData","ArrayBuffer","isView","pipe","URLSearchParams","product","assignValue","stripBOM","$findIndex","FIND_INDEX","DocumentEventHelper","forEachListener","isBrowser","hasPassive","supported","desc","relativeMouseOffset","bounds","roundedMax","decimal","fraction","DragHelper","isDrag","mousedown","offsetByMouse","mousemove","dragMove","mouseup","dragEnd","touchstart","offsetByTouch","touchmove","touchend","touchcancel","isInTarget","RangeSlider","_h","drag","actualValue","valuePercent","dragStartValue","_min","_max","defaultValue","_step","newValue","knob","inner","valueFromBounds","emitInput","emitChange","non","sq","$indexOf","nativeIndexOf","NEGATIVE_ZERO","searchElement","EXISTS","newPromiseCapability","promiseCapability","createInstance","defaultConfig","axios","promises","spread","sr","tzl","numbersNouns","translateFuture","translatePast","numberNoun","numberAsNoun","hundred","ten","one","tlh","ReconnectingWebSocket","onopen","onclose","onconnecting","debugAll","CONNECTING","WebSocket","OPEN","CLOSING","CLOSED","protocols","debug","automaticOpen","reconnectInterval","maxReconnectInterval","reconnectDecay","timeoutInterval","maxReconnectAttempts","reconnectAttempts","forcedClose","timedOut","eventTarget","generateEvent","initCustomEvent","reconnectAttempt","localWs","isReconnect","wasClean","refresh","variable","NASHORN_BUG","bo","aPossiblePrototype","CORRECT_SETTER","ptBr","IS_RIGHT","memo","fil","hyAm","ca","stringMethod","regexMethod","$map","frCa","check","globalThis","nlBe","hi","ArrayIteratorMethods","normalizeArray","allowAboveRoot","basename","matchedSlash","xs","resolvedAbsolute","isAbsolute","trailingSlash","fromParts","toParts","samePartsLength","outputParts","sep","dirname","hasRoot","ext","extname","startDot","startPart","preDotState","NativeSymbol","EmptyStringDescriptionStore","SymbolWrapper","symbolPrototype","gu","CORRECT_PROTOTYPE_GETTER","locals","sources","sourceRoot","media","sourceMap","DEBUG","ssrId","throttleLimit","loopCheckTimeout","loopCheckMaxCalls","STATE_CHANGER","INFINITE_EVENT","IDENTIFIER","INFINITE_LOOP","READY","LOADING","COMPLETE","ERROR","fontSize","padding","spinner","distance","forceUseInfiniteWrapper","system","noResults","noMore","errorBtnText","WARNINGS","ERRORS","STATUS","BUBBLES","CIRCLES","SPIRAL","WAVEDOTS","spinnerView","spinnerInConfig","__inject__","timers","caches","reset","isChecked","track","getScrollElm","restore","scrollParent","scrollHandler","isFirstLoad","Spinner","isShowSpinner","isShowError","isShowNoResults","isShowNoMore","slotStyles","identifier","onInfinite","stateChanger","getScrollParent","Event","attemptLoad","loaded","complete","getCurrentDistance","enIe","ARRAY_ITERATOR","nativeLastIndexOf","relativeURL","Internal","OwnPromiseCapability","PromiseWrapper","nativeThen","microtask","hostReportErrors","newPromiseCapabilityModule","perform","PROMISE","getInternalPromiseState","PromiseConstructor","$fetch","newGenericPromiseCapability","DISPATCH_EVENT","NATIVE_REJECTION_EVENT","PromiseRejectionEvent","UNHANDLED_REJECTION","REJECTION_HANDLED","PENDING","FULFILLED","REJECTED","HANDLED","UNHANDLED","GLOBAL_CORE_JS_PROMISE","FakePromise","isThenable","isReject","notified","reactions","ok","exited","reaction","rejection","onHandleUnhandled","onUnhandled","IS_UNHANDLED","isUnhandled","unwrap","internalReject","internalResolve","onFulfilled","onRejected","fetch","capability","$promiseResolve","remaining","alreadyCalled","race","km","isPercent","et","enIn","si","PromiseCapability","$$resolve","$$reject","NEWTON_ITERATIONS","NEWTON_MIN_SLOPE","SUBDIVISION_PRECISION","SUBDIVISION_MAX_ITERATIONS","kSplineTableSize","kSampleStepSize","float32ArraySupported","Float32Array","aA1","aA2","calcBezier","aT","getSlope","binarySubdivide","aX","aA","aB","mX1","mX2","currentX","currentT","newtonRaphsonIterate","aGuessT","currentSlope","LinearEasing","mY1","mY2","sampleValues","getTForX","intervalStart","currentSample","lastSample","dist","guessForT","initialSlope","easings","ease","linear","cumulativeOffset","offsetParent","abortEvents","onStart","onDone","onCancel","setDefaults","scroller","initialX","targetX","initialY","targetY","diffX","diffY","cumulativeOffsetContainer","cumulativeOffsetElement","abortEv","easingFn","timeStart","timeElapsed","abortFn","recalculateTargets","timestamp","topLeft","_duration","containerHeight","containerTop","containerBottom","elementTop","elementBottom","_scroller","bindings","deleteBinding","findBinding","getBinding","handleClick","directiveHooks","VueScrollTo","unmounted","globalProperties","$scrollTo","FREEZING","METADATA","setMetadata","objectID","weakData","getWeakData","onFreeze","pt","paIn","classofRaw","CORRECT_ARGUMENTS","gd","eject","nl","nativeSlice","fin","xPseudo","se"],"mappings":"oGAAA,IAAIA,EAAkB,EAAQ,QAE1BC,EAAgBD,EAAgB,eAChCE,EAAO,GAEXA,EAAKD,GAAiB,IAEtBE,EAAOC,QAA2B,eAAjBC,OAAOH,I,wBCHtB,SAAUI,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIC,EAASD,EAAOE,aAAa,UAAW,CACxCC,OAAQ,6EAA6EC,MACjF,KAEJC,YAAa,oDAAoDD,MAAM,KACvEE,SAAU,+DAA+DF,MACrE,KAEJG,cAAe,kCAAkCH,MAAM,KACvDI,YAAa,yBAAyBJ,MAAM,KAC5CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,uBACTC,QAAS,mBACTC,SAAU,2BACVC,QAAS,uBACTC,SAAU,oCACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,kBACRC,KAAM,qBACNC,EAAG,SACHC,GAAI,YACJC,EAAG,aACHC,GAAI,YACJC,EAAG,WACHC,GAAI,UACJC,EAAG,UACHC,GAAI,SACJC,EAAG,SACHC,GAAI,QACJC,EAAG,UACHC,GAAI,UAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOvC,M,wBCzDT,SAAUJ,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIyC,EAAKzC,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,yFAAyFC,MAC7F,KAEJC,YAAa,yEAAyED,MAClF,KAEJsC,kBAAkB,EAClBpC,SAAU,wEAAwEF,MAC9E,KAEJG,cAAe,2CAA2CH,MAAM,KAChEI,YAAa,wBAAwBJ,MAAM,KAC3CK,eAAgB,CACZC,GAAI,aACJC,IAAK,gBACLC,EAAG,aACHC,GAAI,cACJC,IAAK,0BACLC,KAAM,iCAEVC,SAAU,CACNC,QAAS,aACTC,QAAS,YACTC,SAAU,WACVC,QAAS,cACTC,SAAU,oBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,aACRC,KAAM,WACNC,EAAG,gBACHC,GAAI,cACJC,EAAG,eACHC,GAAI,cACJC,EAAG,eACHC,GAAI,cACJC,EAAG,YACHC,GAAI,WACJC,EAAG,WACHC,GAAI,UACJC,EAAG,WACHC,GAAI,WAERM,cAAe,gDACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAGO,WAAbC,GAAyBD,GAAQ,GACrB,iBAAbC,GACa,eAAbA,EAEOD,EAAO,GAEPA,GAGfC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,SACAA,EAAO,GACP,SACAA,EAAO,GACP,eACAA,EAAO,GACP,aAEA,YAKnB,OAAOJ,M,uBCxFX,IAAIQ,EAAY,EAAQ,QAGxBvD,EAAOC,QAAU,SAAUuD,EAAIC,EAAMC,GAEnC,GADAH,EAAUC,QACGG,IAATF,EAAoB,OAAOD,EAC/B,OAAQE,GACN,KAAK,EAAG,OAAO,WACb,OAAOF,EAAGI,KAAKH,IAEjB,KAAK,EAAG,OAAO,SAAUI,GACvB,OAAOL,EAAGI,KAAKH,EAAMI,IAEvB,KAAK,EAAG,OAAO,SAAUA,EAAGC,GAC1B,OAAON,EAAGI,KAAKH,EAAMI,EAAGC,IAE1B,KAAK,EAAG,OAAO,SAAUD,EAAGC,EAAGC,GAC7B,OAAOP,EAAGI,KAAKH,EAAMI,EAAGC,EAAGC,IAG/B,OAAO,WACL,OAAOP,EAAGQ,MAAMP,EAAMQ,c,wBCjBxB,SAAU9D,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI4D,EAAK5D,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,gEAAgEC,MACpE,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,oEAAoEF,MAC1E,KAEJG,cAAe,6BAA6BH,MAAM,KAClDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,sCACJC,IAAK,6CACLC,KAAM,oDAEVC,SAAU,CACNC,QAAS,sBACTC,QAAS,sBACTE,QAAS,sBACTD,SAAU,4BACVE,SAAU,4BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SAAUqC,GACd,IAAIC,EAAQ,UAAUC,KAAKF,GACrB,MACA,QAAQE,KAAKF,GACb,MACA,MACN,OAAOA,EAASC,GAEpBrC,KAAM,YACNC,EAAG,iBACHC,GAAI,aACJC,EAAG,YACHC,GAAI,WACJC,EAAG,YACHC,GAAI,WACJC,EAAG,UACHC,GAAI,SACJC,EAAG,WACHC,GAAI,UACJC,EAAG,UACHC,GAAI,UAER2B,uBAAwB,cACxBC,QAAS,SACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOoB,M,wBClET,SAAU/D,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;SAASkE,EAAOC,GACZ,OAAIA,EAAI,MAAQ,IAELA,EAAI,KAAO,EAK1B,SAASC,EAAUC,EAAQC,EAAeC,EAAKC,GAC3C,IAAIC,EAASJ,EAAS,IACtB,OAAQE,GACJ,IAAK,IACD,OAAOD,GAAiBE,EAClB,mBACA,mBACV,IAAK,KACD,OAAIN,EAAOG,GAEHI,GACCH,GAAiBE,EAAW,WAAa,YAG3CC,EAAS,UACpB,IAAK,IACD,OAAOH,EAAgB,SAAW,SACtC,IAAK,KACD,OAAIJ,EAAOG,GAEHI,GAAUH,GAAiBE,EAAW,UAAY,WAE/CF,EACAG,EAAS,SAEbA,EAAS,SACpB,IAAK,KACD,OAAIP,EAAOG,GAEHI,GACCH,GAAiBE,EACZ,gBACA,iBAGPC,EAAS,cACpB,IAAK,IACD,OAAIH,EACO,QAEJE,EAAW,MAAQ,OAC9B,IAAK,KACD,OAAIN,EAAOG,GACHC,EACOG,EAAS,QAEbA,GAAUD,EAAW,OAAS,SAC9BF,EACAG,EAAS,QAEbA,GAAUD,EAAW,MAAQ,QACxC,IAAK,IACD,OAAIF,EACO,UAEJE,EAAW,QAAU,SAChC,IAAK,KACD,OAAIN,EAAOG,GACHC,EACOG,EAAS,UAEbA,GAAUD,EAAW,SAAW,WAChCF,EACAG,EAAS,UAEbA,GAAUD,EAAW,QAAU,UAC1C,IAAK,IACD,OAAOF,GAAiBE,EAAW,KAAO,MAC9C,IAAK,KACD,OAAIN,EAAOG,GACAI,GAAUH,GAAiBE,EAAW,KAAO,QAEjDC,GAAUH,GAAiBE,EAAW,KAAO,QAIhE,IAAIE,EAAK1E,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,oFAAoFC,MACxF,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,mFAAmFF,MACzF,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,eACJC,IAAK,0BACLC,KAAM,iCAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,oBACTC,SAAU,gBACVC,QAAS,iBACTC,SAAU,0BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,iBACNC,EAAG0C,EACHzC,GAAIyC,EACJxC,EAAGwC,EACHvC,GAAIuC,EACJtC,EAAG,cACHC,GAAIqC,EACJpC,EAAGoC,EACHnC,GAAImC,EACJlC,EAAGkC,EACHjC,GAAIiC,EACJhC,EAAGgC,EACH/B,GAAI+B,GAERJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOkC,M,uBCnJX,IAAIC,EAAkB,EAAQ,QAC1BC,EAA4B,EAAQ,QAA8CC,EAElFC,EAAW,GAAGA,SAEdC,EAA+B,iBAAVC,QAAsBA,QAAUC,OAAOC,oBAC5DD,OAAOC,oBAAoBF,QAAU,GAErCG,EAAiB,SAAUC,GAC7B,IACE,OAAOR,EAA0BQ,GACjC,MAAOC,GACP,OAAON,EAAYO,UAKvB5F,EAAOC,QAAQkF,EAAI,SAA6BO,GAC9C,OAAOL,GAAoC,mBAArBD,EAASxB,KAAK8B,GAChCD,EAAeC,GACfR,EAA0BD,EAAgBS,M,uBCpBhD,IAAIG,EAAc,EAAQ,QACtBC,EAA6B,EAAQ,QACrCC,EAA2B,EAAQ,QACnCd,EAAkB,EAAQ,QAC1Be,EAAc,EAAQ,QACtBC,EAAM,EAAQ,QACdC,EAAiB,EAAQ,QAEzBC,EAAiCZ,OAAOa,yBAI5CnG,EAAQkF,EAAIU,EAAcM,EAAiC,SAAkCE,EAAGC,GAG9F,GAFAD,EAAIpB,EAAgBoB,GACpBC,EAAIN,EAAYM,GAAG,GACfJ,EAAgB,IAClB,OAAOC,EAA+BE,EAAGC,GACzC,MAAOX,IACT,GAAIM,EAAII,EAAGC,GAAI,OAAOP,GAA0BD,EAA2BX,EAAEvB,KAAKyC,EAAGC,GAAID,EAAEC,M,wBCb3F,SAAUnG,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIiG,EAAKjG,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,qFAAqFC,MACzF,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,4EAA4EF,MAClF,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,4BAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,oBACTC,SAAU,gBACVC,QAAS,kBACTC,SAAU,wBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,YACNC,EAAG,YACHC,GAAI,cACJC,EAAG,eACHC,GAAI,cACJC,EAAG,WACHC,GAAI,WACJC,EAAG,YACHC,GAAI,WACJC,EAAG,cACHC,GAAI,aACJC,EAAG,UACHC,GAAI,SAER2B,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOyD,M,wBC5DT,SAAUpG,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkG,EAAKlG,EAAOE,aAAa,KAAM,CAC/BiG,KAAM,CACF,CACIC,MAAO,aACPC,OAAQ,EACRC,KAAM,KACNC,OAAQ,IACRC,KAAM,KAEV,CACIJ,MAAO,aACPK,MAAO,aACPJ,OAAQ,EACRC,KAAM,KACNC,OAAQ,IACRC,KAAM,KAEV,CACIJ,MAAO,aACPK,MAAO,aACPJ,OAAQ,EACRC,KAAM,KACNC,OAAQ,IACRC,KAAM,KAEV,CACIJ,MAAO,aACPK,MAAO,aACPJ,OAAQ,EACRC,KAAM,KACNC,OAAQ,IACRC,KAAM,KAEV,CACIJ,MAAO,aACPK,MAAO,aACPJ,OAAQ,EACRC,KAAM,KACNC,OAAQ,IACRC,KAAM,KAEV,CACIJ,MAAO,aACPK,MAAO,aACPJ,OAAQ,EACRC,KAAM,KACNC,OAAQ,KACRC,KAAM,MAEV,CACIJ,MAAO,aACPK,OAAQC,IACRL,OAAQ,EACRC,KAAM,MACNC,OAAQ,KACRC,KAAM,OAGdG,oBAAqB,WACrBC,oBAAqB,SAAUC,EAAOC,GAClC,MAAoB,MAAbA,EAAM,GAAa,EAAIC,SAASD,EAAM,IAAMD,EAAO,KAE9D1G,OAAQ,yCAAyCC,MAAM,KACvDC,YAAa,yCAAyCD,MAClD,KAEJE,SAAU,8BAA8BF,MAAM,KAC9CG,cAAe,gBAAgBH,MAAM,KACrCI,YAAa,gBAAgBJ,MAAM,KACnCK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,uBACNiG,EAAG,aACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,wBAEVxE,cAAe,SACfyE,KAAM,SAAUP,GACZ,MAAiB,OAAVA,GAEX/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,GACA,KAEA,MAGf7B,SAAU,CACNC,QAAS,UACTC,QAAS,UACTC,SAAU,SAAUkG,GAChB,OAAIA,EAAI/E,SAAWvC,KAAKuC,OACb,cAEA,WAGflB,QAAS,UACTC,SAAU,SAAUgG,GAChB,OAAItH,KAAKuC,SAAW+E,EAAI/E,OACb,cAEA,WAGfhB,SAAU,KAEd0C,uBAAwB,WACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACD,OAAkB,IAAXjD,EAAe,KAAOA,EAAS,IAC1C,IAAK,IACL,IAAK,IACL,IAAK,MACD,OAAOA,EAAS,IACpB,QACI,OAAOA,IAGnB9C,aAAc,CACVC,OAAQ,MACRC,KAAM,MACNC,EAAG,KACHC,GAAI,MACJC,EAAG,KACHC,GAAI,MACJC,EAAG,MACHC,GAAI,OACJC,EAAG,KACHC,GAAI,MACJC,EAAG,MACHC,GAAI,OACJC,EAAG,KACHC,GAAI,SAIZ,OAAO6D,M,oCC1JX,IAAIqB,EAAQ,EAAQ,QAChBC,EAAW,EAAQ,QACnBC,EAAqB,EAAQ,SAC7BC,EAAkB,EAAQ,QAC1BC,EAAc,EAAQ,QAO1B,SAASC,EAAMC,GACb9H,KAAK+H,SAAWD,EAChB9H,KAAKgI,aAAe,CAClBC,QAAS,IAAIP,EACbQ,SAAU,IAAIR,GASlBG,EAAMM,UAAUF,QAAU,SAAiBG,GAGnB,kBAAXA,GACTA,EAASxE,UAAU,IAAM,GACzBwE,EAAOC,IAAMzE,UAAU,IAEvBwE,EAASA,GAAU,GAGrBA,EAASR,EAAY5H,KAAK+H,SAAUK,GAGhCA,EAAOE,OACTF,EAAOE,OAASF,EAAOE,OAAOC,cACrBvI,KAAK+H,SAASO,OACvBF,EAAOE,OAAStI,KAAK+H,SAASO,OAAOC,cAErCH,EAAOE,OAAS,MAIlB,IAAIE,EAAQ,CAACb,OAAiBrE,GAC1BmF,EAAUC,QAAQC,QAAQP,GAE9BpI,KAAKgI,aAAaC,QAAQW,SAAQ,SAAoCC,GACpEL,EAAMM,QAAQD,EAAYE,UAAWF,EAAYG,aAGnDhJ,KAAKgI,aAAaE,SAASU,SAAQ,SAAkCC,GACnEL,EAAMS,KAAKJ,EAAYE,UAAWF,EAAYG,aAGhD,MAAOR,EAAMnF,OACXoF,EAAUA,EAAQS,KAAKV,EAAMW,QAASX,EAAMW,SAG9C,OAAOV,GAGTZ,EAAMM,UAAUiB,OAAS,SAAgBhB,GAEvC,OADAA,EAASR,EAAY5H,KAAK+H,SAAUK,GAC7BX,EAASW,EAAOC,IAAKD,EAAOiB,OAAQjB,EAAOkB,kBAAkBC,QAAQ,MAAO,KAIrF/B,EAAMoB,QAAQ,CAAC,SAAU,MAAO,OAAQ,YAAY,SAA6BN,GAE/ET,EAAMM,UAAUG,GAAU,SAASD,EAAKD,GACtC,OAAOpI,KAAKiI,QAAQL,EAAYQ,GAAU,GAAI,CAC5CE,OAAQA,EACRD,IAAKA,EACLmB,MAAOpB,GAAU,IAAIoB,YAK3BhC,EAAMoB,QAAQ,CAAC,OAAQ,MAAO,UAAU,SAA+BN,GAErET,EAAMM,UAAUG,GAAU,SAASD,EAAKmB,EAAMpB,GAC5C,OAAOpI,KAAKiI,QAAQL,EAAYQ,GAAU,GAAI,CAC5CE,OAAQA,EACRD,IAAKA,EACLmB,KAAMA,SAKZ7J,EAAOC,QAAUiI,G,wBC3Ff,SAAU/H,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIwJ,EAAiB,8DAA8DpJ,MAC3E,KAEJC,EAAc,kDAAkDD,MAAM,KACtEqJ,EAAc,CACV,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,SAEJC,EAAc,mLAEdC,EAAO3J,EAAOE,aAAa,QAAS,CACpCC,OAAQ,2FAA2FC,MAC/F,KAEJC,YAAa,SAAUuB,EAAGgI,GACtB,OAAKhI,EAEM,QAAQnC,KAAKmK,GACbvJ,EAAYuB,EAAEiI,SAEdL,EAAe5H,EAAEiI,SAJjBL,GAOfE,YAAaA,EACbI,iBAAkBJ,EAClBK,kBAAmB,+FACnBC,uBAAwB,0FACxBP,YAAaA,EACbQ,gBAAiBR,EACjBS,iBAAkBT,EAClBnJ,SAAU,uDAAuDF,MAAM,KACvEG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,wBACJC,IAAK,+BACLC,KAAM,sCAEVC,SAAU,CACNC,QAAS,WACL,MAAO,aAAgC,IAAjBlB,KAAKqK,QAAgB,IAAM,IAAM,QAE3DlJ,QAAS,WACL,MAAO,gBAAmC,IAAjBnB,KAAKqK,QAAgB,IAAM,IAAM,QAE9DjJ,SAAU,WACN,MAAO,cAAiC,IAAjBpB,KAAKqK,QAAgB,IAAM,IAAM,QAE5DhJ,QAAS,WACL,MAAO,cAAiC,IAAjBrB,KAAKqK,QAAgB,IAAM,IAAM,QAE5D/I,SAAU,WACN,MACI,0BACkB,IAAjBtB,KAAKqK,QAAgB,IAAM,IAC5B,QAGR9I,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,UACNC,EAAG,gBACHC,GAAI,cACJC,EAAG,YACHC,GAAI,aACJC,EAAG,WACHC,GAAI,WACJC,EAAG,SACHC,GAAI,UACJoI,EAAG,aACHC,GAAI,aACJpI,EAAG,SACHC,GAAI,WACJC,EAAG,SACHC,GAAI,WAER2B,uBAAwB,WACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOmH,M,wBC3GT,SAAU9J,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIuK,EAAOvK,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wEAAwEC,MAC5E,KAEJC,YAAa,wEAAwED,MACjF,KAEJE,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,wCAAwCH,MAAM,KAC7DI,YAAa,gBAAgBJ,MAAM,KACnC+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,wBACTC,QAAS,sBACTC,SAAU,uBACVC,QAAS,sBACTC,SAAU,uBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,OACHC,GAAI,WACJC,EAAG,QACHC,GAAI,WACJC,EAAG,OACHC,GAAI,WACJC,EAAG,MACHC,GAAI,UACJC,EAAG,MACHC,GAAI,UACJC,EAAG,MACHC,GAAI,YAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+H,M,wBC3DT,SAAU1K,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;SAASwK,EAAoBnG,EAAQC,EAAeC,EAAKC,GACrD,IAAIoF,EAAS,CACTlI,EAAG,CAAC,qBAAsB,iBAC1BC,GAAI,CAAC0C,EAAS,cAAeA,EAAS,WACtCzC,EAAG,CAAC,aAAc,YAClBC,GAAI,CAACwC,EAAS,YAAaA,EAAS,WACpCvC,EAAG,CAAC,YAAa,UACjBC,GAAI,CAACsC,EAAS,WAAYA,EAAS,UACnCrC,EAAG,CAAC,YAAa,UACjBC,GAAI,CAACoC,EAAS,WAAYA,EAAS,QACnCnC,EAAG,CAAC,eAAgB,aACpBC,GAAI,CAACkC,EAAS,cAAeA,EAAS,WACtCjC,EAAG,CAAC,aAAc,YAClBC,GAAI,CAACgC,EAAS,YAAaA,EAAS,YAExC,OAAOG,EAAWoF,EAAOrF,GAAK,GAAKqF,EAAOrF,GAAK,GAGnD,IAAIkG,EAAUzK,EAAOE,aAAa,WAAY,CAC1CC,OAAQ,CACJuK,WAAY,4EAA4EtK,MACpF,KAEJwJ,OAAQ,wIAAwIxJ,MAC5I,KAEJuK,SAAU,mBAEdtK,YAAa,4DAA4DD,MACrE,KAEJsC,kBAAkB,EAClBpC,SAAU,uDAAuDF,MAAM,KACvEG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,iBACJC,IAAK,oBACLC,EAAG,aACHC,GAAI,cACJC,IAAK,6BACLC,KAAM,sCACNoG,KAAM,mCAEVnG,SAAU,CACNC,QAAS,WACTC,QAAS,cACTC,SAAU,sBACVC,QAAS,WACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,KACRC,KAAM,UACNC,EAAG8I,EACH7I,GAAI6I,EACJ5I,EAAG4I,EACH3I,GAAI2I,EACJ1I,EAAG0I,EACHzI,GAAIyI,EACJxI,EAAGwI,EACHvI,GAAIuI,EACJtI,EAAGsI,EACHrI,GAAIqI,EACJpI,EAAGoI,EACHnI,GAAImI,GAERxG,uBAAwB,cACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GAEJ,IAAK,IACD,OAAOjD,EAAS,KACpB,QACA,IAAK,IACL,IAAK,IACL,IAAK,MACL,IAAK,IACL,IAAK,IACL,IAAK,IACD,OAAOA,IAGnB/B,KAAM,CACFC,IAAK,EACLC,IAAK,GAETG,cAAe,+BACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,SAAbC,EACOD,EAAO,EAAIA,EAAOA,EAAO,GACZ,aAAbC,EACAD,EACa,aAAbC,EACAD,EAAO,GAAKA,EAAOA,EAAO,GACb,UAAbC,EACAD,EAAO,QADX,GAIXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,OACAA,EAAO,GACP,WACAA,EAAO,GACP,WACAA,EAAO,GACP,QAEA,UAKnB,OAAO4H,M,uBCpIX,IAAIlF,EAAc,EAAQ,QACtBqF,EAAQ,EAAQ,QAChBC,EAAgB,EAAQ,QAG5BnL,EAAOC,SAAW4F,IAAgBqF,GAAM,WACtC,OAEQ,GAFD3F,OAAO6F,eAAeD,EAAc,OAAQ,IAAK,CACtDE,IAAK,WAAc,OAAO,KACzBxH,M,oCCcL7D,EAAOC,QAAU,SAAgBqL,GAC/B,OAAO,SAAcC,GACnB,OAAOD,EAAStH,MAAM,KAAMuH,M,wBCpB9B,SAAUpL,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkL,EAAOlL,EAAOE,aAAa,QAAS,CACpCC,OAAQ,uFAAuFC,MAC3F,KAEJC,YAAa,iEAAiED,MAC1E,KAEJsC,kBAAkB,EAClBpC,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,qBACTC,QAAS,gBACTC,SAAU,cACVC,QAAS,cACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,UACRC,KAAM,YACNC,EAAG,oBACHC,GAAI,cACJC,EAAG,aACHC,GAAI,aACJC,EAAG,YACHC,GAAI,YACJC,EAAG,UACHC,GAAI,WACJC,EAAG,UACHC,GAAI,UACJC,EAAG,QACHC,GAAI,UAER2B,uBAAwB,gBACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GAEJ,QACA,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,MACL,IAAK,IACD,OAAOjD,GAAqB,IAAXA,EAAe,KAAO,KAG3C,IAAK,IACL,IAAK,IACD,OAAOA,GAAqB,IAAXA,EAAe,KAAO,OAGnD/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO0I,M,wBC7ET,SAAUrL,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAImL,EAAOnL,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,cACJC,IAAK,qBACLC,KAAM,4BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,mBACTC,SAAU,eACVC,QAAS,oBACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,WACHC,GAAI,aACJC,EAAG,UACHC,GAAI,WACJC,EAAG,QACHC,GAAI,UACJC,EAAG,UACHC,GAAI,YACJC,EAAG,SACHC,GAAI,YAER2B,uBAAwB,uBACxBC,QAAS,SAAUI,GACf,IAAIb,EAAIa,EAAS,GACbR,EACgC,OAAxBQ,EAAS,IAAO,IACd,KACM,IAANb,EACA,KACM,IAANA,EACA,KACM,IAANA,EACA,KACA,KACd,OAAOa,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO2I,M,wBCvET,SAAUtL,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIoL,EAAW,CACXC,EAAG,QACHC,EAAG,QACHC,EAAG,QACHC,GAAI,QACJC,GAAI,QACJC,EAAG,OACHC,EAAG,OACHC,GAAI,OACJC,GAAI,OACJC,EAAG,QACHC,EAAG,QACHC,IAAK,QACLC,EAAG,OACHC,EAAG,QACHC,GAAI,QACJC,GAAI,QACJC,GAAI,QACJC,GAAI,SAGJC,EAAKvM,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,6EAA6EC,MACjF,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,wDAAwDF,MAC9D,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C0C,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,GACDpH,EAAU,KAAO,KAEjBA,EAAU,KAAO,MAGhCL,cAAe,cACfyE,KAAM,SAAUP,GACZ,MAAiB,OAAVA,GAA4B,OAAVA,GAE7BpG,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,kBACTC,QAAS,kBACTC,SAAU,2BACVC,QAAS,WACTC,SAAU,yBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,UACNC,EAAG,gBACHC,GAAI,YACJC,EAAG,aACHC,GAAI,YACJC,EAAG,WACHC,GAAI,UACJC,EAAG,UACHC,GAAI,SACJoI,EAAG,YACHC,GAAI,WACJpI,EAAG,SACHC,GAAI,QACJC,EAAG,UACHC,GAAI,UAER4B,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,KACL,IAAK,KACD,OAAOjD,EACX,QACI,GAAe,IAAXA,EAEA,OAAOA,EAAS,QAEpB,IAAId,EAAIc,EAAS,GACbb,EAAKa,EAAS,IAAOd,EACrBE,EAAIY,GAAU,IAAM,IAAM,KAC9B,OAAOA,GAAU+G,EAAS7H,IAAM6H,EAAS5H,IAAM4H,EAAS3H,MAGpEnB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+J,M,wBC9GT,SAAU1M,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIyM,EAAKzM,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,sFAAsFC,MAC1F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,qDAAqDF,MAAM,KACrEG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,eACJC,IAAK,qBACLC,KAAM,sCAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,oBACTC,SAAU,mBACVC,QAAS,iBACTC,SAAU,qBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,WACNC,EAAG,cACHC,GAAI,cACJC,EAAG,WACHC,GAAI,cACJC,EAAG,UACHC,GAAI,WACJC,EAAG,SACHC,GAAI,UACJC,EAAG,WACHC,GAAI,aACJC,EAAG,QACHC,GAAI,SAER2B,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOiK,M,wBCzDT,SAAU5M,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI0M,EAAO1M,EAAOE,aAAa,QAAS,CACpCC,OAAQ,0FAA0FC,MAC9F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,yDAAyDF,MAC/D,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,wBAAwBJ,MAAM,KAC3CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,YACHC,GAAI,eACJC,IAAK,qBACLC,KAAM,6BAEVC,SAAU,CACNC,QAAS,oBACTC,QAAS,gBACTC,SAAU,0BACVC,QAAS,eACTC,SAAU,4BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,gBACRC,KAAM,mBACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,eACHC,GAAI,YACJC,EAAG,aACHC,GAAI,UACJC,EAAG,aACHC,GAAI,UACJC,EAAG,cACHC,GAAI,WACJC,EAAG,aACHC,GAAI,WAER2B,uBAAwB,UACxBC,QAAS,SAAUI,GACf,OAAOA,GAEX/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOkK,M,wBC7DT,SAAU7M,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI2M,EAAK3M,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,+FAA+FC,MACnG,KAEJC,YAAa,8DAA8DD,MACvE,KAEJsC,kBAAkB,EAClBpC,SAAU,sEAAsEF,MAC5E,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,0BACJC,IAAK,gCACLC,KAAM,sCACNiG,EAAG,WACHC,GAAI,oBACJC,IAAK,0BACLC,KAAM,gCAEVnG,SAAU,CACNC,QAAS,kBACTC,QAAS,mBACTC,SAAU,gBACVC,QAAS,kBACTC,SAAU,0BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,WACNC,EAAG,iBACHC,GAAI,aACJC,EAAG,aACHC,GAAI,YACJC,EAAG,WACHC,GAAI,UACJC,EAAG,WACHC,GAAI,UACJC,EAAG,eACHC,GAAI,cACJC,EAAG,WACHC,GAAI,WAER2B,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOmK,M,wBCnET,SAAU9M,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI4M,EAAK5M,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,oGAAoGC,MACxG,KAEJC,YAAa,iEAAiED,MAC1E,KAEJsC,kBAAkB,EAClBpC,SAAU,iDAAiDF,MAAM,KACjEG,cAAe,8CAA8CH,MAAM,KACnEI,YAAa,yBAAyBJ,MAAM,KAC5C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,cACJC,IAAK,wBACLC,KAAM,oCAEV4B,cAAe,wBACfyE,KAAM,SAAUP,GACZ,MAAiB,eAAVA,GAEX/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,GACA,aAEA,cAGf7B,SAAU,CACNC,QAAS,mBACTC,QAAS,qBACTC,SAAU,qBACVC,QAAS,wBACTC,SAAU,6BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,YACNC,EAAG,eACHC,GAAI,YACJC,EAAG,SACHC,GAAI,UACJC,EAAG,YACHC,GAAI,aACJC,EAAG,QACHC,GAAI,SACJoI,EAAG,YACHC,GAAI,aACJpI,EAAG,UACHC,GAAI,WACJC,EAAG,OACHC,GAAI,WAIZ,OAAOuK,M,kCCvEX,IAAIC,EAAY,EAAQ,QACpBC,EAAyB,EAAQ,QAIrCpN,EAAOC,QAAU,GAAGoN,QAAU,SAAgBC,GAC5C,IAAIC,EAAMrN,OAAOkN,EAAuB/M,OACpC0E,EAAS,GACTN,EAAI0I,EAAUG,GAClB,GAAI7I,EAAI,GAAKA,GAAKuC,IAAU,MAAMwG,WAAW,+BAC7C,KAAM/I,EAAI,GAAIA,KAAO,KAAO8I,GAAOA,GAAc,EAAJ9I,IAAOM,GAAUwI,GAC9D,OAAOxI,I,kCCXT,IAAI0I,EAAgC,EAAQ,QACxCC,EAAW,EAAQ,QACnBC,EAAW,EAAQ,QACnBP,EAAyB,EAAQ,QACjCQ,EAAqB,EAAQ,QAC7BC,EAAqB,EAAQ,QAC7BC,EAAW,EAAQ,QACnBC,EAAiB,EAAQ,QACzBC,EAAa,EAAQ,QACrB9C,EAAQ,EAAQ,QAEhB+C,EAAY,GAAG3E,KACf4E,EAAMC,KAAKD,IACXE,EAAa,WAGbC,GAAcnD,GAAM,WAAc,OAAQoD,OAAOF,EAAY,QAGjEX,EAA8B,QAAS,GAAG,SAAUc,EAAOC,EAAaC,GACtE,IAAIC,EAmDJ,OAzCEA,EAR2B,KAA3B,OAAOhO,MAAM,QAAQ,IACc,GAAnC,OAAOA,MAAM,QAAS,GAAGgD,QACO,GAAhC,KAAKhD,MAAM,WAAWgD,QACU,GAAhC,IAAIhD,MAAM,YAAYgD,QACtB,IAAIhD,MAAM,QAAQgD,OAAS,GAC3B,GAAGhD,MAAM,MAAMgD,OAGC,SAAUiL,EAAWC,GACnC,IAAIC,EAAS3O,OAAOkN,EAAuB/M,OACvCyO,OAAgBnL,IAAViL,EAAsBR,EAAaQ,IAAU,EACvD,GAAY,IAARE,EAAW,MAAO,GACtB,QAAkBnL,IAAdgL,EAAyB,MAAO,CAACE,GAErC,IAAKnB,EAASiB,GACZ,OAAOH,EAAY5K,KAAKiL,EAAQF,EAAWG,GAE7C,IAQI1H,EAAO2H,EAAWC,EARlB7K,EAAS,GACT8K,GAASN,EAAUO,WAAa,IAAM,KAC7BP,EAAUQ,UAAY,IAAM,KAC5BR,EAAUS,QAAU,IAAM,KAC1BT,EAAUU,OAAS,IAAM,IAClCC,EAAgB,EAEhBC,EAAgB,IAAIjB,OAAOK,EAAUa,OAAQP,EAAQ,KAEzD,MAAO7H,EAAQ4G,EAAWpK,KAAK2L,EAAeV,GAAS,CAErD,GADAE,EAAYQ,EAAcR,UACtBA,EAAYO,IACdnL,EAAOmF,KAAKuF,EAAOjJ,MAAM0J,EAAelI,EAAMqI,QAC1CrI,EAAM1D,OAAS,GAAK0D,EAAMqI,MAAQZ,EAAOnL,QAAQuK,EAAUjK,MAAMG,EAAQiD,EAAMxB,MAAM,IACzFoJ,EAAa5H,EAAM,GAAG1D,OACtB4L,EAAgBP,EACZ5K,EAAOT,QAAUoL,GAAK,MAExBS,EAAcR,YAAc3H,EAAMqI,OAAOF,EAAcR,YAK7D,OAHIO,IAAkBT,EAAOnL,QACvBsL,GAAeO,EAAcxP,KAAK,KAAKoE,EAAOmF,KAAK,IAClDnF,EAAOmF,KAAKuF,EAAOjJ,MAAM0J,IACzBnL,EAAOT,OAASoL,EAAM3K,EAAOyB,MAAM,EAAGkJ,GAAO3K,GAG7C,IAAIzD,WAAMiD,EAAW,GAAGD,OACjB,SAAUiL,EAAWC,GACnC,YAAqBjL,IAAdgL,GAAqC,IAAVC,EAAc,GAAKJ,EAAY5K,KAAKvD,KAAMsO,EAAWC,IAEpEJ,EAEhB,CAGL,SAAeG,EAAWC,GACxB,IAAIvI,EAAI+G,EAAuB/M,MAC3BqP,OAAwB/L,GAAbgL,OAAyBhL,EAAYgL,EAAUJ,GAC9D,YAAoB5K,IAAb+L,EACHA,EAAS9L,KAAK+K,EAAWtI,EAAGuI,GAC5BF,EAAc9K,KAAK1D,OAAOmG,GAAIsI,EAAWC,IAO/C,SAAUe,EAAQf,GAChB,IAAIgB,EAAMnB,EAAgBC,EAAeiB,EAAQtP,KAAMuO,EAAOF,IAAkBF,GAChF,GAAIoB,EAAIC,KAAM,OAAOD,EAAIE,MAEzB,IAAIC,EAAKpC,EAASgC,GACdK,EAAI9P,OAAOG,MACX4P,EAAIrC,EAAmBmC,EAAIzB,QAE3B4B,EAAkBH,EAAGX,QACrBH,GAASc,EAAGb,WAAa,IAAM,KACtBa,EAAGZ,UAAY,IAAM,KACrBY,EAAGX,QAAU,IAAM,KACnBf,EAAa,IAAM,KAI5BqB,EAAW,IAAIO,EAAE5B,EAAa0B,EAAK,OAASA,EAAGP,OAAS,IAAKP,GAC7DH,OAAgBnL,IAAViL,EAAsBR,EAAaQ,IAAU,EACvD,GAAY,IAARE,EAAW,MAAO,GACtB,GAAiB,IAAbkB,EAAEtM,OAAc,OAAuC,OAAhCqK,EAAe2B,EAAUM,GAAc,CAACA,GAAK,GACxE,IAAIG,EAAI,EACJC,EAAI,EACJC,EAAI,GACR,MAAOD,EAAIJ,EAAEtM,OAAQ,CACnBgM,EAASX,UAAYV,EAAa+B,EAAI,EACtC,IACIE,EADAC,EAAIxC,EAAe2B,EAAUrB,EAAa2B,EAAIA,EAAEpK,MAAMwK,IAE1D,GACQ,OAANG,IACCD,EAAIpC,EAAIJ,EAAS4B,EAASX,WAAaV,EAAa,EAAI+B,IAAKJ,EAAEtM,WAAayM,EAE7EC,EAAIvC,EAAmBmC,EAAGI,EAAGF,OACxB,CAEL,GADAG,EAAE/G,KAAK0G,EAAEpK,MAAMuK,EAAGC,IACdC,EAAE3M,SAAWoL,EAAK,OAAOuB,EAC7B,IAAK,IAAIG,EAAI,EAAGA,GAAKD,EAAE7M,OAAS,EAAG8M,IAEjC,GADAH,EAAE/G,KAAKiH,EAAEC,IACLH,EAAE3M,SAAWoL,EAAK,OAAOuB,EAE/BD,EAAID,EAAIG,GAIZ,OADAD,EAAE/G,KAAK0G,EAAEpK,MAAMuK,IACRE,OAGThC,I,qBCnIJrO,EAAOC,QAAUsF,OAAOP,IAAM,SAAYyL,EAAG/N,GAE3C,OAAO+N,IAAM/N,EAAU,IAAN+N,GAAW,EAAIA,IAAM,EAAI/N,EAAI+N,GAAKA,GAAK/N,GAAKA,I,oCCH/D,IAAIgO,EAAI,EAAQ,QACZC,EAAU,EAAQ,QAA6BC,KAC/CC,EAAsB,EAAQ,QAC9BC,EAA0B,EAAQ,QAClCC,EAAiB,EAAQ,QACzBC,EAAU,EAAQ,QAElBC,EAAgBJ,EAAoB,UACpCK,EAAiBJ,EAAwB,SAAU,CAAEnF,EAAG,IAGxDwF,GAAcH,GAAWD,EAAiB,IAAMA,EAAiB,GAIrEL,EAAE,CAAEU,OAAQ,QAASC,OAAO,EAAMC,QAASL,IAAkBC,GAAkBC,GAAc,CAC3FI,OAAQ,SAAgBC,GACtB,OAAOb,EAAQtQ,KAAMmR,EAAYvN,UAAUP,OAAQO,UAAUP,OAAS,EAAIO,UAAU,QAAKN,O,wBCb3F,SAAUxD,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAImR,EAAa,CACbC,MAAO,CAEHzP,GAAI,CAAC,UAAW,UAAW,WAC3BC,EAAG,CAAC,cAAe,gBACnBC,GAAI,CAAC,QAAS,SAAU,UACxBC,EAAG,CAAC,YAAa,eACjBC,GAAI,CAAC,MAAO,OAAQ,QACpBE,GAAI,CAAC,MAAO,OAAQ,QACpBE,GAAI,CAAC,QAAS,SAAU,UACxBE,GAAI,CAAC,SAAU,SAAU,WAE7BgP,uBAAwB,SAAUhN,EAAQiN,GACtC,OAAkB,IAAXjN,EACDiN,EAAQ,GACRjN,GAAU,GAAKA,GAAU,EACzBiN,EAAQ,GACRA,EAAQ,IAElBlN,UAAW,SAAUC,EAAQC,EAAeC,GACxC,IAAI+M,EAAUH,EAAWC,MAAM7M,GAC/B,OAAmB,IAAfA,EAAInB,OACGkB,EAAgBgN,EAAQ,GAAKA,EAAQ,GAGxCjN,EACA,IACA8M,EAAWE,uBAAuBhN,EAAQiN,KAMtDC,EAASvR,EAAOE,aAAa,UAAW,CACxCC,OAAQ,mFAAmFC,MACvF,KAEJC,YAAa,2DAA2DD,MACpE,KAEJsC,kBAAkB,EAClBpC,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,cACHC,GAAI,gBACJC,IAAK,qBACLC,KAAM,4BAEVC,SAAU,CACNC,QAAS,eACTC,QAAS,eACTC,SAAU,WACN,OAAQpB,KAAKyR,OACT,KAAK,EACD,MAAO,sBACX,KAAK,EACD,MAAO,qBACX,KAAK,EACD,MAAO,sBACX,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,oBAGnBpQ,QAAS,cACTC,SAAU,WACN,IAAIoQ,EAAe,CACf,2BACA,+BACA,4BACA,0BACA,8BACA,2BACA,4BAEJ,OAAOA,EAAa1R,KAAKyR,QAE7BlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,mBACHC,GAAIwP,EAAW/M,UACfxC,EAAGuP,EAAW/M,UACdvC,GAAIsP,EAAW/M,UACftC,EAAGqP,EAAW/M,UACdrC,GAAIoP,EAAW/M,UACfpC,EAAG,MACHC,GAAIkP,EAAW/M,UACflC,EAAG,QACHC,GAAIgP,EAAW/M,UACfhC,EAAG,SACHC,GAAI8O,EAAW/M,WAEnBJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+O,M,uBC5HX,IAAIG,EAAU,EAAQ,QAClBhE,EAAa,EAAQ,QAIzBhO,EAAOC,QAAU,SAAUgS,EAAGjC,GAC5B,IAAI3L,EAAO4N,EAAE5N,KACb,GAAoB,oBAATA,EAAqB,CAC9B,IAAIU,EAASV,EAAKT,KAAKqO,EAAGjC,GAC1B,GAAsB,kBAAXjL,EACT,MAAMmN,UAAU,sEAElB,OAAOnN,EAGT,GAAmB,WAAfiN,EAAQC,GACV,MAAMC,UAAU,+CAGlB,OAAOlE,EAAWpK,KAAKqO,EAAGjC,K,uBCnB5B,IAAI7P,EAAS,EAAQ,QACjBgS,EAAe,EAAQ,QACvBlJ,EAAU,EAAQ,QAClBmJ,EAA8B,EAAQ,QAE1C,IAAK,IAAIC,KAAmBF,EAAc,CACxC,IAAIG,EAAanS,EAAOkS,GACpBE,EAAsBD,GAAcA,EAAW9J,UAEnD,GAAI+J,GAAuBA,EAAoBtJ,UAAYA,EAAS,IAClEmJ,EAA4BG,EAAqB,UAAWtJ,GAC5D,MAAOtD,GACP4M,EAAoBtJ,QAAUA,K,wBCRhC,SAAU9I,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkS,EAAQlS,EAAOE,aAAa,SAAU,CACtCC,OAAQ,CACJuK,WAAY,qFAAqFtK,MAC7F,KAEJwJ,OAAQ,sHAAsHxJ,MAC1H,KAEJuK,SAAU,mBAEdtK,YAAa,+DAA+DD,MACxE,KAEJsC,kBAAkB,EAClBpC,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,mBACJoG,GAAI,aACJnG,IAAK,4BACLoG,IAAK,mBACLnG,KAAM,iCACNoG,KAAM,wBAEVnG,SAAU,CACNC,QAAS,aACTC,QAAS,eACTC,SAAU,cACVC,QAAS,aACTC,SAAU,qBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,YACRC,KAAM,QACNC,EAAG,gBACHC,GAAI,cACJC,EAAG,aACHC,GAAI,aACJC,EAAG,UACHC,GAAI,UACJC,EAAG,UACHC,GAAI,WACJC,EAAG,SACHC,GAAI,WACJC,EAAG,QACHC,GAAI,UAER2B,uBAAwB,qBACxBC,QAAS,SAAUI,EAAQiD,GACvB,IAAIzD,EACW,IAAXQ,EACM,IACW,IAAXA,EACA,IACW,IAAXA,EACA,IACW,IAAXA,EACA,IACA,IAIV,MAHe,MAAXiD,GAA6B,MAAXA,IAClBzD,EAAS,KAENQ,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO0P,M,oCC1FX,IAAIC,EAAW,EAAQ,QAAgCxJ,QACnD4H,EAAsB,EAAQ,QAC9BC,EAA0B,EAAQ,QAElCG,EAAgBJ,EAAoB,WACpCK,EAAiBJ,EAAwB,WAI7C9Q,EAAOC,QAAYgR,GAAkBC,EAEjC,GAAGjI,QAFgD,SAAiBuI,GACtE,OAAOiB,EAASpS,KAAMmR,EAAYvN,UAAUP,OAAS,EAAIO,UAAU,QAAKN,K,qBCX1E3D,EAAOC,QAAU,SAAUyF,EAAIgN,EAAa9L,GAC1C,KAAMlB,aAAcgN,GAClB,MAAMR,UAAU,cAAgBtL,EAAOA,EAAO,IAAM,IAAM,cAC1D,OAAOlB,I,wBCCT,SAAUvF,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIqS,EAAKrS,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,iEAAiEF,MACvE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,iBACTC,SAAU,gBACVC,QAAS,qBACTC,SAAU,4BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,eACHC,GAAI,aACJC,EAAG,SACHC,GAAI,YACJC,EAAG,SACHC,GAAI,aACJC,EAAG,UACHC,GAAI,YACJC,EAAG,QACHC,GAAI,UACJC,EAAG,OACHC,GAAI,UAER2B,uBAAwB,WACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO6P,M,uBC/DX,IAAIC,EAAa,EAAQ,QAEzB5S,EAAOC,QAAU2S,EAAW,WAAY,oB,qBCFxC5S,EAAOC,QAAU,SAAUyF,GACzB,GAAiB,mBAANA,EACT,MAAMwM,UAAUhS,OAAOwF,GAAM,sBAC7B,OAAOA,I,uBCHX,IAAI7F,EAAkB,EAAQ,QAE1BgT,EAAWhT,EAAgB,YAC3BiT,GAAe,EAEnB,IACE,IAAIC,EAAS,EACTC,EAAqB,CACvBC,KAAM,WACJ,MAAO,CAAEpD,OAAQkD,MAEnB,OAAU,WACRD,GAAe,IAGnBE,EAAmBH,GAAY,WAC7B,OAAOxS,MAGT6S,MAAMC,KAAKH,GAAoB,WAAc,MAAM,KACnD,MAAOrN,IAET3F,EAAOC,QAAU,SAAUoE,EAAM+O,GAC/B,IAAKA,IAAiBN,EAAc,OAAO,EAC3C,IAAIO,GAAoB,EACxB,IACE,IAAIC,EAAS,GACbA,EAAOT,GAAY,WACjB,MAAO,CACLI,KAAM,WACJ,MAAO,CAAEpD,KAAMwD,GAAoB,MAIzChP,EAAKiP,GACL,MAAO3N,IACT,OAAO0N,I,uBCpCT,IAAIE,EAAY,EAAQ,QAExBvT,EAAOC,QAAU,mCAAmCF,KAAKwT,I,wBCEvD,SAAUpT,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkT,EAAY,CACR7H,EAAG,IACHK,EAAG,IACHI,EAAG,IACHC,EAAG,IACHT,EAAG,IACHW,EAAG,IACHN,EAAG,IACHJ,EAAG,IACHW,EAAG,IACHiH,EAAG,KAEPC,EAAa,SAAUjP,GACnB,OAAa,IAANA,EACD,EACM,IAANA,EACA,EACM,IAANA,EACA,EACAA,EAAI,KAAO,GAAKA,EAAI,KAAO,GAC3B,EACAA,EAAI,KAAO,GACX,EACA,GAEVkP,EAAU,CACN3R,EAAG,CACC,eACA,cACA,CAAC,UAAW,WACZ,UACA,WACA,YAEJE,EAAG,CACC,eACA,cACA,CAAC,UAAW,WACZ,WACA,WACA,YAEJE,EAAG,CACC,cACA,aACA,CAAC,SAAU,UACX,WACA,UACA,WAEJE,EAAG,CACC,aACA,WACA,CAAC,QAAS,SACV,UACA,WACA,UAEJE,EAAG,CACC,aACA,WACA,CAAC,QAAS,SACV,UACA,UACA,UAEJE,EAAG,CACC,aACA,WACA,CAAC,QAAS,SACV,WACA,WACA,WAGRkR,EAAY,SAAUC,GAClB,OAAO,SAAUlP,EAAQC,EAAeiK,EAAQ/J,GAC5C,IAAIK,EAAIuO,EAAW/O,GACf4I,EAAMoG,EAAQE,GAAGH,EAAW/O,IAIhC,OAHU,IAANQ,IACAoI,EAAMA,EAAI3I,EAAgB,EAAI,IAE3B2I,EAAI3D,QAAQ,MAAOjF,KAGlClE,EAAS,CACL,QACA,SACA,OACA,QACA,OACA,QACA,QACA,QACA,SACA,SACA,SACA,UAGJqT,EAAOxT,EAAOE,aAAa,QAAS,CACpCC,OAAQA,EACRE,YAAaF,EACbG,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,wCAAwCH,MAAM,KAC7DI,YAAa,gBAAgBJ,MAAM,KACnC+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEV4B,cAAe,MACfyE,KAAM,SAAUP,GACZ,MAAO,MAAQA,GAEnB/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,GACA,IAEA,KAGf7B,SAAU,CACNC,QAAS,wBACTC,QAAS,uBACTC,SAAU,uBACVC,QAAS,sBACTC,SAAU,uBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,SACNC,EAAG4R,EAAU,KACb3R,GAAI2R,EAAU,KACd1R,EAAG0R,EAAU,KACbzR,GAAIyR,EAAU,KACdxR,EAAGwR,EAAU,KACbvR,GAAIuR,EAAU,KACdtR,EAAGsR,EAAU,KACbrR,GAAIqR,EAAU,KACdpR,EAAGoR,EAAU,KACbnR,GAAImR,EAAU,KACdlR,EAAGkR,EAAU,KACbjR,GAAIiR,EAAU,MAElBG,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhCoK,WAAY,SAAUnF,GAClB,OAAOA,EACFjF,QAAQ,OAAO,SAAUxC,GACtB,OAAOoM,EAAUpM,MAEpBwC,QAAQ,KAAM,MAEvBhH,KAAM,CACFC,IAAK,EACLC,IAAK,MAIb,OAAOgR,M,oCCjLX9T,EAAOC,QAAU,SAAcuD,EAAIyQ,GACjC,OAAO,WAEL,IADA,IAAIC,EAAO,IAAIhB,MAAMjP,UAAUP,QACtB8M,EAAI,EAAGA,EAAI0D,EAAKxQ,OAAQ8M,IAC/B0D,EAAK1D,GAAKvM,UAAUuM,GAEtB,OAAOhN,EAAGQ,MAAMiQ,EAASC,M,qBCN7BlU,EAAOC,QAAU,SAAUyF,GACzB,QAAU/B,GAAN+B,EAAiB,MAAMwM,UAAU,wBAA0BxM,GAC/D,OAAOA,I,uBCJT,IAAIwF,EAAQ,EAAQ,QAChBrL,EAAkB,EAAQ,QAC1BsU,EAAa,EAAQ,QAErBC,EAAUvU,EAAgB,WAE9BG,EAAOC,QAAU,SAAUoU,GAIzB,OAAOF,GAAc,KAAOjJ,GAAM,WAChC,IAAIoJ,EAAQ,GACRC,EAAcD,EAAMC,YAAc,GAItC,OAHAA,EAAYH,GAAW,WACrB,MAAO,CAAEI,IAAK,IAE2B,IAApCF,EAAMD,GAAaI,SAASD,S,wBCVrC,SAAUrU,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;SAASkE,EAAOkQ,EAAMC,GAClB,IAAIC,EAAQF,EAAKhU,MAAM,KACvB,OAAOiU,EAAM,KAAO,GAAKA,EAAM,MAAQ,GACjCC,EAAM,GACND,EAAM,IAAM,GAAKA,EAAM,IAAM,IAAMA,EAAM,IAAM,IAAMA,EAAM,KAAO,IAClEC,EAAM,GACNA,EAAM,GAEhB,SAASC,EAAuBlQ,EAAQC,EAAeC,GACnD,IAAIqF,EAAS,CACTjI,GAAI2C,EAAgB,yBAA2B,yBAC/CzC,GAAIyC,EAAgB,yBAA2B,yBAC/CvC,GAAIuC,EAAgB,yBAA2B,yBAC/CrC,GAAI,iBACJE,GAAI,uBACJE,GAAI,kBAER,MAAY,MAARkC,EACOD,EAAgB,UAAY,UACpB,MAARC,EACAD,EAAgB,UAAY,UAE5BD,EAAS,IAAMH,EAAO0F,EAAOrF,IAAOF,GAInD,IAAImQ,EAAKxU,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,CACJyJ,OAAQ,uGAAuGxJ,MAC3G,KAEJsK,WAAY,qGAAqGtK,MAC7G,MAGRC,YAAa,0DAA0DD,MACnE,KAEJE,SAAU,CACNsJ,OAAQ,0DAA0DxJ,MAC9D,KAEJsK,WAAY,0DAA0DtK,MAClE,KAEJuK,SAAU,+CAEdpK,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,iBACJC,IAAK,wBACLC,KAAM,+BAEVC,SAAU,CACNC,QAAS,eACTC,QAAS,gBACTE,QAAS,eACTD,SAAU,WACN,MAAO,mBAEXE,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,0BACX,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,2BAGnBlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,UACRC,KAAM,UACNC,EAAG,kBACHE,EAAG2S,EACH1S,GAAI0S,EACJzS,EAAGyS,EACHxS,GAAIwS,EACJvS,EAAG,QACHC,GAAIsS,EACJrS,EAAG,QACHC,GAAIoS,EACJnS,EAAG,MACHC,GAAIkS,GAER5R,cAAe,yBACfyE,KAAM,SAAUP,GACZ,MAAO,iBAAiBpH,KAAKoH,IAEjC/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,OACAA,EAAO,GACP,SACAA,EAAO,GACP,MAEA,UAGfmB,uBAAwB,mBACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,MACL,IAAK,IACL,IAAK,IACD,OAAQjD,EAAS,KAAO,GAAKA,EAAS,KAAO,GACzCA,EAAS,MAAQ,IACjBA,EAAS,MAAQ,GAEfA,EAAS,KADTA,EAAS,KAEnB,IAAK,IACD,OAAOA,EAAS,MACpB,QACI,OAAOA,IAGnB/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOgS,M,wBCjJT,SAAU3U,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIyU,EAAKzU,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,qGAAqGC,MACzG,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,CACNoK,WAAY,gEAAgEtK,MACxE,KAEJwJ,OAAQ,iEAAiExJ,MACrE,KAEJuK,SAAU,iBAEdpK,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,iBACTE,QAAS,kBACTD,SAAU,wBACVE,SAAU,oBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SAAUE,GACd,OAAOA,EAAE4H,QAAQ,iCAAiC,SAC9CoL,EACAC,EACAC,GAEA,MAAc,MAAPA,EAAaD,EAAK,KAAOA,EAAKC,EAAK,SAGlDnT,KAAM,SAAUC,GACZ,MAAI,4BAA4BjC,KAAKiC,GAC1BA,EAAE4H,QAAQ,SAAU,UAE3B,OAAO7J,KAAKiC,GACLA,EAAE4H,QAAQ,QAAS,YAEvB5H,GAEXA,EAAG,iBACHC,GAAI,UACJC,EAAG,OACHC,GAAI,UACJC,EAAG,QACHC,GAAI,WACJC,EAAG,MACHC,GAAI,SACJC,EAAG,MACHC,GAAI,SACJC,EAAG,OACHC,GAAI,WAER2B,uBAAwB,8BACxBC,QAAS,SAAUI,GACf,OAAe,IAAXA,EACOA,EAEI,IAAXA,EACOA,EAAS,MAGhBA,EAAS,IACRA,GAAU,KAAOA,EAAS,KAAO,GAClCA,EAAS,MAAQ,EAEV,MAAQA,EAEZA,EAAS,MAEpB/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOiS,M,qBCpGX,IAAIpH,EAAW,EAAQ,QACnBwH,EAAwB,EAAQ,QAChCrH,EAAW,EAAQ,QACnBsH,EAAO,EAAQ,QACfC,EAAoB,EAAQ,QAC5BC,EAAgB,EAAQ,QAExBC,EAAS,SAAUC,EAASzQ,GAC9B1E,KAAKmV,QAAUA,EACfnV,KAAK0E,OAASA,GAGhB/E,EAAOC,QAAU,SAAUwV,EAAUC,EAAiBC,GACpD,IAKIC,EAAUC,EAAQpG,EAAO/L,EAAQqB,EAAQkO,EAAM6C,EAL/CrS,EAAOkS,GAAWA,EAAQlS,KAC1BsS,KAAgBJ,IAAWA,EAAQI,YACnCC,KAAiBL,IAAWA,EAAQK,aACpCC,KAAiBN,IAAWA,EAAQM,aACpCzS,EAAK4R,EAAKM,EAAiBjS,EAAM,EAAIsS,EAAaE,GAGlDC,EAAO,SAAUC,GAEnB,OADIP,GAAUN,EAAcM,GACrB,IAAIL,GAAO,EAAMY,IAGtBC,EAAS,SAAUtG,GACrB,OAAIiG,GACFpI,EAASmC,GACFmG,EAAczS,EAAGsM,EAAM,GAAIA,EAAM,GAAIoG,GAAQ1S,EAAGsM,EAAM,GAAIA,EAAM,KAChEmG,EAAczS,EAAGsM,EAAOoG,GAAQ1S,EAAGsM,IAG9C,GAAIkG,EACFJ,EAAWH,MACN,CAEL,GADAI,EAASR,EAAkBI,GACN,mBAAVI,EAAsB,MAAM3D,UAAU,0BAEjD,GAAIiD,EAAsBU,GAAS,CACjC,IAAKpG,EAAQ,EAAG/L,EAASoK,EAAS2H,EAAS/R,QAASA,EAAS+L,EAAOA,IAElE,GADA1K,EAASqR,EAAOX,EAAShG,IACrB1K,GAAUA,aAAkBwQ,EAAQ,OAAOxQ,EAC/C,OAAO,IAAIwQ,GAAO,GAEtBK,EAAWC,EAAOjS,KAAK6R,GAGzBxC,EAAO2C,EAAS3C,KAChB,QAAS6C,EAAO7C,EAAKrP,KAAKgS,IAAW/F,KAAM,CACzC,IACE9K,EAASqR,EAAON,EAAKhG,OACrB,MAAOnK,GAEP,MADA2P,EAAcM,GACRjQ,EAER,GAAqB,iBAAVZ,GAAsBA,GAAUA,aAAkBwQ,EAAQ,OAAOxQ,EAC5E,OAAO,IAAIwQ,GAAO,K,wBCnDpB,SAAUpV,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI+V,EAAK/V,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,yCAAyCC,MAAM,KACvDC,YAAa,yCAAyCD,MAClD,KAEJE,SAAU,8BAA8BF,MAAM,KAC9CG,cAAe,gBAAgBH,MAAM,KACrCI,YAAa,gBAAgBJ,MAAM,KACnCK,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,cACHC,GAAI,gBACJC,IAAK,uBACLC,KAAM,4BACNiG,EAAG,cACHC,GAAI,gBACJC,IAAK,uBACLC,KAAM,6BAEVnG,SAAU,CACNC,QAAS,QACTC,QAAS,QACTC,SAAU,UACVC,QAAS,QACTC,SAAU,cACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,OACRC,KAAM,OACNC,EAAG,MACHC,GAAI,MACJC,EAAG,KACHC,GAAI,MACJC,EAAG,OACHC,GAAI,OACJC,EAAG,KACHC,GAAI,MACJC,EAAG,MACHC,GAAI,MACJC,EAAG,MACHC,GAAI,OAER2B,uBAAwB,iBACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,MACD,OAAOjD,EAAS,IACpB,IAAK,IACD,OAAOA,EAAS,IACpB,IAAK,IACL,IAAK,IACD,OAAOA,EAAS,IACpB,QACI,OAAOA,IAGnB1B,cAAe,QACfyE,KAAM,SAAU4O,GACZ,MAAiB,OAAVA,GAEXlT,SAAU,SAAUD,EAAME,EAAQkT,GAC9B,OAAOpT,EAAO,GAAK,KAAO,QAIlC,OAAOkT,M,sBCnFX,YAUA,IAAIG,EAAW,IAGXC,EAAY,kBAGZC,EAAc,OAGdC,EAAgB,kBAChBC,EAAoB,iCACpBC,EAAsB,kBACtBC,EAAa,iBAGbC,EAAW,IAAMJ,EAAgB,IACjCK,EAAU,IAAMJ,EAAoBC,EAAsB,IAC1DI,EAAS,2BACTC,EAAa,MAAQF,EAAU,IAAMC,EAAS,IAC9CE,EAAc,KAAOR,EAAgB,IACrCS,EAAa,kCACbC,EAAa,qCACbC,EAAQ,UAGRC,EAAWL,EAAa,IACxBM,EAAW,IAAMV,EAAa,KAC9BW,EAAY,MAAQH,EAAQ,MAAQ,CAACH,EAAaC,EAAYC,GAAYK,KAAK,KAAO,IAAMF,EAAWD,EAAW,KAClHI,EAAQH,EAAWD,EAAWE,EAC9BG,EAAW,MAAQ,CAACT,EAAcH,EAAU,IAAKA,EAASI,EAAYC,EAAYN,GAAUW,KAAK,KAAO,IAGxGG,EAAYvJ,OAAO2I,EAAS,MAAQA,EAAS,KAAOW,EAAWD,EAAO,KAGtEG,EAAexJ,OAAO,IAAMgJ,EAAQX,EAAiBC,EAAoBC,EAAsBC,EAAa,KAG5GiB,EAA8B,iBAAV5X,GAAsBA,GAAUA,EAAOoF,SAAWA,QAAUpF,EAGhF6X,EAA0B,iBAARC,MAAoBA,MAAQA,KAAK1S,SAAWA,QAAU0S,KAGxEC,EAAOH,GAAcC,GAAYG,SAAS,cAATA,GASrC,SAASC,EAAavJ,GACpB,OAAOA,EAAOnO,MAAM,IActB,SAAS2X,EAAc/D,EAAOgE,EAAWC,EAAWC,GAClD,IAAI9U,EAAS4Q,EAAM5Q,OACf+L,EAAQ8I,GAAaC,EAAY,GAAK,GAE1C,MAAQA,EAAY/I,MAAYA,EAAQ/L,EACtC,GAAI4U,EAAUhE,EAAM7E,GAAQA,EAAO6E,GACjC,OAAO7E,EAGX,OAAQ,EAYV,SAASgJ,EAAYnE,EAAOxE,EAAOyI,GACjC,GAAIzI,IAAUA,EACZ,OAAOuI,EAAc/D,EAAOoE,EAAWH,GAEzC,IAAI9I,EAAQ8I,EAAY,EACpB7U,EAAS4Q,EAAM5Q,OAEnB,QAAS+L,EAAQ/L,EACf,GAAI4Q,EAAM7E,KAAWK,EACnB,OAAOL,EAGX,OAAQ,EAUV,SAASiJ,EAAU5I,GACjB,OAAOA,IAAUA,EAYnB,SAAS6I,EAAgBC,EAAYC,GACnC,IAAIpJ,GAAS,EACT/L,EAASkV,EAAWlV,OAExB,QAAS+L,EAAQ/L,GAAU+U,EAAYI,EAAYD,EAAWnJ,GAAQ,IAAM,GAC5E,OAAOA,EAUT,SAASqJ,EAAWjK,GAClB,OAAOiJ,EAAa/X,KAAK8O,GAU3B,SAASkK,EAAclK,GACrB,OAAOiK,EAAWjK,GACdmK,EAAenK,GACfuJ,EAAavJ,GAUnB,SAASmK,EAAenK,GACtB,OAAOA,EAAOzH,MAAMyQ,IAAc,GAIpC,IAAIoB,EAAc1T,OAAOiD,UAOrB0Q,EAAiBD,EAAY7T,SAG7B+T,EAASjB,EAAKiB,OAGdC,EAAcD,EAASA,EAAO3Q,eAAY7E,EAC1C0V,EAAiBD,EAAcA,EAAYhU,cAAWzB,EAW1D,SAAS2V,EAAUhF,EAAOiF,EAAOC,GAC/B,IAAI/J,GAAS,EACT/L,EAAS4Q,EAAM5Q,OAEf6V,EAAQ,IACVA,GAASA,EAAQ7V,EAAS,EAAKA,EAAS6V,GAE1CC,EAAMA,EAAM9V,EAASA,EAAS8V,EAC1BA,EAAM,IACRA,GAAO9V,GAETA,EAAS6V,EAAQC,EAAM,EAAMA,EAAMD,IAAW,EAC9CA,KAAW,EAEX,IAAIxU,EAASmO,MAAMxP,GACnB,QAAS+L,EAAQ/L,EACfqB,EAAO0K,GAAS6E,EAAM7E,EAAQ8J,GAEhC,OAAOxU,EAWT,SAAS0U,EAAa3J,GAEpB,GAAoB,iBAATA,EACT,OAAOA,EAET,GAAI4J,EAAS5J,GACX,OAAOuJ,EAAiBA,EAAezV,KAAKkM,GAAS,GAEvD,IAAI/K,EAAU+K,EAAQ,GACtB,MAAkB,KAAV/K,GAAkB,EAAI+K,IAAW0G,EAAY,KAAOzR,EAY9D,SAAS4U,EAAUrF,EAAOiF,EAAOC,GAC/B,IAAI9V,EAAS4Q,EAAM5Q,OAEnB,OADA8V,OAAc7V,IAAR6V,EAAoB9V,EAAS8V,GAC1BD,GAASC,GAAO9V,EAAU4Q,EAAQgF,EAAUhF,EAAOiF,EAAOC,GA2BrE,SAASI,EAAa9J,GACpB,QAASA,GAAyB,iBAATA,EAoB3B,SAAS4J,EAAS5J,GAChB,MAAuB,iBAATA,GACX8J,EAAa9J,IAAUoJ,EAAetV,KAAKkM,IAAU2G,EAwB1D,SAASrR,EAAS0K,GAChB,OAAgB,MAATA,EAAgB,GAAK2J,EAAa3J,GAsB3C,SAAS+J,EAAUhL,EAAQiL,EAAOC,GAEhC,GADAlL,EAASzJ,EAASyJ,GACdA,IAAWkL,QAAmBpW,IAAVmW,GACtB,OAAOjL,EAAOjF,QAAQ8M,EAAa,IAErC,IAAK7H,KAAYiL,EAAQL,EAAaK,IACpC,OAAOjL,EAET,IAAI+J,EAAaG,EAAclK,GAC3B0K,EAAQZ,EAAgBC,EAAYG,EAAce,IAEtD,OAAOH,EAAUf,EAAYW,GAAO7B,KAAK,IAG3C1X,EAAOC,QAAU4Z,I,6CC/WjB,IAAI1M,EAAY,EAAQ,QAEpB6M,EAAM7L,KAAK6L,IACX9L,EAAMC,KAAKD,IAKflO,EAAOC,QAAU,SAAUwP,EAAO/L,GAChC,IAAIuW,EAAU9M,EAAUsC,GACxB,OAAOwK,EAAU,EAAID,EAAIC,EAAUvW,EAAQ,GAAKwK,EAAI+L,EAASvW,K,uBCV/D,IAAIvD,EAAS,EAAQ,QACjBiG,EAA2B,EAAQ,QAAmDjB,EACtFiN,EAA8B,EAAQ,QACtC8H,EAAW,EAAQ,QACnBC,EAAY,EAAQ,QACpBC,EAA4B,EAAQ,QACpCC,EAAW,EAAQ,QAgBvBra,EAAOC,QAAU,SAAU0V,EAASnG,GAClC,IAGI8K,EAAQlJ,EAAQvM,EAAK0V,EAAgBC,EAAgBC,EAHrDC,EAAS/E,EAAQvE,OACjBuJ,EAAShF,EAAQxV,OACjBya,EAASjF,EAAQkF,KASrB,GANEzJ,EADEuJ,EACOxa,EACAya,EACAza,EAAOua,IAAWP,EAAUO,EAAQ,KAEnCva,EAAOua,IAAW,IAAIlS,UAE9B4I,EAAQ,IAAKvM,KAAO2K,EAAQ,CAQ9B,GAPAgL,EAAiBhL,EAAO3K,GACpB8Q,EAAQmF,aACVL,EAAarU,EAAyBgL,EAAQvM,GAC9C0V,EAAiBE,GAAcA,EAAW3K,OACrCyK,EAAiBnJ,EAAOvM,GAC/ByV,EAASD,EAASM,EAAS9V,EAAM6V,GAAUE,EAAS,IAAM,KAAO/V,EAAK8Q,EAAQrE,SAEzEgJ,QAA6B3W,IAAnB4W,EAA8B,CAC3C,UAAWC,WAA0BD,EAAgB,SACrDH,EAA0BI,EAAgBD,IAGxC5E,EAAQoF,MAASR,GAAkBA,EAAeQ,OACpD3I,EAA4BoI,EAAgB,QAAQ,GAGtDN,EAAS9I,EAAQvM,EAAK2V,EAAgB7E,M,uBCnD1C,IAAIqF,EAAqB,EAAQ,QAC7BC,EAAc,EAAQ,QAEtBC,EAAaD,EAAYE,OAAO,SAAU,aAI9Clb,EAAQkF,EAAII,OAAOC,qBAAuB,SAA6Ba,GACrE,OAAO2U,EAAmB3U,EAAG6U,K,sBCJ7B,SAAU/a,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkT,EAAY,CACR7H,EAAG,IACHK,EAAG,IACHI,EAAG,IACHC,EAAG,IACHT,EAAG,IACHW,EAAG,IACHN,EAAG,IACHJ,EAAG,IACHW,EAAG,IACHiH,EAAG,KAEP2H,EAAY,CACR,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,KAET3a,EAAS,CACL,eACA,QACA,QACA,QACA,QACA,WACA,SACA,MACA,UACA,eACA,eACA,gBAGJ4a,EAAK/a,EAAOE,aAAa,KAAM,CAC/BC,OAAQA,EACRE,YAAaF,EACbG,SAAU,0EAA0EF,MAChF,KAEJG,cAAe,2DAA2DH,MACtE,KAEJI,YAAa,gBAAgBJ,MAAM,KACnC+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEV4B,cAAe,kBACfyE,KAAM,SAAUP,GACZ,MAAO,UAAUpH,KAAKoH,IAE1B/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,GACA,UAEA,WAGf7B,SAAU,CACNC,QAAS,sBACTC,QAAS,uBACTC,SAAU,oBACVC,QAAS,qBACTC,SAAU,oBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,KACNC,EAAG,kBACHC,GAAI,WACJC,EAAG,cACHC,GAAI,YACJC,EAAG,eACHC,GAAI,aACJC,EAAG,WACHC,GAAI,SACJC,EAAG,YACHC,GAAI,UACJC,EAAG,WACHC,GAAI,UAERoR,SAAU,SAAUlF,GAChB,OAAOA,EACFjF,QAAQ,iBAAiB,SAAUxC,GAChC,OAAOgU,EAAUhU,MAEpBwC,QAAQ,KAAM,MAEvBoK,WAAY,SAAUnF,GAClB,OAAOA,EACFjF,QAAQ,OAAO,SAAUxC,GACtB,OAAOoM,EAAUpM,MAEpBwC,QAAQ,KAAM,MAEvBhH,KAAM,CACFC,IAAK,EACLC,IAAK,MAIb,OAAOuY,M,mCC9HX,YAEA,IAAIxT,EAAQ,EAAQ,QAChByT,EAAsB,EAAQ,QAE9BC,EAAuB,CACzB,eAAgB,qCAGlB,SAASC,EAAsBC,EAAS3L,IACjCjI,EAAM6T,YAAYD,IAAY5T,EAAM6T,YAAYD,EAAQ,mBAC3DA,EAAQ,gBAAkB3L,GAI9B,SAAS6L,IACP,IAAIC,EAQJ,OAP8B,qBAAnBC,gBAGmB,qBAAZC,GAAuE,qBAA5CvW,OAAOiD,UAAUpD,SAASxB,KAAKkY,MAD1EF,EAAU,EAAQ,SAKbA,EAGT,IAAIxT,EAAW,CACbwT,QAASD,IAETI,iBAAkB,CAAC,SAA0BlS,EAAM4R,GAGjD,OAFAH,EAAoBG,EAAS,UAC7BH,EAAoBG,EAAS,gBACzB5T,EAAMmU,WAAWnS,IACnBhC,EAAMoU,cAAcpS,IACpBhC,EAAMqU,SAASrS,IACfhC,EAAMsU,SAAStS,IACfhC,EAAMuU,OAAOvS,IACbhC,EAAMwU,OAAOxS,GAENA,EAELhC,EAAMyU,kBAAkBzS,GACnBA,EAAK0S,OAEV1U,EAAM2U,kBAAkB3S,IAC1B2R,EAAsBC,EAAS,mDACxB5R,EAAKzE,YAEVyC,EAAM4U,SAAS5S,IACjB2R,EAAsBC,EAAS,kCACxBiB,KAAKC,UAAU9S,IAEjBA,IAGT+S,kBAAmB,CAAC,SAA2B/S,GAE7C,GAAoB,kBAATA,EACT,IACEA,EAAO6S,KAAKG,MAAMhT,GAClB,MAAOyG,IAEX,OAAOzG,IAOTiT,QAAS,EAETC,eAAgB,aAChBC,eAAgB,eAEhBC,kBAAmB,EACnBC,eAAgB,EAEhBC,eAAgB,SAAwBC,GACtC,OAAOA,GAAU,KAAOA,EAAS,KAIrC,QAAmB,CACjBC,OAAQ,CACN,OAAU,uCAIdxV,EAAMoB,QAAQ,CAAC,SAAU,MAAO,SAAS,SAA6BN,GACpEP,EAASqT,QAAQ9S,GAAU,MAG7Bd,EAAMoB,QAAQ,CAAC,OAAQ,MAAO,UAAU,SAA+BN,GACrEP,EAASqT,QAAQ9S,GAAUd,EAAMyV,MAAM/B,MAGzCvb,EAAOC,QAAUmI,I,wDChGjB,IAAIsI,EAAI,EAAQ,QACZ6M,EAAa,EAAQ,QACrBnQ,EAAyB,EAAQ,QACjCoQ,EAAuB,EAAQ,QAInC9M,EAAE,CAAEU,OAAQ,SAAUC,OAAO,EAAMC,QAASkM,EAAqB,aAAe,CAC9EC,SAAU,SAAkBC,GAC1B,SAAUxd,OAAOkN,EAAuB/M,OACrCsd,QAAQJ,EAAWG,GAAezZ,UAAUP,OAAS,EAAIO,UAAU,QAAKN,O,sBCN7E,SAAUxD,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;SAASoE,EAAUC,EAAQC,EAAeC,GACtC,IAAIE,EAASJ,EAAS,IACtB,OAAQE,GACJ,IAAK,KAQD,OANIE,GADW,IAAXJ,EACU,UACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,UAEA,UAEPI,EACX,IAAK,IACD,OAAOH,EAAgB,eAAiB,eAC5C,IAAK,KAQD,OANIG,GADW,IAAXJ,EACU,SACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,SAEA,SAEPI,EACX,IAAK,IACD,OAAOH,EAAgB,YAAc,cACzC,IAAK,KAQD,OANIG,GADW,IAAXJ,EACU,MACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,OAEA,OAEPI,EACX,IAAK,KAMD,OAJIA,GADW,IAAXJ,EACU,MAEA,OAEPI,EACX,IAAK,KAQD,OANIA,GADW,IAAXJ,EACU,SACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,UAEA,UAEPI,EACX,IAAK,KAQD,OANIA,GADW,IAAXJ,EACU,SACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,SAEA,SAEPI,GAInB,IAAI6Y,EAAKtd,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,qFAAqFC,MACzF,KAEJC,YAAa,8DAA8DD,MACvE,KAEJsC,kBAAkB,EAClBpC,SAAU,4DAA4DF,MAClE,KAEJG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,eACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,eACTC,QAAS,eACTC,SAAU,WACN,OAAQpB,KAAKyR,OACT,KAAK,EACD,MAAO,wBACX,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,sBACX,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,oBAGnBpQ,QAAS,eACTC,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACL,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,2BACX,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,yBAGnBlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,WACNC,EAAG,cACHC,GAAIyC,EACJxC,EAAGwC,EACHvC,GAAIuC,EACJtC,EAAGsC,EACHrC,GAAIqC,EACJpC,EAAG,MACHC,GAAImC,EACJlC,EAAG,SACHC,GAAIiC,EACJhC,EAAG,SACHC,GAAI+B,GAERJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO8a,M,oCC5JX,IAAI1D,EAAW,EAAQ,QACnBvM,EAAW,EAAQ,QACnBzC,EAAQ,EAAQ,QAChB+D,EAAQ,EAAQ,QAEhB4O,EAAY,WACZC,EAAkBxP,OAAO9F,UACzBuV,EAAiBD,EAAgBD,GAEjCG,EAAc9S,GAAM,WAAc,MAA2D,QAApD6S,EAAena,KAAK,CAAE4L,OAAQ,IAAKP,MAAO,SAEnFgP,EAAiBF,EAAenX,MAAQiX,GAIxCG,GAAeC,IACjB/D,EAAS5L,OAAO9F,UAAWqV,GAAW,WACpC,IAAI5L,EAAItE,EAAStN,MACb8P,EAAIjQ,OAAO+R,EAAEzC,QACb0O,EAAKjM,EAAEhD,MACP9J,EAAIjF,YAAcyD,IAAPua,GAAoBjM,aAAa3D,UAAY,UAAWwP,GAAmB7O,EAAMrL,KAAKqO,GAAKiM,GAC1G,MAAO,IAAM/N,EAAI,IAAMhL,IACtB,CAAEgZ,QAAQ,K,kCCtBf,IAAIvL,EAAa,EAAQ,QACrBwL,EAAuB,EAAQ,QAC/Bve,EAAkB,EAAQ,QAC1BgG,EAAc,EAAQ,QAEtBuO,EAAUvU,EAAgB,WAE9BG,EAAOC,QAAU,SAAUoe,GACzB,IAAI3L,EAAcE,EAAWyL,GACzBjT,EAAiBgT,EAAqBjZ,EAEtCU,GAAe6M,IAAgBA,EAAY0B,IAC7ChJ,EAAesH,EAAa0B,EAAS,CACnCkK,cAAc,EACdjT,IAAK,WAAc,OAAOhL,U,wBCf/B,SAASke,EAAEC,GAAwDxe,EAAOC,QAAQue,IAAlF,CAA4Jne,GAAK,WAAW,cAAc,WAAW,GAAG,oBAAoBoe,SAAS,CAAC,IAAIF,EAAEE,SAASC,MAAMD,SAASE,qBAAqB,QAAQ,GAAGH,EAAEC,SAAStT,cAAc,SAASqF,EAAE,qDAAqDgO,EAAEI,KAAK,WAAWJ,EAAEK,WAAWL,EAAEK,WAAWC,QAAQtO,EAAEgO,EAAEO,YAAYN,SAASO,eAAexO,IAAI+N,EAAEQ,YAAYP,IAAjT,GAAwT,IAAID,EAAE,oBAAoBjZ,OAAO2Z,EAAE,CAACC,OAAO,WAAW,IAAIX,EAAEle,KAAKme,EAAED,EAAEY,eAAe,OAAOZ,EAAEa,MAAMC,IAAIb,GAAG,MAAM,CAACc,YAAY,iBAAiBC,MAAMhB,EAAEgB,SAASC,gBAAgB,GAAG5Y,KAAK,cAAc6Y,eAAe,WAAW,MAAM,YAAYC,SAAS,CAACH,MAAM,WAAW,IAAIhB,EAAEle,KAAKsf,SAASnB,EAAED,EAAE5I,QAAQnF,IAAIgO,EAAEoB,KAAKtP,EAAEkO,EAAEqB,SAAS7d,EAAE,CAAC,mBAAmBwc,EAAEsB,WAAWtB,EAAEuB,MAAMvB,EAAEwB,YAAYC,QAAQzB,EAAEoB,KAAK,EAAE,EAAEM,SAAS1B,EAAE0B,UAAU,MAAM,QAAQ5P,GAAG,WAAWA,GAAG,QAAQA,EAAEtO,EAAEme,IAAI,MAAMne,EAAEoe,OAAO,MAAM5B,EAAE6B,QAAQre,EAAEse,MAAM,MAAMte,EAAE4O,KAAK,MAAM5O,EAAEue,MAAMhC,EAAEiC,QAAQ,IAAIxe,EAAEye,OAAOjC,EAAEkC,UAAU1e,EAAE2e,YAAYnQ,EAAE,SAASgO,EAAEmC,WAAWC,MAAM,KAAK,IAAI,WAAWpC,EAAEmC,WAAWV,SAAS,SAAS3P,GAAG,UAAUA,IAAI,SAASA,EAAEtO,EAAE4O,KAAK,MAAM5O,EAAEse,MAAM,MAAM9B,EAAE6B,QAAQre,EAAEme,IAAI,MAAMne,EAAEoe,OAAO,MAAMpe,EAAEye,OAAOlC,EAAEiC,QAAQ,IAAIxe,EAAEue,MAAM/B,EAAEkC,UAAU1e,EAAE2e,YAAYnQ,EAAE,UAAUgO,EAAEmC,WAAWC,MAAM,KAAK,IAAI,WAAWpC,EAAEmC,WAAWV,SAASje,GAAG2d,SAAS,WAAW,OAAOpB,EAAEjZ,OAAOub,uBAAuBC,kBAAkB,CAACN,QAAQ,EAAE7K,QAAQ,CAACmK,YAAW,EAAGF,MAAK,EAAGG,MAAM,kBAAkBC,YAAY,MAAMU,UAAU,MAAMC,WAAW,CAACC,MAAM,OAAOX,QAAQ,OAAOc,YAAY,KAAKlB,SAAS,MAAMmB,YAAW,EAAGX,SAAQ,OAAQ,MAAM,CAACY,QAAQ,SAASzC,GAAG,IAAID,EAAE,EAAEta,UAAUP,aAAQ,IAASO,UAAU,GAAGA,UAAU,GAAG,GAAGuM,GAAGgO,EAAE0C,QAAQxgB,MAAM,KAAK,GAAG,oBAAoB4E,QAAQgL,EAAE,CAAC6Q,IAAI,KAAKC,MAAM,CAACC,WAAW,GAAGC,OAAO,GAAGC,MAAM,KAAKC,IAAI,GAAGC,KAAK,SAASlD,GAAGle,KAAK8gB,IAAI5C,GAAGhF,MAAM,SAASgF,GAAG,IAAIC,EAAEne,KAAKA,KAAK8gB,MAAM5C,IAAIA,EAAE,KAAKle,KAAK8gB,IAAIL,kBAAkBN,QAAQ,EAAEngB,KAAK8gB,IAAIL,kBAAkBnL,QAAQiK,MAAK,EAAGvf,KAAK8gB,IAAIL,kBAAkBnL,QAAQmK,YAAW,EAAGzf,KAAK+gB,MAAMI,IAAI,IAAIrT,KAAKuT,MAAMnD,GAAGoD,cAActhB,KAAK+gB,MAAMG,OAAOlhB,KAAK+gB,MAAMG,MAAMK,aAAY,WAAWpD,EAAEqD,SAASrD,EAAE4C,MAAMI,IAAIrT,KAAK2T,UAAU,GAAGtD,EAAE2C,IAAIL,kBAAkBN,SAAShC,EAAE2C,IAAIL,kBAAkBnL,QAAQoM,YAAYvD,EAAEwD,WAAU,OAAOC,IAAI,SAAS1D,GAAGle,KAAK8gB,IAAIL,kBAAkBnL,QAAQiK,MAAK,EAAGvf,KAAK8gB,IAAIL,kBAAkBnL,QAAQmK,YAAW,EAAGzf,KAAK8gB,IAAIL,kBAAkBN,QAAQrS,KAAKuT,MAAMnD,IAAIlT,IAAI,WAAW,OAAO8C,KAAKuT,MAAMrhB,KAAK8gB,IAAIL,kBAAkBN,UAAUqB,SAAS,SAAStD,GAAGle,KAAK8gB,IAAIL,kBAAkBN,QAAQrS,KAAKD,IAAI,GAAG7N,KAAK8gB,IAAIL,kBAAkBN,QAAQrS,KAAKuT,MAAMnD,KAAK2D,SAAS,SAAS3D,GAAGle,KAAK8gB,IAAIL,kBAAkBN,QAAQngB,KAAK8gB,IAAIL,kBAAkBN,QAAQrS,KAAKuT,MAAMnD,IAAI4D,KAAK,WAAW,IAAI5D,EAAEle,KAAKshB,cAActhB,KAAK+gB,MAAMG,OAAOlhB,KAAK+gB,MAAMG,MAAM,KAAKa,YAAW,WAAW7D,EAAE4C,IAAIL,kBAAkBnL,QAAQiK,MAAK,EAAGpB,EAAE6D,UAAS,WAAWD,YAAW,WAAW7D,EAAE4C,IAAIL,kBAAkBN,QAAQ,IAAG,KAAKjC,EAAE4C,IAAIL,kBAAkBnL,QAAQqL,YAAYoB,YAAW,WAAW7D,EAAE+D,WAAU,UAAQjiB,KAAK8gB,IAAIL,kBAAkBnL,QAAQgL,WAAWI,cAAcwB,MAAM,WAAWZ,cAActhB,KAAK+gB,MAAMG,QAAQS,OAAO,WAAW3hB,KAAK8gB,MAAM9gB,KAAK8gB,IAAIL,kBAAkBN,QAAQ,IAAIngB,KAAK8hB,SAASK,KAAK,WAAWniB,KAAK8gB,IAAIL,kBAAkBnL,QAAQmK,YAAW,EAAGzf,KAAK8gB,IAAIL,kBAAkBN,QAAQ,IAAIngB,KAAK8hB,QAAQM,aAAa,SAASlE,GAAGle,KAAK8gB,IAAIL,kBAAkBnL,QAAQqK,YAAYzB,GAAGmE,SAAS,SAASnE,GAAGle,KAAK8gB,IAAIL,kBAAkBnL,QAAQoK,MAAMxB,GAAGoE,YAAY,SAASpE,GAAGle,KAAK8gB,IAAIL,kBAAkBnL,QAAQkK,SAAStB,GAAGqE,cAAc,SAASrE,GAAGle,KAAK8gB,IAAIL,kBAAkBnL,QAAQgL,WAAWpC,GAAGsE,cAAc,SAAStE,GAAGle,KAAK+gB,MAAMC,WAAWhhB,KAAK8gB,IAAIL,kBAAkBnL,QAAQqK,YAAY3f,KAAK8gB,IAAIL,kBAAkBnL,QAAQqK,YAAYzB,GAAGuE,UAAU,SAASvE,GAAGle,KAAK+gB,MAAME,OAAOjhB,KAAK8gB,IAAIL,kBAAkBnL,QAAQoK,MAAM1f,KAAK8gB,IAAIL,kBAAkBnL,QAAQoK,MAAMxB,GAAGwE,aAAa,SAASxE,GAAGle,KAAK+gB,MAAM4B,UAAU3iB,KAAK8gB,IAAIL,kBAAkBnL,QAAQkK,SAASxf,KAAK8gB,IAAIL,kBAAkBnL,QAAQkK,SAAStB,GAAG0E,eAAe,SAAS1E,GAAGle,KAAK+gB,MAAM8B,YAAY7iB,KAAK8gB,IAAIL,kBAAkBnL,QAAQgL,WAAWtgB,KAAK8gB,IAAIL,kBAAkBnL,QAAQgL,WAAWpC,GAAG4E,YAAY,WAAW9iB,KAAK8gB,IAAIL,kBAAkBnL,QAAQoK,MAAM1f,KAAK+gB,MAAME,OAAOjhB,KAAK+gB,MAAME,OAAO,IAAI8B,gBAAgB,WAAW/iB,KAAK8gB,IAAIL,kBAAkBnL,QAAQqK,YAAY3f,KAAK+gB,MAAMC,WAAWhhB,KAAK+gB,MAAMC,WAAW,IAAIgC,eAAe,WAAWhjB,KAAK8gB,IAAIL,kBAAkBnL,QAAQkK,SAASxf,KAAK+gB,MAAM4B,UAAU3iB,KAAK+gB,MAAM4B,UAAU,IAAIM,iBAAiB,WAAWjjB,KAAK8gB,IAAIL,kBAAkBnL,QAAQgL,WAAWtgB,KAAK+gB,MAAM8B,YAAY7iB,KAAK+gB,MAAM8B,YAAY,IAAIZ,OAAO,WAAWjiB,KAAK8gB,IAAIL,kBAAkBnL,QAAQqL,aAAa3gB,KAAK+gB,MAAME,QAAQjhB,KAAK8iB,cAAc9iB,KAAK+gB,MAAMC,YAAYhhB,KAAK+iB,kBAAkB/iB,KAAK+gB,MAAM4B,WAAW3iB,KAAKgjB,kBAAkBhjB,KAAK+gB,MAAM8B,kBAAa,IAAS7iB,KAAK+gB,MAAM8B,YAAYtC,YAAO,IAASvgB,KAAK+gB,MAAM8B,YAAYjD,SAAS5f,KAAKijB,qBAAqBC,UAAU,SAAShF,GAAG,IAAI,IAAIC,KAAKD,EAAEiF,KAAK,CAAC,IAAIhT,EAAE+N,EAAEiF,KAAKhF,GAAG,OAAOhO,EAAE5M,MAAM,IAAI,QAAQ,OAAO4M,EAAEiT,UAAU,IAAI,MAAMpjB,KAAKqiB,SAASlS,EAAEkT,UAAU,MAAM,IAAI,OAAOrjB,KAAKyiB,UAAUtS,EAAEkT,UAAU,MAAM,IAAI,OAAO,OAAOlT,EAAEiT,UAAU,IAAI,MAAMpjB,KAAKoiB,aAAajS,EAAEkT,UAAU,MAAM,IAAI,OAAOrjB,KAAKwiB,cAAcrS,EAAEkT,UAAU,MAAM,IAAI,WAAW,OAAOlT,EAAEiT,UAAU,IAAI,MAAMpjB,KAAKsiB,YAAYnS,EAAEkT,UAAU,MAAM,IAAI,OAAOrjB,KAAK0iB,aAAavS,EAAEkT,UAAU,MAAM,IAAI,aAAa,OAAOlT,EAAEiT,UAAU,IAAI,MAAMpjB,KAAKuiB,cAAcpS,EAAEkT,UAAU,MAAM,IAAI,OAAOrjB,KAAK4iB,eAAezS,EAAEkT,eAAe1hB,EAAE,SAASuc,EAAEC,GAAG,IAAI,IAAIhO,EAAEF,EAAEtO,EAAE,EAAEA,EAAEiC,UAAUP,SAAS1B,EAAE,IAAIwO,KAAKF,EAAErM,UAAUjC,GAAGuD,OAAOiD,UAAUmb,eAAe/f,KAAK0M,EAAEE,KAAK+N,EAAE/N,GAAGF,EAAEE,IAAI,OAAO+N,EAA3I,CAA8I,CAACuB,YAAW,EAAGF,MAAK,EAAGG,MAAM,UAAUG,SAAS,QAAQF,YAAY,MAAMU,UAAU,MAAMC,WAAW,CAACC,MAAM,OAAOX,QAAQ,OAAOc,YAAY,KAAKC,YAAW,EAAGnB,SAAS,MAAMQ,SAAQ,EAAG0B,YAAW,GAAIxD,GAAG9Z,EAAE,IAAI+Z,EAAE,CAAC3U,KAAK,CAACiX,kBAAkB,CAACN,QAAQ,EAAE7K,QAAQ3T,MAAMwO,IAAIlL,OAAOub,uBAAuBpc,EAAE6L,EAAEmR,KAAKhd,IAAI+Z,EAAEoF,UAAU,mBAAmB3E,GAAGT,EAAEhW,UAAUqb,UAAUvT,Q,wBCI79L,SAAUnQ,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIwjB,EAAQ,CACR7hB,GAAI,6BACJC,EAAG,wBACHC,GAAI,0BACJC,EAAG,2BACHC,GAAI,4BACJC,EAAG,qBACHC,GAAI,sBACJC,EAAG,uBACHC,GAAI,4BACJC,EAAG,mBACHC,GAAI,oBAER,SAASohB,EAAiBpf,EAAQC,EAAeC,EAAKC,GAClD,OAAIF,EACO,kBAEAE,EAAW,kBAAoB,kBAG9C,SAASkf,EAAkBrf,EAAQC,EAAeC,EAAKC,GACnD,OAAOF,EACDgQ,EAAM/P,GAAK,GACXC,EACA8P,EAAM/P,GAAK,GACX+P,EAAM/P,GAAK,GAErB,SAASof,EAAQtf,GACb,OAAOA,EAAS,KAAO,GAAMA,EAAS,IAAMA,EAAS,GAEzD,SAASiQ,EAAM/P,GACX,OAAOif,EAAMjf,GAAKnE,MAAM,KAE5B,SAASgE,EAAUC,EAAQC,EAAeC,EAAKC,GAC3C,IAAIC,EAASJ,EAAS,IACtB,OAAe,IAAXA,EAEII,EAASif,EAAkBrf,EAAQC,EAAeC,EAAI,GAAIC,GAEvDF,EACAG,GAAUkf,EAAQtf,GAAUiQ,EAAM/P,GAAK,GAAK+P,EAAM/P,GAAK,IAE1DC,EACOC,EAAS6P,EAAM/P,GAAK,GAEpBE,GAAUkf,EAAQtf,GAAUiQ,EAAM/P,GAAK,GAAK+P,EAAM/P,GAAK,IAI1E,IAAIqf,EAAK5jB,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,CACJyJ,OAAQ,oGAAoGxJ,MACxG,KAEJsK,WAAY,kGAAkGtK,MAC1G,KAEJuK,SAAU,+DAEdtK,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,CACNsJ,OAAQ,oFAAoFxJ,MACxF,KAEJsK,WAAY,2FAA2FtK,MACnG,KAEJuK,SAAU,cAEdpK,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,iBAAiBJ,MAAM,KACpC+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,wBACJC,IAAK,sCACLC,KAAM,4CACNiG,EAAG,aACHC,GAAI,wBACJC,IAAK,sCACLC,KAAM,4CAEVnG,SAAU,CACNC,QAAS,gBACTC,QAAS,aACTC,SAAU,UACVC,QAAS,aACTC,SAAU,qBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,WACNC,EAAG+hB,EACH9hB,GAAIyC,EACJxC,EAAG8hB,EACH7hB,GAAIuC,EACJtC,EAAG4hB,EACH3hB,GAAIqC,EACJpC,EAAG0hB,EACHzhB,GAAImC,EACJlC,EAAGwhB,EACHvhB,GAAIiC,EACJhC,EAAGshB,EACHrhB,GAAI+B,GAERJ,uBAAwB,cACxBC,QAAS,SAAUI,GACf,OAAOA,EAAS,QAEpB/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOohB,M,yDC7HI,SAASC,EACtBC,EACAlF,EACAM,EACA6E,EACAC,EACAC,EACAC,EACAC,GAGA,IAqBIC,EArBA/O,EAAmC,oBAAlByO,EACjBA,EAAczO,QACdyO,EAsDJ,GAnDIlF,IACFvJ,EAAQuJ,OAASA,EACjBvJ,EAAQ6J,gBAAkBA,EAC1B7J,EAAQgP,WAAY,GAIlBN,IACF1O,EAAQiP,YAAa,GAInBL,IACF5O,EAAQkP,SAAW,UAAYN,GAI7BC,GACFE,EAAO,SAAUI,GAEfA,EACEA,GACCzkB,KAAK0kB,QAAU1kB,KAAK0kB,OAAOC,YAC3B3kB,KAAK4kB,QAAU5kB,KAAK4kB,OAAOF,QAAU1kB,KAAK4kB,OAAOF,OAAOC,WAEtDF,GAA0C,qBAAxBI,sBACrBJ,EAAUI,qBAGRZ,GACFA,EAAa1gB,KAAKvD,KAAMykB,GAGtBA,GAAWA,EAAQK,uBACrBL,EAAQK,sBAAsBC,IAAIZ,IAKtC7O,EAAQ0P,aAAeX,GACdJ,IACTI,EAAOD,EACH,WACAH,EAAa1gB,KACXvD,MACCsV,EAAQiP,WAAavkB,KAAK4kB,OAAS5kB,MAAMilB,MAAMC,SAASC,aAG3DlB,GAGFI,EACF,GAAI/O,EAAQiP,WAAY,CAGtBjP,EAAQ8P,cAAgBf,EAExB,IAAIgB,EAAiB/P,EAAQuJ,OAC7BvJ,EAAQuJ,OAAS,SAAmC9c,EAAG0iB,GAErD,OADAJ,EAAK9gB,KAAKkhB,GACHY,EAAetjB,EAAG0iB,QAEtB,CAEL,IAAIa,EAAWhQ,EAAQiQ,aACvBjQ,EAAQiQ,aAAeD,EACnB,GAAGxK,OAAOwK,EAAUjB,GACpB,CAACA,GAIT,MAAO,CACLzkB,QAASmkB,EACTzO,QAASA,GA/Fb,mC,kCCAe,SAASkQ,EAAkBta,EAAKua,IAClC,MAAPA,GAAeA,EAAMva,EAAI7H,UAAQoiB,EAAMva,EAAI7H,QAE/C,IAAK,IAAI8M,EAAI,EAAGuV,EAAO,IAAI7S,MAAM4S,GAAMtV,EAAIsV,EAAKtV,IAC9CuV,EAAKvV,GAAKjF,EAAIiF,GAGhB,OAAOuV,ECNM,SAASC,EAAmBza,GACzC,GAAI2H,MAAM+S,QAAQ1a,GAAM,OAAO2a,EAAiB3a,G,wGCFnC,SAAS4a,EAAiBC,GACvC,GAAsB,qBAAXjN,QAA0BA,OAAOvD,YAAYrQ,OAAO6gB,GAAO,OAAOlT,MAAMC,KAAKiT,G,8BCA3E,SAASC,EAA4B7H,EAAG8H,GACrD,GAAK9H,EAAL,CACA,GAAiB,kBAANA,EAAgB,OAAO0H,EAAiB1H,EAAG8H,GACtD,IAAI7hB,EAAIc,OAAOiD,UAAUpD,SAASxB,KAAK4a,GAAG5Y,MAAM,GAAI,GAEpD,MADU,WAANnB,GAAkB+Z,EAAEjK,cAAa9P,EAAI+Z,EAAEjK,YAAY3N,MAC7C,QAANnC,GAAqB,QAANA,EAAoByO,MAAMC,KAAKqL,GACxC,cAAN/Z,GAAqB,2CAA2C1E,KAAK0E,GAAWyhB,EAAiB1H,EAAG8H,QAAxG,GCPa,SAASC,IACtB,MAAM,IAAIrU,UAAU,wICGP,SAASsU,EAAmBjb,GACzC,OAAOkb,EAAkBlb,IAAQmb,EAAgBnb,IAAQob,EAA2Bpb,IAAQqb,M,sBCA5F,SAAUzmB,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIumB,EAAKvmB,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,qGAAqGC,MACzG,KAEJC,YAAa,sFAAsFD,MAC/F,KAEJsC,kBAAkB,EAClBpC,SAAU,yDAAyDF,MAC/D,KAEJG,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpBxH,cAAe,SACfyE,KAAM,SAAUP,GACZ,MAAO,QAAQpH,KAAKoH,IAExB/D,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,GACDpH,EAAU,KAAO,KAEjBA,EAAU,KAAO,MAGhCvC,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,oBACJC,IAAK,0BACLC,KAAM,gCACNiG,EAAG,YACHC,GAAI,aACJC,IAAK,mBACLC,KAAM,yBAEVnG,SAAU,CACNC,QAAS,mBACTC,QAAS,oBACTC,SAAU,yBACVC,QAAS,mBACTC,SAAU,2BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,WACNC,EAAG,WACHC,GAAI,UACJC,EAAG,WACHC,GAAI,UACJC,EAAG,UACHC,GAAI,SACJC,EAAG,WACHC,GAAI,UACJoI,EAAG,WACHC,GAAI,UACJpI,EAAG,YACHC,GAAI,WACJC,EAAG,UACHC,GAAI,UAER2B,uBAAwB,UACxBC,QAAS,SAAUI,GACf,OAAOA,GAEX/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+jB,M,wBCnFT,SAAU1mB,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAImR,EAAa,CACbC,MAAO,CAEHzP,GAAI,CAAC,SAAU,UAAW,WAC1BC,EAAG,CAAC,cAAe,iBACnBC,GAAI,CAAC,QAAS,SAAU,UACxBC,EAAG,CAAC,YAAa,eACjBC,GAAI,CAAC,MAAO,OAAQ,QACpBE,GAAI,CAAC,MAAO,OAAQ,QACpBE,GAAI,CAAC,SAAU,UAAW,WAC1BE,GAAI,CAAC,SAAU,SAAU,WAE7BgP,uBAAwB,SAAUhN,EAAQiN,GACtC,OAAkB,IAAXjN,EACDiN,EAAQ,GACRjN,GAAU,GAAKA,GAAU,EACzBiN,EAAQ,GACRA,EAAQ,IAElBlN,UAAW,SAAUC,EAAQC,EAAeC,GACxC,IAAI+M,EAAUH,EAAWC,MAAM7M,GAC/B,OAAmB,IAAfA,EAAInB,OACGkB,EAAgBgN,EAAQ,GAAKA,EAAQ,GAGxCjN,EACA,IACA8M,EAAWE,uBAAuBhN,EAAQiN,KAMtDkV,EAAKxmB,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,mFAAmFC,MACvF,KAEJC,YAAa,2DAA2DD,MACpE,KAEJsC,kBAAkB,EAClBpC,SAAU,4DAA4DF,MAClE,KAEJG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,eACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,eACTC,QAAS,gBAETC,SAAU,WACN,OAAQpB,KAAKyR,OACT,KAAK,EACD,MAAO,wBACX,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,sBACX,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,oBAGnBpQ,QAAS,cACTC,SAAU,WACN,IAAIoQ,EAAe,CACf,6BACA,iCACA,4BACA,4BACA,8BACA,2BACA,4BAEJ,OAAOA,EAAa1R,KAAKyR,QAE7BlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,WACNC,EAAG,mBACHC,GAAIwP,EAAW/M,UACfxC,EAAGuP,EAAW/M,UACdvC,GAAIsP,EAAW/M,UACftC,EAAGqP,EAAW/M,UACdrC,GAAIoP,EAAW/M,UACfpC,EAAG,MACHC,GAAIkP,EAAW/M,UACflC,EAAG,SACHC,GAAIgP,EAAW/M,UACfhC,EAAG,SACHC,GAAI8O,EAAW/M,WAEnBJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOgkB,M,uBC9HX,IAAInZ,EAAW,EAAQ,QAEvB3N,EAAOC,QAAU,SAAU2V,GACzB,IAAImR,EAAenR,EAAS,UAC5B,QAAqBjS,IAAjBojB,EACF,OAAOpZ,EAASoZ,EAAanjB,KAAKgS,IAAW9F,Q,wBCD/C,SAAU3P,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI0mB,EAAK1mB,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,8FAA8FC,MAClG,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,4DAA4DF,MAClE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CuC,cAAe,SACfyE,KAAM,SAAUP,GACZ,MAAO,QAAQpH,KAAKoH,IAExB/D,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,GACDpH,EAAU,KAAO,KAEjBA,EAAU,KAAO,MAGhCvC,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,eACTC,SAAU,eACVC,QAAS,iBACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,YACNC,EAAG,mBACHC,GAAI,cACJC,EAAG,YACHC,GAAI,YACJC,EAAG,SACHC,GAAI,SACJC,EAAG,SACHC,GAAI,SACJC,EAAG,WACHC,GAAI,YACJC,EAAG,UACHC,GAAI,WAER2B,uBAAwB,kBACxBC,QAAS,SAAUI,GACf,OACIA,GACY,IAAXA,GAA2B,IAAXA,GAAgBA,GAAU,GAAK,MAAQ,OAGhE/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOkkB,M,oCC9EX,IAAItW,EAAI,EAAQ,QACZtK,EAA2B,EAAQ,QAAmDjB,EACtF2I,EAAW,EAAQ,QACnByP,EAAa,EAAQ,QACrBnQ,EAAyB,EAAQ,QACjCoQ,EAAuB,EAAQ,QAC/ByJ,EAAU,EAAQ,QAElBC,EAAmB,GAAGC,WACtBjZ,EAAMC,KAAKD,IAEXkZ,EAA0B5J,EAAqB,cAE/C6J,GAAoBJ,IAAYG,KAA6B,WAC/D,IAAI3M,EAAarU,EAAyBlG,OAAOsI,UAAW,cAC5D,OAAOiS,IAAeA,EAAW6M,SAF8B,GAOjE5W,EAAE,CAAEU,OAAQ,SAAUC,OAAO,EAAMC,QAAS+V,IAAqBD,GAA2B,CAC1FD,WAAY,SAAoBzJ,GAC9B,IAAIja,EAAOvD,OAAOkN,EAAuB/M,OACzCkd,EAAWG,GACX,IAAIjO,EAAQ3B,EAASI,EAAIjK,UAAUP,OAAS,EAAIO,UAAU,QAAKN,EAAWF,EAAKC,SAC3E6jB,EAASrnB,OAAOwd,GACpB,OAAOwJ,EACHA,EAAiBtjB,KAAKH,EAAM8jB,EAAQ9X,GACpChM,EAAKmC,MAAM6J,EAAOA,EAAQ8X,EAAO7jB,UAAY6jB,M,uBC7BrD,IAiBIC,EAAOC,EAASC,EAjBhBvnB,EAAS,EAAQ,QACjB+K,EAAQ,EAAQ,QAChBkK,EAAO,EAAQ,QACfuS,EAAO,EAAQ,QACfxc,EAAgB,EAAQ,QACxByc,EAAS,EAAQ,QACjB5W,EAAU,EAAQ,QAElB6O,EAAW1f,EAAO0f,SAClBoC,EAAM9hB,EAAO0nB,aACbC,EAAQ3nB,EAAO4nB,eACfjM,EAAU3b,EAAO2b,QACjBkM,EAAiB7nB,EAAO6nB,eACxBC,EAAW9nB,EAAO8nB,SAClBC,EAAU,EACVC,EAAQ,GACRC,EAAqB,qBAGrBC,EAAM,SAAUC,GAElB,GAAIH,EAAMxE,eAAe2E,GAAK,CAC5B,IAAI9kB,EAAK2kB,EAAMG,UACRH,EAAMG,GACb9kB,MAIA+kB,EAAS,SAAUD,GACrB,OAAO,WACLD,EAAIC,KAIJE,EAAW,SAAUC,GACvBJ,EAAII,EAAM5e,OAGR6e,EAAO,SAAUJ,GAEnBnoB,EAAOwoB,YAAYL,EAAK,GAAIzI,EAAS+I,SAAW,KAAO/I,EAASgJ,OAI7D5G,GAAQ6F,IACX7F,EAAM,SAAsBze,GAC1B,IAAI0Q,EAAO,GACP1D,EAAI,EACR,MAAOvM,UAAUP,OAAS8M,EAAG0D,EAAK5K,KAAKrF,UAAUuM,MAMjD,OALA2X,IAAQD,GAAW,YAEH,mBAAN1kB,EAAmBA,EAAK2U,SAAS3U,IAAKQ,WAAML,EAAWuQ,IAEjEsT,EAAMU,GACCA,GAETJ,EAAQ,SAAwBQ,UACvBH,EAAMG,IAGXtX,EACFwW,EAAQ,SAAUc,GAChBxM,EAAQuG,SAASkG,EAAOD,KAGjBL,GAAYA,EAAStgB,IAC9B6f,EAAQ,SAAUc,GAChBL,EAAStgB,IAAI4gB,EAAOD,KAIbN,IAAmBJ,GAC5BH,EAAU,IAAIO,EACdN,EAAOD,EAAQqB,MACfrB,EAAQsB,MAAMC,UAAYR,EAC1BhB,EAAQpS,EAAKsS,EAAKiB,YAAajB,EAAM,IAIrCvnB,EAAO8oB,kBACe,mBAAfN,cACNxoB,EAAO+oB,eACRrJ,GAAkC,UAAtBA,EAAS+I,WACpB1d,EAAMwd,IAEPlB,EAAQkB,EACRvoB,EAAO8oB,iBAAiB,UAAWT,GAAU,IAG7ChB,EADSY,KAAsBjd,EAAc,UACrC,SAAUmd,GAChBX,EAAK5I,YAAY5T,EAAc,WAAWid,GAAsB,WAC9DT,EAAKwB,YAAY9oB,MACjBgoB,EAAIC,KAKA,SAAUA,GAChBlG,WAAWmG,EAAOD,GAAK,KAK7BtoB,EAAOC,QAAU,CACfgiB,IAAKA,EACL6F,MAAOA,I,uBCzGT,IAMI1gB,EAAO8Z,EANP/gB,EAAS,EAAQ,QACjBoT,EAAY,EAAQ,QAEpBuI,EAAU3b,EAAO2b,QACjBsN,EAAWtN,GAAWA,EAAQsN,SAC9BC,EAAKD,GAAYA,EAASC,GAG1BA,GACFjiB,EAAQiiB,EAAG3oB,MAAM,KACjBwgB,EAAU9Z,EAAM,GAAKA,EAAM,IAClBmM,IACTnM,EAAQmM,EAAUnM,MAAM,iBACnBA,GAASA,EAAM,IAAM,MACxBA,EAAQmM,EAAUnM,MAAM,iBACpBA,IAAO8Z,EAAU9Z,EAAM,MAI/BpH,EAAOC,QAAUihB,IAAYA,G,oCCjB7B,IAAIoI,EAAe,EAAQ,QAY3BtpB,EAAOC,QAAU,SAAqBspB,EAAS9gB,EAAQ+gB,EAAMlhB,EAASC,GACpE,IAAI5C,EAAQ,IAAI8jB,MAAMF,GACtB,OAAOD,EAAa3jB,EAAO8C,EAAQ+gB,EAAMlhB,EAASC,K,oCCdpDvI,EAAOC,QAAU,SAAkB6P,GACjC,SAAUA,IAASA,EAAM4Z,c,wBCCzB,SAAUvpB,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIqpB,EAAKrpB,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,yEAAyEC,MAC7E,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,uDAAuDF,MAAM,KACvEG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,uBACTC,QAAS,mBACTC,SAAU,2BACVC,QAAS,sBACTC,SAAU,mCACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,gBACRC,KAAM,oBACNC,EAAG,SACHC,GAAI,YACJC,EAAG,aACHC,GAAI,YACJC,EAAG,WACHC,GAAI,UACJC,EAAG,UACHC,GAAI,SACJC,EAAG,SACHC,GAAI,QACJC,EAAG,UACHC,GAAI,UAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO6mB,M,qCC3DX;;;;;;AAKA,SAASC,EAAYC,GACnB,IAAI3I,EAAU4I,OAAOD,EAAI3I,QAAQxgB,MAAM,KAAK,IAE5C,GAAIwgB,GAAW,EACb2I,EAAIE,MAAM,CAAEnE,aAAcoE,QACrB,CAGL,IAAIC,EAAQJ,EAAIrhB,UAAUyhB,MAC1BJ,EAAIrhB,UAAUyhB,MAAQ,SAAUtU,QACb,IAAZA,IAAqBA,EAAU,IAEpCA,EAAQ8L,KAAO9L,EAAQ8L,KACnB,CAACuI,GAAU7O,OAAOxF,EAAQ8L,MAC1BuI,EACJC,EAAMrmB,KAAKvD,KAAMsV,IAQrB,SAASqU,IACP,IAAIrU,EAAUtV,KAAKklB,SAEf5P,EAAQuU,MACV7pB,KAAK8pB,OAAkC,oBAAlBxU,EAAQuU,MACzBvU,EAAQuU,QACRvU,EAAQuU,MACHvU,EAAQsP,QAAUtP,EAAQsP,OAAOkF,SAC1C9pB,KAAK8pB,OAASxU,EAAQsP,OAAOkF,SAKnC,IAAI/Y,EAA2B,qBAAX9L,OAChBA,OACkB,qBAAXnF,EACLA,EACA,GACFiqB,EAAchZ,EAAOiZ,6BAEzB,SAASC,EAAeJ,GACjBE,IAELF,EAAMK,aAAeH,EAErBA,EAAYI,KAAK,YAAaN,GAE9BE,EAAYK,GAAG,wBAAwB,SAAUC,GAC/CR,EAAMS,aAAaD,MAGrBR,EAAMU,WAAU,SAAUC,EAAUzJ,GAClCgJ,EAAYI,KAAK,gBAAiBK,EAAUzJ,KAC3C,CAAE0J,SAAS,IAEdZ,EAAMa,iBAAgB,SAAUC,EAAQ5J,GACtCgJ,EAAYI,KAAK,cAAeQ,EAAQ5J,KACvC,CAAE0J,SAAS,KAWhB,SAASG,EAAMC,EAAM/lB,GACnB,OAAO+lB,EAAKC,OAAOhmB,GAAG,GAYxB,SAASimB,EAAUC,EAAKC,GAItB,QAHe,IAAVA,IAAmBA,EAAQ,IAGpB,OAARD,GAA+B,kBAARA,EACzB,OAAOA,EAIT,IAAIE,EAAMN,EAAKK,GAAO,SAAUvnB,GAAK,OAAOA,EAAEynB,WAAaH,KAC3D,GAAIE,EACF,OAAOA,EAAIE,KAGb,IAAIA,EAAOvY,MAAM+S,QAAQoF,GAAO,GAAK,GAYrC,OATAC,EAAMhiB,KAAK,CACTkiB,SAAUH,EACVI,KAAMA,IAGRlmB,OAAOmmB,KAAKL,GAAKpiB,SAAQ,SAAUpE,GACjC4mB,EAAK5mB,GAAOumB,EAASC,EAAIxmB,GAAMymB,MAG1BG,EAMT,SAASE,EAAcN,EAAK7nB,GAC1B+B,OAAOmmB,KAAKL,GAAKpiB,SAAQ,SAAUpE,GAAO,OAAOrB,EAAG6nB,EAAIxmB,GAAMA,MAGhE,SAAS4X,EAAU4O,GACjB,OAAe,OAARA,GAA+B,kBAARA,EAGhC,SAASO,EAAWC,GAClB,OAAOA,GAA2B,oBAAbA,EAAItiB,KAO3B,SAASuiB,EAAStoB,EAAIuoB,GACpB,OAAO,WACL,OAAOvoB,EAAGuoB,IAKd,IAAIC,EAAS,SAAiBC,EAAWC,GACvC7rB,KAAK6rB,QAAUA,EAEf7rB,KAAK8rB,UAAY5mB,OAAO6mB,OAAO,MAE/B/rB,KAAKgsB,WAAaJ,EAClB,IAAIK,EAAWL,EAAU7K,MAGzB/gB,KAAK+gB,OAA6B,oBAAbkL,EAA0BA,IAAaA,IAAa,IAGvEC,EAAqB,CAAEC,WAAY,CAAElO,cAAc,IAEvDiO,EAAmBC,WAAWnhB,IAAM,WAClC,QAAShL,KAAKgsB,WAAWG,YAG3BR,EAAOxjB,UAAUikB,SAAW,SAAmB5nB,EAAK7E,GAClDK,KAAK8rB,UAAUtnB,GAAO7E,GAGxBgsB,EAAOxjB,UAAU2gB,YAAc,SAAsBtkB,UAC5CxE,KAAK8rB,UAAUtnB,IAGxBmnB,EAAOxjB,UAAUkkB,SAAW,SAAmB7nB,GAC7C,OAAOxE,KAAK8rB,UAAUtnB,IAGxBmnB,EAAOxjB,UAAUmkB,SAAW,SAAmB9nB,GAC7C,OAAOA,KAAOxE,KAAK8rB,WAGrBH,EAAOxjB,UAAUokB,OAAS,SAAiBX,GACzC5rB,KAAKgsB,WAAWG,WAAaP,EAAUO,WACnCP,EAAUY,UACZxsB,KAAKgsB,WAAWQ,QAAUZ,EAAUY,SAElCZ,EAAUa,YACZzsB,KAAKgsB,WAAWS,UAAYb,EAAUa,WAEpCb,EAAUc,UACZ1sB,KAAKgsB,WAAWU,QAAUd,EAAUc,UAIxCf,EAAOxjB,UAAUwkB,aAAe,SAAuBxpB,GACrDmoB,EAAatrB,KAAK8rB,UAAW3oB,IAG/BwoB,EAAOxjB,UAAUykB,cAAgB,SAAwBzpB,GACnDnD,KAAKgsB,WAAWU,SAClBpB,EAAatrB,KAAKgsB,WAAWU,QAASvpB,IAI1CwoB,EAAOxjB,UAAU0kB,cAAgB,SAAwB1pB,GACnDnD,KAAKgsB,WAAWQ,SAClBlB,EAAatrB,KAAKgsB,WAAWQ,QAASrpB,IAI1CwoB,EAAOxjB,UAAU2kB,gBAAkB,SAA0B3pB,GACvDnD,KAAKgsB,WAAWS,WAClBnB,EAAatrB,KAAKgsB,WAAWS,UAAWtpB,IAI5C+B,OAAO6nB,iBAAkBpB,EAAOxjB,UAAW+jB,GAE3C,IAAIc,EAAmB,SAA2BC,GAEhDjtB,KAAKktB,SAAS,GAAID,GAAe,IA0EnC,SAASV,EAAQY,EAAMC,EAAcC,GASnC,GAHAD,EAAab,OAAOc,GAGhBA,EAAUC,QACZ,IAAK,IAAI9oB,KAAO6oB,EAAUC,QAAS,CACjC,IAAKF,EAAaf,SAAS7nB,GAOzB,cAEF+nB,EACEY,EAAKrS,OAAOtW,GACZ4oB,EAAaf,SAAS7nB,GACtB6oB,EAAUC,QAAQ9oB,KA9F1BwoB,EAAiB7kB,UAAU6C,IAAM,SAAcmiB,GAC7C,OAAOA,EAAKjc,QAAO,SAAUvR,EAAQ6E,GACnC,OAAO7E,EAAO0sB,SAAS7nB,KACtBxE,KAAK6X,OAGVmV,EAAiB7kB,UAAUolB,aAAe,SAAuBJ,GAC/D,IAAIxtB,EAASK,KAAK6X,KAClB,OAAOsV,EAAKjc,QAAO,SAAUsc,EAAWhpB,GAEtC,OADA7E,EAASA,EAAO0sB,SAAS7nB,GAClBgpB,GAAa7tB,EAAOwsB,WAAa3nB,EAAM,IAAM,MACnD,KAGLwoB,EAAiB7kB,UAAUokB,OAAS,SAAmBU,GACrDV,EAAO,GAAIvsB,KAAK6X,KAAMoV,IAGxBD,EAAiB7kB,UAAU+kB,SAAW,SAAmBC,EAAMvB,EAAWC,GACtE,IAAI4B,EAASztB,UACI,IAAZ6rB,IAAqBA,GAAU,GAMtC,IAAIwB,EAAY,IAAI1B,EAAOC,EAAWC,GACtC,GAAoB,IAAhBsB,EAAK9pB,OACPrD,KAAK6X,KAAOwV,MACP,CACL,IAAIzI,EAAS5kB,KAAKgL,IAAImiB,EAAK5nB,MAAM,GAAI,IACrCqf,EAAOwH,SAASe,EAAKA,EAAK9pB,OAAS,GAAIgqB,GAIrCzB,EAAU0B,SACZhC,EAAaM,EAAU0B,SAAS,SAAUI,EAAgBlpB,GACxDipB,EAAOP,SAASC,EAAKrS,OAAOtW,GAAMkpB,EAAgB7B,OAKxDmB,EAAiB7kB,UAAUwlB,WAAa,SAAqBR,GAC3D,IAAIvI,EAAS5kB,KAAKgL,IAAImiB,EAAK5nB,MAAM,GAAI,IACjCf,EAAM2oB,EAAKA,EAAK9pB,OAAS,GACzBuqB,EAAQhJ,EAAOyH,SAAS7nB,GAEvBopB,GAUAA,EAAM/B,SAIXjH,EAAOkE,YAAYtkB,IAGrBwoB,EAAiB7kB,UAAU0lB,aAAe,SAAuBV,GAC/D,IAAIvI,EAAS5kB,KAAKgL,IAAImiB,EAAK5nB,MAAM,GAAI,IACjCf,EAAM2oB,EAAKA,EAAK9pB,OAAS,GAE7B,OAAOuhB,EAAO0H,SAAS9nB,IAgCzB,IAyCIglB,EAEJ,IAAIsE,EAAQ,SAAgBxY,GAC1B,IAAImY,EAASztB,UACI,IAAZsV,IAAqBA,EAAU,KAK/BkU,GAAyB,qBAAXvkB,QAA0BA,OAAOukB,KAClD5I,EAAQ3b,OAAOukB,KASjB,IAAIuE,EAAUzY,EAAQyY,aAA0B,IAAZA,IAAqBA,EAAU,IACnE,IAAIC,EAAS1Y,EAAQ0Y,YAAwB,IAAXA,IAAoBA,GAAS,GAG/DhuB,KAAKiuB,aAAc,EACnBjuB,KAAKkuB,SAAWhpB,OAAO6mB,OAAO,MAC9B/rB,KAAKmuB,mBAAqB,GAC1BnuB,KAAKouB,WAAalpB,OAAO6mB,OAAO,MAChC/rB,KAAKquB,gBAAkBnpB,OAAO6mB,OAAO,MACrC/rB,KAAKsuB,SAAW,IAAItB,EAAiB1X,GACrCtV,KAAKuuB,qBAAuBrpB,OAAO6mB,OAAO,MAC1C/rB,KAAKwuB,aAAe,GACpBxuB,KAAKyuB,WAAa,IAAIjF,EACtBxpB,KAAK0uB,uBAAyBxpB,OAAO6mB,OAAO,MAG5C,IAAIlC,EAAQ7pB,KACR2uB,EAAM3uB,KACN4uB,EAAWD,EAAIC,SACfC,EAASF,EAAIE,OACjB7uB,KAAK4uB,SAAW,SAAwBrQ,EAAMuQ,GAC5C,OAAOF,EAASrrB,KAAKsmB,EAAOtL,EAAMuQ,IAEpC9uB,KAAK6uB,OAAS,SAAsBtQ,EAAMuQ,EAASxZ,GACjD,OAAOuZ,EAAOtrB,KAAKsmB,EAAOtL,EAAMuQ,EAASxZ,IAI3CtV,KAAKguB,OAASA,EAEd,IAAIjN,EAAQ/gB,KAAKsuB,SAASzW,KAAKkJ,MAK/BgO,EAAc/uB,KAAM+gB,EAAO,GAAI/gB,KAAKsuB,SAASzW,MAI7CmX,EAAahvB,KAAM+gB,GAGnBgN,EAAQnlB,SAAQ,SAAUqmB,GAAU,OAAOA,EAAOxB,MAElD,IAAIyB,OAAmC5rB,IAArBgS,EAAQ6Z,SAAyB7Z,EAAQ6Z,SAAW3F,EAAIphB,OAAO+mB,SAC7ED,GACFjF,EAAcjqB,OAIdovB,EAAuB,CAAErO,MAAO,CAAE9C,cAAc,IAmMpD,SAASoR,EAAkBlsB,EAAImsB,EAAMha,GAMnC,OALIga,EAAKhS,QAAQna,GAAM,IACrBmS,GAAWA,EAAQmV,QACf6E,EAAKxmB,QAAQ3F,GACbmsB,EAAKrmB,KAAK9F,IAET,WACL,IAAIgN,EAAImf,EAAKhS,QAAQna,GACjBgN,GAAK,GACPmf,EAAKC,OAAOpf,EAAG,IAKrB,SAASqf,EAAY3F,EAAO4F,GAC1B5F,EAAMqE,SAAWhpB,OAAO6mB,OAAO,MAC/BlC,EAAMuE,WAAalpB,OAAO6mB,OAAO,MACjClC,EAAMwE,gBAAkBnpB,OAAO6mB,OAAO,MACtClC,EAAM0E,qBAAuBrpB,OAAO6mB,OAAO,MAC3C,IAAIhL,EAAQ8I,EAAM9I,MAElBgO,EAAclF,EAAO9I,EAAO,GAAI8I,EAAMyE,SAASzW,MAAM,GAErDmX,EAAanF,EAAO9I,EAAO0O,GAG7B,SAAST,EAAcnF,EAAO9I,EAAO0O,GACnC,IAAIC,EAAQ7F,EAAM8F,IAGlB9F,EAAM6C,QAAU,GAEhB7C,EAAM6E,uBAAyBxpB,OAAO6mB,OAAO,MAC7C,IAAI6D,EAAiB/F,EAAMwE,gBACvBhP,EAAW,GACfiM,EAAasE,GAAgB,SAAUzsB,EAAIqB,GAIzC6a,EAAS7a,GAAOinB,EAAQtoB,EAAI0mB,GAC5B3kB,OAAO6F,eAAe8e,EAAM6C,QAASloB,EAAK,CACxCwG,IAAK,WAAc,OAAO6e,EAAM8F,IAAInrB,IACpCqrB,YAAY,OAOhB,IAAIC,EAAStG,EAAIphB,OAAO0nB,OACxBtG,EAAIphB,OAAO0nB,QAAS,EACpBjG,EAAM8F,IAAM,IAAInG,EAAI,CAClBhgB,KAAM,CACJumB,QAAShP,GAEX1B,SAAUA,IAEZmK,EAAIphB,OAAO0nB,OAASA,EAGhBjG,EAAMmE,QACRgC,EAAiBnG,GAGf6F,IACED,GAGF5F,EAAMoG,aAAY,WAChBP,EAAMQ,MAAMH,QAAU,QAG1BvG,EAAIxH,UAAS,WAAc,OAAO0N,EAAMS,eAI5C,SAASpB,EAAelF,EAAOuG,EAAWjD,EAAMxtB,EAAQ8vB,GACtD,IAAIY,GAAUlD,EAAK9pB,OACfmqB,EAAY3D,EAAMyE,SAASf,aAAaJ,GAW5C,GARIxtB,EAAOwsB,aACLtC,EAAM0E,qBAAqBf,GAG/B3D,EAAM0E,qBAAqBf,GAAa7tB,IAIrC0wB,IAAWZ,EAAK,CACnB,IAAIa,EAAcC,EAAeH,EAAWjD,EAAK5nB,MAAM,GAAI,IACvDirB,EAAarD,EAAKA,EAAK9pB,OAAS,GACpCwmB,EAAMoG,aAAY,WAQhBzG,EAAI5H,IAAI0O,EAAaE,EAAY7wB,EAAOohB,UAI5C,IAAI0P,EAAQ9wB,EAAO8kB,QAAUiM,EAAiB7G,EAAO2D,EAAWL,GAEhExtB,EAAOmtB,iBAAgB,SAAUtC,EAAUhmB,GACzC,IAAImsB,EAAiBnD,EAAYhpB,EACjCosB,EAAiB/G,EAAO8G,EAAgBnG,EAAUiG,MAGpD9wB,EAAOktB,eAAc,SAAUlC,EAAQnmB,GACrC,IAAI+Z,EAAOoM,EAAO9S,KAAOrT,EAAMgpB,EAAYhpB,EACvCqsB,EAAUlG,EAAOkG,SAAWlG,EAChCmG,EAAejH,EAAOtL,EAAMsS,EAASJ,MAGvC9wB,EAAOitB,eAAc,SAAUmE,EAAQvsB,GACrC,IAAImsB,EAAiBnD,EAAYhpB,EACjCwsB,EAAenH,EAAO8G,EAAgBI,EAAQN,MAGhD9wB,EAAOgtB,cAAa,SAAUiB,EAAOppB,GACnCuqB,EAAclF,EAAOuG,EAAWjD,EAAKrS,OAAOtW,GAAMopB,EAAO6B,MAQ7D,SAASiB,EAAkB7G,EAAO2D,EAAWL,GAC3C,IAAI8D,EAA4B,KAAdzD,EAEdiD,EAAQ,CACV7B,SAAUqC,EAAcpH,EAAM+E,SAAW,SAAUsC,EAAOC,EAAUC,GAClE,IAAIvd,EAAOwd,EAAiBH,EAAOC,EAAUC,GACzCtC,EAAUjb,EAAKib,QACfxZ,EAAUzB,EAAKyB,QACfiJ,EAAO1K,EAAK0K,KAUhB,OARKjJ,GAAYA,EAAQuC,OACvB0G,EAAOiP,EAAYjP,GAOdsL,EAAM+E,SAASrQ,EAAMuQ,IAG9BD,OAAQoC,EAAcpH,EAAMgF,OAAS,SAAUqC,EAAOC,EAAUC,GAC9D,IAAIvd,EAAOwd,EAAiBH,EAAOC,EAAUC,GACzCtC,EAAUjb,EAAKib,QACfxZ,EAAUzB,EAAKyB,QACfiJ,EAAO1K,EAAK0K,KAEXjJ,GAAYA,EAAQuC,OACvB0G,EAAOiP,EAAYjP,GAOrBsL,EAAMgF,OAAOtQ,EAAMuQ,EAASxZ,KAiBhC,OAXApQ,OAAO6nB,iBAAiB0D,EAAO,CAC7B/D,QAAS,CACP1hB,IAAKimB,EACD,WAAc,OAAOpH,EAAM6C,SAC3B,WAAc,OAAO4E,EAAiBzH,EAAO2D,KAEnDzM,MAAO,CACL/V,IAAK,WAAc,OAAOulB,EAAe1G,EAAM9I,MAAOoM,OAInDsD,EAGT,SAASa,EAAkBzH,EAAO2D,GAChC,IAAK3D,EAAM6E,uBAAuBlB,GAAY,CAC5C,IAAI+D,EAAe,GACfC,EAAWhE,EAAUnqB,OACzB6B,OAAOmmB,KAAKxB,EAAM6C,SAAS9jB,SAAQ,SAAU2V,GAE3C,GAAIA,EAAKhZ,MAAM,EAAGisB,KAAchE,EAAhC,CAGA,IAAIiE,EAAYlT,EAAKhZ,MAAMisB,GAK3BtsB,OAAO6F,eAAewmB,EAAcE,EAAW,CAC7CzmB,IAAK,WAAc,OAAO6e,EAAM6C,QAAQnO,IACxCsR,YAAY,QAGhBhG,EAAM6E,uBAAuBlB,GAAa+D,EAG5C,OAAO1H,EAAM6E,uBAAuBlB,GAGtC,SAASoD,EAAkB/G,EAAOtL,EAAMsS,EAASJ,GAC/C,IAAIiB,EAAQ7H,EAAMuE,WAAW7P,KAAUsL,EAAMuE,WAAW7P,GAAQ,IAChEmT,EAAMzoB,MAAK,SAAiC6lB,GAC1C+B,EAAQttB,KAAKsmB,EAAO4G,EAAM1P,MAAO+N,MAIrC,SAASgC,EAAgBjH,EAAOtL,EAAMsS,EAASJ,GAC7C,IAAIiB,EAAQ7H,EAAMqE,SAAS3P,KAAUsL,EAAMqE,SAAS3P,GAAQ,IAC5DmT,EAAMzoB,MAAK,SAA+B6lB,GACxC,IAAIvf,EAAMshB,EAAQttB,KAAKsmB,EAAO,CAC5B+E,SAAU6B,EAAM7B,SAChBC,OAAQ4B,EAAM5B,OACdnC,QAAS+D,EAAM/D,QACf3L,MAAO0P,EAAM1P,MACb4Q,YAAa9H,EAAM6C,QACnB0D,UAAWvG,EAAM9I,OAChB+N,GAIH,OAHKvD,EAAUhc,KACbA,EAAM7G,QAAQC,QAAQ4G,IAEpBsa,EAAMK,aACD3a,EAAIqiB,OAAM,SAAUC,GAEzB,MADAhI,EAAMK,aAAaC,KAAK,aAAc0H,GAChCA,KAGDtiB,KAKb,SAASyhB,EAAgBnH,EAAOtL,EAAMuT,EAAWrB,GAC3C5G,EAAMwE,gBAAgB9P,KAM1BsL,EAAMwE,gBAAgB9P,GAAQ,SAAwBsL,GACpD,OAAOiI,EACLrB,EAAM1P,MACN0P,EAAM/D,QACN7C,EAAM9I,MACN8I,EAAM6C,WAKZ,SAASsD,EAAkBnG,GACzBA,EAAM8F,IAAIoC,QAAO,WAAc,OAAO/xB,KAAKkwB,MAAMH,WAAW,WACtD,IAGH,CAAEiC,MAAM,EAAMC,MAAM,IAGzB,SAAS1B,EAAgBxP,EAAOoM,GAC9B,OAAOA,EAAKjc,QAAO,SAAU6P,EAAOvc,GAAO,OAAOuc,EAAMvc,KAASuc,GAGnE,SAASsQ,EAAkB9S,EAAMuQ,EAASxZ,GAWxC,OAVI8G,EAASmC,IAASA,EAAKA,OACzBjJ,EAAUwZ,EACVA,EAAUvQ,EACVA,EAAOA,EAAKA,MAOP,CAAEA,KAAMA,EAAMuQ,QAASA,EAASxZ,QAASA,GAGlD,SAASsL,EAASsR,GACZ1I,GAAO0I,IAAS1I,IAQpBA,EAAM0I,EACN3I,EAAWC,IAzeb4F,EAAqBrO,MAAM/V,IAAM,WAC/B,OAAOhL,KAAK2vB,IAAIO,MAAMH,SAGxBX,EAAqBrO,MAAMa,IAAM,SAAUuQ,GACrC,GAKNrE,EAAM3lB,UAAU0mB,OAAS,SAAiBqC,EAAOC,EAAUC,GACvD,IAAI3D,EAASztB,KAGX2uB,EAAM0C,EAAiBH,EAAOC,EAAUC,GACtC7S,EAAOoQ,EAAIpQ,KACXuQ,EAAUH,EAAIG,QAGhBtE,GAFYmE,EAAIrZ,QAEL,CAAEiJ,KAAMA,EAAMuQ,QAASA,IAClC4C,EAAQ1xB,KAAKouB,WAAW7P,GACvBmT,IAML1xB,KAAKiwB,aAAY,WACfyB,EAAM9oB,SAAQ,SAAyBioB,GACrCA,EAAQ/B,SAIZ9uB,KAAKwuB,aACFjpB,QACAqD,SAAQ,SAAUwpB,GAAO,OAAOA,EAAI5H,EAAUiD,EAAO1M,YAa1D+M,EAAM3lB,UAAUymB,SAAW,SAAmBsC,EAAOC,GACjD,IAAI1D,EAASztB,KAGX2uB,EAAM0C,EAAiBH,EAAOC,GAC5B5S,EAAOoQ,EAAIpQ,KACXuQ,EAAUH,EAAIG,QAEhBnE,EAAS,CAAEpM,KAAMA,EAAMuQ,QAASA,GAChC4C,EAAQ1xB,KAAKkuB,SAAS3P,GAC1B,GAAKmT,EAAL,CAOA,IACE1xB,KAAKmuB,mBACF5oB,QACAulB,QAAO,SAAUsH,GAAO,OAAOA,EAAIC,UACnCzpB,SAAQ,SAAUwpB,GAAO,OAAOA,EAAIC,OAAO1H,EAAQ8C,EAAO1M,UAC7D,MAAO9Q,GACH,EAMN,IAAIvL,EAASgtB,EAAMruB,OAAS,EACxBqF,QAAQ4pB,IAAIZ,EAAMa,KAAI,SAAU1B,GAAW,OAAOA,EAAQ/B,OAC1D4C,EAAM,GAAG5C,GAEb,OAAO,IAAIpmB,SAAQ,SAAUC,EAAS6pB,GACpC9tB,EAAOwE,MAAK,SAAUqG,GACpB,IACEke,EAAOU,mBACJrD,QAAO,SAAUsH,GAAO,OAAOA,EAAIK,SACnC7pB,SAAQ,SAAUwpB,GAAO,OAAOA,EAAIK,MAAM9H,EAAQ8C,EAAO1M,UAC5D,MAAO9Q,GACH,EAKNtH,EAAQ4G,MACP,SAAUjK,GACX,IACEmoB,EAAOU,mBACJrD,QAAO,SAAUsH,GAAO,OAAOA,EAAI9sB,SACnCsD,SAAQ,SAAUwpB,GAAO,OAAOA,EAAI9sB,MAAMqlB,EAAQ8C,EAAO1M,MAAOzb,MACnE,MAAO2K,GACH,EAKNuiB,EAAOltB,WAKbwoB,EAAM3lB,UAAUoiB,UAAY,SAAoBpnB,EAAImS,GAClD,OAAO+Z,EAAiBlsB,EAAInD,KAAKwuB,aAAclZ,IAGjDwY,EAAM3lB,UAAUuiB,gBAAkB,SAA0BvnB,EAAImS,GAC9D,IAAIga,EAAqB,oBAAPnsB,EAAoB,CAAEkvB,OAAQlvB,GAAOA,EACvD,OAAOksB,EAAiBC,EAAMtvB,KAAKmuB,mBAAoB7Y,IAGzDwY,EAAM3lB,UAAUuqB,MAAQ,SAAgB3B,EAAQ4B,EAAIrd,GAChD,IAAImY,EAASztB,KAKf,OAAOA,KAAKyuB,WAAWsD,QAAO,WAAc,OAAOhB,EAAOtD,EAAO1M,MAAO0M,EAAOf,WAAaiG,EAAIrd,IAGlGwY,EAAM3lB,UAAUmiB,aAAe,SAAuBvJ,GAClD,IAAI0M,EAASztB,KAEfA,KAAKiwB,aAAY,WACfxC,EAAOkC,IAAIO,MAAMH,QAAUhP,MAI/B+M,EAAM3lB,UAAUyqB,eAAiB,SAAyBzF,EAAMvB,EAAWtW,QACtD,IAAZA,IAAqBA,EAAU,IAElB,kBAAT6X,IAAqBA,EAAO,CAACA,IAOxCntB,KAAKsuB,SAASpB,SAASC,EAAMvB,GAC7BmD,EAAc/uB,KAAMA,KAAK+gB,MAAOoM,EAAMntB,KAAKsuB,SAAStjB,IAAImiB,GAAO7X,EAAQud,eAEvE7D,EAAahvB,KAAMA,KAAK+gB,QAG1B+M,EAAM3lB,UAAU2qB,iBAAmB,SAA2B3F,GAC1D,IAAIM,EAASztB,KAEK,kBAATmtB,IAAqBA,EAAO,CAACA,IAMxCntB,KAAKsuB,SAASX,WAAWR,GACzBntB,KAAKiwB,aAAY,WACf,IAAIK,EAAcC,EAAe9C,EAAO1M,MAAOoM,EAAK5nB,MAAM,GAAI,IAC9DikB,EAAIuJ,OAAOzC,EAAanD,EAAKA,EAAK9pB,OAAS,OAE7CmsB,EAAWxvB,OAGb8tB,EAAM3lB,UAAU6qB,UAAY,SAAoB7F,GAO9C,MANoB,kBAATA,IAAqBA,EAAO,CAACA,IAMjCntB,KAAKsuB,SAAST,aAAaV,IAGpCW,EAAM3lB,UAAU8qB,UAAY,SAAoBC,GAC9ClzB,KAAKsuB,SAAS/B,OAAO2G,GACrB1D,EAAWxvB,MAAM,IAGnB8tB,EAAM3lB,UAAU8nB,YAAc,SAAsB9sB,GAClD,IAAIgwB,EAAanzB,KAAKiuB,YACtBjuB,KAAKiuB,aAAc,EACnB9qB,IACAnD,KAAKiuB,YAAckF,GAGrBjuB,OAAO6nB,iBAAkBe,EAAM3lB,UAAWinB,GAmT1C,IAAIgE,EAAWC,GAAmB,SAAU7F,EAAW8F,GACrD,IAAI/jB,EAAM,GA0BV,OAtBAgkB,EAAaD,GAAQ1qB,SAAQ,SAAU+lB,GACrC,IAAInqB,EAAMmqB,EAAInqB,IACVgnB,EAAMmD,EAAInD,IAEdjc,EAAI/K,GAAO,WACT,IAAIuc,EAAQ/gB,KAAK8pB,OAAO/I,MACpB2L,EAAU1sB,KAAK8pB,OAAO4C,QAC1B,GAAIc,EAAW,CACb,IAAI7tB,EAAS6zB,EAAqBxzB,KAAK8pB,OAAQ,WAAY0D,GAC3D,IAAK7tB,EACH,OAEFohB,EAAQphB,EAAO8kB,QAAQ1D,MACvB2L,EAAU/sB,EAAO8kB,QAAQiI,QAE3B,MAAsB,oBAARlB,EACVA,EAAIjoB,KAAKvD,KAAM+gB,EAAO2L,GACtB3L,EAAMyK,IAGZjc,EAAI/K,GAAKivB,MAAO,KAEXlkB,KASLmkB,EAAeL,GAAmB,SAAU7F,EAAWf,GACzD,IAAIld,EAAM,GA0BV,OAtBAgkB,EAAa9G,GAAW7jB,SAAQ,SAAU+lB,GACxC,IAAInqB,EAAMmqB,EAAInqB,IACVgnB,EAAMmD,EAAInD,IAEdjc,EAAI/K,GAAO,WACT,IAAIqP,EAAO,GAAI4R,EAAM7hB,UAAUP,OAC/B,MAAQoiB,IAAQ5R,EAAM4R,GAAQ7hB,UAAW6hB,GAGzC,IAAIoJ,EAAS7uB,KAAK8pB,OAAO+E,OACzB,GAAIrB,EAAW,CACb,IAAI7tB,EAAS6zB,EAAqBxzB,KAAK8pB,OAAQ,eAAgB0D,GAC/D,IAAK7tB,EACH,OAEFkvB,EAASlvB,EAAO8kB,QAAQoK,OAE1B,MAAsB,oBAARrD,EACVA,EAAI7nB,MAAM3D,KAAM,CAAC6uB,GAAQ/T,OAAOjH,IAChCgb,EAAOlrB,MAAM3D,KAAK8pB,OAAQ,CAAC0B,GAAK1Q,OAAOjH,QAGxCtE,KASLokB,EAAaN,GAAmB,SAAU7F,EAAWd,GACvD,IAAInd,EAAM,GAuBV,OAnBAgkB,EAAa7G,GAAS9jB,SAAQ,SAAU+lB,GACtC,IAAInqB,EAAMmqB,EAAInqB,IACVgnB,EAAMmD,EAAInD,IAGdA,EAAMgC,EAAYhC,EAClBjc,EAAI/K,GAAO,WACT,IAAIgpB,GAAcgG,EAAqBxzB,KAAK8pB,OAAQ,aAAc0D,GAOlE,OAAOxtB,KAAK8pB,OAAO4C,QAAQlB,IAG7Bjc,EAAI/K,GAAKivB,MAAO,KAEXlkB,KASLqkB,EAAaP,GAAmB,SAAU7F,EAAWhB,GACvD,IAAIjd,EAAM,GA0BV,OAtBAgkB,EAAa/G,GAAS5jB,SAAQ,SAAU+lB,GACtC,IAAInqB,EAAMmqB,EAAInqB,IACVgnB,EAAMmD,EAAInD,IAEdjc,EAAI/K,GAAO,WACT,IAAIqP,EAAO,GAAI4R,EAAM7hB,UAAUP,OAC/B,MAAQoiB,IAAQ5R,EAAM4R,GAAQ7hB,UAAW6hB,GAGzC,IAAImJ,EAAW5uB,KAAK8pB,OAAO8E,SAC3B,GAAIpB,EAAW,CACb,IAAI7tB,EAAS6zB,EAAqBxzB,KAAK8pB,OAAQ,aAAc0D,GAC7D,IAAK7tB,EACH,OAEFivB,EAAWjvB,EAAO8kB,QAAQmK,SAE5B,MAAsB,oBAARpD,EACVA,EAAI7nB,MAAM3D,KAAM,CAAC4uB,GAAU9T,OAAOjH,IAClC+a,EAASjrB,MAAM3D,KAAK8pB,OAAQ,CAAC0B,GAAK1Q,OAAOjH,QAG1CtE,KAQLskB,EAA0B,SAAUrG,GAAa,MAAO,CAC1D4F,SAAUA,EAASre,KAAK,KAAMyY,GAC9BmG,WAAYA,EAAW5e,KAAK,KAAMyY,GAClCkG,aAAcA,EAAa3e,KAAK,KAAMyY,GACtCoG,WAAYA,EAAW7e,KAAK,KAAMyY,KAUpC,SAAS+F,EAAchB,GACrB,OAAKuB,EAAWvB,GAGT1f,MAAM+S,QAAQ2M,GACjBA,EAAIA,KAAI,SAAU/tB,GAAO,MAAO,CAAGA,IAAKA,EAAKgnB,IAAKhnB,MAClDU,OAAOmmB,KAAKkH,GAAKA,KAAI,SAAU/tB,GAAO,MAAO,CAAGA,IAAKA,EAAKgnB,IAAK+G,EAAI/tB,OAJ9D,GAYX,SAASsvB,EAAYvB,GACnB,OAAO1f,MAAM+S,QAAQ2M,IAAQnW,EAASmW,GAQxC,SAASc,EAAoBlwB,GAC3B,OAAO,SAAUqqB,EAAW+E,GAO1B,MANyB,kBAAd/E,GACT+E,EAAM/E,EACNA,EAAY,IACwC,MAA3CA,EAAUuG,OAAOvG,EAAUnqB,OAAS,KAC7CmqB,GAAa,KAERrqB,EAAGqqB,EAAW+E,IAWzB,SAASiB,EAAsB3J,EAAOmK,EAAQxG,GAC5C,IAAI7tB,EAASkqB,EAAM0E,qBAAqBf,GAIxC,OAAO7tB,EAKT,SAASs0B,EAActF,QACR,IAARA,IAAiBA,EAAM,IAC5B,IAAIuF,EAAYvF,EAAIuF,eAA8B,IAAdA,IAAuBA,GAAY,GACvE,IAAIpJ,EAAS6D,EAAI7D,YAAwB,IAAXA,IAAoBA,EAAS,SAAUN,EAAU2J,EAAaC,GAAc,OAAO,IACjH,IAAIC,EAAc1F,EAAI0F,iBAAkC,IAAhBA,IAAyBA,EAAc,SAAUtT,GAAS,OAAOA,IACzG,IAAIuT,EAAsB3F,EAAI2F,yBAAkD,IAAxBA,IAAiCA,EAAsB,SAAUC,GAAO,OAAOA,IACvI,IAAIC,EAAe7F,EAAI6F,kBAAoC,IAAjBA,IAA0BA,EAAe,SAAU7J,EAAQ5J,GAAS,OAAO,IACrH,IAAI0T,EAAoB9F,EAAI8F,uBAA8C,IAAtBA,IAA+BA,EAAoB,SAAUC,GAAO,OAAOA,IAC/H,IAAIC,EAAehG,EAAIgG,kBAAoC,IAAjBA,IAA0BA,GAAe,GACnF,IAAIC,EAAajG,EAAIiG,gBAAgC,IAAfA,IAAwBA,GAAa,GAC3E,IAAIC,EAASlG,EAAIkG,OAEjB,YAFyC,IAAXA,IAAoBA,EAASC,SAEpD,SAAUjL,GACf,IAAIkL,EAAYhK,EAASlB,EAAM9I,OAET,qBAAX8T,IAIPF,GACF9K,EAAMU,WAAU,SAAUC,EAAUzJ,GAClC,IAAIiU,EAAYjK,EAAShK,GAEzB,GAAI+J,EAAON,EAAUuK,EAAWC,GAAY,CAC1C,IAAIC,EAAgBC,IAChBC,EAAoBb,EAAoB9J,GACxCtB,EAAU,YAAesB,EAAa,KAAIyK,EAE9CG,EAAaP,EAAQ3L,EAASgL,GAC9BW,EAAOQ,IAAI,gBAAiB,oCAAqChB,EAAYU,IAC7EF,EAAOQ,IAAI,cAAe,oCAAqCF,GAC/DN,EAAOQ,IAAI,gBAAiB,oCAAqChB,EAAYW,IAC7EM,EAAWT,GAGbE,EAAYC,KAIZJ,GACF/K,EAAMa,iBAAgB,SAAUC,EAAQ5J,GACtC,GAAIyT,EAAa7J,EAAQ5J,GAAQ,CAC/B,IAAIkU,EAAgBC,IAChBK,EAAkBd,EAAkB9J,GACpCzB,EAAU,UAAayB,EAAW,KAAIsK,EAE1CG,EAAaP,EAAQ3L,EAASgL,GAC9BW,EAAOQ,IAAI,YAAa,oCAAqCE,GAC7DD,EAAWT,SAOrB,SAASO,EAAcP,EAAQ3L,EAASgL,GACtC,IAAIkB,EAAelB,EACfW,EAAOW,eACPX,EAAOY,MAGX,IACEL,EAAa7xB,KAAKsxB,EAAQ3L,GAC1B,MAAOjZ,GACP4kB,EAAOQ,IAAInM,IAIf,SAASoM,EAAYT,GACnB,IACEA,EAAOa,WACP,MAAOzlB,GACP4kB,EAAOQ,IAAI,kBAIf,SAASH,IACP,IAAIS,EAAO,IAAIC,KACf,MAAQ,MAASC,EAAIF,EAAKG,WAAY,GAAM,IAAOD,EAAIF,EAAKI,aAAc,GAAM,IAAOF,EAAIF,EAAKK,aAAc,GAAM,IAAOH,EAAIF,EAAKM,kBAAmB,GAGzJ,SAASjpB,EAAQE,EAAKgpB,GACpB,OAAO,IAAKrjB,MAAMqjB,EAAQ,GAAI7e,KAAKnK,GAGrC,SAAS2oB,EAAKvhB,EAAK6hB,GACjB,OAAOnpB,EAAO,IAAKmpB,EAAY7hB,EAAIvP,WAAW1B,QAAUiR,EAG1D,IAAIlF,EAAQ,CACV0e,MAAOA,EACPlN,QAASA,EACTC,QAAS,QACTuS,SAAUA,EACVM,aAAcA,EACdC,WAAYA,EACZC,WAAYA,EACZC,wBAAyBA,EACzBI,aAAcA,GAGD,W,0DCntCf,IAAIzsB,EAAQ,EAAQ,QAEpB,SAAS4uB,EAAO5K,GACd,OAAO6K,mBAAmB7K,GACxBjiB,QAAQ,QAAS,KACjBA,QAAQ,OAAQ,KAChBA,QAAQ,QAAS,KACjBA,QAAQ,OAAQ,KAChBA,QAAQ,QAAS,KACjBA,QAAQ,QAAS,KAUrB5J,EAAOC,QAAU,SAAkByI,EAAKgB,EAAQC,GAE9C,IAAKD,EACH,OAAOhB,EAGT,IAAIiuB,EACJ,GAAIhtB,EACFgtB,EAAmBhtB,EAAiBD,QAC/B,GAAI7B,EAAM2U,kBAAkB9S,GACjCitB,EAAmBjtB,EAAOtE,eACrB,CACL,IAAIwxB,EAAQ,GAEZ/uB,EAAMoB,QAAQS,GAAQ,SAAmBmiB,EAAKhnB,GAChC,OAARgnB,GAA+B,qBAARA,IAIvBhkB,EAAMoe,QAAQ4F,GAChBhnB,GAAY,KAEZgnB,EAAM,CAACA,GAGThkB,EAAMoB,QAAQ4iB,GAAK,SAAoB2G,GACjC3qB,EAAMgvB,OAAOrE,GACfA,EAAIA,EAAEsE,cACGjvB,EAAM4U,SAAS+V,KACxBA,EAAI9V,KAAKC,UAAU6V,IAErBoE,EAAMttB,KAAKmtB,EAAO5xB,GAAO,IAAM4xB,EAAOjE,WAI1CmE,EAAmBC,EAAMlf,KAAK,KAGhC,GAAIif,EAAkB,CACpB,IAAII,EAAgBruB,EAAIiV,QAAQ,MACT,IAAnBoZ,IACFruB,EAAMA,EAAI9C,MAAM,EAAGmxB,IAGrBruB,KAA8B,IAAtBA,EAAIiV,QAAQ,KAAc,IAAM,KAAOgZ,EAGjD,OAAOjuB,I,uBCpET,IAAIkK,EAAa,EAAQ,QAEzB5S,EAAOC,QAAU2S,EAAW,YAAa,cAAgB,I,uBCFzD,IAAIZ,EAAU,EAAQ,QAClBglB,EAAY,EAAQ,QACpBn3B,EAAkB,EAAQ,QAE1BgT,EAAWhT,EAAgB,YAE/BG,EAAOC,QAAU,SAAUyF,GACzB,QAAU/B,GAAN+B,EAAiB,OAAOA,EAAGmN,IAC1BnN,EAAG,eACHsxB,EAAUhlB,EAAQtM,M,wBCTzB,YAUA,IAAI8Q,EAAW,IAGXC,EAAY,kBAGZwgB,EAAc,4CAGdtgB,EAAgB,kBAChBC,EAAoB,iCACpBC,EAAsB,kBACtBqgB,EAAiB,kBACjBC,EAAe,4BACfC,EAAgB,uBAChBC,EAAiB,+CACjBC,EAAqB,kBACrBC,EAAe,+JACfC,EAAe,4BACf1gB,EAAa,iBACb2gB,EAAeL,EAAgBC,EAAiBC,EAAqBC,EAGrEG,EAAS,OACTC,EAAU,IAAMF,EAAe,IAC/BzgB,EAAU,IAAMJ,EAAoBC,EAAsB,IAC1D+gB,EAAW,OACXC,EAAY,IAAMX,EAAiB,IACnCY,EAAU,IAAMX,EAAe,IAC/BY,EAAS,KAAOphB,EAAgB8gB,EAAeG,EAAWV,EAAiBC,EAAeK,EAAe,IACzGvgB,EAAS,2BACTC,EAAa,MAAQF,EAAU,IAAMC,EAAS,IAC9CE,EAAc,KAAOR,EAAgB,IACrCS,EAAa,kCACbC,EAAa,qCACb2gB,EAAU,IAAMR,EAAe,IAC/BlgB,EAAQ,UAGR2gB,EAAc,MAAQH,EAAU,IAAMC,EAAS,IAC/CG,EAAc,MAAQF,EAAU,IAAMD,EAAS,IAC/CI,EAAkB,MAAQT,EAAS,yBACnCU,EAAkB,MAAQV,EAAS,yBACnCngB,EAAWL,EAAa,IACxBM,EAAW,IAAMV,EAAa,KAC9BW,EAAY,MAAQH,EAAQ,MAAQ,CAACH,EAAaC,EAAYC,GAAYK,KAAK,KAAO,IAAMF,EAAWD,EAAW,KAClHI,EAAQH,EAAWD,EAAWE,EAC9B4gB,EAAU,MAAQ,CAACR,EAAWzgB,EAAYC,GAAYK,KAAK,KAAO,IAAMC,EAGxE2gB,EAAgBhqB,OAAO,CACzB0pB,EAAU,IAAMF,EAAU,IAAMK,EAAkB,MAAQ,CAACR,EAASK,EAAS,KAAKtgB,KAAK,KAAO,IAC9FwgB,EAAc,IAAME,EAAkB,MAAQ,CAACT,EAASK,EAAUC,EAAa,KAAKvgB,KAAK,KAAO,IAChGsgB,EAAU,IAAMC,EAAc,IAAME,EACpCH,EAAU,IAAMI,EAChBR,EACAS,GACA3gB,KAAK,KAAM,KAGT6gB,EAAmB,sEAGnBxgB,EAA8B,iBAAV5X,GAAsBA,GAAUA,EAAOoF,SAAWA,QAAUpF,EAGhF6X,EAA0B,iBAARC,MAAoBA,MAAQA,KAAK1S,SAAWA,QAAU0S,KAGxEC,EAAOH,GAAcC,GAAYG,SAAS,cAATA,GASrC,SAASqgB,EAAW3pB,GAClB,OAAOA,EAAOzH,MAAM6vB,IAAgB,GAUtC,SAASwB,EAAe5pB,GACtB,OAAO0pB,EAAiBx4B,KAAK8O,GAU/B,SAAS6pB,EAAa7pB,GACpB,OAAOA,EAAOzH,MAAMkxB,IAAkB,GAIxC,IAAIrf,EAAc1T,OAAOiD,UAOrB0Q,EAAiBD,EAAY7T,SAG7B+T,EAASjB,EAAKiB,OAGdC,EAAcD,EAASA,EAAO3Q,eAAY7E,EAC1C0V,EAAiBD,EAAcA,EAAYhU,cAAWzB,EAU1D,SAAS8V,EAAa3J,GAEpB,GAAoB,iBAATA,EACT,OAAOA,EAET,GAAI4J,GAAS5J,GACX,OAAOuJ,EAAiBA,EAAezV,KAAKkM,GAAS,GAEvD,IAAI/K,EAAU+K,EAAQ,GACtB,MAAkB,KAAV/K,GAAkB,EAAI+K,IAAW0G,EAAY,KAAOzR,EA2B9D,SAAS6U,GAAa9J,GACpB,QAASA,GAAyB,iBAATA,EAoB3B,SAAS4J,GAAS5J,GAChB,MAAuB,iBAATA,GACX8J,GAAa9J,IAAUoJ,EAAetV,KAAKkM,IAAU2G,EAwB1D,SAASrR,GAAS0K,GAChB,OAAgB,MAATA,EAAgB,GAAK2J,EAAa3J,GAsB3C,SAAS4B,GAAM7C,EAAQ8pB,EAAS5e,GAI9B,OAHAlL,EAASzJ,GAASyJ,GAClB8pB,EAAU5e,OAAQpW,EAAYg1B,OAEdh1B,IAAZg1B,EACKF,EAAe5pB,GAAU6pB,EAAa7pB,GAAU2pB,EAAW3pB,GAE7DA,EAAOzH,MAAMuxB,IAAY,GAGlC34B,EAAOC,QAAUyR,K,wDC/PJ,IAAIknB,EAAW,iBAAiBC,EAAU,gBAAgBC,EAAS,eAAeC,EAAS,CAACH,WAAWA,EAAWC,UAAUA,EAAUC,SAASA,GAAUE,EAAkB,KAAKC,EAAa,SAAS3oB,EAAE2O,GAAG3O,EAAE4oB,UAAU9T,IAAInG,GAAG3O,EAAE6oB,gBAAgB,YAAY7oB,EAAE6oB,gBAAgB,aAAa,yBAAyB7zB,SAAS0zB,EAAkB,IAAII,sBAAqB,SAAS9oB,EAAE2O,GAAG3O,EAAErH,SAAQ,SAASqH,GAAG,GAAGA,EAAE+oB,eAAe,CAAC,IAAIpa,EAAE3O,EAAEc,OAAO6N,EAAEia,UAAU9T,IAAI2T,EAASH,YAAY,IAAI/0B,EAAEob,EAAEqa,QAAQC,IAAIhb,EAAEU,EAAEqa,QAAQpH,IAAIztB,EAAE,IAAI+0B,MAAM/0B,EAAE80B,IAAI11B,EAAEY,EAAEg1B,OAAO,WAAWxa,EAAEia,UAAUQ,OAAOX,EAASH,YAAY/0B,IAAIob,EAAEsa,IAAI11B,EAAEo1B,EAAaha,EAAE8Z,EAASF,aAAap0B,EAAEk1B,QAAQ,WAAW1a,EAAEia,UAAUQ,OAAOX,EAASH,YAAYra,IAAIU,EAAEsa,IAAIhb,EAAE0a,EAAaha,EAAE8Z,EAASD,YAAYE,EAAkBY,UAAU3a,WAAS,IAAI4a,EAAoBb,EAAkB1J,EAAO,CAACrO,QAAQ,SAAS3Q,GAAGA,EAAEwpB,UAAU,WAAW,CAAC1kB,KAAK,SAAS9E,GAAG,yBAAyBhL,QAAQu0B,EAAoBE,QAAQzpB,IAAI0pB,iBAAiB,SAAS1pB,GAAG,yBAAyBhL,QAAQgL,EAAE4oB,UAAUe,SAASlB,EAASF,YAAYgB,EAAoBE,QAAQzpB,QAAQtQ,EAAOC,QAAQqvB,G,uBCApmC,IAAIzpB,EAAc,EAAQ,QACtBuY,EAAuB,EAAQ,QAC/BzQ,EAAW,EAAQ,QACnBusB,EAAa,EAAQ,QAIzBl6B,EAAOC,QAAU4F,EAAcN,OAAO6nB,iBAAmB,SAA0B/mB,EAAG8zB,GACpFxsB,EAAStH,GACT,IAGIxB,EAHA6mB,EAAOwO,EAAWC,GAClBz2B,EAASgoB,EAAKhoB,OACd+L,EAAQ,EAEZ,MAAO/L,EAAS+L,EAAO2O,EAAqBjZ,EAAEkB,EAAGxB,EAAM6mB,EAAKjc,KAAU0qB,EAAWt1B,IACjF,OAAOwB,I,oCCFTrG,EAAOC,QAAU,SAAsB0F,EAAO8C,EAAQ+gB,EAAMlhB,EAASC,GA4BnE,OA3BA5C,EAAM8C,OAASA,EACX+gB,IACF7jB,EAAM6jB,KAAOA,GAGf7jB,EAAM2C,QAAUA,EAChB3C,EAAM4C,SAAWA,EACjB5C,EAAMy0B,cAAe,EAErBz0B,EAAM00B,OAAS,WACb,MAAO,CAEL9Q,QAASlpB,KAAKkpB,QACd3iB,KAAMvG,KAAKuG,KAEX0zB,YAAaj6B,KAAKi6B,YAClB31B,OAAQtE,KAAKsE,OAEb41B,SAAUl6B,KAAKk6B,SACfC,WAAYn6B,KAAKm6B,WACjBC,aAAcp6B,KAAKo6B,aACnBC,MAAOr6B,KAAKq6B,MAEZjyB,OAAQpI,KAAKoI,OACb+gB,KAAMnpB,KAAKmpB,OAGR7jB,I,sBCpCP,SAAUxF,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIq6B,EAAOr6B,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,eACJC,IAAK,sBACLC,KAAM,6BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,mBACTC,SAAU,eACVC,QAAS,oBACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,WACHC,GAAI,aACJC,EAAG,UACHC,GAAI,WACJC,EAAG,QACHC,GAAI,UACJC,EAAG,UACHC,GAAI,YACJC,EAAG,SACHC,GAAI,YAER2B,uBAAwB,uBACxBC,QAAS,SAAUI,GACf,IAAIb,EAAIa,EAAS,GACbR,EACgC,OAAxBQ,EAAS,IAAO,IACd,KACM,IAANb,EACA,KACM,IAANA,EACA,KACM,IAANA,EACA,KACA,KACd,OAAOa,EAASR,KAIxB,OAAOw2B,M,uBCxEX,IAAIjqB,EAAI,EAAQ,QACZrD,EAAS,EAAQ,QAIrBqD,EAAE,CAAEU,OAAQ,SAAUC,OAAO,GAAQ,CACnChE,OAAQA,K,kCCJV,IAAIxF,EAAQ,EAAQ,QAEpB7H,EAAOC,QACL4H,EAAM+yB,uBAIJ,WACE,IAEIC,EAFAC,EAAO,kBAAkB/6B,KAAKg7B,UAAUxnB,WACxCynB,EAAiBvc,SAAStT,cAAc,KAS5C,SAAS8vB,EAAWvyB,GAClB,IAAIwyB,EAAOxyB,EAWX,OATIoyB,IAEFE,EAAeG,aAAa,OAAQD,GACpCA,EAAOF,EAAeE,MAGxBF,EAAeG,aAAa,OAAQD,GAG7B,CACLA,KAAMF,EAAeE,KACrBtS,SAAUoS,EAAepS,SAAWoS,EAAepS,SAAShf,QAAQ,KAAM,IAAM,GAChFif,KAAMmS,EAAenS,KACrBtB,OAAQyT,EAAezT,OAASyT,EAAezT,OAAO3d,QAAQ,MAAO,IAAM,GAC3EwxB,KAAMJ,EAAeI,KAAOJ,EAAeI,KAAKxxB,QAAQ,KAAM,IAAM,GACpEyxB,SAAUL,EAAeK,SACzB3T,KAAMsT,EAAetT,KACrB4T,SAAiD,MAAtCN,EAAeM,SAASlH,OAAO,GACxC4G,EAAeM,SACf,IAAMN,EAAeM,UAY3B,OARAT,EAAYI,EAAW31B,OAAOua,SAASqb,MAQhC,SAAyBK,GAC9B,IAAIC,EAAU3zB,EAAM4zB,SAASF,GAAeN,EAAWM,GAAcA,EACrE,OAAQC,EAAO5S,WAAaiS,EAAUjS,UAClC4S,EAAO3S,OAASgS,EAAUhS,MAhDlC,GAqDA,WACE,OAAO,WACL,OAAO,GAFX,I,wBC1DF,SAAU1oB,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIo7B,EAAOp7B,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,mBACTC,SAAU,eACVC,QAAS,oBACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,WACHC,GAAI,aACJC,EAAG,UACHC,GAAI,WACJC,EAAG,QACHC,GAAI,UACJC,EAAG,UACHC,GAAI,YACJC,EAAG,SACHC,GAAI,YAER2B,uBAAwB,uBACxBC,QAAS,SAAUI,GACf,IAAIb,EAAIa,EAAS,GACbR,EACgC,OAAxBQ,EAAS,IAAO,IACd,KACM,IAANb,EACA,KACM,IAANA,EACA,KACM,IAANA,EACA,KACA,KACd,OAAOa,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO44B,M,wBCvET,SAAUv7B,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkT,EAAY,CACR7H,EAAG,IACHK,EAAG,IACHI,EAAG,IACHC,EAAG,IACHT,EAAG,IACHW,EAAG,IACHN,EAAG,IACHJ,EAAG,IACHW,EAAG,IACHiH,EAAG,KAEP2H,EAAY,CACR,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,KAGb,SAASugB,EAAeh3B,EAAQC,EAAeiK,EAAQ/J,GACnD,IAAIX,EAAS,GACb,GAAIS,EACA,OAAQiK,GACJ,IAAK,IACD1K,EAAS,aACT,MACJ,IAAK,KACDA,EAAS,WACT,MACJ,IAAK,IACDA,EAAS,WACT,MACJ,IAAK,KACDA,EAAS,YACT,MACJ,IAAK,IACDA,EAAS,SACT,MACJ,IAAK,KACDA,EAAS,SACT,MACJ,IAAK,IACDA,EAAS,UACT,MACJ,IAAK,KACDA,EAAS,UACT,MACJ,IAAK,IACDA,EAAS,WACT,MACJ,IAAK,KACDA,EAAS,WACT,MACJ,IAAK,IACDA,EAAS,UACT,MACJ,IAAK,KACDA,EAAS,WACT,WAGR,OAAQ0K,GACJ,IAAK,IACD1K,EAAS,eACT,MACJ,IAAK,KACDA,EAAS,aACT,MACJ,IAAK,IACDA,EAAS,aACT,MACJ,IAAK,KACDA,EAAS,aACT,MACJ,IAAK,IACDA,EAAS,WACT,MACJ,IAAK,KACDA,EAAS,WACT,MACJ,IAAK,IACDA,EAAS,YACT,MACJ,IAAK,KACDA,EAAS,YACT,MACJ,IAAK,IACDA,EAAS,cACT,MACJ,IAAK,KACDA,EAAS,cACT,MACJ,IAAK,IACDA,EAAS,YACT,MACJ,IAAK,KACDA,EAAS,YACT,MAGZ,OAAOA,EAAOyF,QAAQ,MAAOjF,GAGjC,IAAIi3B,EAAKt7B,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,gFAAgFD,MACzF,KAEJsC,kBAAkB,EAClBpC,SAAU,uDAAuDF,MAAM,KACvEG,cAAe,kCAAkCH,MAAM,KACvDI,YAAa,qBAAqBJ,MAAM,KACxCK,eAAgB,CACZC,GAAI,eACJC,IAAK,kBACLC,EAAG,aACHC,GAAI,cACJC,IAAK,4BACLC,KAAM,mCAEVC,SAAU,CACNC,QAAS,UACTC,QAAS,aACTC,SAAU,WACVC,QAAS,WACTC,SAAU,mBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,UACRC,KAAM,WACNC,EAAG25B,EACH15B,GAAI05B,EACJz5B,EAAGy5B,EACHx5B,GAAIw5B,EACJv5B,EAAGu5B,EACHt5B,GAAIs5B,EACJr5B,EAAGq5B,EACHp5B,GAAIo5B,EACJn5B,EAAGm5B,EACHl5B,GAAIk5B,EACJj5B,EAAGi5B,EACHh5B,GAAIg5B,GAER5nB,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,iBAAiB,SAAUxC,GAC7C,OAAOgU,EAAUhU,OAGzB4M,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,OAAO,SAAUxC,GACnC,OAAOoM,EAAUpM,OAGzBnE,cAAe,qCACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,UAAbC,GAAqC,UAAbA,EACjBD,EAEM,WAAbC,GACa,aAAbA,GACa,WAAbA,EAEOD,GAAQ,GAAKA,EAAOA,EAAO,QAL/B,GAQXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,GAAQ,GAAKA,EAAO,EACb,QACAA,EAAO,GACP,QACAA,EAAO,GACP,SACAA,EAAO,GACP,WAEA,UAGfP,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO84B,M,wBC9MT,SAAUz7B,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkT,EAAY,CACR7H,EAAG,IACHK,EAAG,IACHI,EAAG,IACHC,EAAG,IACHT,EAAG,IACHW,EAAG,IACHN,EAAG,IACHJ,EAAG,IACHW,EAAG,IACHiH,EAAG,KAEP2H,EAAY,CACR,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,KAGTygB,EAAKv7B,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,uFAAuFC,MAC3F,KAEJC,YAAa,uEAAuED,MAChF,KAEJsC,kBAAkB,EAClBpC,SAAU,wDAAwDF,MAC9D,KAEJG,cAAe,0CAA0CH,MAAM,KAC/DI,YAAa,4BAA4BJ,MAAM,KAC/C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,eACJC,IAAK,kBACLC,EAAG,aACHC,GAAI,cACJC,IAAK,4BACLC,KAAM,mCAEV0S,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,iBAAiB,SAAUxC,GAC7C,OAAOgU,EAAUhU,OAGzB4M,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,OAAO,SAAUxC,GACnC,OAAOoM,EAAUpM,OAGzBnE,cAAe,yBACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,SAAbC,EACOD,EAAO,EAAIA,EAAOA,EAAO,GACZ,UAAbC,EACAD,EACa,WAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,SAAbC,EACAD,EAAO,QADX,GAIXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,OACAA,EAAO,GACP,QACAA,EAAO,GACP,SACAA,EAAO,GACP,OAEA,QAGf7B,SAAU,CACNC,QAAS,UACTC,QAAS,YACTC,SAAU,qBACVC,QAAS,YACTC,SAAU,oBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,OACRC,KAAM,WACNC,EAAG,YACHC,GAAI,aACJC,EAAG,WACHC,GAAI,WACJC,EAAG,WACHC,GAAI,WACJC,EAAG,SACHC,GAAI,SACJC,EAAG,WACHC,GAAI,WACJC,EAAG,UACHC,GAAI,WAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+4B,M,wBC1HT,SAAU17B,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIw7B,EAAOx7B,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wCAAwCC,MAC5C,KAEJC,YAAa,yCAAyCD,MAClD,KAEJE,SAAU,8BAA8BF,MAAM,KAC9CG,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,gBAAgBJ,MAAM,KACnCK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,sBACNiG,EAAG,WACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,uBAEVxE,cAAe,oBACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,OAAbC,GAAkC,OAAbA,GAAkC,OAAbA,EACnCD,EACa,OAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,OAAbC,GAAkC,OAAbA,EACrBD,EAAO,QADX,GAIXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,IAAIy4B,EAAY,IAAP54B,EAAaE,EACtB,OAAI04B,EAAK,IACE,KACAA,EAAK,IACL,KACAA,EAAK,KACL,KACAA,EAAK,KACL,KACAA,EAAK,KACL,KAEA,MAGfz6B,SAAU,CACNC,QAAS,UACTC,QAAS,UACTC,SAAU,aACVC,QAAS,UACTC,SAAU,aACVC,SAAU,KAEd0C,uBAAwB,iBACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,MACD,OAAOjD,EAAS,IACpB,IAAK,IACD,OAAOA,EAAS,IACpB,IAAK,IACL,IAAK,IACD,OAAOA,EAAS,IACpB,QACI,OAAOA,IAGnB9C,aAAc,CACVC,OAAQ,MACRC,KAAM,MACNC,EAAG,KACHC,GAAI,OACJC,EAAG,OACHC,GAAI,QACJC,EAAG,OACHC,GAAI,QACJC,EAAG,MACHC,GAAI,OACJC,EAAG,OACHC,GAAI,QACJC,EAAG,MACHC,GAAI,UAIZ,OAAOm5B,M,wBCxGT,SAAU37B,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIoL,EAAW,CACX+H,EAAG,MACH9H,EAAG,MACHK,EAAG,MACHI,EAAG,MACHC,EAAG,MACHT,EAAG,MACHW,EAAG,MACHN,EAAG,MACHJ,EAAG,MACHW,EAAG,MACHC,GAAI,MACJuvB,GAAI,MACJC,GAAI,MACJ/vB,GAAI,MACJQ,GAAI,MACJwvB,GAAI,MACJ/vB,GAAI,MACJQ,GAAI,MACJb,GAAI,MACJC,GAAI,MACJa,GAAI,MACJN,IAAK,OAGL6vB,EAAK77B,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,CACJyJ,OAAQ,qFAAqFxJ,MACzF,KAEJsK,WAAY,yEAAyEtK,MACjF,MAGRC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,yDAAyDF,MAC/D,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,mBACTC,QAAS,mBACTE,QAAS,mBACTD,SAAU,kCACVE,SAAU,oCACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,SACNC,EAAG,eACHE,EAAG,YACHC,GAAI,YACJC,EAAG,UACHC,GAAI,UACJC,EAAG,SACHC,GAAI,SACJC,EAAG,SACHC,GAAI,SACJC,EAAG,SACHC,GAAI,UAERM,cAAe,qBACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,QAAbC,EACOD,EAAO,EAAIA,EAAOA,EAAO,GACZ,SAAbC,EACAD,EACa,QAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,UAAbC,EACAD,EAAO,QADX,GAIXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,MACAA,EAAO,GACP,OACAA,EAAO,GACP,MACAA,EAAO,GACP,QAEA,OAGfmB,uBAAwB,kBACxBC,QAAS,SAAUI,GACf,IAAId,EAAIc,EAAS,GACbb,EAAIa,GAAU,IAAM,IAAM,KAC9B,OAAOA,GAAU+G,EAAS/G,IAAW+G,EAAS7H,IAAM6H,EAAS5H,KAEjElB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOq5B,M,uBC5HX,IAAI1f,EAAW,EAAQ,QAEvBzc,EAAOC,QAAU,SAAUyF,GACzB,IAAK+W,EAAS/W,IAAc,OAAPA,EACnB,MAAMwM,UAAU,aAAehS,OAAOwF,GAAM,mBAC5C,OAAOA,I,wBCDT,SAAUvF,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIG,EAAS,oFAAoFC,MACzF,KAEJC,EAAc,kDAAkDD,MAAM,KACtEqJ,EAAc,CACV,QACA,QACA,QACA,QACA,QACA,yBACA,4BACA,QACA,QACA,QACA,QACA,SAIJC,EAAc,wJAElB,SAASxF,EAAOC,GACZ,OAAOA,EAAI,GAAKA,EAAI,GAAoB,OAAZA,EAAI,IAEpC,SAASC,EAAUC,EAAQC,EAAeC,EAAKC,GAC3C,IAAIC,EAASJ,EAAS,IACtB,OAAQE,GACJ,IAAK,IACD,OAAOD,GAAiBE,EAAW,aAAe,gBACtD,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,UAAY,UAEvCI,EAAS,YAExB,IAAK,IACD,OAAOH,EAAgB,SAAWE,EAAW,SAAW,UAC5D,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,SAAW,SAEtCI,EAAS,WAExB,IAAK,IACD,OAAOH,EAAgB,SAAWE,EAAW,SAAW,UAC5D,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,SAAW,SAEtCI,EAAS,WAExB,IAAK,IACD,OAAOH,GAAiBE,EAAW,MAAQ,OAC/C,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,MAAQ,OAEnCI,EAAS,MAExB,IAAK,IACD,OAAOH,GAAiBE,EAAW,QAAU,UACjD,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,SAAW,UAEtCI,EAAS,SAExB,IAAK,IACD,OAAOH,GAAiBE,EAAW,MAAQ,QAC/C,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,OAAS,OAEpCI,EAAS,QAKhC,IAAIq3B,EAAK97B,EAAOE,aAAa,KAAM,CAC/BC,OAAQA,EACRE,YAAaA,EACbqJ,YAAaA,EACbI,iBAAkBJ,EAGlBK,kBAAmB,uKACnBC,uBAAwB,sDACxBP,YAAaA,EACbQ,gBAAiBR,EACjBS,iBAAkBT,EAClBnJ,SAAU,mDAAmDF,MAAM,KACnEG,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,eACJC,IAAK,oBACLC,KAAM,yBACNiG,EAAG,cAEPhG,SAAU,CACNC,QAAS,cACTC,QAAS,eACTC,SAAU,WACN,OAAQpB,KAAKyR,OACT,KAAK,EACD,MAAO,kBACX,KAAK,EACL,KAAK,EACD,MAAO,kBACX,KAAK,EACD,MAAO,mBACX,KAAK,EACD,MAAO,oBACX,KAAK,EACD,MAAO,iBACX,KAAK,EACD,MAAO,oBAGnBpQ,QAAS,eACTC,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACD,MAAO,wBACX,KAAK,EACL,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,wBACX,KAAK,EACL,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,0BAGnBlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,UACNC,EAAG0C,EACHzC,GAAIyC,EACJxC,EAAGwC,EACHvC,GAAIuC,EACJtC,EAAGsC,EACHrC,GAAIqC,EACJpC,EAAGoC,EACHnC,GAAImC,EACJlC,EAAGkC,EACHjC,GAAIiC,EACJhC,EAAGgC,EACH/B,GAAI+B,GAERJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOs5B,M,oCClLX,IAAIhI,EAAS,EAAQ,QAAiCA,OAClDiI,EAAsB,EAAQ,QAC9BC,EAAiB,EAAQ,QAEzBC,EAAkB,kBAClBC,EAAmBH,EAAoBpa,IACvCwa,EAAmBJ,EAAoBK,UAAUH,GAIrDD,EAAep8B,OAAQ,UAAU,SAAUy8B,GACzCH,EAAiBn8B,KAAM,CACrBue,KAAM2d,EACN1tB,OAAQ3O,OAAOy8B,GACfltB,MAAO,OAIR,WACD,IAGImtB,EAHAxb,EAAQqb,EAAiBp8B,MACzBwO,EAASuS,EAAMvS,OACfY,EAAQ2R,EAAM3R,MAElB,OAAIA,GAASZ,EAAOnL,OAAe,CAAEoM,WAAOnM,EAAWkM,MAAM,IAC7D+sB,EAAQxI,EAAOvlB,EAAQY,GACvB2R,EAAM3R,OAASmtB,EAAMl5B,OACd,CAAEoM,MAAO8sB,EAAO/sB,MAAM,Q,wBCvB7B,SAAU1P,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkT,EAAY,CACR7H,EAAG,IACHK,EAAG,IACHI,EAAG,IACHC,EAAG,IACHT,EAAG,IACHW,EAAG,IACHN,EAAG,IACHJ,EAAG,IACHW,EAAG,IACHiH,EAAG,KAEP2H,EAAY,CACR,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,KAGTyhB,EAAKv8B,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,0FAA0FC,MAC9F,KAEJC,YAAa,0FAA0FD,MACnG,KAEJE,SAAU,8FAA8FF,MACpG,KAEJG,cAAe,mDAAmDH,MAC9D,KAEJI,YAAa,sBAAsBJ,MAAM,KACzCK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,qBACLC,KAAM,4BAEVC,SAAU,CACNC,QAAS,aACTC,QAAS,YACTC,SAAU,WACVC,QAAS,cACTC,SAAU,yBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,UACNC,EAAG,oBACHC,GAAI,eACJC,EAAG,cACHC,GAAI,gBACJC,EAAG,gBACHC,GAAI,eACJC,EAAG,WACHC,GAAI,aACJC,EAAG,YACHC,GAAI,cACJC,EAAG,aACHC,GAAI,eAER2B,uBAAwB,aACxBC,QAAS,SAAUI,GACf,OAAOA,EAAS,OAEpBoP,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,iBAAiB,SAAUxC,GAC7C,OAAOgU,EAAUhU,OAGzB4M,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,OAAO,SAAUxC,GACnC,OAAOoM,EAAUpM,OAIzBnE,cAAe,wCACfG,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,SACAA,EAAO,EACP,SACAA,EAAO,GACP,QACAA,EAAO,GACP,WACAA,EAAO,GACP,WACAA,EAAO,GACP,QAEA,UAGfD,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,UAAbC,EACOD,EAAO,EAAIA,EAAOA,EAAO,GACZ,UAAbC,GAAqC,SAAbA,GAEX,YAAbA,GACAD,GAAQ,GAFRA,EAIAA,EAAO,IAGtBP,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+5B,M,wBCrIT,SAAU18B,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIkT,EAAY,CACR7H,EAAG,IACHK,EAAG,IACHI,EAAG,IACHC,EAAG,IACHT,EAAG,IACHW,EAAG,IACHN,EAAG,IACHJ,EAAG,IACHW,EAAG,IACHiH,EAAG,KAEP2H,EAAY,CACR,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,KAGT0hB,EAAKx8B,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,6FAA6FC,MACjG,KAEJC,YAAa,2EAA2ED,MACpF,KAEJsC,kBAAkB,EAClBpC,SAAU,0DAA0DF,MAChE,KAEJG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,wBAAwBJ,MAAM,KAC3CK,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,cACJC,IAAK,sBACLC,KAAM,6BAEVC,SAAU,CACNC,QAAS,YACTC,QAAS,YACTC,SAAU,WACVC,QAAS,cACTC,SAAU,oBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,UACRC,KAAM,WACNC,EAAG,gBACHC,GAAI,gBACJC,EAAG,aACHC,GAAI,WACJC,EAAG,YACHC,GAAI,UACJC,EAAG,WACHC,GAAI,SACJC,EAAG,cACHC,GAAI,YACJC,EAAG,YACHC,GAAI,WAERoR,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,iBAAiB,SAAUxC,GAC7C,OAAOgU,EAAUhU,OAGzB4M,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,OAAO,SAAUxC,GACnC,OAAOoM,EAAUpM,OAGzBnE,cAAe,gCACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,WAAbC,EACOD,EAAO,EAAIA,EAAOA,EAAO,GACZ,aAAbC,EACAD,EACa,aAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,SAAbC,EACAD,EAAO,QADX,GAIXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,SACAA,EAAO,GACP,WACAA,EAAO,GACP,WACAA,EAAO,GACP,OAEA,UAGfmB,uBAAwB,eACxBC,QAAS,SAAUI,GACf,OAAOA,EAAS,OAEpB/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOg6B,M,qBCnIX98B,EAAOC,QAAU,I,kCCCjB,IAAIyQ,EAAI,EAAQ,QACZzH,EAAU,EAAQ,QAItByH,EAAE,CAAEU,OAAQ,QAASC,OAAO,EAAMC,OAAQ,GAAGrI,SAAWA,GAAW,CACjEA,QAASA,K,wBCHT,SAAU9I,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIy8B,EAAOz8B,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wEAAwEC,MAC5E,KAEJC,YAAa,wEAAwED,MACjF,KAEJE,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,wCAAwCH,MAAM,KAC7DI,YAAa,gBAAgBJ,MAAM,KACnC+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,wBACTC,QAAS,sBACTC,SAAU,uBACVC,QAAS,sBACTC,SAAU,uBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,OACHC,GAAI,WACJC,EAAG,QACHC,GAAI,WACJC,EAAG,OACHC,GAAI,WACJC,EAAG,MACHC,GAAI,UACJC,EAAG,MACHC,GAAI,UACJC,EAAG,MACHC,GAAI,YAERC,KAAM,CACFC,IAAK,EACLC,IAAK,MAIb,OAAOi6B,M,uBC9DX,IAAI58B,EAAS,EAAQ,QAErBH,EAAOC,QAAUE,G,qBCFjBF,EAAQoiB,SAAW,SAAkB7e,GACjC,IAAI0Q,EAAOhB,MAAM1K,UAAU5C,MAAMhC,KAAKK,WACtCiQ,EAAK1K,QACL4Y,YAAW,WACP5e,EAAGQ,MAAM,KAAMkQ,KAChB,IAGPjU,EAAQ+8B,SAAW/8B,EAAQg9B,KAC3Bh9B,EAAQi9B,SAAWj9B,EAAQk9B,MAAQ,UACnCl9B,EAAQm9B,IAAM,EACdn9B,EAAQo9B,SAAU,EAClBp9B,EAAQq9B,IAAM,GACdr9B,EAAQs9B,KAAO,GAEft9B,EAAQu9B,QAAU,SAAU52B,GAC3B,MAAM,IAAI6iB,MAAM,8CAGjB,WACI,IACI+D,EADAiQ,EAAM,IAEVx9B,EAAQw9B,IAAM,WAAc,OAAOA,GACnCx9B,EAAQy9B,MAAQ,SAAUC,GACjBnQ,IAAMA,EAAO,EAAQ,SAC1BiQ,EAAMjQ,EAAKxkB,QAAQ20B,EAAKF,IANhC,GAUAx9B,EAAQ29B,KAAO39B,EAAQ49B,KACvB59B,EAAQ69B,MAAQ79B,EAAQ89B,OACxB99B,EAAQ+9B,OAAS/9B,EAAQg+B,YACzBh+B,EAAQi+B,WAAa,aACrBj+B,EAAQk+B,SAAW,I,wBC5BjB,SAAUh+B,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;SAASwK,EAAoBnG,EAAQC,EAAeC,EAAKC,GACrD,IAAIoF,EAAS,CACThI,EAAG,CAAC,aAAc,gBAClBE,EAAG,CAAC,YAAa,eACjBE,EAAG,CAAC,UAAW,aACfE,EAAG,CAAC,WAAY,eAChBE,EAAG,CAAC,UAAW,eAEnB,OAAOkC,EAAgBsF,EAAOrF,GAAK,GAAKqF,EAAOrF,GAAK,GAExD,SAASu5B,EAAkBvvB,GACvB,IAAIlK,EAASkK,EAAOwvB,OAAO,EAAGxvB,EAAO8O,QAAQ,MAC7C,OAAI2gB,EAA4B35B,GACrB,KAAOkK,EAEX,MAAQA,EAEnB,SAAS0vB,EAAgB1vB,GACrB,IAAIlK,EAASkK,EAAOwvB,OAAO,EAAGxvB,EAAO8O,QAAQ,MAC7C,OAAI2gB,EAA4B35B,GACrB,QAAUkK,EAEd,SAAWA,EAStB,SAASyvB,EAA4B35B,GAEjC,GADAA,EAAS0C,SAAS1C,EAAQ,IACtB65B,MAAM75B,GACN,OAAO,EAEX,GAAIA,EAAS,EAET,OAAO,EACJ,GAAIA,EAAS,GAEhB,OAAI,GAAKA,GAAUA,GAAU,EAI1B,GAAIA,EAAS,IAAK,CAErB,IAAI85B,EAAY95B,EAAS,GACrB+5B,EAAa/5B,EAAS,GAC1B,OACW25B,EADO,IAAdG,EACmCC,EAEJD,GAChC,GAAI95B,EAAS,IAAO,CAEvB,MAAOA,GAAU,GACbA,GAAkB,GAEtB,OAAO25B,EAA4B35B,GAInC,OADAA,GAAkB,IACX25B,EAA4B35B,GAI3C,IAAIg6B,EAAKr+B,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,uFAAuFC,MAC3F,KAEJC,YAAa,+DAA+DD,MACxE,KAEJsC,kBAAkB,EAClBpC,SAAU,mEAAmEF,MACzE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,cACJC,IAAK,iBACLC,EAAG,aACHC,GAAI,eACJC,IAAK,2BACLC,KAAM,kCAEVC,SAAU,CACNC,QAAS,eACTK,SAAU,IACVJ,QAAS,eACTC,SAAU,eACVC,QAAS,mBACTC,SAAU,WAEN,OAAQtB,KAAKyR,OACT,KAAK,EACL,KAAK,EACD,MAAO,0BACX,QACI,MAAO,4BAIvBjQ,aAAc,CACVC,OAAQs8B,EACRr8B,KAAMw8B,EACNv8B,EAAG,kBACHC,GAAI,cACJC,EAAG4I,EACH3I,GAAI,cACJC,EAAG0I,EACHzI,GAAI,aACJC,EAAGwI,EACHvI,GAAI,UACJC,EAAGsI,EACHrI,GAAI,WACJC,EAAGoI,EACHnI,GAAI,WAER2B,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO67B,M,uBC/IX,IAAIzzB,EAAQ,EAAQ,QAChB8G,EAAU,EAAQ,QAElBtR,EAAQ,GAAGA,MAGfV,EAAOC,QAAUiL,GAAM,WAGrB,OAAQ3F,OAAO,KAAKq5B,qBAAqB,MACtC,SAAUl5B,GACb,MAAsB,UAAfsM,EAAQtM,GAAkBhF,EAAMkD,KAAK8B,EAAI,IAAMH,OAAOG,IAC3DH,Q,uBCZJ,IAAI1F,EAAkB,EAAQ,QAC1BusB,EAAS,EAAQ,QACjBhO,EAAuB,EAAQ,QAE/BygB,EAAch/B,EAAgB,eAC9Bi/B,EAAiB5rB,MAAM1K,eAIQ7E,GAA/Bm7B,EAAeD,IACjBzgB,EAAqBjZ,EAAE25B,EAAgBD,EAAa,CAClDvgB,cAAc,EACdxO,MAAOsc,EAAO,QAKlBpsB,EAAOC,QAAU,SAAU4E,GACzBi6B,EAAeD,GAAah6B,IAAO,I,uBClBrC,IAAI1E,EAAS,EAAQ,QAErBH,EAAOC,QAAU,SAAU4D,EAAGC,GAC5B,IAAIqxB,EAAUh1B,EAAOg1B,QACjBA,GAAWA,EAAQxvB,QACA,IAArB1B,UAAUP,OAAeyxB,EAAQxvB,MAAM9B,GAAKsxB,EAAQxvB,MAAM9B,EAAGC,M,uBCLjE,IAAI2Y,EAAW,EAAQ,QACnBzK,EAAU,EAAQ,QAClBnS,EAAkB,EAAQ,QAE1Bk/B,EAAQl/B,EAAgB,SAI5BG,EAAOC,QAAU,SAAUyF,GACzB,IAAIgI,EACJ,OAAO+O,EAAS/W,UAAmC/B,KAA1B+J,EAAWhI,EAAGq5B,MAA0BrxB,EAA0B,UAAfsE,EAAQtM,M,qBCVtF;;;;;;;;;;IAWA,SAAWwS,EAAM9X,GAGT,EAAO,CAAC,WAAW,EAAF,EAAS,iEAa1B8X,IAEAA,EAAK8mB,0BAA4B9mB,EAAK5X,OAASF,EAAQ8X,EAAK5X,QAAUF,IAlB9E,CAoBGC,MAAM,SAAUC,GAMf,IAAI2+B,GAAsB,EAOtBC,GAA8B,EAQ9BC,GAAwB,EAQxBC,GAAgC,EAGhCC,EAAQ,4EAA4E3+B,MAAM,KAE1F4+B,EAAU,CACV,CACI1gB,KAAM,UACN2gB,QAAS,CACL,CAAE3gB,KAAM,UAAW9O,MAAO,IAC1B,CAAE8O,KAAM,QAAS9O,MAAO,MACxB,CAAE8O,KAAM,OAAQ9O,MAAO,OACvB,CAAE8O,KAAM,QAAS9O,MAAO,QACxB,CAAE8O,KAAM,SAAU9O,MAAO,SACzB,CAAE8O,KAAM,QAAS9O,MAAO,WAGhC,CACI8O,KAAM,UACN2gB,QAAS,CACL,CAAE3gB,KAAM,QAAS9O,MAAO,IACxB,CAAE8O,KAAM,OAAQ9O,MAAO,MACvB,CAAE8O,KAAM,QAAS9O,MAAO,OACxB,CAAE8O,KAAM,SAAU9O,MAAO,OACzB,CAAE8O,KAAM,QAAS9O,MAAO,UAGhC,CACI8O,KAAM,QACN2gB,QAAS,CACL,CAAE3gB,KAAM,OAAQ9O,MAAO,IACvB,CAAE8O,KAAM,QAAS9O,MAAO,KACxB,CAAE8O,KAAM,SAAU9O,MAAO,KACzB,CAAE8O,KAAM,QAAS9O,MAAO,QAGhC,CACI8O,KAAM,OACN2gB,QAAS,CACL,CAAE3gB,KAAM,QAAS9O,MAAO,GACxB,CAAE8O,KAAM,SAAU9O,MAAO,IACzB,CAAE8O,KAAM,QAAS9O,MAAO,OAGhC,CACI8O,KAAM,SACN2gB,QAAS,CACL,CAAE3gB,KAAM,QAAS9O,MAAO,OAMpC,SAAS0vB,EAAejyB,EAAKga,GACzB,QAAIA,EAAO7jB,OAAS6J,EAAI7J,UAIQ,IAAzB6J,EAAIoQ,QAAQ4J,GAMvB,SAASkY,EAAWC,GAChB,IAAI36B,EAAS,GAEb,MAAO26B,EACH36B,GAAU,IACV26B,GAAO,EAGX,OAAO36B,EAGX,SAAS46B,EAAYC,GACjB,IAAIC,EAAcD,EAAOl/B,MAAM,IAAIo/B,UAC/BtvB,EAAI,EACJuvB,GAAQ,EAEZ,MAAOA,GAASvvB,EAAIqvB,EAAYn8B,OACxB8M,EACuB,MAAnBqvB,EAAYrvB,GACZqvB,EAAYrvB,GAAK,KAEjBqvB,EAAYrvB,IAAMnJ,SAASw4B,EAAYrvB,GAAI,IAAM,GAAGpL,WACpD26B,GAAQ,IAGR14B,SAASw4B,EAAYrvB,GAAI,IAAM,IAC/BuvB,GAAQ,GAGZF,EAAYrvB,GAAK,KAGrBA,GAAK,EAOT,OAJIuvB,GACAF,EAAYv2B,KAAK,KAGdu2B,EAAYC,UAAUpoB,KAAK,IAOtC,SAASsoB,EAAmBC,EAAQtqB,GAGhC,IAAIuqB,EAAgBtN,EAChBlH,EAAK/V,GAASwqB,QACd,SAASt7B,GACL,OAAOA,EAAM,IAAM8Q,EAAQ9Q,MAEjC6S,KAAK,KAGH0oB,EAAWH,EAAS,IAAMC,EAQ9B,OALKF,EAAmB1U,MAAM8U,KAC1BJ,EAAmB1U,MAAM8U,GAAYC,KAAKC,aAAaL,EAAQtqB,IAI5DqqB,EAAmB1U,MAAM8U,GAoBpC,SAASG,EAAa57B,EAAQgR,EAAS6qB,GACnC,IA+CIC,EASAC,EACAC,EACAC,EA1DAC,EAAoBlrB,EAAQkrB,kBAC5BC,EAAcnrB,EAAQmrB,YACtBC,EAAWD,GAAenrB,EAAQorB,SAASn7B,QAC3Co7B,EAA2BrrB,EAAQqrB,yBACnCC,EAAuBtrB,EAAQsrB,sBAAwB,EACvDC,EAAiBvrB,EAAQurB,gBAAkB,EAC3CC,EAAoBxrB,EAAQwrB,kBAC5BC,EAAmBzrB,EAAQyrB,iBAE/B,GAAIP,GAAqBL,EAAY,CACjC,IAAIa,EAAsB,CACtBJ,qBAAsBA,EACtBH,YAAaA,GAcjB,GAXII,IACAG,EAAoBC,sBAAwBJ,EAC5CG,EAAoBE,sBAAwBL,GAK5CF,GAA4Br8B,EAAS,IACrC08B,EAAoBL,yBAA2BA,GAG/C7B,EAAuB,CACvB,IAAKC,EAA+B,CAChC,IAAIoC,EAAkBC,EAAO,GAAI9rB,GACjC6rB,EAAgBV,aAAc,EAC9BU,EAAgBJ,iBAAmB,IACnCz8B,EAAS+8B,WAAWnB,EAAa57B,EAAQ68B,GAAkB,IAG/D,OAAOxB,EAAmBQ,EAAYa,GAAqBn3B,OAAOvF,GAElE,IAAKu6B,EAA6B,CAC1BsC,EAAkBC,EAAO,GAAI9rB,GACjC6rB,EAAgBV,aAAc,EAC9BU,EAAgBJ,iBAAmB,IACnCz8B,EAAS+8B,WAAWnB,EAAa57B,EAAQ68B,GAAkB,IAG/D,OAAO78B,EAAOg9B,eAAenB,EAAYa,GAQ7CZ,EADAO,EACer8B,EAAOi9B,YAAYZ,EAA2B,GAE9Cr8B,EAAOk9B,QAAQX,EAAiB,GAOnD,IAAIY,EAAOrB,EAAa//B,MAAM,KAE9BkgC,EAAiBkB,EAAK,IAAM,GAE5BA,EAAOA,EAAK,GAAGphC,MAAM,KAErBigC,EAAiBmB,EAAK,IAAM,GAC5BpB,EAAgBoB,EAAK,IAAM,GAY3B,IAAIC,EAAgBrB,EAAch9B,OAC9Bs+B,EAAiBrB,EAAej9B,OAChCu+B,EAAaF,EAAgBC,EAC7BpC,EAASc,EAAgBC,GAEzBK,GAA4BiB,IAAgBjB,EAA2B,IAAOA,GAA4BgB,IAAoBd,EAAiB,KAE/ItB,EAASD,EAAYC,GAEjBA,EAAOl8B,SAAWu+B,EAAa,IAC/BF,GAAgC,GAIhCC,IACApC,EAASA,EAAOh6B,MAAM,GAAI,IAI9B86B,EAAgBd,EAAOh6B,MAAM,EAAGm8B,GAChCpB,EAAiBf,EAAOh6B,MAAMm8B,IAK9Bf,IACAL,EAAiBA,EAAe/2B,QAAQ,MAAO,KAInD,IAAIs4B,EAAW76B,SAASu5B,EAAgB,IAEpCsB,EAAW,EACPvB,EAAej9B,QAAUw+B,GACzBvB,GAAkClB,EAAWyC,EAAWvB,EAAej9B,QAEvEg9B,GAAgCC,EAChCA,EAAiB,KAEjBD,GAAgCC,EAAe/6B,MAAM,EAAGs8B,GACxDvB,EAAiBA,EAAe/6B,MAAMs8B,IAEnCA,EAAW,IAClBvB,EAAkBlB,EAAWtxB,KAAKg0B,IAAID,GAAYxB,EAAch9B,QAAUg9B,EAAgBC,EAE1FD,EAAgB,KAGfM,IAEDL,EAAiBA,EAAe/6B,MAAM,EAAGs7B,GAErCP,EAAej9B,OAASw9B,IACxBP,GAAkClB,EAAWyB,EAAiBP,EAAej9B,SAK7Eg9B,EAAch9B,OAASu9B,IACvBP,EAAgBjB,EAAWwB,EAAuBP,EAAch9B,QAAUg9B,IAIlF,IAAI0B,EAAkB,GAGtB,GAAItB,EAAa,CAEb,IAAIhL,EADJgM,EAAOpB,EAGP,MAAOoB,EAAKp+B,OACJq9B,EAASr9B,SACToyB,EAAQiL,EAASv3B,SAGjB44B,IACAA,EAAkBjB,EAAoBiB,GAG1CA,EAAkBN,EAAKl8B,OAAOkwB,GAASsM,EAEvCN,EAAOA,EAAKl8B,MAAM,GAAIkwB,QAG1BsM,EAAkB1B,EAQtB,OAJIC,IACAyB,EAAkBA,EAAkBhB,EAAmBT,GAGpDyB,EAIX,SAASC,EAAqBx+B,EAAGC,GAC7B,OAAID,EAAEy+B,MAAM5+B,OAASI,EAAEw+B,MAAM5+B,QACjB,EAGRG,EAAEy+B,MAAM5+B,OAASI,EAAEw+B,MAAM5+B,OAClB,EAIJ,EAIX,SAAS6+B,EAAkBjsB,EAAOksB,GAC9B,IAAIC,EAAS,GAoBb,OAlBAC,EAAKhX,EAAK8W,IAAa,SAAUG,GAC7B,GAAmC,oBAA/BA,EAAc/8B,MAAM,EAAG,IAA3B,CAIA,IAAIg9B,EAAYD,EAAc/8B,MAAM,IAAIgD,cAExC85B,EAAKhX,EAAK8W,EAAWG,KAAiB,SAAUE,GACxCA,EAASj9B,MAAM,EAAG,KAAO0Q,GACzBmsB,EAAOn5B,KAAK,CACRsV,KAAMgkB,EACN/9B,IAAKg+B,EACLP,MAAOE,EAAWG,GAAeE,YAM1CJ,EAIX,SAASK,EAAkBxsB,EAAOysB,EAAcC,GAE5C,OAAqB,IAAjBD,GAAuC,OAAjBC,EACf1sB,EAGJA,EAAQA,EA/OnB0pB,EAAmB1U,MAAQ,GAkP3B,IAAI2X,EAAY,CACZC,uBAAwB,CACpBlzB,EAAG,cACHmzB,GAAI,eACJnhC,EAAG,SACHC,GAAI,UACJC,EAAG,SACHC,GAAI,UACJC,EAAG,OACHC,GAAI,QACJC,EAAG,MACHC,GAAI,OACJoI,EAAG,OACHC,GAAI,QACJpI,EAAG,QACHC,GAAI,SACJC,EAAG,OACHC,GAAI,SAERygC,oBAAqB,CACjBpzB,EAAG,OACHmzB,GAAI,QACJnhC,EAAG,MACHC,GAAI,OACJC,EAAG,MACHC,GAAI,OACJC,EAAG,KACHC,GAAI,MACJC,EAAG,KACHC,GAAI,MACJoI,EAAG,KACHC,GAAI,MACJpI,EAAG,KACHC,GAAI,MACJC,EAAG,KACHC,GAAI,OAER0gC,sBAAuB,CACnBC,IAAK,UACLC,GAAI,OACJC,GAAI,QAERC,mBAAoB,CAChB,CAAE7kB,KAAM,WAAY/P,OAAQ,MAC5B,CAAE+P,KAAM,QAAS/P,OAAQ,MAE7Bi0B,kBAAmBA,GAIvB,SAAS7c,EAAQ3R,GACb,MAAiD,mBAA1C/O,OAAOiD,UAAUpD,SAASxB,KAAK0Q,GAI1C,SAASmI,EAAS4O,GACd,MAA+C,oBAAxC9lB,OAAOiD,UAAUpD,SAASxB,KAAKynB,GAI1C,SAASqY,EAASpvB,EAAOhJ,GACrB,IAAImE,EAAQ6E,EAAM5Q,OAElB,MAAO+L,GAAS,EACZ,GAAInE,EAASgJ,EAAM7E,IAAW,OAAO6E,EAAM7E,GAKnD,SAASwb,EAAK3W,EAAOhJ,GACjB,IAIIlE,EAJAqI,EAAQ,EAERuK,EAAM1F,GAASA,EAAM5Q,QAAU,EAIX,oBAAb4H,IACPlE,EAAQkE,EACRA,EAAW,SAAUq4B,GACjB,OAAOA,IAASv8B,IAIxB,MAAOqI,EAAQuK,EAAK,CAChB,GAAI1O,EAASgJ,EAAM7E,IAAW,OAAO6E,EAAM7E,GAC3CA,GAAS,GAKjB,SAASizB,EAAKpuB,EAAOhJ,GACjB,IAAImE,EAAQ,EACRuK,EAAM1F,EAAM5Q,OAEhB,GAAK4Q,GAAU0F,EAEf,MAAOvK,EAAQuK,EAAK,CAChB,IAAsC,IAAlC1O,EAASgJ,EAAM7E,GAAQA,GAAoB,OAC/CA,GAAS,GAKjB,SAASmjB,EAAIte,EAAOhJ,GAChB,IAAImE,EAAQ,EACRuK,EAAM1F,EAAM5Q,OACZkgC,EAAM,GAEV,IAAKtvB,IAAU0F,EAAO,OAAO4pB,EAE7B,MAAOn0B,EAAQuK,EACX4pB,EAAIn0B,GAASnE,EAASgJ,EAAM7E,GAAQA,GACpCA,GAAS,EAGb,OAAOm0B,EAIX,SAASC,EAAMvvB,EAAOwvB,GAClB,OAAOlR,EAAIte,GAAO,SAAUqvB,GACxB,OAAOA,EAAKG,MAKpB,SAASC,EAAQzvB,GACb,IAAIsvB,EAAM,GAMV,OAJAlB,EAAKpuB,GAAO,SAAUqvB,GACdA,GAAQC,EAAIt6B,KAAKq6B,MAGlBC,EAIX,SAASI,EAAO1vB,GACZ,IAAIsvB,EAAM,GAMV,OAJAlB,EAAKpuB,GAAO,SAAU2vB,GACbhZ,EAAK2Y,EAAKK,IAAOL,EAAIt6B,KAAK26B,MAG5BL,EAIX,SAASM,EAAargC,EAAGC,GACrB,IAAI8/B,EAAM,GAQV,OANAlB,EAAK7+B,GAAG,SAAUogC,GACdvB,EAAK5+B,GAAG,SAAUqgC,GACVF,IAAOE,GAAMP,EAAIt6B,KAAK26B,SAI3BD,EAAOJ,GAIlB,SAASQ,EAAK9vB,EAAOhJ,GACjB,IAAIs4B,EAAM,GASV,OAPAlB,EAAKpuB,GAAO,SAAUqvB,EAAMl0B,GACxB,IAAKnE,EAASq4B,GAEV,OADAC,EAAMtvB,EAAM1O,MAAM6J,IACX,KAIRm0B,EAIX,SAASS,EAAQ/vB,EAAOhJ,GACpB,IAAIg5B,EAAWhwB,EAAM1O,QAAQk6B,UAE7B,OAAOsE,EAAKE,EAAUh5B,GAAUw0B,UAIpC,SAAS2B,EAAO59B,EAAGC,GACf,IAAK,IAAIe,KAAOf,EACRA,EAAE6f,eAAe9e,KAAQhB,EAAEgB,GAAOf,EAAEe,IAG5C,OAAOhB,EAIX,SAAS6nB,EAAK7nB,GACV,IAAI+/B,EAAM,GAEV,IAAK,IAAI/+B,KAAOhB,EACRA,EAAE8f,eAAe9e,IAAQ++B,EAAIt6B,KAAKzE,GAG1C,OAAO++B,EAIX,SAASW,EAAIjwB,EAAOhJ,GAChB,IAAImE,EAAQ,EACRuK,EAAM1F,EAAM5Q,OAEhB,IAAK4Q,IAAU0F,EAAO,OAAO,EAE7B,MAAOvK,EAAQuK,EAAK,CAChB,IAAsC,IAAlC1O,EAASgJ,EAAM7E,GAAQA,GAAmB,OAAO,EACrDA,GAAS,EAGb,OAAO,EAIX,SAAS+0B,EAAQlwB,GACb,IAAIsvB,EAAM,GAMV,OAJAlB,EAAKpuB,GAAO,SAAS2Z,GACjB2V,EAAMA,EAAIzoB,OAAO8S,MAGd2V,EAGX,SAASa,IACL,IAAI9/B,EAAS,EACb,IACIA,EAAOg9B,eAAe,KACxB,MAAOrxB,GACL,MAAkB,eAAXA,EAAE1J,KAEb,OAAO,EAGX,SAAS89B,EAA6BC,GAClC,MAKO,QALAA,EAAU,KAAM,KAAM,CACzB7D,aAAa,EACbG,qBAAsB,EACtBM,sBAAuB,EACvBD,sBAAuB,IAI/B,SAASsD,EAAqBD,GAC1B,IAAIE,GAAS,EAMb,OAHAA,EAASA,GAA8D,MAApDF,EAAU,EAAG,KAAM,CAAE1D,qBAAsB,IAC9D4D,EAASA,GAA8D,OAApDF,EAAU,EAAG,KAAM,CAAE1D,qBAAsB,IAC9D4D,EAASA,GAA8D,QAApDF,EAAU,EAAG,KAAM,CAAE1D,qBAAsB,MACzD4D,IAGLA,EAASA,GAA6F,QAAnFF,EAAU,MAAO,KAAM,CAAErD,sBAAuB,EAAGC,sBAAuB,IAC7FsD,EAASA,GAA6F,UAAnFF,EAAU,MAAO,KAAM,CAAErD,sBAAuB,EAAGC,sBAAuB,IAC7FsD,EAASA,GAA6F,UAAnFF,EAAU,MAAO,KAAM,CAAErD,sBAAuB,EAAGC,sBAAuB,IAC7FsD,EAASA,GAA6F,WAAnFF,EAAU,MAAO,KAAM,CAAErD,sBAAuB,EAAGC,sBAAuB,MACxFsD,IAGLA,EAASA,GAAsE,QAA5DF,EAAU,MAAO,KAAM,CAAE3D,yBAA0B,IACtE6D,EAASA,GAAsE,QAA5DF,EAAU,MAAO,KAAM,CAAE3D,yBAA0B,IACtE6D,EAASA,GAAsE,QAA5DF,EAAU,MAAO,KAAM,CAAE3D,yBAA0B,IACtE6D,EAASA,GAAsE,UAA5DF,EAAU,MAAO,KAAM,CAAE3D,yBAA0B,IACtE6D,EAASA,GAAsE,UAA5DF,EAAU,MAAO,KAAM,CAAE3D,yBAA0B,MACjE6D,IAGLA,EAASA,GAA2D,UAAjDF,EAAU,IAAM,KAAM,CAAE7D,aAAa,IACxD+D,EAASA,GAA4D,SAAlDF,EAAU,IAAM,KAAM,CAAE7D,aAAa,MACnD+D,KAMT,SAASC,IACL,IAEIC,EAFA7wB,EAAO,GAAGtO,MAAMhC,KAAKK,WACrB+gC,EAAW,GA4Bf,GAxBAtC,EAAKxuB,GAAM,SAAU6X,EAAKtc,GACtB,IAAKA,EAAO,CACR,IAAKwW,EAAQ8F,GACT,KAAM,2DAGVgZ,EAAYhZ,EAGG,kBAARA,GAAmC,oBAARA,EAKnB,kBAARA,EAKPtP,EAASsP,IACT0V,EAAOuD,EAAUjZ,GALjBiZ,EAASC,UAAYlZ,EALrBiZ,EAASE,SAAWnZ,MAcvBgZ,IAAcA,EAAUrhC,OACzB,MAAO,GAGXshC,EAASG,mBAAoB,EAE7B,IAAIC,EAAqBxS,EAAImS,GAAW,SAAUM,GAC9C,OAAOA,EAAIn7B,OAAO86B,MAIlBM,EAAcpB,EAAa7E,EAAO2E,EAAOH,EAAMW,EAAQY,GAAqB,UAE5EG,EAAUP,EAASO,QASvB,OAPIA,IACAD,EAAcA,EAAY1/B,MAAM,EAAG2/B,IAGvCP,EAASG,mBAAoB,EAC7BH,EAASM,YAAcA,EAEhB1S,EAAImS,GAAW,SAAUM,GAC5B,OAAOA,EAAIn7B,OAAO86B,MAK1B,SAASQ,IAEL,IAAItxB,EAAO,GAAGtO,MAAMhC,KAAKK,WACrB+gC,EAAWvD,EAAO,GAAIphC,KAAK6J,OAAO9B,UAKlCq9B,EAAiBplC,KAAKolC,iBACtBC,EAAWrlC,KAAKqlC,WAGQ,oBAAjBrlC,KAAKslC,UAA6C,IAAnBtlC,KAAKslC,YAC3CF,EAAiB,EACjBC,EAAW,GAGf,IAAIE,EAAaH,EAAiB,EAI9BI,EAAYvlC,EAAOwlC,SAAS33B,KAAKg0B,IAAIsD,GAAiB,gBACtDM,EAAkBzlC,EAAOwlC,SAAS33B,KAAKg0B,IAAIuD,GAAW,UAG1DhD,EAAKxuB,GAAM,SAAU6X,GACE,kBAARA,GAAmC,oBAARA,EAKnB,kBAARA,EAKPtP,EAASsP,IACT0V,EAAOuD,EAAUjZ,GALjBiZ,EAASC,UAAYlZ,EALrBiZ,EAASE,SAAWnZ,KAc5B,IAAIia,EAAe,CACfC,MAAO,IACPxlC,OAAQ,IACRylC,MAAO,IACPC,KAAM,IACNz7B,MAAO,IACPoC,QAAS,IACTs5B,QAAS,IACTC,aAAc,KAGdC,EAAY,CACZC,OAAQ,YACRN,MAAO,WACPxlC,OAAQ,QACRylC,MAAO,WACPC,KAAM,WACNz7B,MAAO,WACPoC,QAAS,QACTs5B,QAAS,QACTC,aAAc,QACdG,QAAS,OAIbxB,EAAS3F,MAAQA,EAEjB,IAAIoH,EAAU,SAAUnwB,GACpB,OAAO2U,EAAKoU,GAAO,SAAUzgB,GACzB,OAAO0nB,EAAU1nB,GAAM7e,KAAKuW,OAIhCowB,EAAY,IAAIp4B,OAAOskB,EAAIyM,GAAO,SAAUzgB,GAC5C,OAAO0nB,EAAU1nB,GAAMpP,UACxBkI,KAAK,KAAM,KAGdstB,EAASc,SAAWzlC,KAGpB,IAAI6kC,EAAwC,oBAAtBF,EAASE,SAA0BF,EAASE,SAASlhC,MAAMghC,GAAYA,EAASE,SAOlGI,EAAcN,EAASM,YAIvBH,EAAoBH,EAASG,kBAE7BI,EAAUP,EAASO,QAGnBoB,EAAW,GAEVrB,IACGrf,EAAQ+e,EAAS2B,YACjB3B,EAAS2B,SAAW3B,EAAS2B,SAASjvB,KAAK,KAI3CstB,EAAS2B,UACTjE,EAAKsC,EAAS2B,SAASv/B,MAAMs/B,IAAY,SAAUpwB,GAC/C,IAAIsI,EAAO6nB,EAAQnwB,GAEN,WAATsI,GAA8B,YAATA,GAIzB+nB,EAASr9B,KAAKsV,OAM1B,IAAI4jB,EAAaliC,EAAOkiC,aAEnBA,IACDA,EAAa,IAIjBE,EAAKhX,EAAKuX,IAAY,SAAUp+B,GACE,oBAAnBo+B,EAAUp+B,GAQhB29B,EAAW,IAAM39B,KAClB29B,EAAW,IAAM39B,GAAOo+B,EAAUp+B,IAR7B29B,EAAW39B,KACZ29B,EAAW39B,GAAOo+B,EAAUp+B,OAaxC69B,EAAKhX,EAAK8W,EAAWoE,yBAAyB,SAAUjD,GACpDuB,EAAWA,EAASt7B,QAAQ,IAAM+5B,EAAO,IAAKnB,EAAWoE,uBAAuBjD,OAIpF,IAAInD,EAAawE,EAASxE,YAAclgC,EAAO2/B,SAE3C4G,EAAe7B,EAAS6B,aACxBC,EAAY9B,EAAS8B,UACrB7B,EAAYD,EAASC,UACrB8B,EAAc/B,EAAS+B,YACvBjG,EAAckE,EAASlE,YACvBkG,EAAQhC,EAASgC,MAGjBC,EAAuBjC,EAASiC,sBAAwBhC,EAAY,EACpEiC,EAAoBD,EAAuBjC,EAASC,UAAY,EAChEkC,EAAyBD,EAEzBE,EAAWpC,EAASoC,SACpBC,GAAa,EAEbC,EAAWtC,EAASsC,SACpBC,IAAa,EAGb1G,GAAoBmE,EAASnE,kBAC7BM,GAAoB6D,EAAS7D,kBAC7BC,GAAmB4D,EAAS5D,iBAC5BL,GAAWiE,EAASjE,SAExBF,GAAoBA,KAAsB5B,GAAuBE,GAGjE,IAAIqI,GAAOxC,EAASwC,KAEhBvhB,EAAQuhB,MACRA,GAAOA,GAAK9vB,KAAK,MAGR,OAAT8vB,KAAkBjC,GAAW+B,GAAYL,KACzCO,GAAO,OAGE,OAATA,KAA0B,IAATA,IAA0B,SAATA,IAA4B,UAATA,KACrDA,GAAO,UAGE,IAATA,KACAA,GAAO,IAGX,IAAIC,GAAe,SAAU9D,GACzB,OAAOA,EAAK5jC,KAAKynC,KAGjBE,GAAS,QACTC,GAAS,QACTC,GAAQ,OACRC,GAAO,MACPC,GAAO,gBACPC,GAAS,QAETC,GAAYzC,EAAU,GAAKhB,EAAI,CAACmD,GAAQE,GAAOE,IAAOL,IACtDQ,GAAY1D,EAAI,CAACoD,GAAQC,GAAOE,IAAOL,IACvCS,GAAU3D,EAAI,CAACsD,GAAMC,IAAOL,IAC5BU,GAAY5D,EAAI,CAACwD,GAAQD,IAAOL,IAGhCW,GAAYxV,EAAIsS,EAAS99B,MAAMs/B,IAAY,SAAUpwB,EAAO7G,GAC5D,IAAImP,EAAO6nB,EAAQnwB,GAUnB,MAR0B,MAAtBA,EAAM1Q,MAAM,EAAG,KACf0Q,EAAQA,EAAM1Q,MAAM,GAEP,WAATgZ,GAA8B,YAATA,GACrB+nB,EAASr9B,KAAKsV,IAIf,CACHnP,MAAOA,EACP/L,OAAQ4S,EAAM5S,OACd2kC,KAAM,GAGN/xB,MAAiB,WAATsI,EAAoBtI,EAAM1M,QAAQ08B,EAAUC,OAAQ,MAAQjwB,EAGpEsI,KAAiB,WAATA,GAA8B,YAATA,EAAsB,KAAOA,MAK9D0pB,GAAe,CACf74B,MAAO,EACP/L,OAAQ,EACR4S,MAAO,GACP+xB,KAAM,GACNzpB,KAAM,MAGN2pB,GAAS,GAET1B,GACAuB,GAAUtI,UAGd4C,EAAK0F,IAAW,SAAU9xB,GACtB,GAAIA,EAAMsI,KAON,OANI0pB,GAAa1pB,MAAQ0pB,GAAaD,OAClCE,GAAOj/B,KAAKg/B,SAGhBA,GAAehyB,GAKfuwB,EACAyB,GAAaD,KAAO/xB,EAAMA,MAAQgyB,GAAaD,KAE/CC,GAAaD,MAAQ/xB,EAAMA,UAI/BgyB,GAAa1pB,MAAQ0pB,GAAaD,OAClCE,GAAOj/B,KAAKg/B,IAGZzB,GACA0B,GAAOzI,UAKX,IAAI0I,GAActE,EAAa7E,EAAO2E,EAAOD,EAAQF,EAAM0E,GAAQ,WAGnE,IAAKC,GAAY9kC,OACb,OAAOmgC,EAAM0E,GAAQ,QAAQ7wB,KAAK,IAOtC8wB,GAAc5V,EAAI4V,IAAa,SAAUC,EAAYh5B,GAEjD,IAMIi5B,EANAC,EAAel5B,EAAQ,IAAO+4B,GAAY9kC,OAG1CklC,GAAcn5B,EAMdi5B,EADe,UAAfD,GAAyC,WAAfA,EACf1C,EAAgB8C,GAAGJ,GAEnB5C,EAAUgD,GAAGJ,GAG5B,IAAIK,EAAa36B,KAAKuT,MAAMgnB,GACxB1F,EAAe0F,EAAWI,EAE1BxyB,EAAQ2U,EAAKsd,IAAQ,SAAUjyB,GAC/B,OAAOmyB,IAAenyB,EAAMsI,QAoChC,OAjCIgqB,GAAatB,GAAYoB,EAAWpB,IACpCC,IAAa,GAGboB,GAAcvB,GAAYj5B,KAAKg0B,IAAI6C,EAASc,SAAS+C,GAAGJ,IAAerB,IACvEC,GAAa,GAoBbuB,GAA6B,OAAhB7B,GAAwBzwB,EAAM5S,OAAS,IACpDqjC,GAAc,GAIlBlB,EAAUkD,SAASD,EAAYL,GAC/B1C,EAAgBgD,SAASD,EAAYL,GAE9B,CACHC,SAAUA,EACVI,WAAYA,EAGZ9F,aAAc2F,EAAa3F,EAAe,EAC1C2F,WAAYA,EACZC,UAAWA,EACXhqB,KAAM6pB,EAGNO,YAAa1yB,EAAM5S,WAI3B,IAAIulC,GAAcjC,EAAQ74B,KAAKuT,MAAQvT,KAAK+6B,MACxCC,GAAW,SAAUr5B,EAAOs5B,GAC5B,IAAIC,EAASl7B,KAAKm7B,IAAI,GAAIF,GAC1B,OAAOH,GAAYn5B,EAAQu5B,GAAUA,GAGrCE,IAAa,EACbC,IAAU,EAEVC,GAAc,SAAUhB,EAAYh5B,GACpC,IAAIi6B,EAAgB,CAChB5I,YAAaA,EACbK,kBAAmBA,GACnBC,iBAAkBA,GAClBL,SAAUA,GACVF,kBAAmBA,IAiGvB,OA9FIoG,IACIC,GAAqB,GACrBuB,EAAWC,SAAW,EACtBD,EAAWK,WAAa,EACxBL,EAAWzF,aAAe,IAE1B0G,EAAc1I,yBAA2BkG,EACzCuB,EAAWvB,kBAAoBA,IAInCK,KAAeiC,KACXf,EAAWG,WACXH,EAAWK,WAAaxB,EACxBmB,EAAWzF,aAAe,IAE1ByF,EAAWK,WAAa,EACxBL,EAAWzF,aAAe,IAI9BqE,IAAemC,KACXf,EAAWE,YACXF,EAAWK,WAAa1B,EACxBqB,EAAWzF,aAAe,IAE1ByF,EAAWK,WAAa,EACxBL,EAAWzF,aAAe,IAI9ByF,EAAWE,YAAcF,EAAWvB,mBAAqBuB,EAAWvB,kBAAoBuB,EAAWK,WAAW1jC,WAAW1B,QAAU,EAE/HuhC,EAAY,EACZwD,EAAW34B,MAAQq5B,GAASV,EAAWK,WAAY7D,GAC9B,IAAdA,EACPwD,EAAW34B,MAAQm5B,GAAYR,EAAWK,WAAaL,EAAWzF,cAE9DiE,GAEIwB,EAAW34B,MADXk3B,EACmBmC,GAASV,EAAWC,SAAUxB,EAAoBuB,EAAWK,WAAW1jC,WAAW1B,QAEnF+kC,EAAWC,SAG9BD,EAAWK,aACX5B,GAAqBuB,EAAWK,WAAW1jC,WAAW1B,UAG1DgmC,EAAcxI,eAAiB+D,EAG3BwD,EAAW34B,MADXk3B,EACmByB,EAAWK,WAAaK,GAASV,EAAWzF,aAAciC,GAE1DwD,EAAWK,WAAaL,EAAWzF,cAK9DiE,GAAwBwB,EAAWK,YAEnCL,EAAW34B,MAAQ3B,KAAK+6B,MAAMC,GAASV,EAAWK,WAAYL,EAAWvB,kBAAoBuB,EAAWK,WAAW1jC,WAAW1B,SAE9HwjC,GAAqBuB,EAAWK,WAAW1jC,WAAW1B,QAEtD+kC,EAAW34B,MAAQ24B,EAAWK,WAIlCL,EAAWO,YAAc,IAAMjC,GAAewC,MAC9CG,EAAczI,qBAAuBwH,EAAWO,YAE5CQ,IAAWE,EAAc1I,yBAA2ByH,EAAWO,oBACxDU,EAAc1I,2BAIxBuI,KAAed,EAAW34B,MAAQ,GAAc,KAAT03B,IAAiCvc,EAAK0b,EAAU8B,EAAW7pB,OAASqM,EAAKqa,EAAamD,EAAW7pB,SACzI2qB,IAAa,GAGjBd,EAAWkB,eAAiBpJ,EAAakI,EAAW34B,MAAO45B,EAAelJ,GAE1EkJ,EAAc5I,aAAc,EAC5B4I,EAActI,iBAAmB,IACjCqH,EAAWmB,iBAAmBrJ,EAAakI,EAAW34B,MAAO45B,EAAe,MAE7C,IAA3BjB,EAAWO,aAAyC,iBAApBP,EAAW7pB,OAC3C6pB,EAAWoB,iBAAmBtJ,EAAakI,EAAW34B,MAAO,CACzDmxB,qBAAsB,EACtBH,aAAa,GACd,MAAMl7B,MAAM,EAAG,IAGf6iC,GAQX,GAJAD,GAAc5V,EAAI4V,GAAaiB,IAC/BjB,GAAczE,EAAQyE,IAGlBA,GAAY9kC,OAAS,EAAG,CACxB,IAAIomC,GAAW,SAAUlrB,GACrB,OAAOqM,EAAKud,IAAa,SAAUC,GAC/B,OAAOA,EAAW7pB,OAASA,MAI/BmrB,GAAc,SAAUC,GACxB,IAAIC,EAAmBH,GAASE,EAAOprB,MAElCqrB,GAILvH,EAAKsH,EAAOzK,SAAS,SAAUnuB,GAC3B,IAAI84B,EAAmBJ,GAAS14B,EAAOwN,MAElCsrB,GAID7iC,SAAS4iC,EAAiBL,iBAAkB,MAAQx4B,EAAOtB,QAC3Dm6B,EAAiBvB,SAAW,EAC5BuB,EAAiBnB,WAAa,EAC9BmB,EAAiBjH,aAAe,EAChCkH,EAAiBxB,UAAY,EAC7BwB,EAAiBpB,YAAc,EAC/BoB,EAAiBlH,aAAe,EAChCkH,EAAiBN,iBAAmBM,EAAiBpB,WAAW1jC,WAChEokC,IAAU,OAKtB9G,EAAKpD,EAASyK,IAsElB,OAlEIP,KACAD,IAAa,EACbrC,EAAoBC,EACpBqB,GAAc5V,EAAI4V,GAAaiB,IAC/BjB,GAAczE,EAAQyE,MAGtBlD,GAAiBiC,KAAevC,EAASwC,MAcrCQ,KACAQ,GAAcpE,EAAKoE,IAAa,SAAUC,GAKtC,OAAQA,EAAWE,aAAeF,EAAWK,aAAe7d,EAAK0b,EAAU8B,EAAW7pB,UAK1F2mB,GAAWiD,GAAY9kC,SACvB8kC,GAAcA,GAAY5iC,MAAM,EAAG2/B,IAInC0C,IAAaO,GAAY9kC,OAAS,IAClC8kC,GAAcnE,EAAQmE,IAAa,SAAUC,GAKzC,OAAQA,EAAWK,aAAe7d,EAAK0b,EAAU8B,EAAW7pB,QAAU6pB,EAAWG,cAKrFV,KACAM,GAAc5V,EAAI4V,IAAa,SAAUC,EAAYh5B,GACjD,OAAIA,EAAQ,GAAKA,EAAQ+4B,GAAY9kC,OAAS,IAAM+kC,EAAWK,WACpD,KAGJL,KAGXD,GAAczE,EAAQyE,MAItBL,IAAoC,IAAvBK,GAAY9kC,QAAiB8kC,GAAY,GAAGM,aAAiB9B,GAASwB,GAAY,GAAGG,YAAcH,GAAY,GAAGE,SAAWtB,IAC1IoB,GAAc,MAtDlBA,GAAc5V,EAAI4V,IAAa,SAAUC,GACrC,OAAIxd,EAAKqa,GAAa,SAAU6E,GAC5B,OAAO1B,EAAW7pB,OAASurB,KAEpB1B,EAGJ,QAGXD,GAAczE,EAAQyE,KAgDtBrD,EACOqD,IAIX9F,EAAK6F,IAAQ,SAAUjyB,GACnB,IAAIzR,EAAMmhC,EAAa1vB,EAAMsI,MAEzB6pB,EAAaxd,EAAKud,IAAa,SAAUC,GACzC,OAAOA,EAAW7pB,OAAStI,EAAMsI,QAGrC,GAAK/Z,GAAQ4jC,EAAb,CAIA,IAAI2B,EAAS3B,EAAWmB,iBAAiBlpC,MAAM,KAE/C0pC,EAAO,GAAK/iC,SAAS+iC,EAAO,GAAI,IAE5BA,EAAO,GACPA,EAAO,GAAK1I,WAAW,KAAO0I,EAAO,GAAI,IAEzCA,EAAO,GAAK,KAGhB,IAAIC,EAAY7H,EAAWM,kBAAkBj+B,EAAKulC,EAAO,GAAIA,EAAO,IAEhE3H,EAASF,EAAkB19B,EAAK29B,GAEhC8H,GAAgB,EAEhBC,EAAmB,GAGvB7H,EAAKF,EAAWgI,qBAAqB,SAAU5H,GAC3C,IAAIN,EAAQrX,EAAKwX,GAAQ,SAAUH,GAC/B,OAAOA,EAAM1jB,OAASgkB,EAAUhkB,MAAQ0jB,EAAMz9B,MAAQwlC,KAGtD/H,IACAiI,EAAiBjI,EAAM1jB,MAAQ0jB,EAAMA,MAEjC9C,EAAelpB,EAAM+xB,KAAMzF,EAAU/zB,UACrCyH,EAAM+xB,KAAO/xB,EAAM+xB,KAAKz+B,QAAQg5B,EAAU/zB,OAAQyzB,EAAMA,OACxDgI,GAAgB,OAMxBxD,IAAcwD,IACd7H,EAAOtC,KAAKkC,GAEZK,EAAKD,GAAQ,SAAUH,GACnB,OAAIiI,EAAiBjI,EAAM1jB,QAAU0jB,EAAMA,OACnC9C,EAAelpB,EAAM+xB,KAAM/F,EAAMA,aAQrC,EAGA9C,EAAelpB,EAAM+xB,KAAM/F,EAAMA,QAEjChsB,EAAM+xB,KAAO/xB,EAAM+xB,KAAKz+B,QAAQ04B,EAAMA,MAAOiI,EAAiBjI,EAAM1jB,QAC7D,QAHX,UAUZ2pB,GAAS3V,EAAI2V,IAAQ,SAAUjyB,GAC3B,IAAKA,EAAMsI,KACP,OAAOtI,EAAM+xB,KAGjB,IAAII,EAAaxd,EAAKud,IAAa,SAAUC,GACzC,OAAOA,EAAW7pB,OAAStI,EAAMsI,QAGrC,IAAK6pB,EACD,MAAO,GAGX,IAAIgC,EAAM,GAiCV,OA/BI5D,IACA4D,GAAOn0B,EAAM+xB,OAGbzC,GAAc2B,KAAe3B,GAAcyB,KAC3CoD,GAAO,KACPlD,IAAa,EACbF,GAAa,IAGbzB,GAAcyB,IAAezB,GAAc2B,MAC3CkD,GAAO,KACPlD,IAAa,EACbF,GAAa,GAGbzB,IAAe6C,EAAW34B,MAAQ,GAAc,KAAT03B,IAAevc,EAAK0b,EAAU8B,EAAW7pB,OAASqM,EAAKqa,EAAamD,EAAW7pB,SACtH6rB,GAAO,IACP7E,GAAa,GAGE,iBAAftvB,EAAMsI,MAA2B6pB,EAAWoB,iBAC5CY,GAAOhC,EAAWoB,iBAElBY,GAAOhC,EAAWkB,eAGjB9C,IACD4D,GAAOn0B,EAAM+xB,MAGVoC,KAIJlC,GAAO7wB,KAAK,IAAI9N,QAAQ,eAAgB,IAAIA,QAAQ,eAAgB,KAI/E,SAAS8gC,IACL,IAAIrF,EAAMhlC,KAAKylC,SAEXgE,EAAW,SAAkBlrB,GAC7B,OAAOymB,EAAI9U,MAAM3R,IAGjB+rB,EAAY1f,EAAK5qB,KAAKg/B,MAAOyK,GAE7Bc,EAAWlH,EAASrjC,KAAKg/B,MAAOyK,GAGpC,OAAQa,GACJ,IAAK,eACD,MAAO,OACX,IAAK,UACL,IAAK,UACD,MAAO,QACX,IAAK,QACD,MAAO,QACX,IAAK,OACD,GAAIA,IAAcC,EACd,MAAO,OAEf,IAAK,QACD,OAAID,IAAcC,EACP,QAGO,OAAdvqC,KAAKmnC,OACLnnC,KAAKmnC,KAAO,QAGT,oBACX,IAAK,SACD,GAAImD,IAAcC,EACd,MAAO,OAEf,IAAK,QACD,OAAID,IAAcC,EACP,QAGO,OAAdvqC,KAAKmnC,OACLnnC,KAAKmnC,KAAO,QAGT,oBACX,QAKI,OAJkB,OAAdnnC,KAAKmnC,OACLnnC,KAAKmnC,KAAO,QAGT,gCAKnB,SAAS/lB,EAAKqD,GACV,IAAKA,EACD,KAAM,2DAGVA,EAAQghB,SAAS57B,OAAS46B,EAC1BhgB,EAAQghB,SAAStiC,GAAG0G,OAASs7B,EAE7B1gB,EAAQghB,SAAStiC,GAAG0G,OAAO9B,SAAW,CA0BlCo/B,KAAM,KAQNb,SAAU,KAOVpB,QAAS,KAMT+B,SAAU,KAMVF,SAAU,KAQVnC,UAAW,EAMX+B,OAAO,EAKPD,YAAa,KAQbvG,WAAY,KAYZsG,WAAW,EAWXD,cAAc,EAId/F,aAAa,EAQbmG,sBAAsB,EAStB/B,SAAUwF,EAMV7J,mBAAmB,EAWnBM,kBAAmB,IAKnBC,iBAAkB,IAQlBL,SAAU,CAAC,IAGfjc,EAAQ+lB,aAAa,KAAM5H,GAI/B,IAAI6H,EAA0B,SAASnmC,EAAQs7B,EAAQtqB,GACnD,OAAOhR,EAAOg9B,eAAe1B,EAAQtqB,IAGzCspB,EAAsBwF,KAAmCG,EAAqBkG,GAC9E5L,EAA8BD,GAAuByF,EAA6BoG,GAGlF,IAAIC,EAA4B,SAASpmC,EAAQs7B,EAAQtqB,GACrD,GAAsB,qBAAXrQ,QAA0BA,QAAUA,OAAO+6B,MAAQ/6B,OAAO+6B,KAAKC,aACtE,OAAOh7B,OAAO+6B,KAAKC,aAAaL,EAAQtqB,GAASzL,OAAOvF,IAYhE,OARAw6B,EAAwByF,EAAqBmG,GAC7C3L,EAAgCD,GAAyBuF,EAA6BqG,GAGtFtpB,EAAKnhB,GAIEmhB,M,oCCrsDX,IAAIupB,EAAc,EAAQ,QAS1BhrC,EAAOC,QAAU,SAAgB+I,EAAS6pB,EAAQtqB,GAChD,IAAI4U,EAAiB5U,EAASE,OAAO0U,eAChC5U,EAAS6U,QAAWD,IAAkBA,EAAe5U,EAAS6U,QAGjEyV,EAAOmY,EACL,mCAAqCziC,EAAS6U,OAC9C7U,EAASE,OACT,KACAF,EAASD,QACTC,IAPFS,EAAQT,K,qBCdZ,IAAIoF,EAAW,EAAQ,QACnBpK,EAAY,EAAQ,QACpB1D,EAAkB,EAAQ,QAE1BuU,EAAUvU,EAAgB,WAI9BG,EAAOC,QAAU,SAAUoG,EAAG4kC,GAC5B,IACIj7B,EADAC,EAAItC,EAAStH,GAAGkO,YAEpB,YAAa5Q,IAANsM,QAAiDtM,IAA7BqM,EAAIrC,EAASsC,GAAGmE,IAAyB62B,EAAqB1nC,EAAUyM,K,wBCPnG,SAAU7P,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIoL,EAAW,CACXC,EAAG,QACHC,EAAG,QACHC,EAAG,QACHC,GAAI,QACJC,GAAI,QACJC,EAAG,OACHC,EAAG,OACHC,GAAI,OACJC,GAAI,OACJC,EAAG,QACHC,EAAG,QACHC,IAAK,QACLC,EAAG,OACHC,EAAG,QACHC,GAAI,QACJC,GAAI,QACJC,GAAI,QACJC,GAAI,SAGJs+B,EAAK5qC,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,+EAA+EC,MACnF,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,qEAAqEF,MAC3E,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,kBACTC,QAAS,kBACTC,SAAU,+BACVC,QAAS,aACTC,SAAU,+BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,WACNC,EAAG,kBACHC,GAAI,YACJC,EAAG,aACHC,GAAI,YACJC,EAAG,WACHC,GAAI,UACJC,EAAG,UACHC,GAAI,SACJC,EAAG,SACHC,GAAI,QACJC,EAAG,SACHC,GAAI,SAERM,cAAe,0BACfyE,KAAM,SAAUP,GACZ,MAAO,mBAAmBpH,KAAKoH,IAEnC/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,OACAA,EAAO,GACP,QACAA,EAAO,GACP,SAEA,SAGfmB,uBAAwB,wCACxBC,QAAS,SAAUI,GACf,GAAe,IAAXA,EAEA,OAAOA,EAAS,QAEpB,IAAId,EAAIc,EAAS,GACbb,EAAKa,EAAS,IAAOd,EACrBE,EAAIY,GAAU,IAAM,IAAM,KAC9B,OAAOA,GAAU+G,EAAS7H,IAAM6H,EAAS5H,IAAM4H,EAAS3H,KAE5DnB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOooC,M,qBC7GX,IAAIhgC,EAAQ,EAAQ,QAEpBlL,EAAOC,UAAYsF,OAAO4lC,wBAA0BjgC,GAAM,WAGxD,OAAQhL,OAAOiZ,c,oCCJjB,IAAIzI,EAAI,EAAQ,QACZ06B,EAAQ,EAAQ,QAA4B5D,KAC5C6D,EAAyB,EAAQ,QAIrC36B,EAAE,CAAEU,OAAQ,SAAUC,OAAO,EAAMC,OAAQ+5B,EAAuB,SAAW,CAC3E7D,KAAM,WACJ,OAAO4D,EAAM/qC,U,wBCFf,SAAUF,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIgrC,EAAOhrC,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wCAAwCC,MAC5C,KAEJC,YAAa,yCAAyCD,MAClD,KAEJE,SAAU,8BAA8BF,MAAM,KAC9CG,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,gBAAgBJ,MAAM,KACnCK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,sBACNiG,EAAG,WACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,uBAEVxE,cAAe,oBACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,OAAbC,GAAkC,OAAbA,GAAkC,OAAbA,EACnCD,EACa,OAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,OAAbC,GAAkC,OAAbA,EACrBD,EAAO,QADX,GAIXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,IAAIy4B,EAAY,IAAP54B,EAAaE,EACtB,OAAI04B,EAAK,IACE,KACAA,EAAK,IACL,KACAA,EAAK,KACL,KACO,OAAPA,EACA,KACAA,EAAK,KACL,KAEA,MAGfz6B,SAAU,CACNC,QAAS,SACTC,QAAS,SACTC,SAAU,YACVC,QAAS,SACTC,SAAU,YACVC,SAAU,KAEd0C,uBAAwB,iBACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,MACD,OAAOjD,EAAS,IACpB,IAAK,IACD,OAAOA,EAAS,IACpB,IAAK,IACL,IAAK,IACD,OAAOA,EAAS,IACpB,QACI,OAAOA,IAGnB9C,aAAc,CACVC,OAAQ,MACRC,KAAM,MACNC,EAAG,KACHC,GAAI,OACJC,EAAG,OACHC,GAAI,QACJC,EAAG,OACHC,GAAI,QACJC,EAAG,MACHC,GAAI,OACJC,EAAG,OACHC,GAAI,QACJC,EAAG,MACHC,GAAI,UAIZ,OAAO2oC,M,oCC3GX,IAAIzjC,EAAQ,EAAQ,QAUpB7H,EAAOC,QAAU,SAAqBsrC,EAASC,GAE7CA,EAAUA,GAAW,GACrB,IAAI/iC,EAAS,GAETgjC,EAAuB,CAAC,MAAO,SAAU,QACzCC,EAA0B,CAAC,UAAW,OAAQ,QAAS,UACvDC,EAAuB,CACzB,UAAW,mBAAoB,oBAAqB,mBACpD,UAAW,iBAAkB,kBAAmB,UAAW,eAAgB,iBAC3E,iBAAkB,mBAAoB,qBAAsB,aAC5D,mBAAoB,gBAAiB,eAAgB,YAAa,YAClE,aAAc,cAAe,aAAc,oBAEzCC,EAAkB,CAAC,kBAEvB,SAASC,EAAez6B,EAAQ5B,GAC9B,OAAI3H,EAAMikC,cAAc16B,IAAWvJ,EAAMikC,cAAct8B,GAC9C3H,EAAMyV,MAAMlM,EAAQ5B,GAClB3H,EAAMikC,cAAct8B,GACtB3H,EAAMyV,MAAM,GAAI9N,GACd3H,EAAMoe,QAAQzW,GAChBA,EAAO5J,QAET4J,EAGT,SAASu8B,EAAoBjI,GACtBj8B,EAAM6T,YAAY8vB,EAAQ1H,IAEnBj8B,EAAM6T,YAAY6vB,EAAQzH,MACpCr7B,EAAOq7B,GAAQ+H,OAAeloC,EAAW4nC,EAAQzH,KAFjDr7B,EAAOq7B,GAAQ+H,EAAeN,EAAQzH,GAAO0H,EAAQ1H,IAMzDj8B,EAAMoB,QAAQwiC,GAAsB,SAA0B3H,GACvDj8B,EAAM6T,YAAY8vB,EAAQ1H,MAC7Br7B,EAAOq7B,GAAQ+H,OAAeloC,EAAW6nC,EAAQ1H,QAIrDj8B,EAAMoB,QAAQyiC,EAAyBK,GAEvClkC,EAAMoB,QAAQ0iC,GAAsB,SAA0B7H,GACvDj8B,EAAM6T,YAAY8vB,EAAQ1H,IAEnBj8B,EAAM6T,YAAY6vB,EAAQzH,MACpCr7B,EAAOq7B,GAAQ+H,OAAeloC,EAAW4nC,EAAQzH,KAFjDr7B,EAAOq7B,GAAQ+H,OAAeloC,EAAW6nC,EAAQ1H,OAMrDj8B,EAAMoB,QAAQ2iC,GAAiB,SAAe9H,GACxCA,KAAQ0H,EACV/iC,EAAOq7B,GAAQ+H,EAAeN,EAAQzH,GAAO0H,EAAQ1H,IAC5CA,KAAQyH,IACjB9iC,EAAOq7B,GAAQ+H,OAAeloC,EAAW4nC,EAAQzH,QAIrD,IAAIkI,EAAYP,EACbtwB,OAAOuwB,GACPvwB,OAAOwwB,GACPxwB,OAAOywB,GAENK,EAAY1mC,OACbmmB,KAAK6f,GACLpwB,OAAO5V,OAAOmmB,KAAK8f,IACnBrgB,QAAO,SAAyBtmB,GAC/B,OAAmC,IAA5BmnC,EAAUruB,QAAQ9Y,MAK7B,OAFAgD,EAAMoB,QAAQgjC,EAAWF,GAElBtjC,I,wBCjFP,SAAUtI,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;SAASoE,EAAUC,EAAQC,EAAeC,GACtC,IAAIE,EAASJ,EAAS,IACtB,OAAQE,GACJ,IAAK,KAQD,OANIE,GADW,IAAXJ,EACU,UACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,UAEA,UAEPI,EACX,IAAK,IACD,OAAOH,EAAgB,eAAiB,eAC5C,IAAK,KAQD,OANIG,GADW,IAAXJ,EACU,SACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,SAEA,SAEPI,EACX,IAAK,IACD,OAAOH,EAAgB,YAAc,cACzC,IAAK,KAQD,OANIG,GADW,IAAXJ,EACU,MACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,OAEA,OAEPI,EACX,IAAK,KAMD,OAJIA,GADW,IAAXJ,EACU,MAEA,OAEPI,EACX,IAAK,KAQD,OANIA,GADW,IAAXJ,EACU,SACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,UAEA,UAEPI,EACX,IAAK,KAQD,OANIA,GADW,IAAXJ,EACU,SACQ,IAAXA,GAA2B,IAAXA,GAA2B,IAAXA,EAC7B,SAEA,SAEPI,GAInB,IAAImnC,EAAK5rC,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,CACJyJ,OAAQ,oGAAoGxJ,MACxG,KAEJsK,WAAY,gGAAgGtK,MACxG,MAGRC,YAAa,+DAA+DD,MACxE,KAEJsC,kBAAkB,EAClBpC,SAAU,4DAA4DF,MAClE,KAEJG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,eACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,eACTC,QAAS,eACTC,SAAU,WACN,OAAQpB,KAAKyR,OACT,KAAK,EACD,MAAO,wBACX,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,sBACX,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,oBAGnBpQ,QAAS,eACTC,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACD,MAAO,6BACX,KAAK,EACD,MAAO,4BACX,KAAK,EACD,MAAO,2BACX,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,yBAGnBlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,WACNC,EAAG,cACHC,GAAIyC,EACJxC,EAAGwC,EACHvC,GAAIuC,EACJtC,EAAGsC,EACHrC,GAAIqC,EACJpC,EAAG,MACHC,GAAImC,EACJlC,EAAG,SACHC,GAAIiC,EACJhC,EAAG,SACHC,GAAI+B,GAERJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOopC,M,uBClKX,IAAIjnC,EAAkB,EAAQ,QAC1B6I,EAAW,EAAQ,QACnBq+B,EAAkB,EAAQ,QAG1BC,EAAe,SAAUC,GAC3B,OAAO,SAAUC,EAAOC,EAAIh0B,GAC1B,IAGIzI,EAHAzJ,EAAIpB,EAAgBqnC,GACpB5oC,EAASoK,EAASzH,EAAE3C,QACpB+L,EAAQ08B,EAAgB5zB,EAAW7U,GAIvC,GAAI2oC,GAAeE,GAAMA,GAAI,MAAO7oC,EAAS+L,EAG3C,GAFAK,EAAQzJ,EAAEoJ,KAENK,GAASA,EAAO,OAAO,OAEtB,KAAMpM,EAAS+L,EAAOA,IAC3B,IAAK48B,GAAe58B,KAASpJ,IAAMA,EAAEoJ,KAAW88B,EAAI,OAAOF,GAAe58B,GAAS,EACnF,OAAQ48B,IAAgB,IAI9BrsC,EAAOC,QAAU,CAGfwd,SAAU2uB,GAAa,GAGvBzuB,QAASyuB,GAAa,K,oCC7BxB,IAAI17B,EAAI,EAAQ,QACZ87B,EAAU,EAAQ,QAAgCrhB,OAClDshB,EAA+B,EAAQ,QACvC37B,EAA0B,EAAQ,QAElC47B,EAAsBD,EAA6B,UAEnDv7B,EAAiBJ,EAAwB,UAK7CJ,EAAE,CAAEU,OAAQ,QAASC,OAAO,EAAMC,QAASo7B,IAAwBx7B,GAAkB,CACnFia,OAAQ,SAAgB3Z,GACtB,OAAOg7B,EAAQnsC,KAAMmR,EAAYvN,UAAUP,OAAS,EAAIO,UAAU,QAAKN,O,oCCd3E,IAAIyR,EAAO,EAAQ,QACfu3B,EAAW,EAAQ,QACnBC,EAA+B,EAAQ,QACvCz3B,EAAwB,EAAQ,QAChCrH,EAAW,EAAQ,QACnB++B,EAAiB,EAAQ,QACzBx3B,EAAoB,EAAQ,QAIhCrV,EAAOC,QAAU,SAAc6sC,GAC7B,IAOIppC,EAAQqB,EAAQ+Q,EAAMF,EAAU3C,EAAMnD,EAPtCzJ,EAAIsmC,EAASG,GACb78B,EAAmB,mBAAR5P,KAAqBA,KAAO6S,MACvC65B,EAAkB9oC,UAAUP,OAC5BspC,EAAQD,EAAkB,EAAI9oC,UAAU,QAAKN,EAC7CspC,OAAoBtpC,IAAVqpC,EACVE,EAAiB73B,EAAkBhP,GACnCoJ,EAAQ,EAIZ,GAFIw9B,IAASD,EAAQ53B,EAAK43B,EAAOD,EAAkB,EAAI9oC,UAAU,QAAKN,EAAW,SAE3DA,GAAlBupC,GAAiCj9B,GAAKiD,OAASiC,EAAsB+3B,GAWvE,IAFAxpC,EAASoK,EAASzH,EAAE3C,QACpBqB,EAAS,IAAIkL,EAAEvM,GACTA,EAAS+L,EAAOA,IACpBK,EAAQm9B,EAAUD,EAAM3mC,EAAEoJ,GAAQA,GAASpJ,EAAEoJ,GAC7Co9B,EAAe9nC,EAAQ0K,EAAOK,QAThC,IAHA8F,EAAWs3B,EAAetpC,KAAKyC,GAC/B4M,EAAO2C,EAAS3C,KAChBlO,EAAS,IAAIkL,IACL6F,EAAO7C,EAAKrP,KAAKgS,IAAW/F,KAAMJ,IACxCK,EAAQm9B,EAAUL,EAA6Bh3B,EAAUo3B,EAAO,CAACl3B,EAAKhG,MAAOL,IAAQ,GAAQqG,EAAKhG,MAClG+8B,EAAe9nC,EAAQ0K,EAAOK,GAWlC,OADA/K,EAAOrB,OAAS+L,EACT1K,I,oCCtCT,IAAI2L,EAAI,EAAQ,QACZnN,EAAY,EAAQ,QACpBopC,EAAW,EAAQ,QACnBzhC,EAAQ,EAAQ,QAChB2F,EAAsB,EAAQ,QAE9B9Q,EAAO,GACPotC,EAAaptC,EAAKogC,KAGlBiN,EAAqBliC,GAAM,WAC7BnL,EAAKogC,UAAKx8B,MAGR0pC,EAAgBniC,GAAM,WACxBnL,EAAKogC,KAAK,SAGRlvB,EAAgBJ,EAAoB,QAEpCyJ,EAAS8yB,IAAuBC,IAAkBp8B,EAItDP,EAAE,CAAEU,OAAQ,QAASC,OAAO,EAAMC,OAAQgJ,GAAU,CAClD6lB,KAAM,SAAcmN,GAClB,YAAqB3pC,IAAd2pC,EACHH,EAAWvpC,KAAK+oC,EAAStsC,OACzB8sC,EAAWvpC,KAAK+oC,EAAStsC,MAAOkD,EAAU+pC,Q,sBCxBhD,SAAUntC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIgoB,EAAKhoB,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,yFAAyFC,MAC7F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,6CAA6CF,MAAM,KAC7DG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,4BACLC,KAAM,mCAEV4B,cAAe,wBACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,SAAbC,EACOD,EACa,UAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,SAAbC,GAAoC,UAAbA,EACvBD,EAAO,QADX,GAIXC,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,GACD,OACAA,EAAQ,GACR,QACAA,EAAQ,GACR,OAEA,SAGfpJ,SAAU,CACNC,QAAS,sBACTC,QAAS,mBACTC,SAAU,kBACVC,QAAS,qBACTC,SAAU,uBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,eACNC,EAAG,iBACHC,GAAI,WACJC,EAAG,UACHC,GAAI,WACJC,EAAG,QACHC,GAAI,SACJC,EAAG,SACHC,GAAI,UACJC,EAAG,UACHC,GAAI,WACJC,EAAG,UACHC,GAAI,YAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOwlB,M,uBCpFX,IAAInb,EAAY,EAAQ,QAEpBe,EAAMC,KAAKD,IAIflO,EAAOC,QAAU,SAAUyjB,GACzB,OAAOA,EAAW,EAAIxV,EAAIf,EAAUuW,GAAW,kBAAoB,I,sBCHnE,SAAUvjB,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIG,EAAS,CACL,SACA,UACA,QACA,UACA,YACA,YACA,OACA,SACA,eACA,mBACA,UACA,WAEJE,EAAc,CACV,MACA,QACA,OACA,MACA,OACA,QACA,OACA,MACA,OACA,OACA,OACA,QAEJC,EAAW,CACP,eACA,WACA,WACA,cACA,YACA,YACA,eAEJC,EAAgB,CAAC,OAAQ,OAAQ,QAAS,OAAQ,OAAQ,QAAS,QACnEC,EAAc,CAAC,KAAM,KAAM,KAAM,KAAM,KAAM,IAAK,MAElDysC,EAAKjtC,EAAOE,aAAa,KAAM,CAC/BC,OAAQA,EACRE,YAAaA,EACbqC,kBAAkB,EAClBpC,SAAUA,EACVC,cAAeA,EACfC,YAAaA,EACbC,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,kBACTC,SAAU,eACVC,QAAS,eACTC,SAAU,2BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,OACRC,KAAM,YACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,UACHC,GAAI,aACJC,EAAG,iBACHC,GAAI,oBACJC,EAAG,KACHC,GAAI,QACJC,EAAG,KACHC,GAAI,YACJC,EAAG,SACHC,GAAI,aAER2B,uBAAwB,mBACxBC,QAAS,SAAUI,GACf,IAAIR,EAAoB,IAAXQ,EAAe,IAAMA,EAAS,KAAO,EAAI,KAAO,KAC7D,OAAOA,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOyqC,M,mBCvGX,IAAI5pB,EAAiB,GAAGA,eAExB3jB,EAAOC,QAAU,SAAUyF,EAAIb,GAC7B,OAAO8e,EAAe/f,KAAK8B,EAAIb,K,kCCDjC,IAAIgD,EAAQ,EAAQ,QAChB2lC,EAAgB,EAAQ,QACxBC,EAAW,EAAQ,QACnBrlC,EAAW,EAAQ,QAKvB,SAASslC,EAA6BjlC,GAChCA,EAAOklC,aACTllC,EAAOklC,YAAYC,mBAUvB5tC,EAAOC,QAAU,SAAyBwI,GACxCilC,EAA6BjlC,GAG7BA,EAAOgT,QAAUhT,EAAOgT,SAAW,GAGnChT,EAAOoB,KAAO2jC,EACZ/kC,EAAOoB,KACPpB,EAAOgT,QACPhT,EAAOsT,kBAITtT,EAAOgT,QAAU5T,EAAMyV,MACrB7U,EAAOgT,QAAQ4B,QAAU,GACzB5U,EAAOgT,QAAQhT,EAAOE,SAAW,GACjCF,EAAOgT,SAGT5T,EAAMoB,QACJ,CAAC,SAAU,MAAO,OAAQ,OAAQ,MAAO,QAAS,WAClD,SAA2BN,UAClBF,EAAOgT,QAAQ9S,MAI1B,IAAIiT,EAAUnT,EAAOmT,SAAWxT,EAASwT,QAEzC,OAAOA,EAAQnT,GAAQc,MAAK,SAA6BhB,GAUvD,OATAmlC,EAA6BjlC,GAG7BF,EAASsB,KAAO2jC,EACdjlC,EAASsB,KACTtB,EAASkT,QACThT,EAAOmU,mBAGFrU,KACN,SAA4BslC,GAc7B,OAbKJ,EAASI,KACZH,EAA6BjlC,GAGzBolC,GAAUA,EAAOtlC,WACnBslC,EAAOtlC,SAASsB,KAAO2jC,EACrBK,EAAOtlC,SAASsB,KAChBgkC,EAAOtlC,SAASkT,QAChBhT,EAAOmU,qBAKN7T,QAAQ8pB,OAAOgb,Q,sBCvExB,SAAU1tC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIG,EAAS,CACL,QACA,QACA,OACA,QACA,MACA,MACA,SACA,OACA,QACA,SACA,QACA,SAEJ0lC,EAAO,CAAC,QAAS,MAAO,OAAQ,MAAO,SAAU,OAAQ,QAEzD2H,EAAKxtC,EAAOE,aAAa,KAAM,CAC/BC,OAAQA,EACRE,YAAaF,EACbG,SAAUulC,EACVtlC,cAAeslC,EACfrlC,YAAaqlC,EACbplC,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEV4B,cAAe,UACfyE,KAAM,SAAUP,GACZ,MAAO,QAAUA,GAErB/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,GACA,MAEJ,OAEX7B,SAAU,CACNC,QAAS,eACTC,QAAS,eACTC,SAAU,iBACVC,QAAS,sBACTC,SAAU,yBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,SACNC,EAAG,YACHC,GAAI,WACJC,EAAG,UACHC,GAAI,SACJC,EAAG,YACHC,GAAI,WACJC,EAAG,SACHC,GAAI,QACJC,EAAG,UACHC,GAAI,SACJC,EAAG,UACHC,GAAI,UAERoR,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhCoK,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhChH,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOgrC,M,wBCtFT,SAAU3tC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI2B,EAAK3B,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,mHAAmHC,MACvH,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,sEAAsEF,MAC5E,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,cACJC,IAAK,qBACLC,KAAM,4BAEVC,SAAU,CACNC,QAAS,mBACTC,QAAS,kBACTC,SAAU,gBACVC,QAAS,iBACTC,SAAU,8BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,iBACNC,EAAG,qBACHC,GAAI,cACJC,EAAG,SACHC,GAAI,aACJC,EAAG,SACHC,GAAI,aACJC,EAAG,UACHC,GAAI,cACJC,EAAG,UACHC,GAAI,cACJC,EAAG,UACHC,GAAI,eAERM,cAAe,mCACfG,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,GACD,UACAA,EAAQ,GACR,QACAA,EAAQ,GACR,aAEA,WAGfxH,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,YAAbC,EACOD,EACa,UAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,eAAbC,GAA0C,YAAbA,EACvB,IAATD,EACO,EAEJA,EAAO,QAJX,GAOXmB,uBAAwB,UACxBC,QAAS,KACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOb,M,kCC1FX,IAAIwL,EAAgC,EAAQ,QACxCE,EAAW,EAAQ,QACnBg/B,EAAW,EAAQ,QACnB7+B,EAAW,EAAQ,QACnBX,EAAY,EAAQ,QACpBC,EAAyB,EAAQ,QACjCS,EAAqB,EAAQ,QAC7BkgC,EAAa,EAAQ,QAErB/zB,EAAM7L,KAAK6L,IACX9L,EAAMC,KAAKD,IACXwT,EAAQvT,KAAKuT,MACbssB,EAAuB,4BACvBC,EAAgC,oBAEhCC,EAAgB,SAAUxoC,GAC5B,YAAc/B,IAAP+B,EAAmBA,EAAKxF,OAAOwF,IAIxC+H,EAA8B,UAAW,GAAG,SAAU0gC,EAASC,EAAe3/B,EAAiBo/B,GAC7F,IAAIQ,EAA+CR,EAAOQ,6CACtDC,EAAmBT,EAAOS,iBAC1BC,EAAoBF,EAA+C,IAAM,KAE7E,MAAO,CAGL,SAAiBG,EAAaC,GAC5B,IAAIpoC,EAAI+G,EAAuB/M,MAC3BquC,OAA0B/qC,GAAf6qC,OAA2B7qC,EAAY6qC,EAAYL,GAClE,YAAoBxqC,IAAb+qC,EACHA,EAAS9qC,KAAK4qC,EAAanoC,EAAGooC,GAC9BL,EAAcxqC,KAAK1D,OAAOmG,GAAImoC,EAAaC,IAIjD,SAAU9+B,EAAQ8+B,GAChB,IACIJ,GAAgDC,GACzB,kBAAjBG,IAA0E,IAA7CA,EAAa9wB,QAAQ4wB,GAC1D,CACA,IAAI3+B,EAAMnB,EAAgB2/B,EAAez+B,EAAQtP,KAAMouC,GACvD,GAAI7+B,EAAIC,KAAM,OAAOD,EAAIE,MAG3B,IAAIC,EAAKpC,EAASgC,GACdK,EAAI9P,OAAOG,MAEXsuC,EAA4C,oBAAjBF,EAC1BE,IAAmBF,EAAevuC,OAAOuuC,IAE9C,IAAItuC,EAAS4P,EAAG5P,OAChB,GAAIA,EAAQ,CACV,IAAIyuC,EAAc7+B,EAAGX,QACrBW,EAAGhB,UAAY,EAEjB,IAAI8/B,EAAU,GACd,MAAO,EAAM,CACX,IAAI9pC,EAASgpC,EAAWh+B,EAAIC,GAC5B,GAAe,OAAXjL,EAAiB,MAGrB,GADA8pC,EAAQvlC,KAAKvE,IACR5E,EAAQ,MAEb,IAAI2uC,EAAW5uC,OAAO6E,EAAO,IACZ,KAAb+pC,IAAiB/+B,EAAGhB,UAAYlB,EAAmBmC,EAAGlC,EAASiC,EAAGhB,WAAY6/B,IAKpF,IAFA,IAAIG,EAAoB,GACpBC,EAAqB,EAChBx+B,EAAI,EAAGA,EAAIq+B,EAAQnrC,OAAQ8M,IAAK,CACvCzL,EAAS8pC,EAAQr+B,GAUjB,IARA,IAAIy+B,EAAU/uC,OAAO6E,EAAO,IACxBmb,EAAWlG,EAAI9L,EAAIf,EAAUpI,EAAO0K,OAAQO,EAAEtM,QAAS,GACvDwrC,EAAW,GAMNC,EAAI,EAAGA,EAAIpqC,EAAOrB,OAAQyrC,IAAKD,EAAS5lC,KAAK4kC,EAAcnpC,EAAOoqC,KAC3E,IAAIC,EAAgBrqC,EAAOsqC,OAC3B,GAAIV,EAAmB,CACrB,IAAIW,EAAe,CAACL,GAAS9zB,OAAO+zB,EAAUhvB,EAAUlQ,QAClCrM,IAAlByrC,GAA6BE,EAAahmC,KAAK8lC,GACnD,IAAIG,EAAcrvC,OAAOuuC,EAAazqC,WAAML,EAAW2rC,SAEvDC,EAAcC,EAAgBP,EAASj/B,EAAGkQ,EAAUgvB,EAAUE,EAAeX,GAE3EvuB,GAAY8uB,IACdD,GAAqB/+B,EAAEpK,MAAMopC,EAAoB9uB,GAAYqvB,EAC7DP,EAAqB9uB,EAAW+uB,EAAQvrC,QAG5C,OAAOqrC,EAAoB/+B,EAAEpK,MAAMopC,KAKvC,SAASQ,EAAgBP,EAAS1hC,EAAK2S,EAAUgvB,EAAUE,EAAeG,GACxE,IAAIE,EAAUvvB,EAAW+uB,EAAQvrC,OAC7BxB,EAAIgtC,EAASxrC,OACbgsC,EAAUzB,EAKd,YAJsBtqC,IAAlByrC,IACFA,EAAgBzC,EAASyC,GACzBM,EAAU1B,GAELI,EAAcxqC,KAAK2rC,EAAaG,GAAS,SAAUtoC,EAAOuoC,GAC/D,IAAIC,EACJ,OAAQD,EAAGvb,OAAO,IAChB,IAAK,IAAK,MAAO,IACjB,IAAK,IAAK,OAAO6a,EACjB,IAAK,IAAK,OAAO1hC,EAAI3H,MAAM,EAAGsa,GAC9B,IAAK,IAAK,OAAO3S,EAAI3H,MAAM6pC,GAC3B,IAAK,IACHG,EAAUR,EAAcO,EAAG/pC,MAAM,GAAI,IACrC,MACF,QACE,IAAInB,GAAKkrC,EACT,GAAU,IAANlrC,EAAS,OAAO2C,EACpB,GAAI3C,EAAIvC,EAAG,CACT,IAAIiD,EAAIuc,EAAMjd,EAAI,IAClB,OAAU,IAANU,EAAgBiC,EAChBjC,GAAKjD,OAA8ByB,IAApBurC,EAAS/pC,EAAI,GAAmBwqC,EAAGvb,OAAO,GAAK8a,EAAS/pC,EAAI,GAAKwqC,EAAGvb,OAAO,GACvFhtB,EAETwoC,EAAUV,EAASzqC,EAAI,GAE3B,YAAmBd,IAAZisC,EAAwB,GAAKA,U,wBC9HxC,SAAUzvC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIwJ,EAAiB,8DAA8DpJ,MAC3E,KAEJC,EAAc,kDAAkDD,MAAM,KACtEqJ,EAAc,CACV,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,SAEJC,EAAc,mLAEd6lC,EAAOvvC,EAAOE,aAAa,QAAS,CACpCC,OAAQ,2FAA2FC,MAC/F,KAEJC,YAAa,SAAUuB,EAAGgI,GACtB,OAAKhI,EAEM,QAAQnC,KAAKmK,GACbvJ,EAAYuB,EAAEiI,SAEdL,EAAe5H,EAAEiI,SAJjBL,GAOfE,YAAaA,EACbI,iBAAkBJ,EAClBK,kBAAmB,+FACnBC,uBAAwB,0FACxBP,YAAaA,EACbQ,gBAAiBR,EACjBS,iBAAkBT,EAClBnJ,SAAU,uDAAuDF,MAAM,KACvEG,cAAe,qCAAqCH,MAAM,KAC1DI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,wBACJC,IAAK,+BACLC,KAAM,sCAEVC,SAAU,CACNC,QAAS,WACL,MAAO,aAAgC,IAAjBlB,KAAKqK,QAAgB,IAAM,IAAM,QAE3DlJ,QAAS,WACL,MAAO,gBAAmC,IAAjBnB,KAAKqK,QAAgB,IAAM,IAAM,QAE9DjJ,SAAU,WACN,MAAO,cAAiC,IAAjBpB,KAAKqK,QAAgB,IAAM,IAAM,QAE5DhJ,QAAS,WACL,MAAO,cAAiC,IAAjBrB,KAAKqK,QAAgB,IAAM,IAAM,QAE5D/I,SAAU,WACN,MACI,0BACkB,IAAjBtB,KAAKqK,QAAgB,IAAM,IAC5B,QAGR9I,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,UACNC,EAAG,gBACHC,GAAI,cACJC,EAAG,YACHC,GAAI,aACJC,EAAG,WACHC,GAAI,WACJC,EAAG,SACHC,GAAI,UACJoI,EAAG,aACHC,GAAI,aACJpI,EAAG,SACHC,GAAI,WACJC,EAAG,SACHC,GAAI,WAER2B,uBAAwB,WACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+sC,M,qBClHX,IAAI5oB,EAAU,EAAQ,QAClBiD,EAAQ,EAAQ,SAEnBlqB,EAAOC,QAAU,SAAU4E,EAAKiL,GAC/B,OAAOoa,EAAMrlB,KAASqlB,EAAMrlB,QAAiBlB,IAAVmM,EAAsBA,EAAQ,MAChE,WAAY,IAAIxG,KAAK,CACtB4X,QAAS,QACT4uB,KAAM7oB,EAAU,OAAS,SACzB8oB,UAAW,0C,uBCRb,IAAIn9B,EAAa,EAAQ,QACrBo9B,EAA4B,EAAQ,QACpCC,EAA8B,EAAQ,QACtCtiC,EAAW,EAAQ,QAGvB3N,EAAOC,QAAU2S,EAAW,UAAW,YAAc,SAAiBlN,GACpE,IAAIgmB,EAAOskB,EAA0B7qC,EAAEwI,EAASjI,IAC5CylC,EAAwB8E,EAA4B9qC,EACxD,OAAOgmC,EAAwBzf,EAAKvQ,OAAOgwB,EAAsBzlC,IAAOgmB,I,wBCHxE,SAAUvrB,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI4vC,EAAM5vC,EAAOE,aAAa,MAAO,CACjCC,OAAQ,0FAA0FC,MAC9F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,kDAAkDF,MAAM,KAClEG,cAAe,iCAAiCH,MAAM,KACtDI,YAAa,yBAAyBJ,MAAM,KAC5CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,gBACTC,SAAU,gBACVC,QAAS,oBACTC,SAAU,+BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,WACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,aACHC,GAAI,YACJC,EAAG,WACHC,GAAI,UACJC,EAAG,YACHC,GAAI,WACJC,EAAG,YACHC,GAAI,WACJC,EAAG,YACHC,GAAI,YAER2B,uBAAwB,uBACxBC,QAAS,SAAUI,GACf,IAAIb,EAAIa,EAAS,GACbR,EACgC,OAAxBQ,EAAS,IAAO,IACd,KACM,IAANb,EACA,KACM,IAANA,EACA,KACM,IAANA,EACA,KACA,KACd,OAAOa,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOotC,M,mBC1EXlwC,EAAOC,QAAU,iD,uBCFjB,IAAImN,EAAyB,EAAQ,QACjC+iC,EAAc,EAAQ,QAEtBC,EAAa,IAAMD,EAAc,IACjCE,EAAQ/hC,OAAO,IAAM8hC,EAAaA,EAAa,KAC/CE,EAAQhiC,OAAO8hC,EAAaA,EAAa,MAGzChE,EAAe,SAAUmE,GAC3B,OAAO,SAAUjE,GACf,IAAIz9B,EAAS3O,OAAOkN,EAAuBk/B,IAG3C,OAFW,EAAPiE,IAAU1hC,EAASA,EAAOjF,QAAQymC,EAAO,KAClC,EAAPE,IAAU1hC,EAASA,EAAOjF,QAAQ0mC,EAAO,KACtCzhC,IAIX7O,EAAOC,QAAU,CAGfsZ,MAAO6yB,EAAa,GAGpB5yB,IAAK4yB,EAAa,GAGlB5E,KAAM4E,EAAa,K,wBCtBnB,SAAUjsC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIG,EAAS,CACL,WACA,aACA,SACA,WACA,KACA,OACA,SACA,WACA,eACA,aACA,aACA,cAEJG,EAAW,CACP,WACA,OACA,WACA,OACA,aACA,SACA,YAGJ4vC,EAAKlwC,EAAOE,aAAa,KAAM,CAC/BC,OAAQA,EACRE,YAAaF,EACbG,SAAUA,EACVC,cAAeD,EACfE,YAAa,qCAAqCJ,MAAM,KACxDK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,WACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEV4B,cAAe,QACfyE,KAAM,SAAUP,GACZ,MAAO,OAASA,GAEpB/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,GACA,KAEA,MAGf7B,SAAU,CACNC,QAAS,cACTC,QAAS,cACTC,SAAU,UACVC,QAAS,cACTC,SAAU,qBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,cACRC,KAAM,YACNC,EAAG,iBACHC,GAAI,cACJC,EAAG,WACHC,GAAI,YACJC,EAAG,aACHC,GAAI,cACJC,EAAG,WACHC,GAAI,YACJC,EAAG,SACHC,GAAI,UACJC,EAAG,WACHC,GAAI,aAERoR,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhCoK,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhChH,KAAM,CACFC,IAAK,EACLC,IAAK,MAIb,OAAO0tC,M,uBClGX,IAAI9iC,EAAW,EAAQ,QAEvB1N,EAAOC,QAAU,SAAUyF,GACzB,GAAIgI,EAAShI,GACX,MAAMwM,UAAU,iDAChB,OAAOxM,I,wBCDT,SAAUvF,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIoL,EAAW,CACXC,EAAG,QACHC,EAAG,QACHC,EAAG,QACHC,GAAI,QACJC,GAAI,QACJC,EAAG,OACHC,EAAG,OACHC,GAAI,OACJC,GAAI,OACJC,EAAG,QACHC,EAAG,QACHC,IAAK,QACLC,EAAG,OACHC,EAAG,QACHC,GAAI,QACJC,GAAI,QACJC,GAAI,QACJC,GAAI,SAGJ6jC,EAAKnwC,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,+EAA+EC,MACnF,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,wDAAwDF,MAC9D,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,mBACTC,QAAS,mBACTC,SAAU,2BACVC,QAAS,YACTC,SAAU,0BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,QACNC,EAAG,iBACHE,EAAG,YACHC,GAAI,WACJC,EAAG,YACHC,GAAI,WACJC,EAAG,UACHC,GAAI,SACJC,EAAG,SACHC,GAAI,QACJC,EAAG,UACHC,GAAI,UAER4B,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,KACL,IAAK,KACD,OAAOjD,EACX,QACI,GAAe,IAAXA,EAEA,OAAOA,EAAS,QAEpB,IAAId,EAAIc,EAAS,GACbb,EAAKa,EAAS,IAAOd,EACrBE,EAAIY,GAAU,IAAM,IAAM,KAC9B,OAAOA,GAAU+G,EAAS7H,IAAM6H,EAAS5H,IAAM4H,EAAS3H,MAGpEnB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO2tC,M,wBC9FT,SAAUtwC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIowC,EAAc,gEAAgEhwC,MAC9E,KAEJ,SAASgE,EAAUC,EAAQC,EAAeC,EAAKC,GAC3C,IAAI6P,EAAMhQ,EACV,OAAQE,GACJ,IAAK,IACD,OAAOC,GAAYF,EACb,mBACA,oBACV,IAAK,KACD,OAAO+P,GAAO7P,GAAYF,GACpB,aACA,cACV,IAAK,IACD,MAAO,OAASE,GAAYF,EAAgB,QAAU,UAC1D,IAAK,KACD,OAAO+P,GAAO7P,GAAYF,EAAgB,QAAU,UACxD,IAAK,IACD,MAAO,OAASE,GAAYF,EAAgB,OAAS,UACzD,IAAK,KACD,OAAO+P,GAAO7P,GAAYF,EAAgB,OAAS,UACvD,IAAK,IACD,MAAO,OAASE,GAAYF,EAAgB,OAAS,UACzD,IAAK,KACD,OAAO+P,GAAO7P,GAAYF,EAAgB,OAAS,UACvD,IAAK,IACD,MAAO,OAASE,GAAYF,EAAgB,SAAW,YAC3D,IAAK,KACD,OAAO+P,GAAO7P,GAAYF,EAAgB,SAAW,YACzD,IAAK,IACD,MAAO,OAASE,GAAYF,EAAgB,MAAQ,QACxD,IAAK,KACD,OAAO+P,GAAO7P,GAAYF,EAAgB,MAAQ,QAE1D,MAAO,GAEX,SAAShC,EAAKkC,GACV,OACKA,EAAW,GAAK,WACjB,IACA4rC,EAAYrwC,KAAKyR,OACjB,aAIR,IAAI6+B,EAAKrwC,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,oGAAoGC,MACxG,KAEJC,YAAa,iEAAiED,MAC1E,KAEJsC,kBAAkB,EAClBpC,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,gCAAgCH,MAAM,KACrDI,YAAa,qBAAqBJ,MAAM,KACxCK,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,cACHC,GAAI,gBACJC,IAAK,qBACLC,KAAM,4BAEV4B,cAAe,SACfyE,KAAM,SAAUP,GACZ,MAAyC,MAAlCA,EAAMitB,OAAO,GAAGxrB,eAE3BxF,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,IACW,IAAZpH,EAAmB,KAAO,MAEd,IAAZA,EAAmB,KAAO,MAGzChC,SAAU,CACNC,QAAS,gBACTC,QAAS,oBACTC,SAAU,WACN,OAAOmB,EAAKgB,KAAKvD,MAAM,IAE3BqB,QAAS,oBACTC,SAAU,WACN,OAAOiB,EAAKgB,KAAKvD,MAAM,IAE3BuB,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,KACNC,EAAG0C,EACHzC,GAAIyC,EACJxC,EAAGwC,EACHvC,GAAIuC,EACJtC,EAAGsC,EACHrC,GAAIqC,EACJpC,EAAGoC,EACHnC,GAAImC,EACJlC,EAAGkC,EACHjC,GAAIiC,EACJhC,EAAGgC,EACH/B,GAAI+B,GAERJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO6tC,M,wBCxHT,SAAUxwC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIswC,EAAOtwC,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wCAAwCC,MAC5C,KAEJC,YAAa,yCAAyCD,MAClD,KAEJE,SAAU,8BAA8BF,MAAM,KAC9CG,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,gBAAgBJ,MAAM,KACnCK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,sBACNiG,EAAG,WACHC,GAAI,YACJC,IAAK,kBACLC,KAAM,uBAEVxE,cAAe,oBACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,OAAbC,GAAkC,OAAbA,GAAkC,OAAbA,EACnCD,EACa,OAAbC,GAAkC,OAAbA,EACrBD,EAAO,GAGPA,GAAQ,GAAKA,EAAOA,EAAO,IAG1CC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,IAAIy4B,EAAY,IAAP54B,EAAaE,EACtB,OAAI04B,EAAK,IACE,KACAA,EAAK,IACL,KACAA,EAAK,KACL,KACAA,EAAK,KACL,KACAA,EAAK,KACL,KAEA,MAGfz6B,SAAU,CACNC,QAAS,SACTC,QAAS,SACTC,SAAU,SAAUkG,GAChB,OAAIA,EAAI/E,SAAWvC,KAAKuC,OACb,WAEA,YAGflB,QAAS,SACTC,SAAU,SAAUgG,GAChB,OAAItH,KAAKuC,SAAW+E,EAAI/E,OACb,WAEA,YAGfhB,SAAU,KAEd0C,uBAAwB,iBACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,MACD,OAAOjD,EAAS,IACpB,IAAK,IACD,OAAOA,EAAS,IACpB,IAAK,IACL,IAAK,IACD,OAAOA,EAAS,IACpB,QACI,OAAOA,IAGnB9C,aAAc,CACVC,OAAQ,MACRC,KAAM,MACNC,EAAG,KACHC,GAAI,OACJC,EAAG,OACHC,GAAI,QACJC,EAAG,OACHC,GAAI,QACJC,EAAG,MACHC,GAAI,OACJoI,EAAG,MACHC,GAAI,OACJpI,EAAG,OACHC,GAAI,QACJC,EAAG,MACHC,GAAI,QAERC,KAAM,CAEFC,IAAK,EACLC,IAAK,KAIb,OAAO8tC,M,qBChIX5wC,EAAOC,QAAU,SAAU4wC,EAAQ/gC,GACjC,MAAO,CACLogB,aAAuB,EAAT2gB,GACdvyB,eAAyB,EAATuyB,GAChBvpB,WAAqB,EAATupB,GACZ/gC,MAAOA,K,wBCDT,SAAU3P,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIwwC,EAAKxwC,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,mEAAmED,MAC5E,KAEJsC,kBAAkB,EAClBpC,SAAU,8DAA8DF,MACpE,KAEJG,cAAe,kCAAkCH,MAAM,KACvDI,YAAa,qBAAqBJ,MAAM,KACxCK,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,cACJC,IAAK,sBACLC,KAAM,6BAEVC,SAAU,CACNC,QAAS,YACTC,QAAS,YACTC,SAAU,WACVC,QAAS,aACTC,SAAU,gBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,YACNC,EAAG,iBACHC,GAAI,aACJC,EAAG,YACHC,GAAI,cACJC,EAAG,SACHC,GAAI,WACJC,EAAG,UACHC,GAAI,YACJC,EAAG,SACHC,GAAI,WACJC,EAAG,cACHC,GAAI,iBAER2B,uBAAwB,WACxBC,QAAS,MACTtB,cAAe,iCACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,WAAbC,EACOD,EAAO,EAAIA,EAAOA,EAAO,GACZ,SAAbC,EACAD,EACa,cAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,aAAbC,EACAD,EAAO,QADX,GAIXC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,EACA,SACAA,EAAO,GACP,OACAA,EAAO,GACP,YACAA,EAAO,GACP,WAEA,UAGfP,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOguC,M,uBC9FX,IAAIC,EAAQ,EAAQ,QAChBC,EAAS,EAAQ,QACjBn3B,EAAY,EAAQ,QACpBo3B,EAAS,EAAQ,QACjBC,EAAS,EAAQ,QACjBC,EAAS,EAAQ,QAErB,MAAMC,EAAe,IACfC,EAAc,IACdC,EAAO,SACPC,EAAS,SAMf,SAASC,EAAUnJ,GACjB,IAAI32B,EAAQs/B,EAAO3I,GACfoJ,EAAS,GAKb,OAJA//B,EAAMzI,SAAQ,SAASyL,GACrB,IAAIqL,EAAQgxB,EAAMr8B,GACdqL,GAAO0xB,EAAOnoC,KAAK6nC,EAAOt3B,EAAUkG,EAAO,KAAM,CAAC7V,OAAQ,cAEzDunC,EAGT,SAASC,EAAUD,GACjB,IAAIE,EAAQ,CAAC,EAAG,EAAG,GAInB,OAHAF,EAAOxoC,SAAQ,SAAS6G,GACtB,IAAK,IAAIU,EAAI,EAAGA,EAAI,EAAGA,IAAKmhC,EAAMnhC,IAAMV,EAAMU,MAEzC,CAACmhC,EAAM,GAAKF,EAAO/tC,OAAQiuC,EAAM,GAAKF,EAAO/tC,OAAQiuC,EAAM,GAAKF,EAAO/tC,QAGhF,SAASkuC,EAAcvJ,GACrB,IAAIsJ,EACAF,EAASD,EAAUnJ,GACnBoJ,EAAO/tC,OAAS,IAAGiuC,EAAQD,EAAUD,IACzC,IAAI3tC,EAAI,EACJxB,EAAI,EACJ6C,EAAI,EACR,GAAIkjC,EAAK3kC,OAAS,EAChB,IAAK,IAAI8M,EAAI,EAAGA,EAAI63B,EAAK3kC,OAAQ8M,IAC/B63B,EAAK73B,GAAGqhC,WAAW,GAAKvvC,IAAMA,EAAI+lC,EAAK73B,GAAGqhC,WAAW,IAClD1sC,EAAIkC,SAASiqC,EAAOhvC,GACpBwB,GAAKA,EAAIukC,EAAK73B,GAAGqhC,WAAW,GAAK1sC,EAAIosC,GAAUD,EAEtD,IAAIQ,GAAQhuC,EAAIukC,EAAK3kC,OAAU4tC,GAAMlsC,SAAS,IAC9C0sC,EAAMb,EAAOa,EAAK,EAAGA,GACrB,IAAIC,EAAMZ,EAAOW,EAAK,CAAC5nC,OAAQ,UAC/B,OAAIynC,EACKT,EACLG,EAAcU,EAAI,GAAKX,EAAeO,EAAM,GAC5CN,EAAcU,EAAI,GAAKX,EAAeO,EAAM,GAC5CN,EAAcU,EAAI,GAAKX,EAAeO,EAAM,IAEzCG,EA5CT9xC,EAAOC,QAAU,SAASqT,GACxB,MAAO,IAAMs+B,EAAc1xC,OAAOwc,KAAKC,UAAUrJ,O,wBCTjD,SAAUnT,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI0xC,EAAK1xC,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,oDAAoDF,MAAM,KACpEG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,0BACLC,KAAM,+BACNmG,IAAK,mBACLC,KAAM,wBAEVnG,SAAU,CACNC,QAAS,YACTC,QAAS,eACTE,QAAS,YACTD,SAAU,eACVE,SAAU,iBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,eACNC,EAAG,iBACHC,GAAI,cACJC,EAAG,WACHC,GAAI,aACJC,EAAG,WACHC,GAAI,YACJC,EAAG,SACHC,GAAI,WACJC,EAAG,WACHC,GAAI,aACJC,EAAG,SACHC,GAAI,SAER2B,uBAAwB,mBACxBC,QAAS,SAAUI,GACf,IAAIb,EAAIa,EAAS,GACbR,EACgC,OAAxBQ,EAAS,IAAO,IACd,KACM,IAANb,GAEM,IAANA,EADA,KAIA,KAEd,OAAOa,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOkvC,M,uBC5EX,IAAIhgC,EAAU,EAAQ,QAClB7R,EAAS,EAAQ,QAErBH,EAAOC,QAAqC,WAA3B+R,EAAQ7R,EAAO2b,U,kCCFhC,IAAIm2B,EAAa,EAAQ,QACrBC,EAAmB,EAAQ,QAI/BlyC,EAAOC,QAAUgyC,EAAW,OAAO,SAAUxwB,GAC3C,OAAO,WAAiB,OAAOA,EAAKphB,KAAM4D,UAAUP,OAASO,UAAU,QAAKN,MAC3EuuC,I,oCCPH,IAAIrsC,EAAc,EAAQ,QACtBqF,EAAQ,EAAQ,QAChBgvB,EAAa,EAAQ,QACrB+V,EAA8B,EAAQ,QACtCnqC,EAA6B,EAAQ,QACrC6mC,EAAW,EAAQ,QACnBwF,EAAgB,EAAQ,QAExBC,EAAe7sC,OAAO8sC,OACtBjnC,EAAiB7F,OAAO6F,eAI5BpL,EAAOC,SAAWmyC,GAAgBlnC,GAAM,WAEtC,GAAIrF,GAQiB,IARFusC,EAAa,CAAEtuC,EAAG,GAAKsuC,EAAahnC,EAAe,GAAI,IAAK,CAC7E8kB,YAAY,EACZ7kB,IAAK,WACHD,EAAe/K,KAAM,IAAK,CACxByP,MAAO,EACPogB,YAAY,OAGd,CAAEpsB,EAAG,KAAMA,EAAS,OAAO,EAE/B,IAAIuM,EAAI,GACJiiC,EAAI,GAEJC,EAASp5B,SACTq5B,EAAW,uBAGf,OAFAniC,EAAEkiC,GAAU,EACZC,EAAS9xC,MAAM,IAAIuI,SAAQ,SAAUwpC,GAAOH,EAAEG,GAAOA,KACf,GAA/BL,EAAa,GAAI/hC,GAAGkiC,IAAgBrY,EAAWkY,EAAa,GAAIE,IAAI56B,KAAK,KAAO86B,KACpF,SAAgBphC,EAAQ5B,GAC3B,IAAIkjC,EAAI/F,EAASv7B,GACb27B,EAAkB9oC,UAAUP,OAC5B+L,EAAQ,EACR07B,EAAwB8E,EAA4B9qC,EACpDy5B,EAAuB94B,EAA2BX,EACtD,MAAO4nC,EAAkBt9B,EAAO,CAC9B,IAII5K,EAJAmL,EAAImiC,EAAcluC,UAAUwL,MAC5Bic,EAAOyf,EAAwBjR,EAAWlqB,GAAGmL,OAAOgwB,EAAsBn7B,IAAMkqB,EAAWlqB,GAC3FtM,EAASgoB,EAAKhoB,OACdyrC,EAAI,EAER,MAAOzrC,EAASyrC,EACdtqC,EAAM6mB,EAAKyjB,KACNtpC,IAAe+4B,EAAqBh7B,KAAKoM,EAAGnL,KAAM6tC,EAAE7tC,GAAOmL,EAAEnL,IAEpE,OAAO6tC,GACPN,G,sBC/CF,SAAUjyC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIqyC,EAAOryC,EAAOE,aAAa,QAAS,CACpCC,OAAQ,sFAAsFC,MAC1F,KAEJC,YAAa,sFAAsFD,MAC/F,KAEJE,SAAU,yDAAyDF,MAC/D,KAEJG,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,0BACJC,IAAK,iCACLC,KAAM,wCAEV4B,cAAe,qDACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAGM,eAAbC,GACa,UAAbA,GACa,iBAAbA,EAEOD,EACa,iBAAbC,GAA4C,QAAbA,EAC/BD,EAAO,GAEPA,GAAQ,GAAKA,EAAOA,EAAO,IAG1CC,SAAU,SAAUD,EAAME,EAAQC,GAC9B,IAAIy4B,EAAY,IAAP54B,EAAaE,EACtB,OAAI04B,EAAK,IACE,aACAA,EAAK,IACL,QACAA,EAAK,KACL,eACAA,EAAK,KACL,MACAA,EAAK,KACL,eAEA,OAGfz6B,SAAU,CACNC,QAAS,mBACTC,QAAS,kBACTC,SAAU,4BACVC,QAAS,eACTC,SAAU,6BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,WACNC,EAAG,eACHC,GAAI,YACJC,EAAG,YACHC,GAAI,WACJC,EAAG,YACHC,GAAI,WACJC,EAAG,UACHC,GAAI,SACJC,EAAG,UACHC,GAAI,SACJC,EAAG,UACHC,GAAI,UAGR2B,uBAAwB,6BACxBC,QAAS,SAAUI,EAAQiD,GACvB,OAAQA,GACJ,IAAK,IACL,IAAK,IACL,IAAK,MACD,OAAOjD,EAAS,QACpB,IAAK,IACL,IAAK,IACD,OAAOA,EAAS,SACpB,QACI,OAAOA,IAGnBoP,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhCoK,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhChH,KAAM,CAEFC,IAAK,EACLC,IAAK,KAIb,OAAO6vC,M,qBCtHX3yC,EAAOC,QAAU,SAASD,GAoBzB,OAnBKA,EAAO4yC,kBACX5yC,EAAO6yC,UAAY,aACnB7yC,EAAO8yC,MAAQ,GAEV9yC,EAAO+yC,WAAU/yC,EAAO+yC,SAAW,IACxCxtC,OAAO6F,eAAepL,EAAQ,SAAU,CACvCkwB,YAAY,EACZ7kB,IAAK,WACJ,OAAOrL,EAAOsH,KAGhB/B,OAAO6F,eAAepL,EAAQ,KAAM,CACnCkwB,YAAY,EACZ7kB,IAAK,WACJ,OAAOrL,EAAOwQ,KAGhBxQ,EAAO4yC,gBAAkB,GAEnB5yC,I,sBCfN,SAAUG,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI0yC,EAAO1yC,EAAOE,aAAa,QAAS,CACpCC,OAAQ,oFAAoFC,MACxF,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,6CAA6CF,MAAM,KAC7DG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,4BACLC,KAAM,mCAEV4B,cAAe,8BACfC,aAAc,SAAUC,EAAMC,GAI1B,OAHa,KAATD,IACAA,EAAO,GAEM,SAAbC,EACOD,EACa,cAAbC,EACAD,GAAQ,GAAKA,EAAOA,EAAO,GACd,WAAbC,GAAsC,UAAbA,EACzBD,EAAO,QADX,GAIXC,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,GACD,OACAA,EAAQ,GACR,YACAA,EAAQ,GACR,SAEA,SAGfpJ,SAAU,CACNC,QAAS,sBACTC,QAAS,kBACTC,SAAU,kBACVC,QAAS,sBACTC,SAAU,wBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,WACRC,KAAM,gBACNC,EAAG,gBACHC,GAAI,UACJC,EAAG,UACHC,GAAI,WACJC,EAAG,QACHC,GAAI,SACJC,EAAG,SACHC,GAAI,UACJC,EAAG,UACHC,GAAI,WACJC,EAAG,UACHC,GAAI,YAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOkwC,M,qBCpFX,IAAI7lC,EAAY,EAAQ,QACpBC,EAAyB,EAAQ,QAGjCg/B,EAAe,SAAU6G,GAC3B,OAAO,SAAU3G,EAAO4G,GACtB,IAGIC,EAAOC,EAHPpjC,EAAI9P,OAAOkN,EAAuBk/B,IAClCpsB,EAAW/S,EAAU+lC,GACrBG,EAAOrjC,EAAEtM,OAEb,OAAIwc,EAAW,GAAKA,GAAYmzB,EAAaJ,EAAoB,QAAKtvC,GACtEwvC,EAAQnjC,EAAE6hC,WAAW3xB,GACdizB,EAAQ,OAAUA,EAAQ,OAAUjzB,EAAW,IAAMmzB,IACtDD,EAASpjC,EAAE6hC,WAAW3xB,EAAW,IAAM,OAAUkzB,EAAS,MAC1DH,EAAoBjjC,EAAEokB,OAAOlU,GAAYizB,EACzCF,EAAoBjjC,EAAEpK,MAAMsa,EAAUA,EAAW,GAA+BkzB,EAAS,OAAlCD,EAAQ,OAAU,IAA0B,SAI7GnzC,EAAOC,QAAU,CAGfqzC,OAAQlH,GAAa,GAGrBhY,OAAQgY,GAAa,K,kCCxBvB,IAAIhhC,EAAiB,EAAQ,QAAuCjG,EAChEinB,EAAS,EAAQ,QACjBmnB,EAAc,EAAQ,QACtBn+B,EAAO,EAAQ,QACfo+B,EAAa,EAAQ,QACrBC,EAAU,EAAQ,QAClBnX,EAAiB,EAAQ,QACzBoX,EAAa,EAAQ,QACrB7tC,EAAc,EAAQ,QACtB8tC,EAAU,EAAQ,QAAkCA,QACpDtX,EAAsB,EAAQ,QAE9BG,EAAmBH,EAAoBpa,IACvC2xB,EAAyBvX,EAAoBK,UAEjD18B,EAAOC,QAAU,CACf4zC,eAAgB,SAAUC,EAASz1B,EAAkB01B,EAAQC,GAC3D,IAAI/jC,EAAI6jC,GAAQ,SAAUrwC,EAAMgS,GAC9B+9B,EAAW/vC,EAAMwM,EAAGoO,GACpBme,EAAiB/4B,EAAM,CACrBmb,KAAMP,EACN5O,MAAO2c,EAAO,MACd+mB,WAAOxvC,EACPswC,UAAMtwC,EACN0vC,KAAM,IAEHxtC,IAAapC,EAAK4vC,KAAO,QACd1vC,GAAZ8R,GAAuBg+B,EAAQh+B,EAAUhS,EAAKuwC,GAAQ,CAAEvwC,KAAMA,EAAMsS,WAAYg+B,OAGlFtX,EAAmBmX,EAAuBv1B,GAE1C61B,EAAS,SAAUzwC,EAAMoB,EAAKiL,GAChC,IAEIqkC,EAAU1kC,EAFV2R,EAAQqb,EAAiBh5B,GACzBsuB,EAAQqiB,EAAS3wC,EAAMoB,GAqBzB,OAlBEktB,EACFA,EAAMjiB,MAAQA,GAGdsR,EAAM6yB,KAAOliB,EAAQ,CACnBtiB,MAAOA,EAAQkkC,EAAQ9uC,GAAK,GAC5BA,IAAKA,EACLiL,MAAOA,EACPqkC,SAAUA,EAAW/yB,EAAM6yB,KAC3BhhC,UAAMtP,EACN0wC,SAAS,GAENjzB,EAAM+xB,QAAO/xB,EAAM+xB,MAAQphB,GAC5BoiB,IAAUA,EAASlhC,KAAO8e,GAC1BlsB,EAAaub,EAAMiyB,OAClB5vC,EAAK4vC,OAEI,MAAV5jC,IAAe2R,EAAM3R,MAAMA,GAASsiB,IACjCtuB,GAGP2wC,EAAW,SAAU3wC,EAAMoB,GAC7B,IAGIktB,EAHA3Q,EAAQqb,EAAiBh5B,GAEzBgM,EAAQkkC,EAAQ9uC,GAEpB,GAAc,MAAV4K,EAAe,OAAO2R,EAAM3R,MAAMA,GAEtC,IAAKsiB,EAAQ3Q,EAAM+xB,MAAOphB,EAAOA,EAAQA,EAAM9e,KAC7C,GAAI8e,EAAMltB,KAAOA,EAAK,OAAOktB,GAiFjC,OA7EAwhB,EAAYtjC,EAAEzH,UAAW,CAGvBsf,MAAO,WACL,IAAIrkB,EAAOpD,KACP+gB,EAAQqb,EAAiBh5B,GACzBoG,EAAOuX,EAAM3R,MACbsiB,EAAQ3Q,EAAM+xB,MAClB,MAAOphB,EACLA,EAAMsiB,SAAU,EACZtiB,EAAMoiB,WAAUpiB,EAAMoiB,SAAWpiB,EAAMoiB,SAASlhC,UAAOtP,UACpDkG,EAAKkoB,EAAMtiB,OAClBsiB,EAAQA,EAAM9e,KAEhBmO,EAAM+xB,MAAQ/xB,EAAM6yB,UAAOtwC,EACvBkC,EAAaub,EAAMiyB,KAAO,EACzB5vC,EAAK4vC,KAAO,GAInB,OAAU,SAAUxuC,GAClB,IAAIpB,EAAOpD,KACP+gB,EAAQqb,EAAiBh5B,GACzBsuB,EAAQqiB,EAAS3wC,EAAMoB,GAC3B,GAAIktB,EAAO,CACT,IAAI9e,EAAO8e,EAAM9e,KACbqhC,EAAOviB,EAAMoiB,gBACV/yB,EAAM3R,MAAMsiB,EAAMtiB,OACzBsiB,EAAMsiB,SAAU,EACZC,IAAMA,EAAKrhC,KAAOA,GAClBA,IAAMA,EAAKkhC,SAAWG,GACtBlzB,EAAM+xB,OAASphB,IAAO3Q,EAAM+xB,MAAQlgC,GACpCmO,EAAM6yB,MAAQliB,IAAO3Q,EAAM6yB,KAAOK,GAClCzuC,EAAaub,EAAMiyB,OAClB5vC,EAAK4vC,OACV,QAASthB,GAIb9oB,QAAS,SAAiBuI,GACxB,IAEIugB,EAFA3Q,EAAQqb,EAAiBp8B,MACzBk0C,EAAgBn/B,EAAK5D,EAAYvN,UAAUP,OAAS,EAAIO,UAAU,QAAKN,EAAW,GAEtF,MAAOouB,EAAQA,EAAQA,EAAM9e,KAAOmO,EAAM+xB,MAAO,CAC/CoB,EAAcxiB,EAAMjiB,MAAOiiB,EAAMltB,IAAKxE,MAEtC,MAAO0xB,GAASA,EAAMsiB,QAAStiB,EAAQA,EAAMoiB,WAKjDluC,IAAK,SAAapB,GAChB,QAASuvC,EAAS/zC,KAAMwE,MAI5B0uC,EAAYtjC,EAAEzH,UAAWurC,EAAS,CAEhC1oC,IAAK,SAAaxG,GAChB,IAAIktB,EAAQqiB,EAAS/zC,KAAMwE,GAC3B,OAAOktB,GAASA,EAAMjiB,OAGxBmS,IAAK,SAAapd,EAAKiL,GACrB,OAAOokC,EAAO7zC,KAAc,IAARwE,EAAY,EAAIA,EAAKiL,KAEzC,CAEFsV,IAAK,SAAatV,GAChB,OAAOokC,EAAO7zC,KAAMyP,EAAkB,IAAVA,EAAc,EAAIA,EAAOA,MAGrDjK,GAAauF,EAAe6E,EAAEzH,UAAW,OAAQ,CACnD6C,IAAK,WACH,OAAOoxB,EAAiBp8B,MAAMgzC,QAG3BpjC,GAETukC,UAAW,SAAUvkC,EAAGoO,EAAkB01B,GACxC,IAAIU,EAAgBp2B,EAAmB,YACnCq2B,EAA6Bd,EAAuBv1B,GACpDs2B,EAA2Bf,EAAuBa,GAGtDnY,EAAersB,EAAGoO,GAAkB,SAAUse,EAAUiY,GACtDpY,EAAiBn8B,KAAM,CACrBue,KAAM61B,EACNrjC,OAAQurB,EACRvb,MAAOszB,EAA2B/X,GAClCiY,KAAMA,EACNX,UAAMtwC,OAEP,WACD,IAAIyd,EAAQuzB,EAAyBt0C,MACjCu0C,EAAOxzB,EAAMwzB,KACb7iB,EAAQ3Q,EAAM6yB,KAElB,MAAOliB,GAASA,EAAMsiB,QAAStiB,EAAQA,EAAMoiB,SAE7C,OAAK/yB,EAAMhQ,SAAYgQ,EAAM6yB,KAAOliB,EAAQA,EAAQA,EAAM9e,KAAOmO,EAAMA,MAAM+xB,OAMjE,QAARyB,EAAuB,CAAE9kC,MAAOiiB,EAAMltB,IAAKgL,MAAM,GACzC,UAAR+kC,EAAyB,CAAE9kC,MAAOiiB,EAAMjiB,MAAOD,MAAM,GAClD,CAAEC,MAAO,CAACiiB,EAAMltB,IAAKktB,EAAMjiB,OAAQD,MAAM,IAN9CuR,EAAMhQ,YAASzN,EACR,CAAEmM,WAAOnM,EAAWkM,MAAM,MAMlCkkC,EAAS,UAAY,UAAWA,GAAQ,GAG3CL,EAAWr1B,M,wBChLb,SAAUle,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIu0C,EAAKv0C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,6FAA6FC,MACjG,KAEJC,YAAa,oDAAoDD,MAAM,KACvEE,SAAU,qDAAqDF,MAAM,KACrEG,cAAe,gCAAgCH,MAAM,KACrDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,4BACJC,IAAK,kCACLC,KAAM,2CACNoG,KAAM,uCAEVxE,cAAe,cACfyE,KAAM,SAAUP,GACZ,MAAyC,MAAlCA,EAAMitB,OAAO,GAAGxrB,eAE3BxF,SAAU,SAAUsH,EAAOoC,EAASxJ,GAChC,OAAIoH,EAAQ,GACDpH,EAAU,SAAW,SAErBA,EAAU,SAAW,UAGpChC,SAAU,CACNC,QAAS,iBACTC,QAAS,iBACTC,SAAU,gBACVC,QAAS,iBACTC,SAAU,2BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,UACRC,KAAM,WACNC,EAAG,kBACHC,GAAI,cACJC,EAAG,aACHC,GAAI,aACJC,EAAG,WACHC,GAAI,WACJC,EAAG,WACHC,GAAI,WACJC,EAAG,aACHC,GAAI,aACJC,EAAG,WACHC,GAAI,YAER2B,uBAAwB,WACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO+xC,M,uBC5EX,IAAIp4B,EAAW,EAAQ,QACnBwJ,EAAU,EAAQ,QAClBpmB,EAAkB,EAAQ,QAE1BuU,EAAUvU,EAAgB,WAI9BG,EAAOC,QAAU,SAAU60C,EAAepxC,GACxC,IAAIuM,EASF,OAREgW,EAAQ6uB,KACV7kC,EAAI6kC,EAAcvgC,YAEF,mBAALtE,GAAoBA,IAAMiD,QAAS+S,EAAQhW,EAAEzH,WAC/CiU,EAASxM,KAChBA,EAAIA,EAAEmE,GACI,OAANnE,IAAYA,OAAItM,IAH+CsM,OAAItM,GAKlE,SAAWA,IAANsM,EAAkBiD,MAAQjD,GAAc,IAAXvM,EAAe,EAAIA,K,sBCd9D,SAAUvD,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIG,EAAS,CACL,QACA,UACA,OACA,QACA,MACA,MACA,SACA,OACA,UACA,SACA,QACA,SAEJ0lC,EAAO,CAAC,MAAO,OAAQ,QAAS,OAAQ,OAAQ,MAAO,QAEvD4O,EAAKz0C,EAAOE,aAAa,KAAM,CAC/BC,OAAQA,EACRE,YAAaF,EACbG,SAAUulC,EACVtlC,cAAeslC,EACfrlC,YAAaqlC,EACbplC,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEV4B,cAAe,UACfyE,KAAM,SAAUP,GACZ,MAAO,QAAUA,GAErB/D,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAIH,EAAO,GACA,MAEJ,OAEX7B,SAAU,CACNC,QAAS,UACTC,QAAS,aACTC,SAAU,yBACVC,QAAS,aACTC,SAAU,4BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,QACNC,EAAG,YACHC,GAAI,WACJC,EAAG,SACHC,GAAI,SACJC,EAAG,UACHC,GAAI,UACJC,EAAG,WACHC,GAAI,WACJC,EAAG,WACHC,GAAI,WACJC,EAAG,SACHC,GAAI,UAERoR,SAAU,SAAUlF,GAChB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhCoK,WAAY,SAAUnF,GAClB,OAAOA,EAAOjF,QAAQ,KAAM,MAEhChH,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOiyC,M,sBCrFT,SAAU50C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;SAAS00C,EAAyBrwC,EAAQC,EAAeC,GACrD,IAAIqF,EAAS,CACT/H,GAAI,WACJM,GAAI,MACJF,GAAI,UAER,OAAOoC,EAAS,IAAMkmB,EAAS3gB,EAAOrF,GAAMF,GAEhD,SAASswC,EAAwBtwC,GAC7B,OAAQuwC,EAAWvwC,IACf,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,OAAOA,EAAS,SACpB,QACI,OAAOA,EAAS,UAG5B,SAASuwC,EAAWvwC,GAChB,OAAIA,EAAS,EACFuwC,EAAWvwC,EAAS,IAExBA,EAEX,SAASkmB,EAASwd,EAAM1jC,GACpB,OAAe,IAAXA,EACOwwC,EAAa9M,GAEjBA,EAEX,SAAS8M,EAAa9M,GAClB,IAAI+M,EAAgB,CAChBlzC,EAAG,IACH4B,EAAG,IACHxB,EAAG,KAEP,YAAsCqB,IAAlCyxC,EAAc/M,EAAKjU,OAAO,IACnBiU,EAEJ+M,EAAc/M,EAAKjU,OAAO,IAAMiU,EAAKgN,UAAU,GAG1D,IAAItrC,EAAc,CACV,QACA,cACA,QACA,QACA,QACA,cACA,QACA,QACA,QACA,QACA,OACA,SAEJC,EAAc,6IACdK,EAAoB,wFACpBC,EAAyB,2DACzBgrC,EAAoB,CAChB,QACA,QACA,WACA,iBACA,SACA,WACA,YAEJC,EAAqB,CACjB,QACA,QACA,QACA,QACA,QACA,QACA,SAEJC,EAAmB,CACf,OACA,OACA,eACA,QACA,OACA,OACA,QAGJC,EAAKn1C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,gFAAgFC,MACpF,KAEJC,YAAa,mDAAmDD,MAAM,KACtEE,SAAU,6CAA6CF,MAAM,KAC7DG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,wBAAwBJ,MAAM,KAC3Cg1C,cAAeF,EACfF,kBAAmBA,EACnBC,mBAAoBA,EACpBC,iBAAkBA,EAElBxrC,YAAaA,EACbI,iBAAkBJ,EAClBK,kBAAmBA,EACnBC,uBAAwBA,EACxBP,YAAaA,EACbQ,gBAAiBR,EACjBS,iBAAkBT,EAElBhJ,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,sBACJC,IAAK,4BACLC,KAAM,mCAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,qBACTC,SAAU,eACVC,QAAS,gBACTC,SAAU,qBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,YACRC,KAAM,SACNC,EAAG,wBACHC,GAAI,YACJC,EAAG,cACHC,GAAI6yC,EACJ5yC,EAAG,SACHC,GAAI,SACJC,EAAG,YACHC,GAAIyyC,EACJxyC,EAAG,SACHC,GAAIuyC,EACJtyC,EAAG,WACHC,GAAIsyC,GAER3wC,uBAAwB,kBACxBC,QAAS,SAAUI,GACf,IAAIR,EAAoB,IAAXQ,EAAe,KAAO,MACnC,OAAOA,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,GAETG,cAAe,YACfyE,KAAM,SAAU4O,GACZ,MAAiB,SAAVA,GAEXlT,SAAU,SAAUD,EAAME,EAAQC,GAC9B,OAAOH,EAAO,GAAK,OAAS,UAIpC,OAAOsyC,M,wBCzKT,SAAUt1C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIq1C,EAAKr1C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,8IAA8IC,MAClJ,KAEJC,YAAa,iEAAiED,MAC1E,KAEJsJ,YAAa,yCACbK,kBAAmB,yCACnBD,iBAAkB,yCAClBE,uBAAwB,yCACxB1J,SAAU,kDAAkDF,MAAM,KAClEG,cAAe,wBAAwBH,MAAM,KAC7CI,YAAa,wBAAwBJ,MAAM,KAC3CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,wBACLC,KAAM,+BAEVC,SAAU,CACNC,QAAS,wBACTC,QAAS,eACTC,SAAU,cACVC,QAAS,iBACTC,SAAU,2BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,cACRC,KAAM,WACNC,EAAG,mBACHC,GAAI,YACJC,EAAG,YACHC,GAAI,YACJC,EAAG,WACHC,GAAI,WACJC,EAAG,QACHC,GAAI,QACJC,EAAG,YACHC,GAAI,YACJC,EAAG,SACHC,GAAI,UAER2B,uBAAwB,WACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO6yC,M,sBC9DT,SAAUx1C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIs1C,EAAKt1C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,uFAAuFC,MAC3F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,wDAAwDF,MAC9D,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,YACHC,GAAI,cACJC,IAAK,mBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,eACTC,SAAU,oBACVC,QAAS,gBACTC,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,4BACX,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACD,MAAO,8BAGnBlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,UACNC,EAAG,kBACHC,GAAI,aACJC,EAAG,cACHC,GAAI,YACJC,EAAG,WACHC,GAAI,UACJC,EAAG,WACHC,GAAI,UACJC,EAAG,aACHC,GAAI,YACJC,EAAG,cACHC,GAAI,aAER2B,uBAAwB,8BACxBC,QAAS,SAAUI,GACf,IAAI85B,EAAY95B,EAAS,GACrBkxC,EAAclxC,EAAS,IAC3B,OAAe,IAAXA,EACOA,EAAS,MACO,IAAhBkxC,EACAlxC,EAAS,MACTkxC,EAAc,IAAMA,EAAc,GAClClxC,EAAS,MACK,IAAd85B,EACA95B,EAAS,MACK,IAAd85B,EACA95B,EAAS,MACK,IAAd85B,GAAiC,IAAdA,EACnB95B,EAAS,MAETA,EAAS,OAGxB/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO8yC,M,uBC9FX,IAUI3zB,EAAK5W,EAAKpF,EAVV6vC,EAAkB,EAAQ,QAC1B31C,EAAS,EAAQ,QACjBsc,EAAW,EAAQ,QACnBrK,EAA8B,EAAQ,QACtC2jC,EAAY,EAAQ,QACpBC,EAAS,EAAQ,QACjBC,EAAY,EAAQ,QACpB/6B,EAAa,EAAQ,QAErBg7B,EAAU/1C,EAAO+1C,QAGjBC,EAAU,SAAUzwC,GACtB,OAAOO,EAAIP,GAAM2F,EAAI3F,GAAMuc,EAAIvc,EAAI,KAGjCg3B,EAAY,SAAU6T,GACxB,OAAO,SAAU7qC,GACf,IAAI0b,EACJ,IAAK3E,EAAS/W,KAAQ0b,EAAQ/V,EAAI3F,IAAKkZ,OAAS2xB,EAC9C,MAAMr+B,UAAU,0BAA4Bq+B,EAAO,aACnD,OAAOnvB,IAIb,GAAI00B,EAAiB,CACnB,IAAI5rB,EAAQ8rB,EAAO50B,QAAU40B,EAAO50B,MAAQ,IAAI80B,GAC5CE,EAAQlsB,EAAM7e,IACdgrC,EAAQnsB,EAAMjkB,IACdqwC,EAAQpsB,EAAMjI,IAClBA,EAAM,SAAUvc,EAAI6wC,GAGlB,OAFAA,EAASC,OAAS9wC,EAClB4wC,EAAM1yC,KAAKsmB,EAAOxkB,EAAI6wC,GACfA,GAETlrC,EAAM,SAAU3F,GACd,OAAO0wC,EAAMxyC,KAAKsmB,EAAOxkB,IAAO,IAElCO,EAAM,SAAUP,GACd,OAAO2wC,EAAMzyC,KAAKsmB,EAAOxkB,QAEtB,CACL,IAAI+wC,EAAQR,EAAU,SACtB/6B,EAAWu7B,IAAS,EACpBx0B,EAAM,SAAUvc,EAAI6wC,GAGlB,OAFAA,EAASC,OAAS9wC,EAClB0M,EAA4B1M,EAAI+wC,EAAOF,GAChCA,GAETlrC,EAAM,SAAU3F,GACd,OAAOqwC,EAAUrwC,EAAI+wC,GAAS/wC,EAAG+wC,GAAS,IAE5CxwC,EAAM,SAAUP,GACd,OAAOqwC,EAAUrwC,EAAI+wC,IAIzBz2C,EAAOC,QAAU,CACfgiB,IAAKA,EACL5W,IAAKA,EACLpF,IAAKA,EACLkwC,QAASA,EACTzZ,UAAWA,I,wBCxDX,SAAUv8B,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIo2C,EAAKp2C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,qFAAqFC,MACzF,KAEJC,YAAa,6DAA6DD,MACtE,KAEJsC,kBAAkB,EAClBpC,SAAU,qDAAqDF,MAAM,KACrEG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,eACJC,IAAK,2BACLC,KAAM,iCAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,oBACTC,SAAU,gBACVC,QAAS,iBACTC,SAAU,0BACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,WACNC,EAAG,gBACHC,GAAI,cACJC,EAAG,aACHC,GAAI,cACJC,EAAG,UACHC,GAAI,WACJC,EAAG,SACHC,GAAI,WACJoI,EAAG,SACHC,GAAI,UACJpI,EAAG,WACHC,GAAI,aACJC,EAAG,SACHC,GAAI,SAER2B,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO4zC,M,oCCpEX,IAAIhmC,EAAI,EAAQ,QACZvQ,EAAS,EAAQ,QACjBka,EAAW,EAAQ,QACnBH,EAAW,EAAQ,QACnBy8B,EAAyB,EAAQ,QACjClD,EAAU,EAAQ,QAClBD,EAAa,EAAQ,QACrB/2B,EAAW,EAAQ,QACnBvR,EAAQ,EAAQ,QAChB0rC,EAA8B,EAAQ,QACtCC,EAAiB,EAAQ,QACzBC,EAAoB,EAAQ,QAEhC92C,EAAOC,QAAU,SAAUoe,EAAkBy1B,EAASz2B,GACpD,IAAI02B,GAA8C,IAArC11B,EAAiBV,QAAQ,OAClCo5B,GAAgD,IAAtC14B,EAAiBV,QAAQ,QACnCq2B,EAAQD,EAAS,MAAQ,MACzBiD,EAAoB72C,EAAOke,GAC3B44B,EAAkBD,GAAqBA,EAAkBxuC,UACzDkK,EAAcskC,EACdE,EAAW,GAEXC,EAAY,SAAUC,GACxB,IAAIC,EAAeJ,EAAgBG,GACnCl9B,EAAS+8B,EAAiBG,EACjB,OAAPA,EAAe,SAAatnC,GAE1B,OADAunC,EAAazzC,KAAKvD,KAAgB,IAAVyP,EAAc,EAAIA,GACnCzP,MACE,UAAP+2C,EAAkB,SAAUvyC,GAC9B,QAAOkyC,IAAYt6B,EAAS5X,KAAewyC,EAAazzC,KAAKvD,KAAc,IAARwE,EAAY,EAAIA,IAC1E,OAAPuyC,EAAe,SAAavyC,GAC9B,OAAOkyC,IAAYt6B,EAAS5X,QAAOlB,EAAY0zC,EAAazzC,KAAKvD,KAAc,IAARwE,EAAY,EAAIA,IAC9E,OAAPuyC,EAAe,SAAavyC,GAC9B,QAAOkyC,IAAYt6B,EAAS5X,KAAewyC,EAAazzC,KAAKvD,KAAc,IAARwE,EAAY,EAAIA,IACjF,SAAaA,EAAKiL,GAEpB,OADAunC,EAAazzC,KAAKvD,KAAc,IAARwE,EAAY,EAAIA,EAAKiL,GACtCzP,QAMb,GAAIga,EAASgE,EAA8C,mBAArB24B,KAAqCD,GAAWE,EAAgBhuC,UAAYiC,GAAM,YACtH,IAAI8rC,GAAoBM,UAAUrkC,YAGlCP,EAAc2K,EAAOw2B,eAAeC,EAASz1B,EAAkB01B,EAAQC,GACvE2C,EAAuBY,UAAW,OAC7B,GAAIl9B,EAASgE,GAAkB,GAAO,CAC3C,IAAIm5B,EAAW,IAAI9kC,EAEf+kC,EAAiBD,EAASxD,GAAO+C,EAAU,IAAM,EAAG,IAAMS,EAE1DE,EAAuBxsC,GAAM,WAAcssC,EAASvxC,IAAI,MAGxD0xC,EAAmBf,GAA4B,SAAUnhC,GAAY,IAAIuhC,EAAkBvhC,MAE3FmiC,GAAcb,GAAW7rC,GAAM,WAEjC,IAAI2sC,EAAY,IAAIb,EAChBvnC,EAAQ,EACZ,MAAOA,IAASooC,EAAU7D,GAAOvkC,EAAOA,GACxC,OAAQooC,EAAU5xC,KAAK,MAGpB0xC,IACHjlC,EAAcohC,GAAQ,SAAUgE,EAAOriC,GACrC+9B,EAAWsE,EAAOplC,EAAa2L,GAC/B,IAAI5a,EAAOqzC,EAAkB,IAAIE,EAAqBc,EAAOplC,GAE7D,YADgB/O,GAAZ8R,GAAuBg+B,EAAQh+B,EAAUhS,EAAKuwC,GAAQ,CAAEvwC,KAAMA,EAAMsS,WAAYg+B,IAC7EtwC,KAETiP,EAAYlK,UAAYyuC,EACxBA,EAAgB1iC,YAAc7B,IAG5BglC,GAAwBE,KAC1BT,EAAU,UACVA,EAAU,OACVpD,GAAUoD,EAAU,SAGlBS,GAAcH,IAAgBN,EAAUnD,GAGxC+C,GAAWE,EAAgBnvB,cAAcmvB,EAAgBnvB,MAU/D,OAPAovB,EAAS74B,GAAoB3L,EAC7BhC,EAAE,CAAEvQ,QAAQ,EAAMmR,OAAQoB,GAAeskC,GAAqBE,GAE9DL,EAAenkC,EAAa2L,GAEvB04B,GAAS15B,EAAOm3B,UAAU9hC,EAAa2L,EAAkB01B,GAEvDrhC,I,wBC7FP,SAAUvS,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIoL,EAAW,CACX+H,EAAG,MACH9H,EAAG,MACHK,EAAG,MACHI,EAAG,MACHC,EAAG,MACHT,EAAG,MACHW,EAAG,MACHN,EAAG,MACHJ,EAAG,MACHW,EAAG,MACHC,GAAI,MACJP,GAAI,MACJQ,GAAI,MACJwvB,GAAI,MACJ/vB,GAAI,MACJQ,GAAI,MACJb,GAAI,MACJC,GAAI,MACJa,GAAI,MACJN,IAAK,OAGLyrC,EAAKz3C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,qFAAqFC,MACzF,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,0DAA0DF,MAChE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,mBACTC,QAAS,mBACTC,SAAU,kBACVC,QAAS,kBACTC,SAAU,kCACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,YACRC,KAAM,WACNC,EAAG,iBACHC,GAAI,YACJC,EAAG,YACHC,GAAI,WACJC,EAAG,YACHC,GAAI,WACJC,EAAG,UACHC,GAAI,SACJC,EAAG,SACHC,GAAI,QACJC,EAAG,UACHC,GAAI,UAER2B,uBAAwB,kBACxBC,QAAS,SAAUI,GACf,IAAId,EAAIc,EAAS,GACbb,EAAIa,GAAU,IAAM,IAAM,KAC9B,OAAOA,GAAU+G,EAAS/G,IAAW+G,EAAS7H,IAAM6H,EAAS5H,KAEjElB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOi1C,M,wBCtFT,SAAU53C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI03C,EAAO13C,EAAOE,aAAa,QAAS,CACpCC,OAAQ,yEAAyEC,MAC7E,KAEJC,YAAa,yEAAyED,MAClF,KAEJE,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,wCAAwCH,MAAM,KAC7DI,YAAa,gBAAgBJ,MAAM,KACnC+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,wBACTC,QAAS,sBACTC,SAAU,uBACVC,QAAS,sBACTC,SAAU,uBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,OACHC,GAAI,WACJC,EAAG,QACHC,GAAI,WACJC,EAAG,OACHC,GAAI,WACJC,EAAG,MACHC,GAAI,UACJC,EAAG,MACHC,GAAI,UACJC,EAAG,MACHC,GAAI,YAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOk1C,M,wBCxDT,SAAU73C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIoF,EAAKpF,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,gGAAgGC,MACpG,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,WACL,MACI,WACClB,KAAKqK,QAAU,EAAI,OAA0B,IAAjBrK,KAAKqK,QAAgB,IAAM,OACxD,OAGRlJ,QAAS,WACL,MACI,aACCnB,KAAKqK,QAAU,EAAI,OAA0B,IAAjBrK,KAAKqK,QAAgB,IAAM,OACxD,OAGRjJ,SAAU,WACN,MACI,WACCpB,KAAKqK,QAAU,EAAI,OAA0B,IAAjBrK,KAAKqK,QAAgB,IAAM,OACxD,OAGRhJ,QAAS,WACL,MACI,WACCrB,KAAKqK,QAAU,EAAI,OAA0B,IAAjBrK,KAAKqK,QAAgB,IAAM,OACxD,OAGR/I,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACD,MACI,uBACCzR,KAAKqK,QAAU,EACV,OACiB,IAAjBrK,KAAKqK,QACL,IACA,OACN,MAER,QACI,MACI,uBACCrK,KAAKqK,QAAU,EACV,OACiB,IAAjBrK,KAAKqK,QACL,IACA,OACN,QAIhB9I,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,QACNC,EAAG,iBACHC,GAAI,aACJC,EAAG,YACHC,GAAI,YACJC,EAAG,SACHC,GAAI,SACJC,EAAG,YACHC,GAAI,YACJoI,EAAG,gBACHC,GAAI,eACJpI,EAAG,UACHC,GAAI,UACJC,EAAG,UACHC,GAAI,WAER2B,uBAAwB,WACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO4C,M,uBClHX,IAAIvF,EAAS,EAAQ,QACjBiS,EAA8B,EAAQ,QACtCnM,EAAM,EAAQ,QACdkU,EAAY,EAAQ,QACpB89B,EAAgB,EAAQ,QACxB5b,EAAsB,EAAQ,QAE9BI,EAAmBJ,EAAoBhxB,IACvC6sC,EAAuB7b,EAAoB8Z,QAC3CgC,EAAWj4C,OAAOA,QAAQQ,MAAM,WAEnCV,EAAOC,QAAU,SAAUoG,EAAGxB,EAAKiL,EAAO6F,GACzC,IAGIyL,EAHAjD,IAASxI,KAAYA,EAAQwI,OAC7Bi6B,IAASziC,KAAYA,EAAQua,WAC7BpV,IAAcnF,KAAYA,EAAQmF,YAElB,mBAAThL,IACS,iBAAPjL,GAAoBoB,EAAI6J,EAAO,SACxCsC,EAA4BtC,EAAO,OAAQjL,GAE7Cuc,EAAQ82B,EAAqBpoC,GACxBsR,EAAM5R,SACT4R,EAAM5R,OAAS2oC,EAASzgC,KAAmB,iBAAP7S,EAAkBA,EAAM,MAG5DwB,IAAMlG,GAIEge,GAEArD,GAAezU,EAAExB,KAC3BuzC,GAAS,UAFF/xC,EAAExB,GAIPuzC,EAAQ/xC,EAAExB,GAAOiL,EAChBsC,EAA4B/L,EAAGxB,EAAKiL,IATnCsoC,EAAQ/xC,EAAExB,GAAOiL,EAChBqK,EAAUtV,EAAKiL,KAUrBqI,SAAS3P,UAAW,YAAY,WACjC,MAAsB,mBAARnI,MAAsBo8B,EAAiBp8B,MAAMmP,QAAUyoC,EAAc53C,U,wBClCnF,SAAUF,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI+3C,EAAO/3C,EAAOE,aAAa,QAAS,CACpCC,OAAQ,gGAAgGC,MACpG,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,iBACTC,QAAS,mBACTC,SAAU,iBACVC,QAAS,iBACTC,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACD,MAAO,6BACX,QACI,MAAO,+BAGnBlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,SAAUE,GACd,OAAQ,YAAYjC,KAAKiC,GAAK,MAAQ,MAAQ,IAAMA,GAExDD,KAAM,QACNC,EAAG,iBACHC,GAAI,aACJC,EAAG,YACHC,GAAI,YACJC,EAAG,SACHC,GAAI,SACJC,EAAG,YACHC,GAAI,YACJC,EAAG,UACHC,GAAI,UACJC,EAAG,UACHC,GAAI,WAER2B,uBAAwB,WACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOu1C,M,wBCpET,SAAUl4C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIg4C,EAAOh4C,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,SACJC,IAAK,YACLC,EAAG,aACHC,GAAI,cACJC,IAAK,qBACLC,KAAM,4BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,mBACTC,SAAU,eACVC,QAAS,oBACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,WACHC,GAAI,aACJC,EAAG,UACHC,GAAI,WACJC,EAAG,QACHC,GAAI,UACJC,EAAG,UACHC,GAAI,YACJC,EAAG,SACHC,GAAI,YAER2B,uBAAwB,uBACxBC,QAAS,SAAUI,GACf,IAAIb,EAAIa,EAAS,GACbR,EACgC,OAAxBQ,EAAS,IAAO,IACd,KACM,IAANb,EACA,KACM,IAANA,EACA,KACM,IAANA,EACA,KACA,KACd,OAAOa,EAASR,GAEpBvB,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOw1C,M,sBCxET,SAAUn4C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIi4C,EAAsB,6DAA6D73C,MAC/E,KAEJ83C,EAAyB,kDAAkD93C,MACvE,KAGJ+3C,EAAKn4C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,iGAAiGC,MACrG,KAEJC,YAAa,SAAUuB,EAAGgI,GACtB,OAAKhI,EAEM,QAAQnC,KAAKmK,GACbsuC,EAAuBt2C,EAAEiI,SAEzBouC,EAAoBr2C,EAAEiI,SAJtBouC,GAOfv1C,kBAAkB,EAClBpC,SAAU,wDAAwDF,MAC9D,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,gBACTC,SAAU,eACVC,QAAS,iBACTC,SAAU,wBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,SACRC,KAAM,SACNC,EAAG,mBACHC,GAAI,cACJC,EAAG,YACHC,GAAI,aACJC,EAAG,WACHC,GAAI,WACJC,EAAG,UACHC,GAAI,WACJC,EAAG,aACHC,GAAI,aACJC,EAAG,WACHC,GAAI,cAER2B,uBAAwB,kBACxBC,QAAS,SAAUI,GACf,OACIA,GACY,IAAXA,GAA2B,IAAXA,GAAgBA,GAAU,GAAK,MAAQ,OAGhE/B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO21C,M,qBCrFX,IAAIh8B,EAAW,EAAQ,QACnBi8B,EAAiB,EAAQ,QAG7B14C,EAAOC,QAAU,SAAUqsC,EAAOwL,EAAOa,GACvC,IAAIC,EAAWC,EAUf,OAPEH,GAE0C,mBAAlCE,EAAYd,EAAMvjC,cAC1BqkC,IAAcD,GACdl8B,EAASo8B,EAAqBD,EAAUpwC,YACxCqwC,IAAuBF,EAAQnwC,WAC/BkwC,EAAepM,EAAOuM,GACjBvM,I,sBCXP,SAAUnsC,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIw4C,EAAOx4C,EAAOE,aAAa,QAAS,CACpCC,OAAQ,wFAAwFC,MAC5F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,2DAA2DF,MACjE,KAEJG,cAAe,8BAA8BH,MAAM,KACnDI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,QACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,gBACTC,QAAS,mBACTC,SAAU,eACVC,QAAS,oBACTC,SAAU,sBACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,SACNC,EAAG,gBACHC,GAAI,aACJC,EAAG,WACHC,GAAI,aACJC,EAAG,UACHC,GAAI,WACJC,EAAG,QACHC,GAAI,UACJC,EAAG,UACHC,GAAI,YACJC,EAAG,SACHC,GAAI,YAER2B,uBAAwB,uBACxBC,QAAS,SAAUI,GACf,IAAIb,EAAIa,EAAS,GACbR,EACgC,OAAxBQ,EAAS,IAAO,IACd,KACM,IAANb,EACA,KACM,IAANA,EACA,KACM,IAANA,EACA,KACA,KACd,OAAOa,EAASR,KAIxB,OAAO20C,M,mBCxEX74C,EAAQkF,EAAII,OAAO4lC,uB,uBCAnB,IAAI3d,EAAO,EAAQ,QACfvnB,EAAM,EAAQ,QACd8yC,EAA+B,EAAQ,QACvC3tC,EAAiB,EAAQ,QAAuCjG,EAEpEnF,EAAOC,QAAU,SAAU+4C,GACzB,IAAI7/B,EAASqU,EAAKrU,SAAWqU,EAAKrU,OAAS,IACtClT,EAAIkT,EAAQ6/B,IAAO5tC,EAAe+N,EAAQ6/B,EAAM,CACnDlpC,MAAOipC,EAA6B5zC,EAAE6zC,O,wBCJxC,SAAU74C,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAI24C,EAAK34C,EAAOE,aAAa,KAAM,CAC/BC,OAAQ,sFAAsFC,MAC1F,KAEJC,YAAa,kDAAkDD,MAAM,KACrEE,SAAU,8DAA8DF,MACpE,KAEJG,cAAe,kCAAkCH,MAAM,KACvDI,YAAa,uBAAuBJ,MAAM,KAC1C+J,oBAAoB,EACpB1J,eAAgB,CACZC,GAAI,UACJC,IAAK,WACLC,EAAG,aACHC,GAAI,cACJC,IAAK,oBACLC,KAAM,2BAEVC,SAAU,CACNC,QAAS,eACTC,QAAS,iBACTC,SAAU,8BACVC,QAAS,YACTC,SAAU,kCACVC,SAAU,KAEdC,aAAc,CACVC,OAAQ,aACRC,KAAM,WACNC,EAAG,aACHC,GAAI,aACJC,EAAG,cACHC,GAAI,YACJC,EAAG,aACHC,GAAI,WACJC,EAAG,YACHC,GAAI,UACJC,EAAG,cACHC,GAAI,WACJC,EAAG,cACHC,GAAI,YAERC,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAOm2C,M,mBC7DXj5C,EAAOC,QAAU,CACf,cACA,iBACA,gBACA,uBACA,iBACA,WACA,Y,oCCAF,SAASi5C,EAAO3vB,GACdlpB,KAAKkpB,QAAUA,EAGjB2vB,EAAO1wC,UAAUpD,SAAW,WAC1B,MAAO,UAAY/E,KAAKkpB,QAAU,KAAOlpB,KAAKkpB,QAAU,KAG1D2vB,EAAO1wC,UAAUkhB,YAAa,EAE9B1pB,EAAOC,QAAUi5C,G,oCChBjB,IAAIrxC,EAAQ,EAAQ,QAEpB7H,EAAOC,QACL4H,EAAM+yB,uBAGJ,WACE,MAAO,CACLue,MAAO,SAAevyC,EAAMkJ,EAAOspC,EAAS5rB,EAAM6rB,EAAQC,GACxD,IAAIC,EAAS,GACbA,EAAOjwC,KAAK1C,EAAO,IAAM8vB,mBAAmB5mB,IAExCjI,EAAM2xC,SAASJ,IACjBG,EAAOjwC,KAAK,WAAa,IAAI2sB,KAAKmjB,GAASK,eAGzC5xC,EAAM4zB,SAASjO,IACjB+rB,EAAOjwC,KAAK,QAAUkkB,GAGpB3lB,EAAM4zB,SAAS4d,IACjBE,EAAOjwC,KAAK,UAAY+vC,IAGX,IAAXC,GACFC,EAAOjwC,KAAK,UAGdmV,SAAS86B,OAASA,EAAO7hC,KAAK,OAGhCgiC,KAAM,SAAc9yC,GAClB,IAAIQ,EAAQqX,SAAS86B,OAAOnyC,MAAM,IAAIkH,OAAO,aAAe1H,EAAO,cACnE,OAAQQ,EAAQuyC,mBAAmBvyC,EAAM,IAAM,MAGjDsyB,OAAQ,SAAgB9yB,GACtBvG,KAAK84C,MAAMvyC,EAAM,GAAIqvB,KAAKtuB,MAAQ,SA/BxC,GAqCA,WACE,MAAO,CACLwxC,MAAO,aACPO,KAAM,WAAkB,OAAO,MAC/BhgB,OAAQ,cAJZ,I,uBC7CJ,IAAItsB,EAAyB,EAAQ,QAIrCpN,EAAOC,QAAU,SAAUyjB,GACzB,OAAOne,OAAO6H,EAAuBsW,M,wBCArC,SAAUvjB,EAAQC,GAEsBA,EAAQ,EAAQ,UAFzD,CAKCC,GAAM,SAAWC,GAAU;kCAIzB;IAAIG,EAAS,oFAAoFC,MACzF,KAEJC,EAAc,kDAAkDD,MAAM,KAC1E,SAAS8D,EAAOC,GACZ,OAAOA,EAAI,GAAKA,EAAI,EAExB,SAASC,EAAUC,EAAQC,EAAeC,EAAKC,GAC3C,IAAIC,EAASJ,EAAS,IACtB,OAAQE,GACJ,IAAK,IACD,OAAOD,GAAiBE,EAAW,aAAe,gBACtD,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,UAAY,UAEvCI,EAAS,YAExB,IAAK,IACD,OAAOH,EAAgB,SAAWE,EAAW,SAAW,UAC5D,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,SAAW,SAEtCI,EAAS,WAExB,IAAK,IACD,OAAOH,EAAgB,SAAWE,EAAW,SAAW,UAC5D,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,SAAW,SAEtCI,EAAS,WAExB,IAAK,IACD,OAAOH,GAAiBE,EAAW,MAAQ,OAC/C,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,MAAQ,OAEnCI,EAAS,QAExB,IAAK,IACD,OAAOH,GAAiBE,EAAW,SAAW,WAClD,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,UAAY,YAEvCI,EAAS,WAExB,IAAK,IACD,OAAOH,GAAiBE,EAAW,MAAQ,QAC/C,IAAK,KACD,OAAIF,GAAiBE,EACVC,GAAUP,EAAOG,GAAU,OAAS,SAEpCI,EAAS,SAKhC,IAAI60C,EAAKt5C,EAAOE,aAAa,KAAM,CAC/BC,OAAQA,EACRE,YAAaA,EACbC,SAAU,sDAAsDF,MAAM,KACtEG,cAAe,uBAAuBH,MAAM,KAC5CI,YAAa,uBAAuBJ,MAAM,KAC1CK,eAAgB,CACZC,GAAI,OACJC,IAAK,UACLC,EAAG,aACHC,GAAI,eACJC,IAAK,oBACLC,KAAM,0BAEVC,SAAU,CACNC,QAAS,cACTC,QAAS,gBACTC,SAAU,WACN,OAAQpB,KAAKyR,OACT,KAAK,EACD,MAAO,kBACX,KAAK,EACL,KAAK,EACD,MAAO,kBACX,KAAK,EACD,MAAO,kBACX,KAAK,EACD,MAAO,oBACX,KAAK,EACD,MAAO,kBACX,KAAK,EACD,MAAO,oBAGnBpQ,QAAS,eACTC,SAAU,WACN,OAAQtB,KAAKyR,OACT,KAAK,EACD,MAAO,uBACX,KAAK,EACL,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,uBACX,KAAK,EACL,KAAK,EACD,MAAO,uBACX,KAAK,EACD,MAAO,yBAGnBlQ,SAAU,KAEdC,aAAc,CACVC,OAAQ,QACRC,KAAM,UACNC,EAAG0C,EACHzC,GAAIyC,EACJxC,EAAGwC,EACHvC,GAAIuC,EACJtC,EAAGsC,EACHrC,GAAIqC,EACJpC,EAAGoC,EACHnC,GAAImC,EACJlC,EAAGkC,EACHjC,GAAIiC,EACJhC,EAAGgC,EACH/B,GAAI+B,GAERJ,uBAAwB,YACxBC,QAAS,MACT3B,KAAM,CACFC,IAAK,EACLC,IAAK,KAIb,OAAO82C,M,uBCxJX,IAmDIC,EAnDAlsC,EAAW,EAAQ,QACnByf,EAAmB,EAAQ,QAC3BnS,EAAc,EAAQ,QACtBC,EAAa,EAAQ,QACrByM,EAAO,EAAQ,QACfmyB,EAAwB,EAAQ,QAChC7D,EAAY,EAAQ,QAEpB8D,EAAK,IACL/4C,EAAK,IACLg5C,EAAY,YACZC,EAAS,SACTC,EAAWjE,EAAU,YAErBkE,EAAmB,aAEnBC,EAAY,SAAUC,GACxB,OAAOr5C,EAAKi5C,EAASF,EAAKM,EAAUr5C,EAAK,IAAMi5C,EAASF,GAItDO,EAA4B,SAAUT,GACxCA,EAAgBV,MAAMiB,EAAU,KAChCP,EAAgBU,QAChB,IAAIzY,EAAO+X,EAAgBW,aAAaj1C,OAExC,OADAs0C,EAAkB,KACX/X,GAIL2Y,EAA2B,WAE7B,IAEIC,EAFAC,EAASb,EAAsB,UAC/Bc,EAAK,OAASX,EAAS,IAU3B,OARAU,EAAOp7B,MAAMs7B,QAAU,OACvBlzB,EAAK5I,YAAY47B,GAEjBA,EAAOphB,IAAMr5B,OAAO06C,GACpBF,EAAiBC,EAAOG,cAAcr8B,SACtCi8B,EAAeK,OACfL,EAAevB,MAAMiB,EAAU,sBAC/BM,EAAeH,QACRG,EAAeM,GASpBC,EAAkB,WACpB,IAEEpB,EAAkBp7B,SAAS46B,QAAU,IAAI6B,cAAc,YACvD,MAAOv1C,IACTs1C,EAAkBpB,EAAkBS,EAA0BT,GAAmBY,IACjF,IAAI/2C,EAASuX,EAAYvX,OACzB,MAAOA,WAAiBu3C,EAAgBjB,GAAW/+B,EAAYvX,IAC/D,OAAOu3C,KAGT//B,EAAWg/B,IAAY,EAIvBl6C,EAAOC,QAAUsF,OAAO6mB,QAAU,SAAgB/lB,EAAG8zB,GACnD,IAAIp1B,EAQJ,OAPU,OAANsB,GACF8zC,EAAiBH,GAAarsC,EAAStH,GACvCtB,EAAS,IAAIo1C,EACbA,EAAiBH,GAAa,KAE9Bj1C,EAAOm1C,GAAY7zC,GACdtB,EAASk2C,SACMt3C,IAAfw2B,EAA2Bp1B,EAASqoB,EAAiBroB,EAAQo1B,K,oCC3EtE,IAAIzpB,EAAI,EAAQ,QACZyqC,EAAQ,EAAQ,QAAgClwB,KAChDmwB,EAAmB,EAAQ,QAC3BtqC,EAA0B,EAAQ,QAElCuqC,EAAO,OACPC,GAAc,EAEdpqC,EAAiBJ,EAAwBuqC,GAGzCA,IAAQ,IAAInoC,MAAM,GAAGmoC,IAAM,WAAcC,GAAc,KAI3D5qC,EAAE,CAAEU,OAAQ,QAASC,OAAO,EAAMC,OAAQgqC,IAAgBpqC,GAAkB,CAC1E+Z,KAAM,SAAczZ,GAClB,OAAO2pC,EAAM96C,KAAMmR,EAAYvN,UAAUP,OAAS,EAAIO,UAAU,QAAKN,MAKzEy3C,EAAiBC,I,oCCtBjB,IAAI3qC,EAAI,EAAQ,QACZ6qC,EAA4B,EAAQ,QACpCC,EAAiB,EAAQ,QACzB9C,EAAiB,EAAQ,QACzB7B,EAAiB,EAAQ,QACzBzkC,EAA8B,EAAQ,QACtC8H,EAAW,EAAQ,QACnBra,EAAkB,EAAQ,QAC1BonB,EAAU,EAAQ,QAClB+P,EAAY,EAAQ,QACpBykB,EAAgB,EAAQ,QAExBC,EAAoBD,EAAcC,kBAClCC,EAAyBF,EAAcE,uBACvC9oC,EAAWhT,EAAgB,YAC3B+7C,EAAO,OACPC,EAAS,SACTC,EAAU,UAEVC,EAAa,WAAc,OAAO17C,MAEtCL,EAAOC,QAAU,SAAU+7C,EAAUhD,EAAMiD,EAAqBhpC,EAAMipC,EAASC,EAAQ7hC,GACrFihC,EAA0BU,EAAqBjD,EAAM/lC,GAErD,IAkBImpC,EAA0BC,EAASjF,EAlBnCkF,EAAqB,SAAUC,GACjC,GAAIA,IAASL,GAAWM,EAAiB,OAAOA,EAChD,IAAKb,GAA0BY,KAAQE,EAAmB,OAAOA,EAAkBF,GACnF,OAAQA,GACN,KAAKX,EAAM,OAAO,WAAkB,OAAO,IAAIK,EAAoB57C,KAAMk8C,IACzE,KAAKV,EAAQ,OAAO,WAAoB,OAAO,IAAII,EAAoB57C,KAAMk8C,IAC7E,KAAKT,EAAS,OAAO,WAAqB,OAAO,IAAIG,EAAoB57C,KAAMk8C,IAC/E,OAAO,WAAc,OAAO,IAAIN,EAAoB57C,QAGpDP,EAAgBk5C,EAAO,YACvB0D,GAAwB,EACxBD,EAAoBT,EAASxzC,UAC7Bm0C,EAAiBF,EAAkB5pC,IAClC4pC,EAAkB,eAClBP,GAAWO,EAAkBP,GAC9BM,GAAmBb,GAA0BgB,GAAkBL,EAAmBJ,GAClFU,EAA4B,SAAR5D,GAAkByD,EAAkBnF,SAA4BqF,EAiCxF,GA7BIC,IACFR,EAA2BZ,EAAeoB,EAAkBh5C,KAAK,IAAIo4C,IACjEN,IAAsBn2C,OAAOiD,WAAa4zC,EAAyBnpC,OAChEgU,GAAWu0B,EAAeY,KAA8BV,IACvDhD,EACFA,EAAe0D,EAA0BV,GACa,mBAAtCU,EAAyBvpC,IACzCT,EAA4BgqC,EAA0BvpC,EAAUkpC,IAIpElF,EAAeuF,EAA0Bt8C,GAAe,GAAM,GAC1DmnB,IAAS+P,EAAUl3B,GAAiBi8C,KAKxCG,GAAWL,GAAUc,GAAkBA,EAAe/1C,OAASi1C,IACjEa,GAAwB,EACxBF,EAAkB,WAAoB,OAAOG,EAAe/4C,KAAKvD,QAI7D4mB,IAAW3M,GAAWmiC,EAAkB5pC,KAAc2pC,GAC1DpqC,EAA4BqqC,EAAmB5pC,EAAU2pC,GAE3DxlB,EAAUgiB,GAAQwD,EAGdN,EAMF,GALAG,EAAU,CACRjS,OAAQkS,EAAmBT,GAC3BnwB,KAAMywB,EAASK,EAAkBF,EAAmBV,GACpDtE,QAASgF,EAAmBR,IAE1BxhC,EAAQ,IAAK88B,KAAOiF,GAClBV,GAA0Be,KAA2BtF,KAAOqF,KAC9DviC,EAASuiC,EAAmBrF,EAAKiF,EAAQjF,SAEtC1mC,EAAE,CAAEU,OAAQ4nC,EAAM3nC,OAAO,EAAMC,OAAQqqC,GAA0Be,GAAyBL,GAGnG,OAAOA,I,qBCxFTr8C,EAAOC,QAAU,CACf,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,mBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,QAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,mBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,qBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,QAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,wBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,oBAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,mBAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,OAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,eAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,cAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,OAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAO,SAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,YAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,kBAET,CACE,MAAQ,UACR,KAAO,cAET,CACE,MAAQ,UACR,KAAO,gBAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,iBAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,eAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,aAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,UAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,YAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,QAET,CACE,MAAQ,UACR,KAAM,EACN,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAM,EACN,KAAM,EACN,KAAO,SAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,WAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO,UAET,CACE,MAAQ,UACR,KAAO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","file":"player/js/chunk-vendors-legacy.js","sourcesContent":["var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","//! moment.js locale configuration\n//! locale : Uzbek Latin [uz-latn]\n//! author : Rasulbek Mirzayev : github.com/Rasulbeeek\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var uzLatn = moment.defineLocale('uz-latn', {\n months: 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split(\n '_'\n ),\n monthsShort: 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),\n weekdays: 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split(\n '_'\n ),\n weekdaysShort: 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),\n weekdaysMin: 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'D MMMM YYYY, dddd HH:mm',\n },\n calendar: {\n sameDay: '[Bugun soat] LT [da]',\n nextDay: '[Ertaga] LT [da]',\n nextWeek: 'dddd [kuni soat] LT [da]',\n lastDay: '[Kecha soat] LT [da]',\n lastWeek: \"[O'tgan] dddd [kuni soat] LT [da]\",\n sameElse: 'L',\n },\n relativeTime: {\n future: 'Yaqin %s ichida',\n past: 'Bir necha %s oldin',\n s: 'soniya',\n ss: '%d soniya',\n m: 'bir daqiqa',\n mm: '%d daqiqa',\n h: 'bir soat',\n hh: '%d soat',\n d: 'bir kun',\n dd: '%d kun',\n M: 'bir oy',\n MM: '%d oy',\n y: 'bir yil',\n yy: '%d yil',\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return uzLatn;\n\n})));\n","//! moment.js locale configuration\n//! locale : Malayalam [ml]\n//! author : Floyd Pink : https://github.com/floydpink\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var ml = moment.defineLocale('ml', {\n months: 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split(\n '_'\n ),\n monthsShort: 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split(\n '_'\n ),\n weekdaysShort: 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),\n weekdaysMin: 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),\n longDateFormat: {\n LT: 'A h:mm -നു',\n LTS: 'A h:mm:ss -നു',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, A h:mm -നു',\n LLLL: 'dddd, D MMMM YYYY, A h:mm -നു',\n },\n calendar: {\n sameDay: '[ഇന്ന്] LT',\n nextDay: '[നാളെ] LT',\n nextWeek: 'dddd, LT',\n lastDay: '[ഇന്നലെ] LT',\n lastWeek: '[കഴിഞ്ഞ] dddd, LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s കഴിഞ്ഞ്',\n past: '%s മുൻപ്',\n s: 'അൽപ നിമിഷങ്ങൾ',\n ss: '%d സെക്കൻഡ്',\n m: 'ഒരു മിനിറ്റ്',\n mm: '%d മിനിറ്റ്',\n h: 'ഒരു മണിക്കൂർ',\n hh: '%d മണിക്കൂർ',\n d: 'ഒരു ദിവസം',\n dd: '%d ദിവസം',\n M: 'ഒരു മാസം',\n MM: '%d മാസം',\n y: 'ഒരു വർഷം',\n yy: '%d വർഷം',\n },\n meridiemParse: /രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (\n (meridiem === 'രാത്രി' && hour >= 4) ||\n meridiem === 'ഉച്ച കഴിഞ്ഞ്' ||\n meridiem === 'വൈകുന്നേരം'\n ) {\n return hour + 12;\n } else {\n return hour;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'രാത്രി';\n } else if (hour < 12) {\n return 'രാവിലെ';\n } else if (hour < 17) {\n return 'ഉച്ച കഴിഞ്ഞ്';\n } else if (hour < 20) {\n return 'വൈകുന്നേരം';\n } else {\n return 'രാത്രി';\n }\n },\n });\n\n return ml;\n\n})));\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","//! moment.js locale configuration\n//! locale : Chuvash [cv]\n//! author : Anatoly Mironov : https://github.com/mirontoli\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var cv = moment.defineLocale('cv', {\n months: 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split(\n '_'\n ),\n monthsShort: 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),\n weekdays: 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split(\n '_'\n ),\n weekdaysShort: 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),\n weekdaysMin: 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD-MM-YYYY',\n LL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',\n LLL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',\n LLLL: 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',\n },\n calendar: {\n sameDay: '[Паян] LT [сехетре]',\n nextDay: '[Ыран] LT [сехетре]',\n lastDay: '[Ӗнер] LT [сехетре]',\n nextWeek: '[Ҫитес] dddd LT [сехетре]',\n lastWeek: '[Иртнӗ] dddd LT [сехетре]',\n sameElse: 'L',\n },\n relativeTime: {\n future: function (output) {\n var affix = /сехет$/i.exec(output)\n ? 'рен'\n : /ҫул$/i.exec(output)\n ? 'тан'\n : 'ран';\n return output + affix;\n },\n past: '%s каялла',\n s: 'пӗр-ик ҫеккунт',\n ss: '%d ҫеккунт',\n m: 'пӗр минут',\n mm: '%d минут',\n h: 'пӗр сехет',\n hh: '%d сехет',\n d: 'пӗр кун',\n dd: '%d кун',\n M: 'пӗр уйӑх',\n MM: '%d уйӑх',\n y: 'пӗр ҫул',\n yy: '%d ҫул',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-мӗш/,\n ordinal: '%d-мӗш',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return cv;\n\n})));\n","//! moment.js locale configuration\n//! locale : Icelandic [is]\n//! author : Hinrik Örn Sigurðsson : https://github.com/hinrik\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function plural(n) {\n if (n % 100 === 11) {\n return true;\n } else if (n % 10 === 1) {\n return false;\n }\n return true;\n }\n function translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's':\n return withoutSuffix || isFuture\n ? 'nokkrar sekúndur'\n : 'nokkrum sekúndum';\n case 'ss':\n if (plural(number)) {\n return (\n result +\n (withoutSuffix || isFuture ? 'sekúndur' : 'sekúndum')\n );\n }\n return result + 'sekúnda';\n case 'm':\n return withoutSuffix ? 'mínúta' : 'mínútu';\n case 'mm':\n if (plural(number)) {\n return (\n result + (withoutSuffix || isFuture ? 'mínútur' : 'mínútum')\n );\n } else if (withoutSuffix) {\n return result + 'mínúta';\n }\n return result + 'mínútu';\n case 'hh':\n if (plural(number)) {\n return (\n result +\n (withoutSuffix || isFuture\n ? 'klukkustundir'\n : 'klukkustundum')\n );\n }\n return result + 'klukkustund';\n case 'd':\n if (withoutSuffix) {\n return 'dagur';\n }\n return isFuture ? 'dag' : 'degi';\n case 'dd':\n if (plural(number)) {\n if (withoutSuffix) {\n return result + 'dagar';\n }\n return result + (isFuture ? 'daga' : 'dögum');\n } else if (withoutSuffix) {\n return result + 'dagur';\n }\n return result + (isFuture ? 'dag' : 'degi');\n case 'M':\n if (withoutSuffix) {\n return 'mánuður';\n }\n return isFuture ? 'mánuð' : 'mánuði';\n case 'MM':\n if (plural(number)) {\n if (withoutSuffix) {\n return result + 'mánuðir';\n }\n return result + (isFuture ? 'mánuði' : 'mánuðum');\n } else if (withoutSuffix) {\n return result + 'mánuður';\n }\n return result + (isFuture ? 'mánuð' : 'mánuði');\n case 'y':\n return withoutSuffix || isFuture ? 'ár' : 'ári';\n case 'yy':\n if (plural(number)) {\n return result + (withoutSuffix || isFuture ? 'ár' : 'árum');\n }\n return result + (withoutSuffix || isFuture ? 'ár' : 'ári');\n }\n }\n\n var is = moment.defineLocale('is', {\n months: 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split(\n '_'\n ),\n monthsShort: 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),\n weekdays: 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split(\n '_'\n ),\n weekdaysShort: 'sun_mán_þri_mið_fim_fös_lau'.split('_'),\n weekdaysMin: 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'),\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY [kl.] H:mm',\n LLLL: 'dddd, D. MMMM YYYY [kl.] H:mm',\n },\n calendar: {\n sameDay: '[í dag kl.] LT',\n nextDay: '[á morgun kl.] LT',\n nextWeek: 'dddd [kl.] LT',\n lastDay: '[í gær kl.] LT',\n lastWeek: '[síðasta] dddd [kl.] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'eftir %s',\n past: 'fyrir %s síðan',\n s: translate,\n ss: translate,\n m: translate,\n mm: translate,\n h: 'klukkustund',\n hh: translate,\n d: translate,\n dd: translate,\n M: translate,\n MM: translate,\n y: translate,\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return is;\n\n})));\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar nativeGetOwnPropertyNames = require('../internals/object-get-own-property-names').f;\n\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n try {\n return nativeGetOwnPropertyNames(it);\n } catch (error) {\n return windowNames.slice();\n }\n};\n\n// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nmodule.exports.f = function getOwnPropertyNames(it) {\n return windowNames && toString.call(it) == '[object Window]'\n ? getWindowNames(it)\n : nativeGetOwnPropertyNames(toIndexedObject(it));\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","//! moment.js locale configuration\n//! locale : Faroese [fo]\n//! author : Ragnar Johannesen : https://github.com/ragnar123\n//! author : Kristian Sakarisson : https://github.com/sakarisson\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var fo = moment.defineLocale('fo', {\n months: 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split(\n '_'\n ),\n monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),\n weekdays: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split(\n '_'\n ),\n weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),\n weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D. MMMM, YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Í dag kl.] LT',\n nextDay: '[Í morgin kl.] LT',\n nextWeek: 'dddd [kl.] LT',\n lastDay: '[Í gjár kl.] LT',\n lastWeek: '[síðstu] dddd [kl] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'um %s',\n past: '%s síðani',\n s: 'fá sekund',\n ss: '%d sekundir',\n m: 'ein minuttur',\n mm: '%d minuttir',\n h: 'ein tími',\n hh: '%d tímar',\n d: 'ein dagur',\n dd: '%d dagar',\n M: 'ein mánaður',\n MM: '%d mánaðir',\n y: 'eitt ár',\n yy: '%d ár',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return fo;\n\n})));\n","//! moment.js locale configuration\n//! locale : Japanese [ja]\n//! author : LI Long : https://github.com/baryon\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var ja = moment.defineLocale('ja', {\n eras: [\n {\n since: '2019-05-01',\n offset: 1,\n name: '令和',\n narrow: '㋿',\n abbr: 'R',\n },\n {\n since: '1989-01-08',\n until: '2019-04-30',\n offset: 1,\n name: '平成',\n narrow: '㍻',\n abbr: 'H',\n },\n {\n since: '1926-12-25',\n until: '1989-01-07',\n offset: 1,\n name: '昭和',\n narrow: '㍼',\n abbr: 'S',\n },\n {\n since: '1912-07-30',\n until: '1926-12-24',\n offset: 1,\n name: '大正',\n narrow: '㍽',\n abbr: 'T',\n },\n {\n since: '1873-01-01',\n until: '1912-07-29',\n offset: 6,\n name: '明治',\n narrow: '㍾',\n abbr: 'M',\n },\n {\n since: '0001-01-01',\n until: '1873-12-31',\n offset: 1,\n name: '西暦',\n narrow: 'AD',\n abbr: 'AD',\n },\n {\n since: '0000-12-31',\n until: -Infinity,\n offset: 1,\n name: '紀元前',\n narrow: 'BC',\n abbr: 'BC',\n },\n ],\n eraYearOrdinalRegex: /(元|\\d+)年/,\n eraYearOrdinalParse: function (input, match) {\n return match[1] === '元' ? 1 : parseInt(match[1] || input, 10);\n },\n months: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),\n monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(\n '_'\n ),\n weekdays: '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),\n weekdaysShort: '日_月_火_水_木_金_土'.split('_'),\n weekdaysMin: '日_月_火_水_木_金_土'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY/MM/DD',\n LL: 'YYYY年M月D日',\n LLL: 'YYYY年M月D日 HH:mm',\n LLLL: 'YYYY年M月D日 dddd HH:mm',\n l: 'YYYY/MM/DD',\n ll: 'YYYY年M月D日',\n lll: 'YYYY年M月D日 HH:mm',\n llll: 'YYYY年M月D日(ddd) HH:mm',\n },\n meridiemParse: /午前|午後/i,\n isPM: function (input) {\n return input === '午後';\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return '午前';\n } else {\n return '午後';\n }\n },\n calendar: {\n sameDay: '[今日] LT',\n nextDay: '[明日] LT',\n nextWeek: function (now) {\n if (now.week() !== this.week()) {\n return '[来週]dddd LT';\n } else {\n return 'dddd LT';\n }\n },\n lastDay: '[昨日] LT',\n lastWeek: function (now) {\n if (this.week() !== now.week()) {\n return '[先週]dddd LT';\n } else {\n return 'dddd LT';\n }\n },\n sameElse: 'L',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}日/,\n ordinal: function (number, period) {\n switch (period) {\n case 'y':\n return number === 1 ? '元年' : number + '年';\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n default:\n return number;\n }\n },\n relativeTime: {\n future: '%s後',\n past: '%s前',\n s: '数秒',\n ss: '%d秒',\n m: '1分',\n mm: '%d分',\n h: '1時間',\n hh: '%d時間',\n d: '1日',\n dd: '%d日',\n M: '1ヶ月',\n MM: '%dヶ月',\n y: '1年',\n yy: '%d年',\n },\n });\n\n return ja;\n\n})));\n","'use strict';\n\nvar utils = require('./../utils');\nvar buildURL = require('../helpers/buildURL');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\nvar mergeConfig = require('./mergeConfig');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = arguments[1] || {};\n config.url = arguments[0];\n } else {\n config = config || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n // Set config.method\n if (config.method) {\n config.method = config.method.toLowerCase();\n } else if (this.defaults.method) {\n config.method = this.defaults.method.toLowerCase();\n } else {\n config.method = 'get';\n }\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\nAxios.prototype.getUri = function getUri(config) {\n config = mergeConfig(this.defaults, config);\n return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\\?/, '');\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","//! moment.js locale configuration\n//! locale : Spanish (Dominican Republic) [es-do]\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(\n '_'\n ),\n monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),\n monthsParse = [\n /^ene/i,\n /^feb/i,\n /^mar/i,\n /^abr/i,\n /^may/i,\n /^jun/i,\n /^jul/i,\n /^ago/i,\n /^sep/i,\n /^oct/i,\n /^nov/i,\n /^dic/i,\n ],\n monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;\n\n var esDo = moment.defineLocale('es-do', {\n months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(\n '_'\n ),\n monthsShort: function (m, format) {\n if (!m) {\n return monthsShortDot;\n } else if (/-MMM-/.test(format)) {\n return monthsShort[m.month()];\n } else {\n return monthsShortDot[m.month()];\n }\n },\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,\n monthsShortStrictRegex: /^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),\n weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),\n weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'DD/MM/YYYY',\n LL: 'D [de] MMMM [de] YYYY',\n LLL: 'D [de] MMMM [de] YYYY h:mm A',\n LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A',\n },\n calendar: {\n sameDay: function () {\n return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n nextDay: function () {\n return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n nextWeek: function () {\n return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n lastDay: function () {\n return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n lastWeek: function () {\n return (\n '[el] dddd [pasado a la' +\n (this.hours() !== 1 ? 's' : '') +\n '] LT'\n );\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'en %s',\n past: 'hace %s',\n s: 'unos segundos',\n ss: '%d segundos',\n m: 'un minuto',\n mm: '%d minutos',\n h: 'una hora',\n hh: '%d horas',\n d: 'un día',\n dd: '%d días',\n w: 'una semana',\n ww: '%d semanas',\n M: 'un mes',\n MM: '%d meses',\n y: 'un año',\n yy: '%d años',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return esDo;\n\n})));\n","//! moment.js locale configuration\n//! locale : Arabic (Morocco) [ar-ma]\n//! author : ElFadili Yassine : https://github.com/ElFadiliY\n//! author : Abdel Said : https://github.com/abdelsaid\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var arMa = moment.defineLocale('ar-ma', {\n months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(\n '_'\n ),\n monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(\n '_'\n ),\n weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'في %s',\n past: 'منذ %s',\n s: 'ثوان',\n ss: '%d ثانية',\n m: 'دقيقة',\n mm: '%d دقائق',\n h: 'ساعة',\n hh: '%d ساعات',\n d: 'يوم',\n dd: '%d أيام',\n M: 'شهر',\n MM: '%d أشهر',\n y: 'سنة',\n yy: '%d سنوات',\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return arMa;\n\n})));\n","//! moment.js locale configuration\n//! locale : Konkani Latin script [gom-latn]\n//! author : The Discoverer : https://github.com/WikiDiscoverer\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n s: ['thoddea sekondamni', 'thodde sekond'],\n ss: [number + ' sekondamni', number + ' sekond'],\n m: ['eka mintan', 'ek minut'],\n mm: [number + ' mintamni', number + ' mintam'],\n h: ['eka voran', 'ek vor'],\n hh: [number + ' voramni', number + ' voram'],\n d: ['eka disan', 'ek dis'],\n dd: [number + ' disamni', number + ' dis'],\n M: ['eka mhoinean', 'ek mhoino'],\n MM: [number + ' mhoineamni', number + ' mhoine'],\n y: ['eka vorsan', 'ek voros'],\n yy: [number + ' vorsamni', number + ' vorsam'],\n };\n return isFuture ? format[key][0] : format[key][1];\n }\n\n var gomLatn = moment.defineLocale('gom-latn', {\n months: {\n standalone: 'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split(\n '_'\n ),\n format: 'Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea'.split(\n '_'\n ),\n isFormat: /MMMM(\\s)+D[oD]?/,\n },\n monthsShort: 'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: \"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var\".split('_'),\n weekdaysShort: 'Ait._Som._Mon._Bud._Bre._Suk._Son.'.split('_'),\n weekdaysMin: 'Ai_Sm_Mo_Bu_Br_Su_Sn'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'A h:mm [vazta]',\n LTS: 'A h:mm:ss [vazta]',\n L: 'DD-MM-YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY A h:mm [vazta]',\n LLLL: 'dddd, MMMM Do, YYYY, A h:mm [vazta]',\n llll: 'ddd, D MMM YYYY, A h:mm [vazta]',\n },\n calendar: {\n sameDay: '[Aiz] LT',\n nextDay: '[Faleam] LT',\n nextWeek: '[Fuddlo] dddd[,] LT',\n lastDay: '[Kal] LT',\n lastWeek: '[Fattlo] dddd[,] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s',\n past: '%s adim',\n s: processRelativeTime,\n ss: processRelativeTime,\n m: processRelativeTime,\n mm: processRelativeTime,\n h: processRelativeTime,\n hh: processRelativeTime,\n d: processRelativeTime,\n dd: processRelativeTime,\n M: processRelativeTime,\n MM: processRelativeTime,\n y: processRelativeTime,\n yy: processRelativeTime,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(er)/,\n ordinal: function (number, period) {\n switch (period) {\n // the ordinal 'er' only applies to day of the month\n case 'D':\n return number + 'er';\n default:\n case 'M':\n case 'Q':\n case 'DDD':\n case 'd':\n case 'w':\n case 'W':\n return number;\n }\n },\n week: {\n dow: 0, // Sunday is the first day of the week\n doy: 3, // The week that contains Jan 4th is the first week of the year (7 + 0 - 4)\n },\n meridiemParse: /rati|sokallim|donparam|sanje/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'rati') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'sokallim') {\n return hour;\n } else if (meridiem === 'donparam') {\n return hour > 12 ? hour : hour + 12;\n } else if (meridiem === 'sanje') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'rati';\n } else if (hour < 12) {\n return 'sokallim';\n } else if (hour < 16) {\n return 'donparam';\n } else if (hour < 20) {\n return 'sanje';\n } else {\n return 'rati';\n }\n },\n });\n\n return gomLatn;\n\n})));\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","//! moment.js locale configuration\n//! locale : French (Switzerland) [fr-ch]\n//! author : Gaspard Bucher : https://github.com/gaspard\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var frCh = moment.defineLocale('fr-ch', {\n months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(\n '_'\n ),\n monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),\n weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),\n weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Aujourd’hui à] LT',\n nextDay: '[Demain à] LT',\n nextWeek: 'dddd [à] LT',\n lastDay: '[Hier à] LT',\n lastWeek: 'dddd [dernier à] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'dans %s',\n past: 'il y a %s',\n s: 'quelques secondes',\n ss: '%d secondes',\n m: 'une minute',\n mm: '%d minutes',\n h: 'une heure',\n hh: '%d heures',\n d: 'un jour',\n dd: '%d jours',\n M: 'un mois',\n MM: '%d mois',\n y: 'un an',\n yy: '%d ans',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(er|e)/,\n ordinal: function (number, period) {\n switch (period) {\n // Words with masculine grammatical gender: mois, trimestre, jour\n default:\n case 'M':\n case 'Q':\n case 'D':\n case 'DDD':\n case 'd':\n return number + (number === 1 ? 'er' : 'e');\n\n // Words with feminine grammatical gender: semaine\n case 'w':\n case 'W':\n return number + (number === 1 ? 're' : 'e');\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return frCh;\n\n})));\n","//! moment.js locale configuration\n//! locale : English (Australia) [en-au]\n//! author : Jared Morse : https://github.com/jarcoal\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var enAu = moment.defineLocale('en-au', {\n months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(\n '_'\n ),\n weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY h:mm A',\n LLLL: 'dddd, D MMMM YYYY h:mm A',\n },\n calendar: {\n sameDay: '[Today at] LT',\n nextDay: '[Tomorrow at] LT',\n nextWeek: 'dddd [at] LT',\n lastDay: '[Yesterday at] LT',\n lastWeek: '[Last] dddd [at] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'in %s',\n past: '%s ago',\n s: 'a few seconds',\n ss: '%d seconds',\n m: 'a minute',\n mm: '%d minutes',\n h: 'an hour',\n hh: '%d hours',\n d: 'a day',\n dd: '%d days',\n M: 'a month',\n MM: '%d months',\n y: 'a year',\n yy: '%d years',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal: function (number) {\n var b = number % 10,\n output =\n ~~((number % 100) / 10) === 1\n ? 'th'\n : b === 1\n ? 'st'\n : b === 2\n ? 'nd'\n : b === 3\n ? 'rd'\n : 'th';\n return number + output;\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return enAu;\n\n})));\n","//! moment.js locale configuration\n//! locale : Turkish [tr]\n//! authors : Erhan Gundogan : https://github.com/erhangundogan,\n//! Burak Yiğit Kaya: https://github.com/BYK\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var suffixes = {\n 1: \"'inci\",\n 5: \"'inci\",\n 8: \"'inci\",\n 70: \"'inci\",\n 80: \"'inci\",\n 2: \"'nci\",\n 7: \"'nci\",\n 20: \"'nci\",\n 50: \"'nci\",\n 3: \"'üncü\",\n 4: \"'üncü\",\n 100: \"'üncü\",\n 6: \"'ncı\",\n 9: \"'uncu\",\n 10: \"'uncu\",\n 30: \"'uncu\",\n 60: \"'ıncı\",\n 90: \"'ıncı\",\n };\n\n var tr = moment.defineLocale('tr', {\n months: 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'.split(\n '_'\n ),\n monthsShort: 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'.split('_'),\n weekdays: 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split(\n '_'\n ),\n weekdaysShort: 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'),\n weekdaysMin: 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'),\n meridiem: function (hours, minutes, isLower) {\n if (hours < 12) {\n return isLower ? 'öö' : 'ÖÖ';\n } else {\n return isLower ? 'ös' : 'ÖS';\n }\n },\n meridiemParse: /öö|ÖÖ|ös|ÖS/,\n isPM: function (input) {\n return input === 'ös' || input === 'ÖS';\n },\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[bugün saat] LT',\n nextDay: '[yarın saat] LT',\n nextWeek: '[gelecek] dddd [saat] LT',\n lastDay: '[dün] LT',\n lastWeek: '[geçen] dddd [saat] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s sonra',\n past: '%s önce',\n s: 'birkaç saniye',\n ss: '%d saniye',\n m: 'bir dakika',\n mm: '%d dakika',\n h: 'bir saat',\n hh: '%d saat',\n d: 'bir gün',\n dd: '%d gün',\n w: 'bir hafta',\n ww: '%d hafta',\n M: 'bir ay',\n MM: '%d ay',\n y: 'bir yıl',\n yy: '%d yıl',\n },\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'Do':\n case 'DD':\n return number;\n default:\n if (number === 0) {\n // special case for zero\n return number + \"'ıncı\";\n }\n var a = number % 10,\n b = (number % 100) - a,\n c = number >= 100 ? 100 : null;\n return number + (suffixes[a] || suffixes[b] || suffixes[c]);\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return tr;\n\n})));\n","//! moment.js locale configuration\n//! locale : Danish [da]\n//! author : Ulrik Nielsen : https://github.com/mrbase\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var da = moment.defineLocale('da', {\n months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split(\n '_'\n ),\n monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),\n weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),\n weekdaysShort: 'søn_man_tir_ons_tor_fre_lør'.split('_'),\n weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY HH:mm',\n LLLL: 'dddd [d.] D. MMMM YYYY [kl.] HH:mm',\n },\n calendar: {\n sameDay: '[i dag kl.] LT',\n nextDay: '[i morgen kl.] LT',\n nextWeek: 'på dddd [kl.] LT',\n lastDay: '[i går kl.] LT',\n lastWeek: '[i] dddd[s kl.] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'om %s',\n past: '%s siden',\n s: 'få sekunder',\n ss: '%d sekunder',\n m: 'et minut',\n mm: '%d minutter',\n h: 'en time',\n hh: '%d timer',\n d: 'en dag',\n dd: '%d dage',\n M: 'en måned',\n MM: '%d måneder',\n y: 'et år',\n yy: '%d år',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return da;\n\n})));\n","//! moment.js locale configuration\n//! locale : Tagalog (Philippines) [tl-ph]\n//! author : Dan Hagman : https://github.com/hagmandan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var tlPh = moment.defineLocale('tl-ph', {\n months: 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split(\n '_'\n ),\n monthsShort: 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),\n weekdays: 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split(\n '_'\n ),\n weekdaysShort: 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),\n weekdaysMin: 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'MM/D/YYYY',\n LL: 'MMMM D, YYYY',\n LLL: 'MMMM D, YYYY HH:mm',\n LLLL: 'dddd, MMMM DD, YYYY HH:mm',\n },\n calendar: {\n sameDay: 'LT [ngayong araw]',\n nextDay: '[Bukas ng] LT',\n nextWeek: 'LT [sa susunod na] dddd',\n lastDay: 'LT [kahapon]',\n lastWeek: 'LT [noong nakaraang] dddd',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'sa loob ng %s',\n past: '%s ang nakalipas',\n s: 'ilang segundo',\n ss: '%d segundo',\n m: 'isang minuto',\n mm: '%d minuto',\n h: 'isang oras',\n hh: '%d oras',\n d: 'isang araw',\n dd: '%d araw',\n M: 'isang buwan',\n MM: '%d buwan',\n y: 'isang taon',\n yy: '%d taon',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}/,\n ordinal: function (number) {\n return number;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return tlPh;\n\n})));\n","//! moment.js locale configuration\n//! locale : Basque [eu]\n//! author : Eneko Illarramendi : https://github.com/eillarra\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var eu = moment.defineLocale('eu', {\n months: 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split(\n '_'\n ),\n monthsShort: 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split(\n '_'\n ),\n weekdaysShort: 'ig._al._ar._az._og._ol._lr.'.split('_'),\n weekdaysMin: 'ig_al_ar_az_og_ol_lr'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY-MM-DD',\n LL: 'YYYY[ko] MMMM[ren] D[a]',\n LLL: 'YYYY[ko] MMMM[ren] D[a] HH:mm',\n LLLL: 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',\n l: 'YYYY-M-D',\n ll: 'YYYY[ko] MMM D[a]',\n lll: 'YYYY[ko] MMM D[a] HH:mm',\n llll: 'ddd, YYYY[ko] MMM D[a] HH:mm',\n },\n calendar: {\n sameDay: '[gaur] LT[etan]',\n nextDay: '[bihar] LT[etan]',\n nextWeek: 'dddd LT[etan]',\n lastDay: '[atzo] LT[etan]',\n lastWeek: '[aurreko] dddd LT[etan]',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s barru',\n past: 'duela %s',\n s: 'segundo batzuk',\n ss: '%d segundo',\n m: 'minutu bat',\n mm: '%d minutu',\n h: 'ordu bat',\n hh: '%d ordu',\n d: 'egun bat',\n dd: '%d egun',\n M: 'hilabete bat',\n MM: '%d hilabete',\n y: 'urte bat',\n yy: '%d urte',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return eu;\n\n})));\n","//! moment.js locale configuration\n//! locale : Thai [th]\n//! author : Kridsada Thanabulpong : https://github.com/sirn\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var th = moment.defineLocale('th', {\n months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split(\n '_'\n ),\n monthsShort: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),\n weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference\n weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY เวลา H:mm',\n LLLL: 'วันddddที่ D MMMM YYYY เวลา H:mm',\n },\n meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,\n isPM: function (input) {\n return input === 'หลังเที่ยง';\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ก่อนเที่ยง';\n } else {\n return 'หลังเที่ยง';\n }\n },\n calendar: {\n sameDay: '[วันนี้ เวลา] LT',\n nextDay: '[พรุ่งนี้ เวลา] LT',\n nextWeek: 'dddd[หน้า เวลา] LT',\n lastDay: '[เมื่อวานนี้ เวลา] LT',\n lastWeek: '[วัน]dddd[ที่แล้ว เวลา] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'อีก %s',\n past: '%sที่แล้ว',\n s: 'ไม่กี่วินาที',\n ss: '%d วินาที',\n m: '1 นาที',\n mm: '%d นาที',\n h: '1 ชั่วโมง',\n hh: '%d ชั่วโมง',\n d: '1 วัน',\n dd: '%d วัน',\n w: '1 สัปดาห์',\n ww: '%d สัปดาห์',\n M: '1 เดือน',\n MM: '%d เดือน',\n y: '1 ปี',\n yy: '%d ปี',\n },\n });\n\n return th;\n\n})));\n","'use strict';\nvar toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.repeat` method implementation\n// https://tc39.github.io/ecma262/#sec-string.prototype.repeat\nmodule.exports = ''.repeat || function repeat(count) {\n var str = String(requireObjectCoercible(this));\n var result = '';\n var n = toInteger(count);\n if (n < 0 || n == Infinity) throw RangeError('Wrong number of repetitions');\n for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) result += str;\n return result;\n};\n","'use strict';\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar isRegExp = require('../internals/is-regexp');\nvar anObject = require('../internals/an-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar speciesConstructor = require('../internals/species-constructor');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar toLength = require('../internals/to-length');\nvar callRegExpExec = require('../internals/regexp-exec-abstract');\nvar regexpExec = require('../internals/regexp-exec');\nvar fails = require('../internals/fails');\n\nvar arrayPush = [].push;\nvar min = Math.min;\nvar MAX_UINT32 = 0xFFFFFFFF;\n\n// babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError\nvar SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); });\n\n// @@split logic\nfixRegExpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) {\n var internalSplit;\n if (\n 'abbc'.split(/(b)*/)[1] == 'c' ||\n 'test'.split(/(?:)/, -1).length != 4 ||\n 'ab'.split(/(?:ab)*/).length != 2 ||\n '.'.split(/(.?)(.?)/).length != 4 ||\n '.'.split(/()()/).length > 1 ||\n ''.split(/.?/).length\n ) {\n // based on es5-shim implementation, need to rework it\n internalSplit = function (separator, limit) {\n var string = String(requireObjectCoercible(this));\n var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;\n if (lim === 0) return [];\n if (separator === undefined) return [string];\n // If `separator` is not a regex, use native split\n if (!isRegExp(separator)) {\n return nativeSplit.call(string, separator, lim);\n }\n var output = [];\n var flags = (separator.ignoreCase ? 'i' : '') +\n (separator.multiline ? 'm' : '') +\n (separator.unicode ? 'u' : '') +\n (separator.sticky ? 'y' : '');\n var lastLastIndex = 0;\n // Make `global` and avoid `lastIndex` issues by working with a copy\n var separatorCopy = new RegExp(separator.source, flags + 'g');\n var match, lastIndex, lastLength;\n while (match = regexpExec.call(separatorCopy, string)) {\n lastIndex = separatorCopy.lastIndex;\n if (lastIndex > lastLastIndex) {\n output.push(string.slice(lastLastIndex, match.index));\n if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1));\n lastLength = match[0].length;\n lastLastIndex = lastIndex;\n if (output.length >= lim) break;\n }\n if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop\n }\n if (lastLastIndex === string.length) {\n if (lastLength || !separatorCopy.test('')) output.push('');\n } else output.push(string.slice(lastLastIndex));\n return output.length > lim ? output.slice(0, lim) : output;\n };\n // Chakra, V8\n } else if ('0'.split(undefined, 0).length) {\n internalSplit = function (separator, limit) {\n return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit);\n };\n } else internalSplit = nativeSplit;\n\n return [\n // `String.prototype.split` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.split\n function split(separator, limit) {\n var O = requireObjectCoercible(this);\n var splitter = separator == undefined ? undefined : separator[SPLIT];\n return splitter !== undefined\n ? splitter.call(separator, O, limit)\n : internalSplit.call(String(O), separator, limit);\n },\n // `RegExp.prototype[@@split]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split\n //\n // NOTE: This cannot be properly polyfilled in engines that don't support\n // the 'y' flag.\n function (regexp, limit) {\n var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit);\n if (res.done) return res.value;\n\n var rx = anObject(regexp);\n var S = String(this);\n var C = speciesConstructor(rx, RegExp);\n\n var unicodeMatching = rx.unicode;\n var flags = (rx.ignoreCase ? 'i' : '') +\n (rx.multiline ? 'm' : '') +\n (rx.unicode ? 'u' : '') +\n (SUPPORTS_Y ? 'y' : 'g');\n\n // ^(? + rx + ) is needed, in combination with some S slicing, to\n // simulate the 'y' flag.\n var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags);\n var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;\n if (lim === 0) return [];\n if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];\n var p = 0;\n var q = 0;\n var A = [];\n while (q < S.length) {\n splitter.lastIndex = SUPPORTS_Y ? q : 0;\n var z = callRegExpExec(splitter, SUPPORTS_Y ? S : S.slice(q));\n var e;\n if (\n z === null ||\n (e = min(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p\n ) {\n q = advanceStringIndex(S, q, unicodeMatching);\n } else {\n A.push(S.slice(p, q));\n if (A.length === lim) return A;\n for (var i = 1; i <= z.length - 1; i++) {\n A.push(z[i]);\n if (A.length === lim) return A;\n }\n q = p = e;\n }\n }\n A.push(S.slice(p));\n return A;\n }\n ];\n}, !SUPPORTS_Y);\n","// `SameValue` abstract operation\n// https://tc39.github.io/ecma262/#sec-samevalue\nmodule.exports = Object.is || function is(x, y) {\n // eslint-disable-next-line no-self-compare\n return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $reduce = require('../internals/array-reduce').left;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\nvar CHROME_VERSION = require('../internals/engine-v8-version');\nvar IS_NODE = require('../internals/engine-is-node');\n\nvar STRICT_METHOD = arrayMethodIsStrict('reduce');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('reduce', { 1: 0 });\n// Chrome 80-82 has a critical bug\n// https://bugs.chromium.org/p/chromium/issues/detail?id=1049982\nvar CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83;\n\n// `Array.prototype.reduce` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.reduce\n$({ target: 'Array', proto: true, forced: !STRICT_METHOD || !USES_TO_LENGTH || CHROME_BUG }, {\n reduce: function reduce(callbackfn /* , initialValue */) {\n return $reduce(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","//! moment.js locale configuration\n//! locale : Serbian Cyrillic [sr-cyrl]\n//! author : Milan Janačković : https://github.com/milan-j\n//! author : Stefan Crnjaković : https://github.com/crnjakovic\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var translator = {\n words: {\n //Different grammatical cases\n ss: ['секунда', 'секунде', 'секунди'],\n m: ['један минут', 'једне минуте'],\n mm: ['минут', 'минуте', 'минута'],\n h: ['један сат', 'једног сата'],\n hh: ['сат', 'сата', 'сати'],\n dd: ['дан', 'дана', 'дана'],\n MM: ['месец', 'месеца', 'месеци'],\n yy: ['година', 'године', 'година'],\n },\n correctGrammaticalCase: function (number, wordKey) {\n return number === 1\n ? wordKey[0]\n : number >= 2 && number <= 4\n ? wordKey[1]\n : wordKey[2];\n },\n translate: function (number, withoutSuffix, key) {\n var wordKey = translator.words[key];\n if (key.length === 1) {\n return withoutSuffix ? wordKey[0] : wordKey[1];\n } else {\n return (\n number +\n ' ' +\n translator.correctGrammaticalCase(number, wordKey)\n );\n }\n },\n };\n\n var srCyrl = moment.defineLocale('sr-cyrl', {\n months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split(\n '_'\n ),\n monthsShort: 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'недеља_понедељак_уторак_среда_четвртак_петак_субота'.split('_'),\n weekdaysShort: 'нед._пон._уто._сре._чет._пет._суб.'.split('_'),\n weekdaysMin: 'не_по_ут_ср_че_пе_су'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'D. M. YYYY.',\n LL: 'D. MMMM YYYY.',\n LLL: 'D. MMMM YYYY. H:mm',\n LLLL: 'dddd, D. MMMM YYYY. H:mm',\n },\n calendar: {\n sameDay: '[данас у] LT',\n nextDay: '[сутра у] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[у] [недељу] [у] LT';\n case 3:\n return '[у] [среду] [у] LT';\n case 6:\n return '[у] [суботу] [у] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[у] dddd [у] LT';\n }\n },\n lastDay: '[јуче у] LT',\n lastWeek: function () {\n var lastWeekDays = [\n '[прошле] [недеље] [у] LT',\n '[прошлог] [понедељка] [у] LT',\n '[прошлог] [уторка] [у] LT',\n '[прошле] [среде] [у] LT',\n '[прошлог] [четвртка] [у] LT',\n '[прошлог] [петка] [у] LT',\n '[прошле] [суботе] [у] LT',\n ];\n return lastWeekDays[this.day()];\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'за %s',\n past: 'пре %s',\n s: 'неколико секунди',\n ss: translator.translate,\n m: translator.translate,\n mm: translator.translate,\n h: translator.translate,\n hh: translator.translate,\n d: 'дан',\n dd: translator.translate,\n M: 'месец',\n MM: translator.translate,\n y: 'годину',\n yy: translator.translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 1st is the first week of the year.\n },\n });\n\n return srCyrl;\n\n})));\n","var classof = require('./classof-raw');\nvar regexpExec = require('./regexp-exec');\n\n// `RegExpExec` abstract operation\n// https://tc39.github.io/ecma262/#sec-regexpexec\nmodule.exports = function (R, S) {\n var exec = R.exec;\n if (typeof exec === 'function') {\n var result = exec.call(R, S);\n if (typeof result !== 'object') {\n throw TypeError('RegExp exec method returned something other than an Object or null');\n }\n return result;\n }\n\n if (classof(R) !== 'RegExp') {\n throw TypeError('RegExp#exec called on incompatible receiver');\n }\n\n return regexpExec.call(R, S);\n};\n\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","//! moment.js locale configuration\n//! locale : Occitan, lengadocian dialecte [oc-lnc]\n//! author : Quentin PAGÈS : https://github.com/Quenty31\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var ocLnc = moment.defineLocale('oc-lnc', {\n months: {\n standalone: 'genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre'.split(\n '_'\n ),\n format: \"de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre\".split(\n '_'\n ),\n isFormat: /D[oD]?(\\s)+MMMM/,\n },\n monthsShort: 'gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte'.split(\n '_'\n ),\n weekdaysShort: 'dg._dl._dm._dc._dj._dv._ds.'.split('_'),\n weekdaysMin: 'dg_dl_dm_dc_dj_dv_ds'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM [de] YYYY',\n ll: 'D MMM YYYY',\n LLL: 'D MMMM [de] YYYY [a] H:mm',\n lll: 'D MMM YYYY, H:mm',\n LLLL: 'dddd D MMMM [de] YYYY [a] H:mm',\n llll: 'ddd D MMM YYYY, H:mm',\n },\n calendar: {\n sameDay: '[uèi a] LT',\n nextDay: '[deman a] LT',\n nextWeek: 'dddd [a] LT',\n lastDay: '[ièr a] LT',\n lastWeek: 'dddd [passat a] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: \"d'aquí %s\",\n past: 'fa %s',\n s: 'unas segondas',\n ss: '%d segondas',\n m: 'una minuta',\n mm: '%d minutas',\n h: 'una ora',\n hh: '%d oras',\n d: 'un jorn',\n dd: '%d jorns',\n M: 'un mes',\n MM: '%d meses',\n y: 'un an',\n yy: '%d ans',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(r|n|t|è|a)/,\n ordinal: function (number, period) {\n var output =\n number === 1\n ? 'r'\n : number === 2\n ? 'n'\n : number === 3\n ? 'r'\n : number === 4\n ? 't'\n : 'è';\n if (period === 'w' || period === 'W') {\n output = 'a';\n }\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4,\n },\n });\n\n return ocLnc;\n\n})));\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","//! moment.js locale configuration\n//! locale : Maltese (Malta) [mt]\n//! author : Alessandro Maruccia : https://github.com/alesma\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var mt = moment.defineLocale('mt', {\n months: 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split(\n '_'\n ),\n monthsShort: 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),\n weekdays: 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split(\n '_'\n ),\n weekdaysShort: 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),\n weekdaysMin: 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Illum fil-]LT',\n nextDay: '[Għada fil-]LT',\n nextWeek: 'dddd [fil-]LT',\n lastDay: '[Il-bieraħ fil-]LT',\n lastWeek: 'dddd [li għadda] [fil-]LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'f’ %s',\n past: '%s ilu',\n s: 'ftit sekondi',\n ss: '%d sekondi',\n m: 'minuta',\n mm: '%d minuti',\n h: 'siegħa',\n hh: '%d siegħat',\n d: 'ġurnata',\n dd: '%d ġranet',\n M: 'xahar',\n MM: '%d xhur',\n y: 'sena',\n yy: '%d sni',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return mt;\n\n})));\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var userAgent = require('../internals/engine-user-agent');\n\nmodule.exports = /(iphone|ipod|ipad).*applewebkit/i.test(userAgent);\n","//! moment.js locale configuration\n//! locale : Arabic (Lybia) [ar-ly]\n//! author : Ali Hmer: https://github.com/kikoanis\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '1',\n 2: '2',\n 3: '3',\n 4: '4',\n 5: '5',\n 6: '6',\n 7: '7',\n 8: '8',\n 9: '9',\n 0: '0',\n },\n pluralForm = function (n) {\n return n === 0\n ? 0\n : n === 1\n ? 1\n : n === 2\n ? 2\n : n % 100 >= 3 && n % 100 <= 10\n ? 3\n : n % 100 >= 11\n ? 4\n : 5;\n },\n plurals = {\n s: [\n 'أقل من ثانية',\n 'ثانية واحدة',\n ['ثانيتان', 'ثانيتين'],\n '%d ثوان',\n '%d ثانية',\n '%d ثانية',\n ],\n m: [\n 'أقل من دقيقة',\n 'دقيقة واحدة',\n ['دقيقتان', 'دقيقتين'],\n '%d دقائق',\n '%d دقيقة',\n '%d دقيقة',\n ],\n h: [\n 'أقل من ساعة',\n 'ساعة واحدة',\n ['ساعتان', 'ساعتين'],\n '%d ساعات',\n '%d ساعة',\n '%d ساعة',\n ],\n d: [\n 'أقل من يوم',\n 'يوم واحد',\n ['يومان', 'يومين'],\n '%d أيام',\n '%d يومًا',\n '%d يوم',\n ],\n M: [\n 'أقل من شهر',\n 'شهر واحد',\n ['شهران', 'شهرين'],\n '%d أشهر',\n '%d شهرا',\n '%d شهر',\n ],\n y: [\n 'أقل من عام',\n 'عام واحد',\n ['عامان', 'عامين'],\n '%d أعوام',\n '%d عامًا',\n '%d عام',\n ],\n },\n pluralize = function (u) {\n return function (number, withoutSuffix, string, isFuture) {\n var f = pluralForm(number),\n str = plurals[u][pluralForm(number)];\n if (f === 2) {\n str = str[withoutSuffix ? 0 : 1];\n }\n return str.replace(/%d/i, number);\n };\n },\n months = [\n 'يناير',\n 'فبراير',\n 'مارس',\n 'أبريل',\n 'مايو',\n 'يونيو',\n 'يوليو',\n 'أغسطس',\n 'سبتمبر',\n 'أكتوبر',\n 'نوفمبر',\n 'ديسمبر',\n ];\n\n var arLy = moment.defineLocale('ar-ly', {\n months: months,\n monthsShort: months,\n weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'D/\\u200FM/\\u200FYYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n meridiemParse: /ص|م/,\n isPM: function (input) {\n return 'م' === input;\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ص';\n } else {\n return 'م';\n }\n },\n calendar: {\n sameDay: '[اليوم عند الساعة] LT',\n nextDay: '[غدًا عند الساعة] LT',\n nextWeek: 'dddd [عند الساعة] LT',\n lastDay: '[أمس عند الساعة] LT',\n lastWeek: 'dddd [عند الساعة] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'بعد %s',\n past: 'منذ %s',\n s: pluralize('s'),\n ss: pluralize('s'),\n m: pluralize('m'),\n mm: pluralize('m'),\n h: pluralize('h'),\n hh: pluralize('h'),\n d: pluralize('d'),\n dd: pluralize('d'),\n M: pluralize('M'),\n MM: pluralize('M'),\n y: pluralize('y'),\n yy: pluralize('y'),\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string\n .replace(/\\d/g, function (match) {\n return symbolMap[match];\n })\n .replace(/,/g, '،');\n },\n week: {\n dow: 6, // Saturday is the first day of the week.\n doy: 12, // The week that contains Jan 12th is the first week of the year.\n },\n });\n\n return arLy;\n\n})));\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","//! moment.js locale configuration\n//! locale : Belarusian [be]\n//! author : Dmitry Demidov : https://github.com/demidov91\n//! author: Praleska: http://praleska.pro/\n//! Author : Menelion Elensúle : https://github.com/Oire\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function plural(word, num) {\n var forms = word.split('_');\n return num % 10 === 1 && num % 100 !== 11\n ? forms[0]\n : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)\n ? forms[1]\n : forms[2];\n }\n function relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n ss: withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',\n mm: withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',\n hh: withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',\n dd: 'дзень_дні_дзён',\n MM: 'месяц_месяцы_месяцаў',\n yy: 'год_гады_гадоў',\n };\n if (key === 'm') {\n return withoutSuffix ? 'хвіліна' : 'хвіліну';\n } else if (key === 'h') {\n return withoutSuffix ? 'гадзіна' : 'гадзіну';\n } else {\n return number + ' ' + plural(format[key], +number);\n }\n }\n\n var be = moment.defineLocale('be', {\n months: {\n format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split(\n '_'\n ),\n standalone: 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split(\n '_'\n ),\n },\n monthsShort: 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split(\n '_'\n ),\n weekdays: {\n format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split(\n '_'\n ),\n standalone: 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split(\n '_'\n ),\n isFormat: /\\[ ?[Ууў] ?(?:мінулую|наступную)? ?\\] ?dddd/,\n },\n weekdaysShort: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),\n weekdaysMin: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY г.',\n LLL: 'D MMMM YYYY г., HH:mm',\n LLLL: 'dddd, D MMMM YYYY г., HH:mm',\n },\n calendar: {\n sameDay: '[Сёння ў] LT',\n nextDay: '[Заўтра ў] LT',\n lastDay: '[Учора ў] LT',\n nextWeek: function () {\n return '[У] dddd [ў] LT';\n },\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 5:\n case 6:\n return '[У мінулую] dddd [ў] LT';\n case 1:\n case 2:\n case 4:\n return '[У мінулы] dddd [ў] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'праз %s',\n past: '%s таму',\n s: 'некалькі секунд',\n m: relativeTimeWithPlural,\n mm: relativeTimeWithPlural,\n h: relativeTimeWithPlural,\n hh: relativeTimeWithPlural,\n d: 'дзень',\n dd: relativeTimeWithPlural,\n M: 'месяц',\n MM: relativeTimeWithPlural,\n y: 'год',\n yy: relativeTimeWithPlural,\n },\n meridiemParse: /ночы|раніцы|дня|вечара/,\n isPM: function (input) {\n return /^(дня|вечара)$/.test(input);\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ночы';\n } else if (hour < 12) {\n return 'раніцы';\n } else if (hour < 17) {\n return 'дня';\n } else {\n return 'вечара';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(і|ы|га)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'M':\n case 'd':\n case 'DDD':\n case 'w':\n case 'W':\n return (number % 10 === 2 || number % 10 === 3) &&\n number % 100 !== 12 &&\n number % 100 !== 13\n ? number + '-і'\n : number + '-ы';\n case 'D':\n return number + '-га';\n default:\n return number;\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return be;\n\n})));\n","//! moment.js locale configuration\n//! locale : Georgian [ka]\n//! author : Irakli Janiashvili : https://github.com/IrakliJani\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var ka = moment.defineLocale('ka', {\n months: 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split(\n '_'\n ),\n monthsShort: 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'),\n weekdays: {\n standalone: 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split(\n '_'\n ),\n format: 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split(\n '_'\n ),\n isFormat: /(წინა|შემდეგ)/,\n },\n weekdaysShort: 'კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ'.split('_'),\n weekdaysMin: 'კვ_ორ_სა_ოთ_ხუ_პა_შა'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[დღეს] LT[-ზე]',\n nextDay: '[ხვალ] LT[-ზე]',\n lastDay: '[გუშინ] LT[-ზე]',\n nextWeek: '[შემდეგ] dddd LT[-ზე]',\n lastWeek: '[წინა] dddd LT-ზე',\n sameElse: 'L',\n },\n relativeTime: {\n future: function (s) {\n return s.replace(/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/, function (\n $0,\n $1,\n $2\n ) {\n return $2 === 'ი' ? $1 + 'ში' : $1 + $2 + 'ში';\n });\n },\n past: function (s) {\n if (/(წამი|წუთი|საათი|დღე|თვე)/.test(s)) {\n return s.replace(/(ი|ე)$/, 'ის წინ');\n }\n if (/წელი/.test(s)) {\n return s.replace(/წელი$/, 'წლის წინ');\n }\n return s;\n },\n s: 'რამდენიმე წამი',\n ss: '%d წამი',\n m: 'წუთი',\n mm: '%d წუთი',\n h: 'საათი',\n hh: '%d საათი',\n d: 'დღე',\n dd: '%d დღე',\n M: 'თვე',\n MM: '%d თვე',\n y: 'წელი',\n yy: '%d წელი',\n },\n dayOfMonthOrdinalParse: /0|1-ლი|მე-\\d{1,2}|\\d{1,2}-ე/,\n ordinal: function (number) {\n if (number === 0) {\n return number;\n }\n if (number === 1) {\n return number + '-ლი';\n }\n if (\n number < 20 ||\n (number <= 100 && number % 20 === 0) ||\n number % 100 === 0\n ) {\n return 'მე-' + number;\n }\n return number + '-ე';\n },\n week: {\n dow: 1,\n doy: 7,\n },\n });\n\n return ka;\n\n})));\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar iteratorClose = require('../internals/iterator-close');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nmodule.exports = function (iterable, unboundFunction, options) {\n var that = options && options.that;\n var AS_ENTRIES = !!(options && options.AS_ENTRIES);\n var IS_ITERATOR = !!(options && options.IS_ITERATOR);\n var INTERRUPTED = !!(options && options.INTERRUPTED);\n var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);\n var iterator, iterFn, index, length, result, next, step;\n\n var stop = function (condition) {\n if (iterator) iteratorClose(iterator);\n return new Result(true, condition);\n };\n\n var callFn = function (value) {\n if (AS_ENTRIES) {\n anObject(value);\n return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);\n } return INTERRUPTED ? fn(value, stop) : fn(value);\n };\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = callFn(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n try {\n result = callFn(step.value);\n } catch (error) {\n iteratorClose(iterator);\n throw error;\n }\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n","//! moment.js locale configuration\n//! locale : Korean [ko]\n//! author : Kyungwook, Park : https://github.com/kyungw00k\n//! author : Jeeeyul Lee \n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var ko = moment.defineLocale('ko', {\n months: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),\n monthsShort: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split(\n '_'\n ),\n weekdays: '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),\n weekdaysShort: '일_월_화_수_목_금_토'.split('_'),\n weekdaysMin: '일_월_화_수_목_금_토'.split('_'),\n longDateFormat: {\n LT: 'A h:mm',\n LTS: 'A h:mm:ss',\n L: 'YYYY.MM.DD.',\n LL: 'YYYY년 MMMM D일',\n LLL: 'YYYY년 MMMM D일 A h:mm',\n LLLL: 'YYYY년 MMMM D일 dddd A h:mm',\n l: 'YYYY.MM.DD.',\n ll: 'YYYY년 MMMM D일',\n lll: 'YYYY년 MMMM D일 A h:mm',\n llll: 'YYYY년 MMMM D일 dddd A h:mm',\n },\n calendar: {\n sameDay: '오늘 LT',\n nextDay: '내일 LT',\n nextWeek: 'dddd LT',\n lastDay: '어제 LT',\n lastWeek: '지난주 dddd LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s 후',\n past: '%s 전',\n s: '몇 초',\n ss: '%d초',\n m: '1분',\n mm: '%d분',\n h: '한 시간',\n hh: '%d시간',\n d: '하루',\n dd: '%d일',\n M: '한 달',\n MM: '%d달',\n y: '일 년',\n yy: '%d년',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(일|월|주)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '일';\n case 'M':\n return number + '월';\n case 'w':\n case 'W':\n return number + '주';\n default:\n return number;\n }\n },\n meridiemParse: /오전|오후/,\n isPM: function (token) {\n return token === '오후';\n },\n meridiem: function (hour, minute, isUpper) {\n return hour < 12 ? '오전' : '오후';\n },\n });\n\n return ko;\n\n})));\n","/**\n * lodash (Custom Build) \n * Build: `lodash modularize exports=\"npm\" -o ./`\n * Copyright jQuery Foundation and other contributors \n * Released under MIT license \n * Based on Underscore.js 1.8.3 \n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n */\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/** `Object#toString` result references. */\nvar symbolTag = '[object Symbol]';\n\n/** Used to match leading and trailing whitespace. */\nvar reTrimStart = /^\\s+/;\n\n/** Used to compose unicode character classes. */\nvar rsAstralRange = '\\\\ud800-\\\\udfff',\n rsComboMarksRange = '\\\\u0300-\\\\u036f\\\\ufe20-\\\\ufe23',\n rsComboSymbolsRange = '\\\\u20d0-\\\\u20f0',\n rsVarRange = '\\\\ufe0e\\\\ufe0f';\n\n/** Used to compose unicode capture groups. */\nvar rsAstral = '[' + rsAstralRange + ']',\n rsCombo = '[' + rsComboMarksRange + rsComboSymbolsRange + ']',\n rsFitz = '\\\\ud83c[\\\\udffb-\\\\udfff]',\n rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')',\n rsNonAstral = '[^' + rsAstralRange + ']',\n rsRegional = '(?:\\\\ud83c[\\\\udde6-\\\\uddff]){2}',\n rsSurrPair = '[\\\\ud800-\\\\udbff][\\\\udc00-\\\\udfff]',\n rsZWJ = '\\\\u200d';\n\n/** Used to compose unicode regexes. */\nvar reOptMod = rsModifier + '?',\n rsOptVar = '[' + rsVarRange + ']?',\n rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*',\n rsSeq = rsOptVar + reOptMod + rsOptJoin,\n rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')';\n\n/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */\nvar reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g');\n\n/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */\nvar reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboMarksRange + rsComboSymbolsRange + rsVarRange + ']');\n\n/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\n/**\n * Converts an ASCII `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\nfunction asciiToArray(string) {\n return string.split('');\n}\n\n/**\n * The base implementation of `_.findIndex` and `_.findLastIndex` without\n * support for iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} predicate The function invoked per iteration.\n * @param {number} fromIndex The index to search from.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction baseFindIndex(array, predicate, fromIndex, fromRight) {\n var length = array.length,\n index = fromIndex + (fromRight ? 1 : -1);\n\n while ((fromRight ? index-- : ++index < length)) {\n if (predicate(array[index], index, array)) {\n return index;\n }\n }\n return -1;\n}\n\n/**\n * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction baseIndexOf(array, value, fromIndex) {\n if (value !== value) {\n return baseFindIndex(array, baseIsNaN, fromIndex);\n }\n var index = fromIndex - 1,\n length = array.length;\n\n while (++index < length) {\n if (array[index] === value) {\n return index;\n }\n }\n return -1;\n}\n\n/**\n * The base implementation of `_.isNaN` without support for number objects.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n */\nfunction baseIsNaN(value) {\n return value !== value;\n}\n\n/**\n * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol\n * that is not found in the character symbols.\n *\n * @private\n * @param {Array} strSymbols The string symbols to inspect.\n * @param {Array} chrSymbols The character symbols to find.\n * @returns {number} Returns the index of the first unmatched string symbol.\n */\nfunction charsStartIndex(strSymbols, chrSymbols) {\n var index = -1,\n length = strSymbols.length;\n\n while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\n return index;\n}\n\n/**\n * Checks if `string` contains Unicode symbols.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {boolean} Returns `true` if a symbol is found, else `false`.\n */\nfunction hasUnicode(string) {\n return reHasUnicode.test(string);\n}\n\n/**\n * Converts `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\nfunction stringToArray(string) {\n return hasUnicode(string)\n ? unicodeToArray(string)\n : asciiToArray(string);\n}\n\n/**\n * Converts a Unicode `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\nfunction unicodeToArray(string) {\n return string.match(reUnicode) || [];\n}\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar objectToString = objectProto.toString;\n\n/** Built-in value references. */\nvar Symbol = root.Symbol;\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n/**\n * The base implementation of `_.slice` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\nfunction baseSlice(array, start, end) {\n var index = -1,\n length = array.length;\n\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = end > length ? length : end;\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : ((end - start) >>> 0);\n start >>>= 0;\n\n var result = Array(length);\n while (++index < length) {\n result[index] = array[index + start];\n }\n return result;\n}\n\n/**\n * The base implementation of `_.toString` which doesn't convert nullish\n * values to empty strings.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n */\nfunction baseToString(value) {\n // Exit early for strings to avoid a performance hit in some environments.\n if (typeof value == 'string') {\n return value;\n }\n if (isSymbol(value)) {\n return symbolToString ? symbolToString.call(value) : '';\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\n/**\n * Casts `array` to a slice if it's needed.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {number} start The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the cast slice.\n */\nfunction castSlice(array, start, end) {\n var length = array.length;\n end = end === undefined ? length : end;\n return (!start && end >= length) ? array : baseSlice(array, start, end);\n}\n\n/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return !!value && typeof value == 'object';\n}\n\n/**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\nfunction isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && objectToString.call(value) == symbolTag);\n}\n\n/**\n * Converts `value` to a string. An empty string is returned for `null`\n * and `undefined` values. The sign of `-0` is preserved.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n * @example\n *\n * _.toString(null);\n * // => ''\n *\n * _.toString(-0);\n * // => '-0'\n *\n * _.toString([1, 2, 3]);\n * // => '1,2,3'\n */\nfunction toString(value) {\n return value == null ? '' : baseToString(value);\n}\n\n/**\n * Removes leading whitespace or specified characters from `string`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category String\n * @param {string} [string=''] The string to trim.\n * @param {string} [chars=whitespace] The characters to trim.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {string} Returns the trimmed string.\n * @example\n *\n * _.trimStart(' abc ');\n * // => 'abc '\n *\n * _.trimStart('-_-abc-_-', '_-');\n * // => 'abc-_-'\n */\nfunction trimStart(string, chars, guard) {\n string = toString(string);\n if (string && (guard || chars === undefined)) {\n return string.replace(reTrimStart, '');\n }\n if (!string || !(chars = baseToString(chars))) {\n return string;\n }\n var strSymbols = stringToArray(string),\n start = charsStartIndex(strSymbols, stringToArray(chars));\n\n return castSlice(strSymbols, start).join('');\n}\n\nmodule.exports = trimStart;\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","//! moment.js locale configuration\n//! locale : Kurdish [ku]\n//! author : Shahram Mebashar : https://github.com/ShahramMebashar\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '١',\n 2: '٢',\n 3: '٣',\n 4: '٤',\n 5: '٥',\n 6: '٦',\n 7: '٧',\n 8: '٨',\n 9: '٩',\n 0: '٠',\n },\n numberMap = {\n '١': '1',\n '٢': '2',\n '٣': '3',\n '٤': '4',\n '٥': '5',\n '٦': '6',\n '٧': '7',\n '٨': '8',\n '٩': '9',\n '٠': '0',\n },\n months = [\n 'کانونی دووەم',\n 'شوبات',\n 'ئازار',\n 'نیسان',\n 'ئایار',\n 'حوزەیران',\n 'تەمموز',\n 'ئاب',\n 'ئەیلوول',\n 'تشرینی یەكەم',\n 'تشرینی دووەم',\n 'كانونی یەکەم',\n ];\n\n var ku = moment.defineLocale('ku', {\n months: months,\n monthsShort: months,\n weekdays: 'یه‌كشه‌ممه‌_دووشه‌ممه‌_سێشه‌ممه‌_چوارشه‌ممه‌_پێنجشه‌ممه‌_هه‌ینی_شه‌ممه‌'.split(\n '_'\n ),\n weekdaysShort: 'یه‌كشه‌م_دووشه‌م_سێشه‌م_چوارشه‌م_پێنجشه‌م_هه‌ینی_شه‌ممه‌'.split(\n '_'\n ),\n weekdaysMin: 'ی_د_س_چ_پ_ه_ش'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n meridiemParse: /ئێواره‌|به‌یانی/,\n isPM: function (input) {\n return /ئێواره‌/.test(input);\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'به‌یانی';\n } else {\n return 'ئێواره‌';\n }\n },\n calendar: {\n sameDay: '[ئه‌مرۆ كاتژمێر] LT',\n nextDay: '[به‌یانی كاتژمێر] LT',\n nextWeek: 'dddd [كاتژمێر] LT',\n lastDay: '[دوێنێ كاتژمێر] LT',\n lastWeek: 'dddd [كاتژمێر] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'له‌ %s',\n past: '%s',\n s: 'چه‌ند چركه‌یه‌ك',\n ss: 'چركه‌ %d',\n m: 'یه‌ك خوله‌ك',\n mm: '%d خوله‌ك',\n h: 'یه‌ك كاتژمێر',\n hh: '%d كاتژمێر',\n d: 'یه‌ك ڕۆژ',\n dd: '%d ڕۆژ',\n M: 'یه‌ك مانگ',\n MM: '%d مانگ',\n y: 'یه‌ك ساڵ',\n yy: '%d ساڵ',\n },\n preparse: function (string) {\n return string\n .replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {\n return numberMap[match];\n })\n .replace(/،/g, ',');\n },\n postformat: function (string) {\n return string\n .replace(/\\d/g, function (match) {\n return symbolMap[match];\n })\n .replace(/,/g, '،');\n },\n week: {\n dow: 6, // Saturday is the first day of the week.\n doy: 12, // The week that contains Jan 12th is the first week of the year.\n },\n });\n\n return ku;\n\n})));\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","'use strict';\nvar $ = require('../internals/export');\nvar notARegExp = require('../internals/not-a-regexp');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar correctIsRegExpLogic = require('../internals/correct-is-regexp-logic');\n\n// `String.prototype.includes` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.includes\n$({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {\n includes: function includes(searchString /* , position = 0 */) {\n return !!~String(requireObjectCoercible(this))\n .indexOf(notARegExp(searchString), arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","//! moment.js locale configuration\n//! locale : Bosnian [bs]\n//! author : Nedim Cholich : https://github.com/frontyard\n//! based on (hr) translation by Bojan Marković\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function translate(number, withoutSuffix, key) {\n var result = number + ' ';\n switch (key) {\n case 'ss':\n if (number === 1) {\n result += 'sekunda';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'sekunde';\n } else {\n result += 'sekundi';\n }\n return result;\n case 'm':\n return withoutSuffix ? 'jedna minuta' : 'jedne minute';\n case 'mm':\n if (number === 1) {\n result += 'minuta';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'minute';\n } else {\n result += 'minuta';\n }\n return result;\n case 'h':\n return withoutSuffix ? 'jedan sat' : 'jednog sata';\n case 'hh':\n if (number === 1) {\n result += 'sat';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'sata';\n } else {\n result += 'sati';\n }\n return result;\n case 'dd':\n if (number === 1) {\n result += 'dan';\n } else {\n result += 'dana';\n }\n return result;\n case 'MM':\n if (number === 1) {\n result += 'mjesec';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'mjeseca';\n } else {\n result += 'mjeseci';\n }\n return result;\n case 'yy':\n if (number === 1) {\n result += 'godina';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'godine';\n } else {\n result += 'godina';\n }\n return result;\n }\n }\n\n var bs = moment.defineLocale('bs', {\n months: 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split(\n '_'\n ),\n monthsShort: 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(\n '_'\n ),\n weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),\n weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd, D. MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[danas u] LT',\n nextDay: '[sutra u] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[u] [nedjelju] [u] LT';\n case 3:\n return '[u] [srijedu] [u] LT';\n case 6:\n return '[u] [subotu] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[u] dddd [u] LT';\n }\n },\n lastDay: '[jučer u] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n case 3:\n return '[prošlu] dddd [u] LT';\n case 6:\n return '[prošle] [subote] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[prošli] dddd [u] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'za %s',\n past: 'prije %s',\n s: 'par sekundi',\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: 'dan',\n dd: translate,\n M: 'mjesec',\n MM: translate,\n y: 'godinu',\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return bs;\n\n})));\n","'use strict';\nvar redefine = require('../internals/redefine');\nvar anObject = require('../internals/an-object');\nvar fails = require('../internals/fails');\nvar flags = require('../internals/regexp-flags');\n\nvar TO_STRING = 'toString';\nvar RegExpPrototype = RegExp.prototype;\nvar nativeToString = RegExpPrototype[TO_STRING];\n\nvar NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });\n// FF44- RegExp#toString has a wrong name\nvar INCORRECT_NAME = nativeToString.name != TO_STRING;\n\n// `RegExp.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring\nif (NOT_GENERIC || INCORRECT_NAME) {\n redefine(RegExp.prototype, TO_STRING, function toString() {\n var R = anObject(this);\n var p = String(R.source);\n var rf = R.flags;\n var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);\n return '/' + p + '/' + f;\n }, { unsafe: true });\n}\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","!function(t,o){\"object\"==typeof exports&&\"undefined\"!=typeof module?module.exports=o():\"function\"==typeof define&&define.amd?define(o):t.VueProgressBar=o()}(this,function(){\"use strict\";!function(){if(\"undefined\"!=typeof document){var t=document.head||document.getElementsByTagName(\"head\")[0],o=document.createElement(\"style\"),i=\" .__cov-progress { opacity: 1; z-index: 999999; } \";o.type=\"text/css\",o.styleSheet?o.styleSheet.cssText=i:o.appendChild(document.createTextNode(i)),t.appendChild(o)}}();var t=\"undefined\"!=typeof window,r={render:function(){var t=this,o=t.$createElement;return(t._self._c||o)(\"div\",{staticClass:\"__cov-progress\",style:t.style})},staticRenderFns:[],name:\"VueProgress\",serverCacheKey:function(){return\"Progress\"},computed:{style:function(){var t=this.progress,o=t.options,i=!!o.show,e=o.location,s={\"background-color\":o.canSuccess?o.color:o.failedColor,opacity:o.show?1:0,position:o.position};return\"top\"===e||\"bottom\"===e?(\"top\"===e?s.top=\"0px\":s.bottom=\"0px\",o.inverse?s.right=\"0px\":s.left=\"0px\",s.width=t.percent+\"%\",s.height=o.thickness,s.transition=(i?\"width \"+o.transition.speed+\", \":\"\")+\"opacity \"+o.transition.opacity):\"left\"!==e&&\"right\"!==e||(\"left\"===e?s.left=\"0px\":s.right=\"0px\",o.inverse?s.top=\"0px\":s.bottom=\"0px\",s.height=t.percent+\"%\",s.width=o.thickness,s.transition=(i?\"height \"+o.transition.speed+\", \":\"\")+\"opacity \"+o.transition.opacity),s},progress:function(){return t?window.VueProgressBarEventBus.RADON_LOADING_BAR:{percent:0,options:{canSuccess:!0,show:!1,color:\"rgb(19, 91, 55)\",failedColor:\"red\",thickness:\"2px\",transition:{speed:\"0.2s\",opacity:\"0.6s\",termination:300},location:\"top\",autoRevert:!0,inverse:!1}}}}};return{install:function(o){var t=1 10 && number < 20);\n }\n function forms(key) {\n return units[key].split('_');\n }\n function translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n if (number === 1) {\n return (\n result + translateSingular(number, withoutSuffix, key[0], isFuture)\n );\n } else if (withoutSuffix) {\n return result + (special(number) ? forms(key)[1] : forms(key)[0]);\n } else {\n if (isFuture) {\n return result + forms(key)[1];\n } else {\n return result + (special(number) ? forms(key)[1] : forms(key)[2]);\n }\n }\n }\n var lt = moment.defineLocale('lt', {\n months: {\n format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split(\n '_'\n ),\n standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split(\n '_'\n ),\n isFormat: /D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/,\n },\n monthsShort: 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),\n weekdays: {\n format: 'sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį'.split(\n '_'\n ),\n standalone: 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split(\n '_'\n ),\n isFormat: /dddd HH:mm/,\n },\n weekdaysShort: 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'),\n weekdaysMin: 'S_P_A_T_K_Pn_Š'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY-MM-DD',\n LL: 'YYYY [m.] MMMM D [d.]',\n LLL: 'YYYY [m.] MMMM D [d.], HH:mm [val.]',\n LLLL: 'YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]',\n l: 'YYYY-MM-DD',\n ll: 'YYYY [m.] MMMM D [d.]',\n lll: 'YYYY [m.] MMMM D [d.], HH:mm [val.]',\n llll: 'YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]',\n },\n calendar: {\n sameDay: '[Šiandien] LT',\n nextDay: '[Rytoj] LT',\n nextWeek: 'dddd LT',\n lastDay: '[Vakar] LT',\n lastWeek: '[Praėjusį] dddd LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'po %s',\n past: 'prieš %s',\n s: translateSeconds,\n ss: translate,\n m: translateSingular,\n mm: translate,\n h: translateSingular,\n hh: translate,\n d: translateSingular,\n dd: translate,\n M: translateSingular,\n MM: translate,\n y: translateSingular,\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-oji/,\n ordinal: function (number) {\n return number + '-oji';\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return lt;\n\n})));\n","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","export default function _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n}","import arrayLikeToArray from \"@babel/runtime/helpers/esm/arrayLikeToArray\";\nexport default function _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) return arrayLikeToArray(arr);\n}","export default function _iterableToArray(iter) {\n if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter);\n}","import arrayLikeToArray from \"@babel/runtime/helpers/esm/arrayLikeToArray\";\nexport default function _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);\n}","export default function _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}","import arrayWithoutHoles from \"@babel/runtime/helpers/esm/arrayWithoutHoles\";\nimport iterableToArray from \"@babel/runtime/helpers/esm/iterableToArray\";\nimport unsupportedIterableToArray from \"@babel/runtime/helpers/esm/unsupportedIterableToArray\";\nimport nonIterableSpread from \"@babel/runtime/helpers/esm/nonIterableSpread\";\nexport default function _toConsumableArray(arr) {\n return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();\n}","//! moment.js locale configuration\n//! locale : Vietnamese [vi]\n//! author : Bang Nguyen : https://github.com/bangnk\n//! author : Chien Kira : https://github.com/chienkira\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var vi = moment.defineLocale('vi', {\n months: 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split(\n '_'\n ),\n monthsShort: 'Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split(\n '_'\n ),\n weekdaysShort: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),\n weekdaysMin: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),\n weekdaysParseExact: true,\n meridiemParse: /sa|ch/i,\n isPM: function (input) {\n return /^ch$/i.test(input);\n },\n meridiem: function (hours, minutes, isLower) {\n if (hours < 12) {\n return isLower ? 'sa' : 'SA';\n } else {\n return isLower ? 'ch' : 'CH';\n }\n },\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM [năm] YYYY',\n LLL: 'D MMMM [năm] YYYY HH:mm',\n LLLL: 'dddd, D MMMM [năm] YYYY HH:mm',\n l: 'DD/M/YYYY',\n ll: 'D MMM YYYY',\n lll: 'D MMM YYYY HH:mm',\n llll: 'ddd, D MMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Hôm nay lúc] LT',\n nextDay: '[Ngày mai lúc] LT',\n nextWeek: 'dddd [tuần tới lúc] LT',\n lastDay: '[Hôm qua lúc] LT',\n lastWeek: 'dddd [tuần trước lúc] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s tới',\n past: '%s trước',\n s: 'vài giây',\n ss: '%d giây',\n m: 'một phút',\n mm: '%d phút',\n h: 'một giờ',\n hh: '%d giờ',\n d: 'một ngày',\n dd: '%d ngày',\n w: 'một tuần',\n ww: '%d tuần',\n M: 'một tháng',\n MM: '%d tháng',\n y: 'một năm',\n yy: '%d năm',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}/,\n ordinal: function (number) {\n return number;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return vi;\n\n})));\n","//! moment.js locale configuration\n//! locale : Montenegrin [me]\n//! author : Miodrag Nikač : https://github.com/miodragnikac\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var translator = {\n words: {\n //Different grammatical cases\n ss: ['sekund', 'sekunda', 'sekundi'],\n m: ['jedan minut', 'jednog minuta'],\n mm: ['minut', 'minuta', 'minuta'],\n h: ['jedan sat', 'jednog sata'],\n hh: ['sat', 'sata', 'sati'],\n dd: ['dan', 'dana', 'dana'],\n MM: ['mjesec', 'mjeseca', 'mjeseci'],\n yy: ['godina', 'godine', 'godina'],\n },\n correctGrammaticalCase: function (number, wordKey) {\n return number === 1\n ? wordKey[0]\n : number >= 2 && number <= 4\n ? wordKey[1]\n : wordKey[2];\n },\n translate: function (number, withoutSuffix, key) {\n var wordKey = translator.words[key];\n if (key.length === 1) {\n return withoutSuffix ? wordKey[0] : wordKey[1];\n } else {\n return (\n number +\n ' ' +\n translator.correctGrammaticalCase(number, wordKey)\n );\n }\n },\n };\n\n var me = moment.defineLocale('me', {\n months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split(\n '_'\n ),\n monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(\n '_'\n ),\n weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),\n weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd, D. MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[danas u] LT',\n nextDay: '[sjutra u] LT',\n\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[u] [nedjelju] [u] LT';\n case 3:\n return '[u] [srijedu] [u] LT';\n case 6:\n return '[u] [subotu] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[u] dddd [u] LT';\n }\n },\n lastDay: '[juče u] LT',\n lastWeek: function () {\n var lastWeekDays = [\n '[prošle] [nedjelje] [u] LT',\n '[prošlog] [ponedjeljka] [u] LT',\n '[prošlog] [utorka] [u] LT',\n '[prošle] [srijede] [u] LT',\n '[prošlog] [četvrtka] [u] LT',\n '[prošlog] [petka] [u] LT',\n '[prošle] [subote] [u] LT',\n ];\n return lastWeekDays[this.day()];\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'za %s',\n past: 'prije %s',\n s: 'nekoliko sekundi',\n ss: translator.translate,\n m: translator.translate,\n mm: translator.translate,\n h: translator.translate,\n hh: translator.translate,\n d: 'dan',\n dd: translator.translate,\n M: 'mjesec',\n MM: translator.translate,\n y: 'godinu',\n yy: translator.translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return me;\n\n})));\n","var anObject = require('../internals/an-object');\n\nmodule.exports = function (iterator) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) {\n return anObject(returnMethod.call(iterator)).value;\n }\n};\n","//! moment.js locale configuration\n//! locale : Afrikaans [af]\n//! author : Werner Mollentze : https://github.com/wernerm\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var af = moment.defineLocale('af', {\n months: 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),\n weekdays: 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split(\n '_'\n ),\n weekdaysShort: 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),\n weekdaysMin: 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),\n meridiemParse: /vm|nm/i,\n isPM: function (input) {\n return /^nm$/i.test(input);\n },\n meridiem: function (hours, minutes, isLower) {\n if (hours < 12) {\n return isLower ? 'vm' : 'VM';\n } else {\n return isLower ? 'nm' : 'NM';\n }\n },\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Vandag om] LT',\n nextDay: '[Môre om] LT',\n nextWeek: 'dddd [om] LT',\n lastDay: '[Gister om] LT',\n lastWeek: '[Laas] dddd [om] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'oor %s',\n past: '%s gelede',\n s: \"'n paar sekondes\",\n ss: '%d sekondes',\n m: \"'n minuut\",\n mm: '%d minute',\n h: \"'n uur\",\n hh: '%d ure',\n d: \"'n dag\",\n dd: '%d dae',\n M: \"'n maand\",\n MM: '%d maande',\n y: \"'n jaar\",\n yy: '%d jaar',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ste|de)/,\n ordinal: function (number) {\n return (\n number +\n (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')\n ); // Thanks to Joris Röling : https://github.com/jjupiter\n },\n week: {\n dow: 1, // Maandag is die eerste dag van die week.\n doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.\n },\n });\n\n return af;\n\n})));\n","'use strict';\nvar $ = require('../internals/export');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar toLength = require('../internals/to-length');\nvar notARegExp = require('../internals/not-a-regexp');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar correctIsRegExpLogic = require('../internals/correct-is-regexp-logic');\nvar IS_PURE = require('../internals/is-pure');\n\nvar nativeStartsWith = ''.startsWith;\nvar min = Math.min;\n\nvar CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('startsWith');\n// https://github.com/zloirock/core-js/pull/702\nvar MDN_POLYFILL_BUG = !IS_PURE && !CORRECT_IS_REGEXP_LOGIC && !!function () {\n var descriptor = getOwnPropertyDescriptor(String.prototype, 'startsWith');\n return descriptor && !descriptor.writable;\n}();\n\n// `String.prototype.startsWith` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.startswith\n$({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {\n startsWith: function startsWith(searchString /* , position = 0 */) {\n var that = String(requireObjectCoercible(this));\n notARegExp(searchString);\n var index = toLength(min(arguments.length > 1 ? arguments[1] : undefined, that.length));\n var search = String(searchString);\n return nativeStartsWith\n ? nativeStartsWith.call(that, search, index)\n : that.slice(index, index + search.length) === search;\n }\n});\n","var global = require('../internals/global');\nvar fails = require('../internals/fails');\nvar bind = require('../internals/function-bind-context');\nvar html = require('../internals/html');\nvar createElement = require('../internals/document-create-element');\nvar IS_IOS = require('../internals/engine-is-ios');\nvar IS_NODE = require('../internals/engine-is-node');\n\nvar location = global.location;\nvar set = global.setImmediate;\nvar clear = global.clearImmediate;\nvar process = global.process;\nvar MessageChannel = global.MessageChannel;\nvar Dispatch = global.Dispatch;\nvar counter = 0;\nvar queue = {};\nvar ONREADYSTATECHANGE = 'onreadystatechange';\nvar defer, channel, port;\n\nvar run = function (id) {\n // eslint-disable-next-line no-prototype-builtins\n if (queue.hasOwnProperty(id)) {\n var fn = queue[id];\n delete queue[id];\n fn();\n }\n};\n\nvar runner = function (id) {\n return function () {\n run(id);\n };\n};\n\nvar listener = function (event) {\n run(event.data);\n};\n\nvar post = function (id) {\n // old engines have not location.origin\n global.postMessage(id + '', location.protocol + '//' + location.host);\n};\n\n// Node.js 0.9+ & IE10+ has setImmediate, otherwise:\nif (!set || !clear) {\n set = function setImmediate(fn) {\n var args = [];\n var i = 1;\n while (arguments.length > i) args.push(arguments[i++]);\n queue[++counter] = function () {\n // eslint-disable-next-line no-new-func\n (typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args);\n };\n defer(counter);\n return counter;\n };\n clear = function clearImmediate(id) {\n delete queue[id];\n };\n // Node.js 0.8-\n if (IS_NODE) {\n defer = function (id) {\n process.nextTick(runner(id));\n };\n // Sphere (JS game engine) Dispatch API\n } else if (Dispatch && Dispatch.now) {\n defer = function (id) {\n Dispatch.now(runner(id));\n };\n // Browsers with MessageChannel, includes WebWorkers\n // except iOS - https://github.com/zloirock/core-js/issues/624\n } else if (MessageChannel && !IS_IOS) {\n channel = new MessageChannel();\n port = channel.port2;\n channel.port1.onmessage = listener;\n defer = bind(port.postMessage, port, 1);\n // Browsers with postMessage, skip WebWorkers\n // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'\n } else if (\n global.addEventListener &&\n typeof postMessage == 'function' &&\n !global.importScripts &&\n location && location.protocol !== 'file:' &&\n !fails(post)\n ) {\n defer = post;\n global.addEventListener('message', listener, false);\n // IE8-\n } else if (ONREADYSTATECHANGE in createElement('script')) {\n defer = function (id) {\n html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () {\n html.removeChild(this);\n run(id);\n };\n };\n // Rest old browsers\n } else {\n defer = function (id) {\n setTimeout(runner(id), 0);\n };\n }\n}\n\nmodule.exports = {\n set: set,\n clear: clear\n};\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","//! moment.js locale configuration\n//! locale : Uzbek [uz]\n//! author : Sardor Muminov : https://github.com/muminoff\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var uz = moment.defineLocale('uz', {\n months: 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split(\n '_'\n ),\n monthsShort: 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),\n weekdays: 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'),\n weekdaysShort: 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'),\n weekdaysMin: 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'D MMMM YYYY, dddd HH:mm',\n },\n calendar: {\n sameDay: '[Бугун соат] LT [да]',\n nextDay: '[Эртага] LT [да]',\n nextWeek: 'dddd [куни соат] LT [да]',\n lastDay: '[Кеча соат] LT [да]',\n lastWeek: '[Утган] dddd [куни соат] LT [да]',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'Якин %s ичида',\n past: 'Бир неча %s олдин',\n s: 'фурсат',\n ss: '%d фурсат',\n m: 'бир дакика',\n mm: '%d дакика',\n h: 'бир соат',\n hh: '%d соат',\n d: 'бир кун',\n dd: '%d кун',\n M: 'бир ой',\n MM: '%d ой',\n y: 'бир йил',\n yy: '%d йил',\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return uz;\n\n})));\n","/*!\n * vuex v3.5.1\n * (c) 2020 Evan You\n * @license MIT\n */\nfunction applyMixin (Vue) {\n var version = Number(Vue.version.split('.')[0]);\n\n if (version >= 2) {\n Vue.mixin({ beforeCreate: vuexInit });\n } else {\n // override init and inject vuex init procedure\n // for 1.x backwards compatibility.\n var _init = Vue.prototype._init;\n Vue.prototype._init = function (options) {\n if ( options === void 0 ) options = {};\n\n options.init = options.init\n ? [vuexInit].concat(options.init)\n : vuexInit;\n _init.call(this, options);\n };\n }\n\n /**\n * Vuex init hook, injected into each instances init hooks list.\n */\n\n function vuexInit () {\n var options = this.$options;\n // store injection\n if (options.store) {\n this.$store = typeof options.store === 'function'\n ? options.store()\n : options.store;\n } else if (options.parent && options.parent.$store) {\n this.$store = options.parent.$store;\n }\n }\n}\n\nvar target = typeof window !== 'undefined'\n ? window\n : typeof global !== 'undefined'\n ? global\n : {};\nvar devtoolHook = target.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\nfunction devtoolPlugin (store) {\n if (!devtoolHook) { return }\n\n store._devtoolHook = devtoolHook;\n\n devtoolHook.emit('vuex:init', store);\n\n devtoolHook.on('vuex:travel-to-state', function (targetState) {\n store.replaceState(targetState);\n });\n\n store.subscribe(function (mutation, state) {\n devtoolHook.emit('vuex:mutation', mutation, state);\n }, { prepend: true });\n\n store.subscribeAction(function (action, state) {\n devtoolHook.emit('vuex:action', action, state);\n }, { prepend: true });\n}\n\n/**\n * Get the first item that pass the test\n * by second argument function\n *\n * @param {Array} list\n * @param {Function} f\n * @return {*}\n */\nfunction find (list, f) {\n return list.filter(f)[0]\n}\n\n/**\n * Deep copy the given object considering circular structure.\n * This function caches all nested objects and its copies.\n * If it detects circular structure, use cached copy to avoid infinite loop.\n *\n * @param {*} obj\n * @param {Array} cache\n * @return {*}\n */\nfunction deepCopy (obj, cache) {\n if ( cache === void 0 ) cache = [];\n\n // just return if obj is immutable value\n if (obj === null || typeof obj !== 'object') {\n return obj\n }\n\n // if obj is hit, it is in circular structure\n var hit = find(cache, function (c) { return c.original === obj; });\n if (hit) {\n return hit.copy\n }\n\n var copy = Array.isArray(obj) ? [] : {};\n // put the copy into cache at first\n // because we want to refer it in recursive deepCopy\n cache.push({\n original: obj,\n copy: copy\n });\n\n Object.keys(obj).forEach(function (key) {\n copy[key] = deepCopy(obj[key], cache);\n });\n\n return copy\n}\n\n/**\n * forEach for object\n */\nfunction forEachValue (obj, fn) {\n Object.keys(obj).forEach(function (key) { return fn(obj[key], key); });\n}\n\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\nfunction isPromise (val) {\n return val && typeof val.then === 'function'\n}\n\nfunction assert (condition, msg) {\n if (!condition) { throw new Error((\"[vuex] \" + msg)) }\n}\n\nfunction partial (fn, arg) {\n return function () {\n return fn(arg)\n }\n}\n\n// Base data struct for store's module, package with some attribute and method\nvar Module = function Module (rawModule, runtime) {\n this.runtime = runtime;\n // Store some children item\n this._children = Object.create(null);\n // Store the origin module object which passed by programmer\n this._rawModule = rawModule;\n var rawState = rawModule.state;\n\n // Store the origin module's state\n this.state = (typeof rawState === 'function' ? rawState() : rawState) || {};\n};\n\nvar prototypeAccessors = { namespaced: { configurable: true } };\n\nprototypeAccessors.namespaced.get = function () {\n return !!this._rawModule.namespaced\n};\n\nModule.prototype.addChild = function addChild (key, module) {\n this._children[key] = module;\n};\n\nModule.prototype.removeChild = function removeChild (key) {\n delete this._children[key];\n};\n\nModule.prototype.getChild = function getChild (key) {\n return this._children[key]\n};\n\nModule.prototype.hasChild = function hasChild (key) {\n return key in this._children\n};\n\nModule.prototype.update = function update (rawModule) {\n this._rawModule.namespaced = rawModule.namespaced;\n if (rawModule.actions) {\n this._rawModule.actions = rawModule.actions;\n }\n if (rawModule.mutations) {\n this._rawModule.mutations = rawModule.mutations;\n }\n if (rawModule.getters) {\n this._rawModule.getters = rawModule.getters;\n }\n};\n\nModule.prototype.forEachChild = function forEachChild (fn) {\n forEachValue(this._children, fn);\n};\n\nModule.prototype.forEachGetter = function forEachGetter (fn) {\n if (this._rawModule.getters) {\n forEachValue(this._rawModule.getters, fn);\n }\n};\n\nModule.prototype.forEachAction = function forEachAction (fn) {\n if (this._rawModule.actions) {\n forEachValue(this._rawModule.actions, fn);\n }\n};\n\nModule.prototype.forEachMutation = function forEachMutation (fn) {\n if (this._rawModule.mutations) {\n forEachValue(this._rawModule.mutations, fn);\n }\n};\n\nObject.defineProperties( Module.prototype, prototypeAccessors );\n\nvar ModuleCollection = function ModuleCollection (rawRootModule) {\n // register root module (Vuex.Store options)\n this.register([], rawRootModule, false);\n};\n\nModuleCollection.prototype.get = function get (path) {\n return path.reduce(function (module, key) {\n return module.getChild(key)\n }, this.root)\n};\n\nModuleCollection.prototype.getNamespace = function getNamespace (path) {\n var module = this.root;\n return path.reduce(function (namespace, key) {\n module = module.getChild(key);\n return namespace + (module.namespaced ? key + '/' : '')\n }, '')\n};\n\nModuleCollection.prototype.update = function update$1 (rawRootModule) {\n update([], this.root, rawRootModule);\n};\n\nModuleCollection.prototype.register = function register (path, rawModule, runtime) {\n var this$1 = this;\n if ( runtime === void 0 ) runtime = true;\n\n if ((process.env.NODE_ENV !== 'production')) {\n assertRawModule(path, rawModule);\n }\n\n var newModule = new Module(rawModule, runtime);\n if (path.length === 0) {\n this.root = newModule;\n } else {\n var parent = this.get(path.slice(0, -1));\n parent.addChild(path[path.length - 1], newModule);\n }\n\n // register nested modules\n if (rawModule.modules) {\n forEachValue(rawModule.modules, function (rawChildModule, key) {\n this$1.register(path.concat(key), rawChildModule, runtime);\n });\n }\n};\n\nModuleCollection.prototype.unregister = function unregister (path) {\n var parent = this.get(path.slice(0, -1));\n var key = path[path.length - 1];\n var child = parent.getChild(key);\n\n if (!child) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\n \"[vuex] trying to unregister module '\" + key + \"', which is \" +\n \"not registered\"\n );\n }\n return\n }\n\n if (!child.runtime) {\n return\n }\n\n parent.removeChild(key);\n};\n\nModuleCollection.prototype.isRegistered = function isRegistered (path) {\n var parent = this.get(path.slice(0, -1));\n var key = path[path.length - 1];\n\n return parent.hasChild(key)\n};\n\nfunction update (path, targetModule, newModule) {\n if ((process.env.NODE_ENV !== 'production')) {\n assertRawModule(path, newModule);\n }\n\n // update target module\n targetModule.update(newModule);\n\n // update nested modules\n if (newModule.modules) {\n for (var key in newModule.modules) {\n if (!targetModule.getChild(key)) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\n \"[vuex] trying to add a new module '\" + key + \"' on hot reloading, \" +\n 'manual reload is needed'\n );\n }\n return\n }\n update(\n path.concat(key),\n targetModule.getChild(key),\n newModule.modules[key]\n );\n }\n }\n}\n\nvar functionAssert = {\n assert: function (value) { return typeof value === 'function'; },\n expected: 'function'\n};\n\nvar objectAssert = {\n assert: function (value) { return typeof value === 'function' ||\n (typeof value === 'object' && typeof value.handler === 'function'); },\n expected: 'function or object with \"handler\" function'\n};\n\nvar assertTypes = {\n getters: functionAssert,\n mutations: functionAssert,\n actions: objectAssert\n};\n\nfunction assertRawModule (path, rawModule) {\n Object.keys(assertTypes).forEach(function (key) {\n if (!rawModule[key]) { return }\n\n var assertOptions = assertTypes[key];\n\n forEachValue(rawModule[key], function (value, type) {\n assert(\n assertOptions.assert(value),\n makeAssertionMessage(path, key, type, value, assertOptions.expected)\n );\n });\n });\n}\n\nfunction makeAssertionMessage (path, key, type, value, expected) {\n var buf = key + \" should be \" + expected + \" but \\\"\" + key + \".\" + type + \"\\\"\";\n if (path.length > 0) {\n buf += \" in module \\\"\" + (path.join('.')) + \"\\\"\";\n }\n buf += \" is \" + (JSON.stringify(value)) + \".\";\n return buf\n}\n\nvar Vue; // bind on install\n\nvar Store = function Store (options) {\n var this$1 = this;\n if ( options === void 0 ) options = {};\n\n // Auto install if it is not done yet and `window` has `Vue`.\n // To allow users to avoid auto-installation in some cases,\n // this code should be placed here. See #731\n if (!Vue && typeof window !== 'undefined' && window.Vue) {\n install(window.Vue);\n }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Vue, \"must call Vue.use(Vuex) before creating a store instance.\");\n assert(typeof Promise !== 'undefined', \"vuex requires a Promise polyfill in this browser.\");\n assert(this instanceof Store, \"store must be called with the new operator.\");\n }\n\n var plugins = options.plugins; if ( plugins === void 0 ) plugins = [];\n var strict = options.strict; if ( strict === void 0 ) strict = false;\n\n // store internal state\n this._committing = false;\n this._actions = Object.create(null);\n this._actionSubscribers = [];\n this._mutations = Object.create(null);\n this._wrappedGetters = Object.create(null);\n this._modules = new ModuleCollection(options);\n this._modulesNamespaceMap = Object.create(null);\n this._subscribers = [];\n this._watcherVM = new Vue();\n this._makeLocalGettersCache = Object.create(null);\n\n // bind commit and dispatch to self\n var store = this;\n var ref = this;\n var dispatch = ref.dispatch;\n var commit = ref.commit;\n this.dispatch = function boundDispatch (type, payload) {\n return dispatch.call(store, type, payload)\n };\n this.commit = function boundCommit (type, payload, options) {\n return commit.call(store, type, payload, options)\n };\n\n // strict mode\n this.strict = strict;\n\n var state = this._modules.root.state;\n\n // init root module.\n // this also recursively registers all sub-modules\n // and collects all module getters inside this._wrappedGetters\n installModule(this, state, [], this._modules.root);\n\n // initialize the store vm, which is responsible for the reactivity\n // (also registers _wrappedGetters as computed properties)\n resetStoreVM(this, state);\n\n // apply plugins\n plugins.forEach(function (plugin) { return plugin(this$1); });\n\n var useDevtools = options.devtools !== undefined ? options.devtools : Vue.config.devtools;\n if (useDevtools) {\n devtoolPlugin(this);\n }\n};\n\nvar prototypeAccessors$1 = { state: { configurable: true } };\n\nprototypeAccessors$1.state.get = function () {\n return this._vm._data.$$state\n};\n\nprototypeAccessors$1.state.set = function (v) {\n if ((process.env.NODE_ENV !== 'production')) {\n assert(false, \"use store.replaceState() to explicit replace store state.\");\n }\n};\n\nStore.prototype.commit = function commit (_type, _payload, _options) {\n var this$1 = this;\n\n // check object-style commit\n var ref = unifyObjectStyle(_type, _payload, _options);\n var type = ref.type;\n var payload = ref.payload;\n var options = ref.options;\n\n var mutation = { type: type, payload: payload };\n var entry = this._mutations[type];\n if (!entry) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] unknown mutation type: \" + type));\n }\n return\n }\n this._withCommit(function () {\n entry.forEach(function commitIterator (handler) {\n handler(payload);\n });\n });\n\n this._subscribers\n .slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe\n .forEach(function (sub) { return sub(mutation, this$1.state); });\n\n if (\n (process.env.NODE_ENV !== 'production') &&\n options && options.silent\n ) {\n console.warn(\n \"[vuex] mutation type: \" + type + \". Silent option has been removed. \" +\n 'Use the filter functionality in the vue-devtools'\n );\n }\n};\n\nStore.prototype.dispatch = function dispatch (_type, _payload) {\n var this$1 = this;\n\n // check object-style dispatch\n var ref = unifyObjectStyle(_type, _payload);\n var type = ref.type;\n var payload = ref.payload;\n\n var action = { type: type, payload: payload };\n var entry = this._actions[type];\n if (!entry) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] unknown action type: \" + type));\n }\n return\n }\n\n try {\n this._actionSubscribers\n .slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe\n .filter(function (sub) { return sub.before; })\n .forEach(function (sub) { return sub.before(action, this$1.state); });\n } catch (e) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\"[vuex] error in before action subscribers: \");\n console.error(e);\n }\n }\n\n var result = entry.length > 1\n ? Promise.all(entry.map(function (handler) { return handler(payload); }))\n : entry[0](payload);\n\n return new Promise(function (resolve, reject) {\n result.then(function (res) {\n try {\n this$1._actionSubscribers\n .filter(function (sub) { return sub.after; })\n .forEach(function (sub) { return sub.after(action, this$1.state); });\n } catch (e) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\"[vuex] error in after action subscribers: \");\n console.error(e);\n }\n }\n resolve(res);\n }, function (error) {\n try {\n this$1._actionSubscribers\n .filter(function (sub) { return sub.error; })\n .forEach(function (sub) { return sub.error(action, this$1.state, error); });\n } catch (e) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\"[vuex] error in error action subscribers: \");\n console.error(e);\n }\n }\n reject(error);\n });\n })\n};\n\nStore.prototype.subscribe = function subscribe (fn, options) {\n return genericSubscribe(fn, this._subscribers, options)\n};\n\nStore.prototype.subscribeAction = function subscribeAction (fn, options) {\n var subs = typeof fn === 'function' ? { before: fn } : fn;\n return genericSubscribe(subs, this._actionSubscribers, options)\n};\n\nStore.prototype.watch = function watch (getter, cb, options) {\n var this$1 = this;\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(typeof getter === 'function', \"store.watch only accepts a function.\");\n }\n return this._watcherVM.$watch(function () { return getter(this$1.state, this$1.getters); }, cb, options)\n};\n\nStore.prototype.replaceState = function replaceState (state) {\n var this$1 = this;\n\n this._withCommit(function () {\n this$1._vm._data.$$state = state;\n });\n};\n\nStore.prototype.registerModule = function registerModule (path, rawModule, options) {\n if ( options === void 0 ) options = {};\n\n if (typeof path === 'string') { path = [path]; }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n assert(path.length > 0, 'cannot register the root module by using registerModule.');\n }\n\n this._modules.register(path, rawModule);\n installModule(this, this.state, path, this._modules.get(path), options.preserveState);\n // reset store to update getters...\n resetStoreVM(this, this.state);\n};\n\nStore.prototype.unregisterModule = function unregisterModule (path) {\n var this$1 = this;\n\n if (typeof path === 'string') { path = [path]; }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n }\n\n this._modules.unregister(path);\n this._withCommit(function () {\n var parentState = getNestedState(this$1.state, path.slice(0, -1));\n Vue.delete(parentState, path[path.length - 1]);\n });\n resetStore(this);\n};\n\nStore.prototype.hasModule = function hasModule (path) {\n if (typeof path === 'string') { path = [path]; }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n }\n\n return this._modules.isRegistered(path)\n};\n\nStore.prototype.hotUpdate = function hotUpdate (newOptions) {\n this._modules.update(newOptions);\n resetStore(this, true);\n};\n\nStore.prototype._withCommit = function _withCommit (fn) {\n var committing = this._committing;\n this._committing = true;\n fn();\n this._committing = committing;\n};\n\nObject.defineProperties( Store.prototype, prototypeAccessors$1 );\n\nfunction genericSubscribe (fn, subs, options) {\n if (subs.indexOf(fn) < 0) {\n options && options.prepend\n ? subs.unshift(fn)\n : subs.push(fn);\n }\n return function () {\n var i = subs.indexOf(fn);\n if (i > -1) {\n subs.splice(i, 1);\n }\n }\n}\n\nfunction resetStore (store, hot) {\n store._actions = Object.create(null);\n store._mutations = Object.create(null);\n store._wrappedGetters = Object.create(null);\n store._modulesNamespaceMap = Object.create(null);\n var state = store.state;\n // init all modules\n installModule(store, state, [], store._modules.root, true);\n // reset vm\n resetStoreVM(store, state, hot);\n}\n\nfunction resetStoreVM (store, state, hot) {\n var oldVm = store._vm;\n\n // bind store public getters\n store.getters = {};\n // reset local getters cache\n store._makeLocalGettersCache = Object.create(null);\n var wrappedGetters = store._wrappedGetters;\n var computed = {};\n forEachValue(wrappedGetters, function (fn, key) {\n // use computed to leverage its lazy-caching mechanism\n // direct inline function use will lead to closure preserving oldVm.\n // using partial to return function with only arguments preserved in closure environment.\n computed[key] = partial(fn, store);\n Object.defineProperty(store.getters, key, {\n get: function () { return store._vm[key]; },\n enumerable: true // for local getters\n });\n });\n\n // use a Vue instance to store the state tree\n // suppress warnings just in case the user has added\n // some funky global mixins\n var silent = Vue.config.silent;\n Vue.config.silent = true;\n store._vm = new Vue({\n data: {\n $$state: state\n },\n computed: computed\n });\n Vue.config.silent = silent;\n\n // enable strict mode for new vm\n if (store.strict) {\n enableStrictMode(store);\n }\n\n if (oldVm) {\n if (hot) {\n // dispatch changes in all subscribed watchers\n // to force getter re-evaluation for hot reloading.\n store._withCommit(function () {\n oldVm._data.$$state = null;\n });\n }\n Vue.nextTick(function () { return oldVm.$destroy(); });\n }\n}\n\nfunction installModule (store, rootState, path, module, hot) {\n var isRoot = !path.length;\n var namespace = store._modules.getNamespace(path);\n\n // register in namespace map\n if (module.namespaced) {\n if (store._modulesNamespaceMap[namespace] && (process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] duplicate namespace \" + namespace + \" for the namespaced module \" + (path.join('/'))));\n }\n store._modulesNamespaceMap[namespace] = module;\n }\n\n // set state\n if (!isRoot && !hot) {\n var parentState = getNestedState(rootState, path.slice(0, -1));\n var moduleName = path[path.length - 1];\n store._withCommit(function () {\n if ((process.env.NODE_ENV !== 'production')) {\n if (moduleName in parentState) {\n console.warn(\n (\"[vuex] state field \\\"\" + moduleName + \"\\\" was overridden by a module with the same name at \\\"\" + (path.join('.')) + \"\\\"\")\n );\n }\n }\n Vue.set(parentState, moduleName, module.state);\n });\n }\n\n var local = module.context = makeLocalContext(store, namespace, path);\n\n module.forEachMutation(function (mutation, key) {\n var namespacedType = namespace + key;\n registerMutation(store, namespacedType, mutation, local);\n });\n\n module.forEachAction(function (action, key) {\n var type = action.root ? key : namespace + key;\n var handler = action.handler || action;\n registerAction(store, type, handler, local);\n });\n\n module.forEachGetter(function (getter, key) {\n var namespacedType = namespace + key;\n registerGetter(store, namespacedType, getter, local);\n });\n\n module.forEachChild(function (child, key) {\n installModule(store, rootState, path.concat(key), child, hot);\n });\n}\n\n/**\n * make localized dispatch, commit, getters and state\n * if there is no namespace, just use root ones\n */\nfunction makeLocalContext (store, namespace, path) {\n var noNamespace = namespace === '';\n\n var local = {\n dispatch: noNamespace ? store.dispatch : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if ((process.env.NODE_ENV !== 'production') && !store._actions[type]) {\n console.error((\"[vuex] unknown local action type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n return store.dispatch(type, payload)\n },\n\n commit: noNamespace ? store.commit : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if ((process.env.NODE_ENV !== 'production') && !store._mutations[type]) {\n console.error((\"[vuex] unknown local mutation type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n store.commit(type, payload, options);\n }\n };\n\n // getters and state object must be gotten lazily\n // because they will be changed by vm update\n Object.defineProperties(local, {\n getters: {\n get: noNamespace\n ? function () { return store.getters; }\n : function () { return makeLocalGetters(store, namespace); }\n },\n state: {\n get: function () { return getNestedState(store.state, path); }\n }\n });\n\n return local\n}\n\nfunction makeLocalGetters (store, namespace) {\n if (!store._makeLocalGettersCache[namespace]) {\n var gettersProxy = {};\n var splitPos = namespace.length;\n Object.keys(store.getters).forEach(function (type) {\n // skip if the target getter is not match this namespace\n if (type.slice(0, splitPos) !== namespace) { return }\n\n // extract local getter type\n var localType = type.slice(splitPos);\n\n // Add a port to the getters proxy.\n // Define as getter property because\n // we do not want to evaluate the getters in this time.\n Object.defineProperty(gettersProxy, localType, {\n get: function () { return store.getters[type]; },\n enumerable: true\n });\n });\n store._makeLocalGettersCache[namespace] = gettersProxy;\n }\n\n return store._makeLocalGettersCache[namespace]\n}\n\nfunction registerMutation (store, type, handler, local) {\n var entry = store._mutations[type] || (store._mutations[type] = []);\n entry.push(function wrappedMutationHandler (payload) {\n handler.call(store, local.state, payload);\n });\n}\n\nfunction registerAction (store, type, handler, local) {\n var entry = store._actions[type] || (store._actions[type] = []);\n entry.push(function wrappedActionHandler (payload) {\n var res = handler.call(store, {\n dispatch: local.dispatch,\n commit: local.commit,\n getters: local.getters,\n state: local.state,\n rootGetters: store.getters,\n rootState: store.state\n }, payload);\n if (!isPromise(res)) {\n res = Promise.resolve(res);\n }\n if (store._devtoolHook) {\n return res.catch(function (err) {\n store._devtoolHook.emit('vuex:error', err);\n throw err\n })\n } else {\n return res\n }\n });\n}\n\nfunction registerGetter (store, type, rawGetter, local) {\n if (store._wrappedGetters[type]) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] duplicate getter key: \" + type));\n }\n return\n }\n store._wrappedGetters[type] = function wrappedGetter (store) {\n return rawGetter(\n local.state, // local state\n local.getters, // local getters\n store.state, // root state\n store.getters // root getters\n )\n };\n}\n\nfunction enableStrictMode (store) {\n store._vm.$watch(function () { return this._data.$$state }, function () {\n if ((process.env.NODE_ENV !== 'production')) {\n assert(store._committing, \"do not mutate vuex store state outside mutation handlers.\");\n }\n }, { deep: true, sync: true });\n}\n\nfunction getNestedState (state, path) {\n return path.reduce(function (state, key) { return state[key]; }, state)\n}\n\nfunction unifyObjectStyle (type, payload, options) {\n if (isObject(type) && type.type) {\n options = payload;\n payload = type;\n type = type.type;\n }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(typeof type === 'string', (\"expects string as the type, but found \" + (typeof type) + \".\"));\n }\n\n return { type: type, payload: payload, options: options }\n}\n\nfunction install (_Vue) {\n if (Vue && _Vue === Vue) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error(\n '[vuex] already installed. Vue.use(Vuex) should be called only once.'\n );\n }\n return\n }\n Vue = _Vue;\n applyMixin(Vue);\n}\n\n/**\n * Reduce the code which written in Vue.js for getting the state.\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} states # Object's item can be a function which accept state and getters for param, you can do something for state and getters in it.\n * @param {Object}\n */\nvar mapState = normalizeNamespace(function (namespace, states) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(states)) {\n console.error('[vuex] mapState: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(states).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedState () {\n var state = this.$store.state;\n var getters = this.$store.getters;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapState', namespace);\n if (!module) {\n return\n }\n state = module.context.state;\n getters = module.context.getters;\n }\n return typeof val === 'function'\n ? val.call(this, state, getters)\n : state[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\n/**\n * Reduce the code which written in Vue.js for committing the mutation\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.\n * @return {Object}\n */\nvar mapMutations = normalizeNamespace(function (namespace, mutations) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(mutations)) {\n console.error('[vuex] mapMutations: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(mutations).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedMutation () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n // Get the commit method from store\n var commit = this.$store.commit;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapMutations', namespace);\n if (!module) {\n return\n }\n commit = module.context.commit;\n }\n return typeof val === 'function'\n ? val.apply(this, [commit].concat(args))\n : commit.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\n/**\n * Reduce the code which written in Vue.js for getting the getters\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} getters\n * @return {Object}\n */\nvar mapGetters = normalizeNamespace(function (namespace, getters) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(getters)) {\n console.error('[vuex] mapGetters: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(getters).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n // The namespace has been mutated by normalizeNamespace\n val = namespace + val;\n res[key] = function mappedGetter () {\n if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {\n return\n }\n if ((process.env.NODE_ENV !== 'production') && !(val in this.$store.getters)) {\n console.error((\"[vuex] unknown getter: \" + val));\n return\n }\n return this.$store.getters[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\n/**\n * Reduce the code which written in Vue.js for dispatch the action\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} actions # Object's item can be a function which accept `dispatch` function as the first param, it can accept anthor params. You can dispatch action and do any other things in this function. specially, You need to pass anthor params from the mapped function.\n * @return {Object}\n */\nvar mapActions = normalizeNamespace(function (namespace, actions) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(actions)) {\n console.error('[vuex] mapActions: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(actions).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedAction () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n // get dispatch function from store\n var dispatch = this.$store.dispatch;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapActions', namespace);\n if (!module) {\n return\n }\n dispatch = module.context.dispatch;\n }\n return typeof val === 'function'\n ? val.apply(this, [dispatch].concat(args))\n : dispatch.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\n/**\n * Rebinding namespace param for mapXXX function in special scoped, and return them by simple object\n * @param {String} namespace\n * @return {Object}\n */\nvar createNamespacedHelpers = function (namespace) { return ({\n mapState: mapState.bind(null, namespace),\n mapGetters: mapGetters.bind(null, namespace),\n mapMutations: mapMutations.bind(null, namespace),\n mapActions: mapActions.bind(null, namespace)\n}); };\n\n/**\n * Normalize the map\n * normalizeMap([1, 2, 3]) => [ { key: 1, val: 1 }, { key: 2, val: 2 }, { key: 3, val: 3 } ]\n * normalizeMap({a: 1, b: 2, c: 3}) => [ { key: 'a', val: 1 }, { key: 'b', val: 2 }, { key: 'c', val: 3 } ]\n * @param {Array|Object} map\n * @return {Object}\n */\nfunction normalizeMap (map) {\n if (!isValidMap(map)) {\n return []\n }\n return Array.isArray(map)\n ? map.map(function (key) { return ({ key: key, val: key }); })\n : Object.keys(map).map(function (key) { return ({ key: key, val: map[key] }); })\n}\n\n/**\n * Validate whether given map is valid or not\n * @param {*} map\n * @return {Boolean}\n */\nfunction isValidMap (map) {\n return Array.isArray(map) || isObject(map)\n}\n\n/**\n * Return a function expect two param contains namespace and map. it will normalize the namespace and then the param's function will handle the new namespace and the map.\n * @param {Function} fn\n * @return {Function}\n */\nfunction normalizeNamespace (fn) {\n return function (namespace, map) {\n if (typeof namespace !== 'string') {\n map = namespace;\n namespace = '';\n } else if (namespace.charAt(namespace.length - 1) !== '/') {\n namespace += '/';\n }\n return fn(namespace, map)\n }\n}\n\n/**\n * Search a special module from store by namespace. if module not exist, print error message.\n * @param {Object} store\n * @param {String} helper\n * @param {String} namespace\n * @return {Object}\n */\nfunction getModuleByNamespace (store, helper, namespace) {\n var module = store._modulesNamespaceMap[namespace];\n if ((process.env.NODE_ENV !== 'production') && !module) {\n console.error((\"[vuex] module namespace not found in \" + helper + \"(): \" + namespace));\n }\n return module\n}\n\n// Credits: borrowed code from fcomb/redux-logger\n\nfunction createLogger (ref) {\n if ( ref === void 0 ) ref = {};\n var collapsed = ref.collapsed; if ( collapsed === void 0 ) collapsed = true;\n var filter = ref.filter; if ( filter === void 0 ) filter = function (mutation, stateBefore, stateAfter) { return true; };\n var transformer = ref.transformer; if ( transformer === void 0 ) transformer = function (state) { return state; };\n var mutationTransformer = ref.mutationTransformer; if ( mutationTransformer === void 0 ) mutationTransformer = function (mut) { return mut; };\n var actionFilter = ref.actionFilter; if ( actionFilter === void 0 ) actionFilter = function (action, state) { return true; };\n var actionTransformer = ref.actionTransformer; if ( actionTransformer === void 0 ) actionTransformer = function (act) { return act; };\n var logMutations = ref.logMutations; if ( logMutations === void 0 ) logMutations = true;\n var logActions = ref.logActions; if ( logActions === void 0 ) logActions = true;\n var logger = ref.logger; if ( logger === void 0 ) logger = console;\n\n return function (store) {\n var prevState = deepCopy(store.state);\n\n if (typeof logger === 'undefined') {\n return\n }\n\n if (logMutations) {\n store.subscribe(function (mutation, state) {\n var nextState = deepCopy(state);\n\n if (filter(mutation, prevState, nextState)) {\n var formattedTime = getFormattedTime();\n var formattedMutation = mutationTransformer(mutation);\n var message = \"mutation \" + (mutation.type) + formattedTime;\n\n startMessage(logger, message, collapsed);\n logger.log('%c prev state', 'color: #9E9E9E; font-weight: bold', transformer(prevState));\n logger.log('%c mutation', 'color: #03A9F4; font-weight: bold', formattedMutation);\n logger.log('%c next state', 'color: #4CAF50; font-weight: bold', transformer(nextState));\n endMessage(logger);\n }\n\n prevState = nextState;\n });\n }\n\n if (logActions) {\n store.subscribeAction(function (action, state) {\n if (actionFilter(action, state)) {\n var formattedTime = getFormattedTime();\n var formattedAction = actionTransformer(action);\n var message = \"action \" + (action.type) + formattedTime;\n\n startMessage(logger, message, collapsed);\n logger.log('%c action', 'color: #03A9F4; font-weight: bold', formattedAction);\n endMessage(logger);\n }\n });\n }\n }\n}\n\nfunction startMessage (logger, message, collapsed) {\n var startMessage = collapsed\n ? logger.groupCollapsed\n : logger.group;\n\n // render\n try {\n startMessage.call(logger, message);\n } catch (e) {\n logger.log(message);\n }\n}\n\nfunction endMessage (logger) {\n try {\n logger.groupEnd();\n } catch (e) {\n logger.log('—— log end ——');\n }\n}\n\nfunction getFormattedTime () {\n var time = new Date();\n return (\" @ \" + (pad(time.getHours(), 2)) + \":\" + (pad(time.getMinutes(), 2)) + \":\" + (pad(time.getSeconds(), 2)) + \".\" + (pad(time.getMilliseconds(), 3)))\n}\n\nfunction repeat (str, times) {\n return (new Array(times + 1)).join(str)\n}\n\nfunction pad (num, maxLength) {\n return repeat('0', maxLength - num.toString().length) + num\n}\n\nvar index = {\n Store: Store,\n install: install,\n version: '3.5.1',\n mapState: mapState,\n mapMutations: mapMutations,\n mapGetters: mapGetters,\n mapActions: mapActions,\n createNamespacedHelpers: createNamespacedHelpers,\n createLogger: createLogger\n};\n\nexport default index;\nexport { Store, createLogger, createNamespacedHelpers, install, mapActions, mapGetters, mapMutations, mapState };\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","/**\n * lodash (Custom Build) \n * Build: `lodash modularize exports=\"npm\" -o ./`\n * Copyright jQuery Foundation and other contributors \n * Released under MIT license \n * Based on Underscore.js 1.8.3 \n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n */\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/** `Object#toString` result references. */\nvar symbolTag = '[object Symbol]';\n\n/** Used to match words composed of alphanumeric characters. */\nvar reAsciiWord = /[^\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\x7f]+/g;\n\n/** Used to compose unicode character classes. */\nvar rsAstralRange = '\\\\ud800-\\\\udfff',\n rsComboMarksRange = '\\\\u0300-\\\\u036f\\\\ufe20-\\\\ufe23',\n rsComboSymbolsRange = '\\\\u20d0-\\\\u20f0',\n rsDingbatRange = '\\\\u2700-\\\\u27bf',\n rsLowerRange = 'a-z\\\\xdf-\\\\xf6\\\\xf8-\\\\xff',\n rsMathOpRange = '\\\\xac\\\\xb1\\\\xd7\\\\xf7',\n rsNonCharRange = '\\\\x00-\\\\x2f\\\\x3a-\\\\x40\\\\x5b-\\\\x60\\\\x7b-\\\\xbf',\n rsPunctuationRange = '\\\\u2000-\\\\u206f',\n rsSpaceRange = ' \\\\t\\\\x0b\\\\f\\\\xa0\\\\ufeff\\\\n\\\\r\\\\u2028\\\\u2029\\\\u1680\\\\u180e\\\\u2000\\\\u2001\\\\u2002\\\\u2003\\\\u2004\\\\u2005\\\\u2006\\\\u2007\\\\u2008\\\\u2009\\\\u200a\\\\u202f\\\\u205f\\\\u3000',\n rsUpperRange = 'A-Z\\\\xc0-\\\\xd6\\\\xd8-\\\\xde',\n rsVarRange = '\\\\ufe0e\\\\ufe0f',\n rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange;\n\n/** Used to compose unicode capture groups. */\nvar rsApos = \"['\\u2019]\",\n rsBreak = '[' + rsBreakRange + ']',\n rsCombo = '[' + rsComboMarksRange + rsComboSymbolsRange + ']',\n rsDigits = '\\\\d+',\n rsDingbat = '[' + rsDingbatRange + ']',\n rsLower = '[' + rsLowerRange + ']',\n rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']',\n rsFitz = '\\\\ud83c[\\\\udffb-\\\\udfff]',\n rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')',\n rsNonAstral = '[^' + rsAstralRange + ']',\n rsRegional = '(?:\\\\ud83c[\\\\udde6-\\\\uddff]){2}',\n rsSurrPair = '[\\\\ud800-\\\\udbff][\\\\udc00-\\\\udfff]',\n rsUpper = '[' + rsUpperRange + ']',\n rsZWJ = '\\\\u200d';\n\n/** Used to compose unicode regexes. */\nvar rsLowerMisc = '(?:' + rsLower + '|' + rsMisc + ')',\n rsUpperMisc = '(?:' + rsUpper + '|' + rsMisc + ')',\n rsOptLowerContr = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?',\n rsOptUpperContr = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?',\n reOptMod = rsModifier + '?',\n rsOptVar = '[' + rsVarRange + ']?',\n rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*',\n rsSeq = rsOptVar + reOptMod + rsOptJoin,\n rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq;\n\n/** Used to match complex or compound words. */\nvar reUnicodeWord = RegExp([\n rsUpper + '?' + rsLower + '+' + rsOptLowerContr + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')',\n rsUpperMisc + '+' + rsOptUpperContr + '(?=' + [rsBreak, rsUpper + rsLowerMisc, '$'].join('|') + ')',\n rsUpper + '?' + rsLowerMisc + '+' + rsOptLowerContr,\n rsUpper + '+' + rsOptUpperContr,\n rsDigits,\n rsEmoji\n].join('|'), 'g');\n\n/** Used to detect strings that need a more robust regexp to match words. */\nvar reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;\n\n/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\n/**\n * Splits an ASCII `string` into an array of its words.\n *\n * @private\n * @param {string} The string to inspect.\n * @returns {Array} Returns the words of `string`.\n */\nfunction asciiWords(string) {\n return string.match(reAsciiWord) || [];\n}\n\n/**\n * Checks if `string` contains a word composed of Unicode symbols.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {boolean} Returns `true` if a word is found, else `false`.\n */\nfunction hasUnicodeWord(string) {\n return reHasUnicodeWord.test(string);\n}\n\n/**\n * Splits a Unicode `string` into an array of its words.\n *\n * @private\n * @param {string} The string to inspect.\n * @returns {Array} Returns the words of `string`.\n */\nfunction unicodeWords(string) {\n return string.match(reUnicodeWord) || [];\n}\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar objectToString = objectProto.toString;\n\n/** Built-in value references. */\nvar Symbol = root.Symbol;\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n/**\n * The base implementation of `_.toString` which doesn't convert nullish\n * values to empty strings.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n */\nfunction baseToString(value) {\n // Exit early for strings to avoid a performance hit in some environments.\n if (typeof value == 'string') {\n return value;\n }\n if (isSymbol(value)) {\n return symbolToString ? symbolToString.call(value) : '';\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\n/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return !!value && typeof value == 'object';\n}\n\n/**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\nfunction isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && objectToString.call(value) == symbolTag);\n}\n\n/**\n * Converts `value` to a string. An empty string is returned for `null`\n * and `undefined` values. The sign of `-0` is preserved.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n * @example\n *\n * _.toString(null);\n * // => ''\n *\n * _.toString(-0);\n * // => '-0'\n *\n * _.toString([1, 2, 3]);\n * // => '1,2,3'\n */\nfunction toString(value) {\n return value == null ? '' : baseToString(value);\n}\n\n/**\n * Splits `string` into an array of its words.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to inspect.\n * @param {RegExp|string} [pattern] The pattern to match words.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the words of `string`.\n * @example\n *\n * _.words('fred, barney, & pebbles');\n * // => ['fred', 'barney', 'pebbles']\n *\n * _.words('fred, barney, & pebbles', /[^, ]+/g);\n * // => ['fred', 'barney', '&', 'pebbles']\n */\nfunction words(string, pattern, guard) {\n string = toString(string);\n pattern = guard ? undefined : pattern;\n\n if (pattern === undefined) {\n return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string);\n }\n return string.match(pattern) || [];\n}\n\nmodule.exports = words;\n","\"use strict\";var _V_LOADING=\"v-lazy-loading\",_V_LOADED=\"v-lazy-loaded\",_V_ERROR=\"v-lazy-error\",constant={_V_LOADING:_V_LOADING,_V_LOADED:_V_LOADED,_V_ERROR:_V_ERROR},lazyImageObserver=null,clearDataSrc=function(e,r){e.classList.add(r),e.removeAttribute(\"data-src\"),e.removeAttribute(\"data-err\")};\"IntersectionObserver\"in window&&(lazyImageObserver=new IntersectionObserver(function(e,r){e.forEach(function(e){if(e.isIntersecting){var r=e.target;r.classList.add(constant._V_LOADING);var a=r.dataset.src,t=r.dataset.err,n=new Image;n.src=a,n.onload=function(){r.classList.remove(constant._V_LOADING),a&&(r.src=a,clearDataSrc(r,constant._V_LOADED))},n.onerror=function(){r.classList.remove(constant._V_LOADING),t&&(r.src=t,clearDataSrc(r,constant._V_ERROR))},lazyImageObserver.unobserve(r)}})}));var lazyImageObserver$1=lazyImageObserver,plugin={install:function(e){e.directive(\"lazyload\",{bind:function(e){\"IntersectionObserver\"in window&&lazyImageObserver$1.observe(e)},componentUpdated:function(e){\"IntersectionObserver\"in window&&e.classList.contains(constant._V_LOADED)&&lazyImageObserver$1.observe(e)}})}};module.exports=plugin;\n//# sourceMappingURL=vue-tiny-lazyload-img.cjs.min.js.map\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n\n error.toJSON = function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code\n };\n };\n return error;\n};\n","//! moment.js locale configuration\n//! locale : English (Canada) [en-ca]\n//! author : Jonathan Abourbih : https://github.com/jonbca\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var enCa = moment.defineLocale('en-ca', {\n months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(\n '_'\n ),\n weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'YYYY-MM-DD',\n LL: 'MMMM D, YYYY',\n LLL: 'MMMM D, YYYY h:mm A',\n LLLL: 'dddd, MMMM D, YYYY h:mm A',\n },\n calendar: {\n sameDay: '[Today at] LT',\n nextDay: '[Tomorrow at] LT',\n nextWeek: 'dddd [at] LT',\n lastDay: '[Yesterday at] LT',\n lastWeek: '[Last] dddd [at] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'in %s',\n past: '%s ago',\n s: 'a few seconds',\n ss: '%d seconds',\n m: 'a minute',\n mm: '%d minutes',\n h: 'an hour',\n hh: '%d hours',\n d: 'a day',\n dd: '%d days',\n M: 'a month',\n MM: '%d months',\n y: 'a year',\n yy: '%d years',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal: function (number) {\n var b = number % 10,\n output =\n ~~((number % 100) / 10) === 1\n ? 'th'\n : b === 1\n ? 'st'\n : b === 2\n ? 'nd'\n : b === 3\n ? 'rd'\n : 'th';\n return number + output;\n },\n });\n\n return enCa;\n\n})));\n","var $ = require('../internals/export');\nvar repeat = require('../internals/string-repeat');\n\n// `String.prototype.repeat` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.repeat\n$({ target: 'String', proto: true }, {\n repeat: repeat\n});\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","//! moment.js locale configuration\n//! locale : English (United Kingdom) [en-gb]\n//! author : Chris Gedrim : https://github.com/chrisgedrim\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var enGb = moment.defineLocale('en-gb', {\n months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(\n '_'\n ),\n weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Today at] LT',\n nextDay: '[Tomorrow at] LT',\n nextWeek: 'dddd [at] LT',\n lastDay: '[Yesterday at] LT',\n lastWeek: '[Last] dddd [at] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'in %s',\n past: '%s ago',\n s: 'a few seconds',\n ss: '%d seconds',\n m: 'a minute',\n mm: '%d minutes',\n h: 'an hour',\n hh: '%d hours',\n d: 'a day',\n dd: '%d days',\n M: 'a month',\n MM: '%d months',\n y: 'a year',\n yy: '%d years',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal: function (number) {\n var b = number % 10,\n output =\n ~~((number % 100) / 10) === 1\n ? 'th'\n : b === 1\n ? 'st'\n : b === 2\n ? 'nd'\n : b === 3\n ? 'rd'\n : 'th';\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return enGb;\n\n})));\n","//! moment.js locale configuration\n//! locale : Marathi [mr]\n//! author : Harshad Kale : https://github.com/kalehv\n//! author : Vivek Athalye : https://github.com/vnathalye\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '१',\n 2: '२',\n 3: '३',\n 4: '४',\n 5: '५',\n 6: '६',\n 7: '७',\n 8: '८',\n 9: '९',\n 0: '०',\n },\n numberMap = {\n '१': '1',\n '२': '2',\n '३': '3',\n '४': '4',\n '५': '5',\n '६': '6',\n '७': '7',\n '८': '8',\n '९': '9',\n '०': '0',\n };\n\n function relativeTimeMr(number, withoutSuffix, string, isFuture) {\n var output = '';\n if (withoutSuffix) {\n switch (string) {\n case 's':\n output = 'काही सेकंद';\n break;\n case 'ss':\n output = '%d सेकंद';\n break;\n case 'm':\n output = 'एक मिनिट';\n break;\n case 'mm':\n output = '%d मिनिटे';\n break;\n case 'h':\n output = 'एक तास';\n break;\n case 'hh':\n output = '%d तास';\n break;\n case 'd':\n output = 'एक दिवस';\n break;\n case 'dd':\n output = '%d दिवस';\n break;\n case 'M':\n output = 'एक महिना';\n break;\n case 'MM':\n output = '%d महिने';\n break;\n case 'y':\n output = 'एक वर्ष';\n break;\n case 'yy':\n output = '%d वर्षे';\n break;\n }\n } else {\n switch (string) {\n case 's':\n output = 'काही सेकंदां';\n break;\n case 'ss':\n output = '%d सेकंदां';\n break;\n case 'm':\n output = 'एका मिनिटा';\n break;\n case 'mm':\n output = '%d मिनिटां';\n break;\n case 'h':\n output = 'एका तासा';\n break;\n case 'hh':\n output = '%d तासां';\n break;\n case 'd':\n output = 'एका दिवसा';\n break;\n case 'dd':\n output = '%d दिवसां';\n break;\n case 'M':\n output = 'एका महिन्या';\n break;\n case 'MM':\n output = '%d महिन्यां';\n break;\n case 'y':\n output = 'एका वर्षा';\n break;\n case 'yy':\n output = '%d वर्षां';\n break;\n }\n }\n return output.replace(/%d/i, number);\n }\n\n var mr = moment.defineLocale('mr', {\n months: 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(\n '_'\n ),\n monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),\n weekdaysShort: 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),\n weekdaysMin: 'र_सो_मं_बु_गु_शु_श'.split('_'),\n longDateFormat: {\n LT: 'A h:mm वाजता',\n LTS: 'A h:mm:ss वाजता',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, A h:mm वाजता',\n LLLL: 'dddd, D MMMM YYYY, A h:mm वाजता',\n },\n calendar: {\n sameDay: '[आज] LT',\n nextDay: '[उद्या] LT',\n nextWeek: 'dddd, LT',\n lastDay: '[काल] LT',\n lastWeek: '[मागील] dddd, LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%sमध्ये',\n past: '%sपूर्वी',\n s: relativeTimeMr,\n ss: relativeTimeMr,\n m: relativeTimeMr,\n mm: relativeTimeMr,\n h: relativeTimeMr,\n hh: relativeTimeMr,\n d: relativeTimeMr,\n dd: relativeTimeMr,\n M: relativeTimeMr,\n MM: relativeTimeMr,\n y: relativeTimeMr,\n yy: relativeTimeMr,\n },\n preparse: function (string) {\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'पहाटे' || meridiem === 'सकाळी') {\n return hour;\n } else if (\n meridiem === 'दुपारी' ||\n meridiem === 'सायंकाळी' ||\n meridiem === 'रात्री'\n ) {\n return hour >= 12 ? hour : hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour >= 0 && hour < 6) {\n return 'पहाटे';\n } else if (hour < 12) {\n return 'सकाळी';\n } else if (hour < 17) {\n return 'दुपारी';\n } else if (hour < 20) {\n return 'सायंकाळी';\n } else {\n return 'रात्री';\n }\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return mr;\n\n})));\n","//! moment.js locale configuration\n//! locale : Nepalese [ne]\n//! author : suvash : https://github.com/suvash\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '१',\n 2: '२',\n 3: '३',\n 4: '४',\n 5: '५',\n 6: '६',\n 7: '७',\n 8: '८',\n 9: '९',\n 0: '०',\n },\n numberMap = {\n '१': '1',\n '२': '2',\n '३': '3',\n '४': '4',\n '५': '5',\n '६': '6',\n '७': '7',\n '८': '8',\n '९': '9',\n '०': '0',\n };\n\n var ne = moment.defineLocale('ne', {\n months: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split(\n '_'\n ),\n monthsShort: 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split(\n '_'\n ),\n weekdaysShort: 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),\n weekdaysMin: 'आ._सो._मं._बु._बि._शु._श.'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'Aको h:mm बजे',\n LTS: 'Aको h:mm:ss बजे',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, Aको h:mm बजे',\n LLLL: 'dddd, D MMMM YYYY, Aको h:mm बजे',\n },\n preparse: function (string) {\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /राति|बिहान|दिउँसो|साँझ/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'राति') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'बिहान') {\n return hour;\n } else if (meridiem === 'दिउँसो') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'साँझ') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 3) {\n return 'राति';\n } else if (hour < 12) {\n return 'बिहान';\n } else if (hour < 16) {\n return 'दिउँसो';\n } else if (hour < 20) {\n return 'साँझ';\n } else {\n return 'राति';\n }\n },\n calendar: {\n sameDay: '[आज] LT',\n nextDay: '[भोलि] LT',\n nextWeek: '[आउँदो] dddd[,] LT',\n lastDay: '[हिजो] LT',\n lastWeek: '[गएको] dddd[,] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%sमा',\n past: '%s अगाडि',\n s: 'केही क्षण',\n ss: '%d सेकेण्ड',\n m: 'एक मिनेट',\n mm: '%d मिनेट',\n h: 'एक घण्टा',\n hh: '%d घण्टा',\n d: 'एक दिन',\n dd: '%d दिन',\n M: 'एक महिना',\n MM: '%d महिना',\n y: 'एक बर्ष',\n yy: '%d बर्ष',\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return ne;\n\n})));\n","//! moment.js locale configuration\n//! locale : Chinese (Macau) [zh-mo]\n//! author : Ben : https://github.com/ben-lin\n//! author : Chris Lam : https://github.com/hehachris\n//! author : Tan Yuanhong : https://github.com/le0tan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var zhMo = moment.defineLocale('zh-mo', {\n months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(\n '_'\n ),\n monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(\n '_'\n ),\n weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),\n weekdaysShort: '週日_週一_週二_週三_週四_週五_週六'.split('_'),\n weekdaysMin: '日_一_二_三_四_五_六'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'YYYY年M月D日',\n LLL: 'YYYY年M月D日 HH:mm',\n LLLL: 'YYYY年M月D日dddd HH:mm',\n l: 'D/M/YYYY',\n ll: 'YYYY年M月D日',\n lll: 'YYYY年M月D日 HH:mm',\n llll: 'YYYY年M月D日dddd HH:mm',\n },\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {\n return hour;\n } else if (meridiem === '中午') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === '下午' || meridiem === '晚上') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return '凌晨';\n } else if (hm < 900) {\n return '早上';\n } else if (hm < 1130) {\n return '上午';\n } else if (hm < 1230) {\n return '中午';\n } else if (hm < 1800) {\n return '下午';\n } else {\n return '晚上';\n }\n },\n calendar: {\n sameDay: '[今天] LT',\n nextDay: '[明天] LT',\n nextWeek: '[下]dddd LT',\n lastDay: '[昨天] LT',\n lastWeek: '[上]dddd LT',\n sameElse: 'L',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(日|月|週)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n case 'M':\n return number + '月';\n case 'w':\n case 'W':\n return number + '週';\n default:\n return number;\n }\n },\n relativeTime: {\n future: '%s內',\n past: '%s前',\n s: '幾秒',\n ss: '%d 秒',\n m: '1 分鐘',\n mm: '%d 分鐘',\n h: '1 小時',\n hh: '%d 小時',\n d: '1 天',\n dd: '%d 天',\n M: '1 個月',\n MM: '%d 個月',\n y: '1 年',\n yy: '%d 年',\n },\n });\n\n return zhMo;\n\n})));\n","//! moment.js locale configuration\n//! locale : Tajik [tg]\n//! author : Orif N. Jr. : https://github.com/orif-jr\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var suffixes = {\n 0: '-ум',\n 1: '-ум',\n 2: '-юм',\n 3: '-юм',\n 4: '-ум',\n 5: '-ум',\n 6: '-ум',\n 7: '-ум',\n 8: '-ум',\n 9: '-ум',\n 10: '-ум',\n 12: '-ум',\n 13: '-ум',\n 20: '-ум',\n 30: '-юм',\n 40: '-ум',\n 50: '-ум',\n 60: '-ум',\n 70: '-ум',\n 80: '-ум',\n 90: '-ум',\n 100: '-ум',\n };\n\n var tg = moment.defineLocale('tg', {\n months: {\n format: 'январи_феврали_марти_апрели_майи_июни_июли_августи_сентябри_октябри_ноябри_декабри'.split(\n '_'\n ),\n standalone: 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split(\n '_'\n ),\n },\n monthsShort: 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),\n weekdays: 'якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе'.split(\n '_'\n ),\n weekdaysShort: 'яшб_дшб_сшб_чшб_пшб_ҷум_шнб'.split('_'),\n weekdaysMin: 'яш_дш_сш_чш_пш_ҷм_шб'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Имрӯз соати] LT',\n nextDay: '[Фардо соати] LT',\n lastDay: '[Дирӯз соати] LT',\n nextWeek: 'dddd[и] [ҳафтаи оянда соати] LT',\n lastWeek: 'dddd[и] [ҳафтаи гузашта соати] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'баъди %s',\n past: '%s пеш',\n s: 'якчанд сония',\n m: 'як дақиқа',\n mm: '%d дақиқа',\n h: 'як соат',\n hh: '%d соат',\n d: 'як рӯз',\n dd: '%d рӯз',\n M: 'як моҳ',\n MM: '%d моҳ',\n y: 'як сол',\n yy: '%d сол',\n },\n meridiemParse: /шаб|субҳ|рӯз|бегоҳ/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'шаб') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'субҳ') {\n return hour;\n } else if (meridiem === 'рӯз') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'бегоҳ') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'шаб';\n } else if (hour < 11) {\n return 'субҳ';\n } else if (hour < 16) {\n return 'рӯз';\n } else if (hour < 19) {\n return 'бегоҳ';\n } else {\n return 'шаб';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ум|юм)/,\n ordinal: function (number) {\n var a = number % 10,\n b = number >= 100 ? 100 : null;\n return number + (suffixes[number] || suffixes[a] || suffixes[b]);\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 1th is the first week of the year.\n },\n });\n\n return tg;\n\n})));\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","//! moment.js locale configuration\n//! locale : Czech [cs]\n//! author : petrbela : https://github.com/petrbela\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(\n '_'\n ),\n monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),\n monthsParse = [\n /^led/i,\n /^úno/i,\n /^bře/i,\n /^dub/i,\n /^kvě/i,\n /^(čvn|červen$|června)/i,\n /^(čvc|červenec|července)/i,\n /^srp/i,\n /^zář/i,\n /^říj/i,\n /^lis/i,\n /^pro/i,\n ],\n // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.\n // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.\n monthsRegex = /^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;\n\n function plural(n) {\n return n > 1 && n < 5 && ~~(n / 10) !== 1;\n }\n function translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's': // a few seconds / in a few seconds / a few seconds ago\n return withoutSuffix || isFuture ? 'pár sekund' : 'pár sekundami';\n case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'sekundy' : 'sekund');\n } else {\n return result + 'sekundami';\n }\n case 'm': // a minute / in a minute / a minute ago\n return withoutSuffix ? 'minuta' : isFuture ? 'minutu' : 'minutou';\n case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'minuty' : 'minut');\n } else {\n return result + 'minutami';\n }\n case 'h': // an hour / in an hour / an hour ago\n return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';\n case 'hh': // 9 hours / in 9 hours / 9 hours ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'hodiny' : 'hodin');\n } else {\n return result + 'hodinami';\n }\n case 'd': // a day / in a day / a day ago\n return withoutSuffix || isFuture ? 'den' : 'dnem';\n case 'dd': // 9 days / in 9 days / 9 days ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'dny' : 'dní');\n } else {\n return result + 'dny';\n }\n case 'M': // a month / in a month / a month ago\n return withoutSuffix || isFuture ? 'měsíc' : 'měsícem';\n case 'MM': // 9 months / in 9 months / 9 months ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'měsíce' : 'měsíců');\n } else {\n return result + 'měsíci';\n }\n case 'y': // a year / in a year / a year ago\n return withoutSuffix || isFuture ? 'rok' : 'rokem';\n case 'yy': // 9 years / in 9 years / 9 years ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'roky' : 'let');\n } else {\n return result + 'lety';\n }\n }\n }\n\n var cs = moment.defineLocale('cs', {\n months: months,\n monthsShort: monthsShort,\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.\n // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.\n monthsStrictRegex: /^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,\n monthsShortStrictRegex: /^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n weekdays: 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'),\n weekdaysShort: 'ne_po_út_st_čt_pá_so'.split('_'),\n weekdaysMin: 'ne_po_út_st_čt_pá_so'.split('_'),\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd D. MMMM YYYY H:mm',\n l: 'D. M. YYYY',\n },\n calendar: {\n sameDay: '[dnes v] LT',\n nextDay: '[zítra v] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[v neděli v] LT';\n case 1:\n case 2:\n return '[v] dddd [v] LT';\n case 3:\n return '[ve středu v] LT';\n case 4:\n return '[ve čtvrtek v] LT';\n case 5:\n return '[v pátek v] LT';\n case 6:\n return '[v sobotu v] LT';\n }\n },\n lastDay: '[včera v] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[minulou neděli v] LT';\n case 1:\n case 2:\n return '[minulé] dddd [v] LT';\n case 3:\n return '[minulou středu v] LT';\n case 4:\n case 5:\n return '[minulý] dddd [v] LT';\n case 6:\n return '[minulou sobotu v] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'za %s',\n past: 'před %s',\n s: translate,\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: translate,\n dd: translate,\n M: translate,\n MM: translate,\n y: translate,\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return cs;\n\n})));\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","//! moment.js locale configuration\n//! locale : Tamil [ta]\n//! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '௧',\n 2: '௨',\n 3: '௩',\n 4: '௪',\n 5: '௫',\n 6: '௬',\n 7: '௭',\n 8: '௮',\n 9: '௯',\n 0: '௦',\n },\n numberMap = {\n '௧': '1',\n '௨': '2',\n '௩': '3',\n '௪': '4',\n '௫': '5',\n '௬': '6',\n '௭': '7',\n '௮': '8',\n '௯': '9',\n '௦': '0',\n };\n\n var ta = moment.defineLocale('ta', {\n months: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(\n '_'\n ),\n monthsShort: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(\n '_'\n ),\n weekdays: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split(\n '_'\n ),\n weekdaysShort: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split(\n '_'\n ),\n weekdaysMin: 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, HH:mm',\n LLLL: 'dddd, D MMMM YYYY, HH:mm',\n },\n calendar: {\n sameDay: '[இன்று] LT',\n nextDay: '[நாளை] LT',\n nextWeek: 'dddd, LT',\n lastDay: '[நேற்று] LT',\n lastWeek: '[கடந்த வாரம்] dddd, LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s இல்',\n past: '%s முன்',\n s: 'ஒரு சில விநாடிகள்',\n ss: '%d விநாடிகள்',\n m: 'ஒரு நிமிடம்',\n mm: '%d நிமிடங்கள்',\n h: 'ஒரு மணி நேரம்',\n hh: '%d மணி நேரம்',\n d: 'ஒரு நாள்',\n dd: '%d நாட்கள்',\n M: 'ஒரு மாதம்',\n MM: '%d மாதங்கள்',\n y: 'ஒரு வருடம்',\n yy: '%d ஆண்டுகள்',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}வது/,\n ordinal: function (number) {\n return number + 'வது';\n },\n preparse: function (string) {\n return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n // refer http://ta.wikipedia.org/s/1er1\n meridiemParse: /யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,\n meridiem: function (hour, minute, isLower) {\n if (hour < 2) {\n return ' யாமம்';\n } else if (hour < 6) {\n return ' வைகறை'; // வைகறை\n } else if (hour < 10) {\n return ' காலை'; // காலை\n } else if (hour < 14) {\n return ' நண்பகல்'; // நண்பகல்\n } else if (hour < 18) {\n return ' எற்பாடு'; // எற்பாடு\n } else if (hour < 22) {\n return ' மாலை'; // மாலை\n } else {\n return ' யாமம்';\n }\n },\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'யாமம்') {\n return hour < 2 ? hour : hour + 12;\n } else if (meridiem === 'வைகறை' || meridiem === 'காலை') {\n return hour;\n } else if (meridiem === 'நண்பகல்') {\n return hour >= 10 ? hour : hour + 12;\n } else {\n return hour + 12;\n }\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return ta;\n\n})));\n","//! moment.js locale configuration\n//! locale : Kannada [kn]\n//! author : Rajeev Naik : https://github.com/rajeevnaikte\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '೧',\n 2: '೨',\n 3: '೩',\n 4: '೪',\n 5: '೫',\n 6: '೬',\n 7: '೭',\n 8: '೮',\n 9: '೯',\n 0: '೦',\n },\n numberMap = {\n '೧': '1',\n '೨': '2',\n '೩': '3',\n '೪': '4',\n '೫': '5',\n '೬': '6',\n '೭': '7',\n '೮': '8',\n '೯': '9',\n '೦': '0',\n };\n\n var kn = moment.defineLocale('kn', {\n months: 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split(\n '_'\n ),\n monthsShort: 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split(\n '_'\n ),\n weekdaysShort: 'ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ'.split('_'),\n weekdaysMin: 'ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ'.split('_'),\n longDateFormat: {\n LT: 'A h:mm',\n LTS: 'A h:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, A h:mm',\n LLLL: 'dddd, D MMMM YYYY, A h:mm',\n },\n calendar: {\n sameDay: '[ಇಂದು] LT',\n nextDay: '[ನಾಳೆ] LT',\n nextWeek: 'dddd, LT',\n lastDay: '[ನಿನ್ನೆ] LT',\n lastWeek: '[ಕೊನೆಯ] dddd, LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s ನಂತರ',\n past: '%s ಹಿಂದೆ',\n s: 'ಕೆಲವು ಕ್ಷಣಗಳು',\n ss: '%d ಸೆಕೆಂಡುಗಳು',\n m: 'ಒಂದು ನಿಮಿಷ',\n mm: '%d ನಿಮಿಷ',\n h: 'ಒಂದು ಗಂಟೆ',\n hh: '%d ಗಂಟೆ',\n d: 'ಒಂದು ದಿನ',\n dd: '%d ದಿನ',\n M: 'ಒಂದು ತಿಂಗಳು',\n MM: '%d ತಿಂಗಳು',\n y: 'ಒಂದು ವರ್ಷ',\n yy: '%d ವರ್ಷ',\n },\n preparse: function (string) {\n return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'ರಾತ್ರಿ') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'ಬೆಳಿಗ್ಗೆ') {\n return hour;\n } else if (meridiem === 'ಮಧ್ಯಾಹ್ನ') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'ಸಂಜೆ') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ರಾತ್ರಿ';\n } else if (hour < 10) {\n return 'ಬೆಳಿಗ್ಗೆ';\n } else if (hour < 17) {\n return 'ಮಧ್ಯಾಹ್ನ';\n } else if (hour < 20) {\n return 'ಸಂಜೆ';\n } else {\n return 'ರಾತ್ರಿ';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ನೇ)/,\n ordinal: function (number) {\n return number + 'ನೇ';\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return kn;\n\n})));\n","module.exports = {};\n","'use strict';\nvar $ = require('../internals/export');\nvar forEach = require('../internals/array-for-each');\n\n// `Array.prototype.forEach` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {\n forEach: forEach\n});\n","//! moment.js locale configuration\n//! locale : Arabic (Kuwait) [ar-kw]\n//! author : Nusret Parlak: https://github.com/nusretparlak\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var arKw = moment.defineLocale('ar-kw', {\n months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(\n '_'\n ),\n monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(\n '_'\n ),\n weekdays: 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort: 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'في %s',\n past: 'منذ %s',\n s: 'ثوان',\n ss: '%d ثانية',\n m: 'دقيقة',\n mm: '%d دقائق',\n h: 'ساعة',\n hh: '%d ساعات',\n d: 'يوم',\n dd: '%d أيام',\n M: 'شهر',\n MM: '%d أشهر',\n y: 'سنة',\n yy: '%d سنوات',\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 12, // The week that contains Jan 12th is the first week of the year.\n },\n });\n\n return arKw;\n\n})));\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","exports.nextTick = function nextTick(fn) {\n var args = Array.prototype.slice.call(arguments);\n args.shift();\n setTimeout(function () {\n fn.apply(null, args);\n }, 0);\n};\n\nexports.platform = exports.arch = \nexports.execPath = exports.title = 'browser';\nexports.pid = 1;\nexports.browser = true;\nexports.env = {};\nexports.argv = [];\n\nexports.binding = function (name) {\n\tthrow new Error('No such module. (Possibly not yet loaded)')\n};\n\n(function () {\n var cwd = '/';\n var path;\n exports.cwd = function () { return cwd };\n exports.chdir = function (dir) {\n if (!path) path = require('path');\n cwd = path.resolve(dir, cwd);\n };\n})();\n\nexports.exit = exports.kill = \nexports.umask = exports.dlopen = \nexports.uptime = exports.memoryUsage = \nexports.uvCounters = function() {};\nexports.features = {};\n","//! moment.js locale configuration\n//! locale : Luxembourgish [lb]\n//! author : mweimerskirch : https://github.com/mweimerskirch\n//! author : David Raison : https://github.com/kwisatz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n m: ['eng Minutt', 'enger Minutt'],\n h: ['eng Stonn', 'enger Stonn'],\n d: ['een Dag', 'engem Dag'],\n M: ['ee Mount', 'engem Mount'],\n y: ['ee Joer', 'engem Joer'],\n };\n return withoutSuffix ? format[key][0] : format[key][1];\n }\n function processFutureTime(string) {\n var number = string.substr(0, string.indexOf(' '));\n if (eifelerRegelAppliesToNumber(number)) {\n return 'a ' + string;\n }\n return 'an ' + string;\n }\n function processPastTime(string) {\n var number = string.substr(0, string.indexOf(' '));\n if (eifelerRegelAppliesToNumber(number)) {\n return 'viru ' + string;\n }\n return 'virun ' + string;\n }\n /**\n * Returns true if the word before the given number loses the '-n' ending.\n * e.g. 'an 10 Deeg' but 'a 5 Deeg'\n *\n * @param number {integer}\n * @returns {boolean}\n */\n function eifelerRegelAppliesToNumber(number) {\n number = parseInt(number, 10);\n if (isNaN(number)) {\n return false;\n }\n if (number < 0) {\n // Negative Number --> always true\n return true;\n } else if (number < 10) {\n // Only 1 digit\n if (4 <= number && number <= 7) {\n return true;\n }\n return false;\n } else if (number < 100) {\n // 2 digits\n var lastDigit = number % 10,\n firstDigit = number / 10;\n if (lastDigit === 0) {\n return eifelerRegelAppliesToNumber(firstDigit);\n }\n return eifelerRegelAppliesToNumber(lastDigit);\n } else if (number < 10000) {\n // 3 or 4 digits --> recursively check first digit\n while (number >= 10) {\n number = number / 10;\n }\n return eifelerRegelAppliesToNumber(number);\n } else {\n // Anything larger than 4 digits: recursively check first n-3 digits\n number = number / 1000;\n return eifelerRegelAppliesToNumber(number);\n }\n }\n\n var lb = moment.defineLocale('lb', {\n months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split(\n '_'\n ),\n monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split(\n '_'\n ),\n weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),\n weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm [Auer]',\n LTS: 'H:mm:ss [Auer]',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm [Auer]',\n LLLL: 'dddd, D. MMMM YYYY H:mm [Auer]',\n },\n calendar: {\n sameDay: '[Haut um] LT',\n sameElse: 'L',\n nextDay: '[Muer um] LT',\n nextWeek: 'dddd [um] LT',\n lastDay: '[Gëschter um] LT',\n lastWeek: function () {\n // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule\n switch (this.day()) {\n case 2:\n case 4:\n return '[Leschten] dddd [um] LT';\n default:\n return '[Leschte] dddd [um] LT';\n }\n },\n },\n relativeTime: {\n future: processFutureTime,\n past: processPastTime,\n s: 'e puer Sekonnen',\n ss: '%d Sekonnen',\n m: processRelativeTime,\n mm: '%d Minutten',\n h: processRelativeTime,\n hh: '%d Stonnen',\n d: processRelativeTime,\n dd: '%d Deeg',\n M: processRelativeTime,\n MM: '%d Méint',\n y: processRelativeTime,\n yy: '%d Joer',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return lb;\n\n})));\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var global = require('../internals/global');\n\nmodule.exports = function (a, b) {\n var console = global.console;\n if (console && console.error) {\n arguments.length === 1 ? console.error(a) : console.error(a, b);\n }\n};\n","var isObject = require('../internals/is-object');\nvar classof = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar MATCH = wellKnownSymbol('match');\n\n// `IsRegExp` abstract operation\n// https://tc39.github.io/ecma262/#sec-isregexp\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');\n};\n","/*! Moment Duration Format v2.2.2\n * https://github.com/jsmreese/moment-duration-format\n * Date: 2018-02-16\n *\n * Duration format plugin function for the Moment.js library\n * http://momentjs.com/\n *\n * Copyright 2018 John Madhavan-Reese\n * Released under the MIT license\n */\n\n(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(['moment'], factory);\n } else if (typeof exports === 'object') {\n // Node. Does not work with strict CommonJS, but only CommonJS-like\n // enviroments that support module.exports, like Node.\n try {\n module.exports = factory(require('moment'));\n } catch (e) {\n // If moment is not available, leave the setup up to the user.\n // Like when using moment-timezone or similar moment-based package.\n module.exports = factory;\n }\n }\n\n if (root) {\n // Globals.\n root.momentDurationFormatSetup = root.moment ? factory(root.moment) : factory;\n }\n})(this, function (moment) {\n // `Number#tolocaleString` is tested on plugin initialization.\n // If the feature test passes, `toLocaleStringWorks` will be set to `true` and the\n // native function will be used to generate formatted output. If the feature\n // test fails, the fallback format function internal to this plugin will be\n // used.\n var toLocaleStringWorks = false;\n\n // `Number#toLocaleString` rounds incorrectly for select numbers in Microsoft\n // environments (Edge, IE11, Windows Phone) and possibly other environments.\n // If the rounding test fails and `toLocaleString` will be used for formatting,\n // the plugin will \"pre-round\" number values using the fallback number format\n // function before passing them to `toLocaleString` for final formatting.\n var toLocaleStringRoundingWorks = false;\n\n // `Intl.NumberFormat#format` is tested on plugin initialization.\n // If the feature test passes, `intlNumberFormatRoundingWorks` will be set to\n // `true` and the native function will be used to generate formatted output.\n // If the feature test fails, either `Number#tolocaleString` (if\n // `toLocaleStringWorks` is `true`), or the fallback format function internal\n // to this plugin will be used.\n var intlNumberFormatWorks = false;\n\n // `Intl.NumberFormat#format` rounds incorrectly for select numbers in Microsoft\n // environments (Edge, IE11, Windows Phone) and possibly other environments.\n // If the rounding test fails and `Intl.NumberFormat#format` will be used for\n // formatting, the plugin will \"pre-round\" number values using the fallback number\n // format function before passing them to `Intl.NumberFormat#format` for final\n // formatting.\n var intlNumberFormatRoundingWorks = false;\n\n // Token type names in order of descending magnitude.\n var types = \"escape years months weeks days hours minutes seconds milliseconds general\".split(\" \");\n\n var bubbles = [\n {\n type: \"seconds\",\n targets: [\n { type: \"minutes\", value: 60 },\n { type: \"hours\", value: 3600 },\n { type: \"days\", value: 86400 },\n { type: \"weeks\", value: 604800 },\n { type: \"months\", value: 2678400 },\n { type: \"years\", value: 31536000 }\n ]\n },\n {\n type: \"minutes\",\n targets: [\n { type: \"hours\", value: 60 },\n { type: \"days\", value: 1440 },\n { type: \"weeks\", value: 10080 },\n { type: \"months\", value: 44640 },\n { type: \"years\", value: 525600 }\n ]\n },\n {\n type: \"hours\",\n targets: [\n { type: \"days\", value: 24 },\n { type: \"weeks\", value: 168 },\n { type: \"months\", value: 744 },\n { type: \"years\", value: 8760 }\n ]\n },\n {\n type: \"days\",\n targets: [\n { type: \"weeks\", value: 7 },\n { type: \"months\", value: 31 },\n { type: \"years\", value: 365 }\n ]\n },\n {\n type: \"months\",\n targets: [\n { type: \"years\", value: 12 }\n ]\n }\n ];\n\n // stringIncludes\n function stringIncludes(str, search) {\n if (search.length > str.length) {\n return false;\n }\n\n return str.indexOf(search) !== -1;\n }\n\n // repeatZero(qty)\n // Returns \"0\" repeated `qty` times.\n // `qty` must be a integer >= 0.\n function repeatZero(qty) {\n var result = \"\";\n\n while (qty) {\n result += \"0\";\n qty -= 1;\n }\n\n return result;\n }\n\n function stringRound(digits) {\n var digitsArray = digits.split(\"\").reverse();\n var i = 0;\n var carry = true;\n\n while (carry && i < digitsArray.length) {\n if (i) {\n if (digitsArray[i] === \"9\") {\n digitsArray[i] = \"0\";\n } else {\n digitsArray[i] = (parseInt(digitsArray[i], 10) + 1).toString();\n carry = false;\n }\n } else {\n if (parseInt(digitsArray[i], 10) < 5) {\n carry = false;\n }\n\n digitsArray[i] = \"0\";\n }\n\n i += 1;\n }\n\n if (carry) {\n digitsArray.push(\"1\");\n }\n\n return digitsArray.reverse().join(\"\");\n }\n\n // cachedNumberFormat\n // Returns an `Intl.NumberFormat` instance for the given locale and configuration.\n // On first use of a particular configuration, the instance is cached for fast\n // repeat access.\n function cachedNumberFormat(locale, options) {\n // Create a sorted, stringified version of `options`\n // for use as part of the cache key\n var optionsString = map(\n keys(options).sort(),\n function(key) {\n return key + ':' + options[key];\n }\n ).join(',');\n\n // Set our cache key\n var cacheKey = locale + '+' + optionsString;\n\n // If we don't have this configuration cached, configure and cache it\n if (!cachedNumberFormat.cache[cacheKey]) {\n cachedNumberFormat.cache[cacheKey] = Intl.NumberFormat(locale, options);\n }\n\n // Return the cached version of this configuration\n return cachedNumberFormat.cache[cacheKey];\n }\n cachedNumberFormat.cache = {};\n\n // formatNumber\n // Formats any number greater than or equal to zero using these options:\n // - userLocale\n // - useToLocaleString\n // - useGrouping\n // - grouping\n // - maximumSignificantDigits\n // - minimumIntegerDigits\n // - fractionDigits\n // - groupingSeparator\n // - decimalSeparator\n //\n // `useToLocaleString` will use `Intl.NumberFormat` or `toLocaleString` for formatting.\n // `userLocale` option is passed through to the formatting function.\n // `fractionDigits` is passed through to `maximumFractionDigits` and `minimumFractionDigits`\n // Using `maximumSignificantDigits` will override `minimumIntegerDigits` and `fractionDigits`.\n function formatNumber(number, options, userLocale) {\n var useToLocaleString = options.useToLocaleString;\n var useGrouping = options.useGrouping;\n var grouping = useGrouping && options.grouping.slice();\n var maximumSignificantDigits = options.maximumSignificantDigits;\n var minimumIntegerDigits = options.minimumIntegerDigits || 1;\n var fractionDigits = options.fractionDigits || 0;\n var groupingSeparator = options.groupingSeparator;\n var decimalSeparator = options.decimalSeparator;\n\n if (useToLocaleString && userLocale) {\n var localeStringOptions = {\n minimumIntegerDigits: minimumIntegerDigits,\n useGrouping: useGrouping\n };\n\n if (fractionDigits) {\n localeStringOptions.maximumFractionDigits = fractionDigits;\n localeStringOptions.minimumFractionDigits = fractionDigits;\n }\n\n // toLocaleString output is \"0.0\" instead of \"0\" for HTC browsers\n // when maximumSignificantDigits is set. See #96.\n if (maximumSignificantDigits && number > 0) {\n localeStringOptions.maximumSignificantDigits = maximumSignificantDigits;\n }\n\n if (intlNumberFormatWorks) {\n if (!intlNumberFormatRoundingWorks) {\n var roundingOptions = extend({}, options);\n roundingOptions.useGrouping = false;\n roundingOptions.decimalSeparator = \".\";\n number = parseFloat(formatNumber(number, roundingOptions), 10);\n }\n\n return cachedNumberFormat(userLocale, localeStringOptions).format(number);\n } else {\n if (!toLocaleStringRoundingWorks) {\n var roundingOptions = extend({}, options);\n roundingOptions.useGrouping = false;\n roundingOptions.decimalSeparator = \".\";\n number = parseFloat(formatNumber(number, roundingOptions), 10);\n }\n\n return number.toLocaleString(userLocale, localeStringOptions);\n }\n }\n\n var numberString;\n\n // Add 1 to digit output length for floating point errors workaround. See below.\n if (maximumSignificantDigits) {\n numberString = number.toPrecision(maximumSignificantDigits + 1);\n } else {\n numberString = number.toFixed(fractionDigits + 1);\n }\n\n var integerString;\n var fractionString;\n var exponentString;\n\n var temp = numberString.split(\"e\");\n\n exponentString = temp[1] || \"\";\n\n temp = temp[0].split(\".\");\n\n fractionString = temp[1] || \"\";\n integerString = temp[0] || \"\";\n\n // Workaround for floating point errors in `toFixed` and `toPrecision`.\n // (3.55).toFixed(1); --> \"3.5\"\n // (123.55 - 120).toPrecision(2); --> \"3.5\"\n // (123.55 - 120); --> 3.549999999999997\n // (123.55 - 120).toFixed(2); --> \"3.55\"\n // Round by examing the string output of the next digit.\n\n // *************** Implement String Rounding here ***********************\n // Check integerString + fractionString length of toPrecision before rounding.\n // Check length of fractionString from toFixed output before rounding.\n var integerLength = integerString.length;\n var fractionLength = fractionString.length;\n var digitCount = integerLength + fractionLength;\n var digits = integerString + fractionString;\n\n if (maximumSignificantDigits && digitCount === (maximumSignificantDigits + 1) || !maximumSignificantDigits && fractionLength === (fractionDigits + 1)) {\n // Round digits.\n digits = stringRound(digits);\n\n if (digits.length === digitCount + 1) {\n integerLength = integerLength + 1;\n }\n\n // Discard final fractionDigit.\n if (fractionLength) {\n digits = digits.slice(0, -1);\n }\n\n // Separate integer and fraction.\n integerString = digits.slice(0, integerLength);\n fractionString = digits.slice(integerLength);\n }\n\n // Trim trailing zeroes from fractionString because toPrecision outputs\n // precision, not significant digits.\n if (maximumSignificantDigits) {\n fractionString = fractionString.replace(/0*$/, \"\");\n }\n\n // Handle exponent.\n var exponent = parseInt(exponentString, 10);\n\n if (exponent > 0) {\n if (fractionString.length <= exponent) {\n fractionString = fractionString + repeatZero(exponent - fractionString.length);\n\n integerString = integerString + fractionString;\n fractionString = \"\";\n } else {\n integerString = integerString + fractionString.slice(0, exponent);\n fractionString = fractionString.slice(exponent);\n }\n } else if (exponent < 0) {\n fractionString = (repeatZero(Math.abs(exponent) - integerString.length) + integerString + fractionString);\n\n integerString = \"0\";\n }\n\n if (!maximumSignificantDigits) {\n // Trim or pad fraction when not using maximumSignificantDigits.\n fractionString = fractionString.slice(0, fractionDigits);\n\n if (fractionString.length < fractionDigits) {\n fractionString = fractionString + repeatZero(fractionDigits - fractionString.length);\n }\n\n // Pad integer when using minimumIntegerDigits\n // and not using maximumSignificantDigits.\n if (integerString.length < minimumIntegerDigits) {\n integerString = repeatZero(minimumIntegerDigits - integerString.length) + integerString;\n }\n }\n\n var formattedString = \"\";\n\n // Handle grouping.\n if (useGrouping) {\n temp = integerString;\n var group;\n\n while (temp.length) {\n if (grouping.length) {\n group = grouping.shift();\n }\n\n if (formattedString) {\n formattedString = groupingSeparator + formattedString;\n }\n\n formattedString = temp.slice(-group) + formattedString;\n\n temp = temp.slice(0, -group);\n }\n } else {\n formattedString = integerString;\n }\n\n // Add decimalSeparator and fraction.\n if (fractionString) {\n formattedString = formattedString + decimalSeparator + fractionString;\n }\n\n return formattedString;\n }\n\n // durationLabelCompare\n function durationLabelCompare(a, b) {\n if (a.label.length > b.label.length) {\n return -1;\n }\n\n if (a.label.length < b.label.length) {\n return 1;\n }\n\n // a must be equal to b\n return 0;\n }\n\n // durationGetLabels\n function durationGetLabels(token, localeData) {\n var labels = [];\n\n each(keys(localeData), function (localeDataKey) {\n if (localeDataKey.slice(0, 15) !== \"_durationLabels\") {\n return;\n }\n\n var labelType = localeDataKey.slice(15).toLowerCase();\n\n each(keys(localeData[localeDataKey]), function (labelKey) {\n if (labelKey.slice(0, 1) === token) {\n labels.push({\n type: labelType,\n key: labelKey,\n label: localeData[localeDataKey][labelKey]\n });\n }\n });\n });\n\n return labels;\n }\n\n // durationPluralKey\n function durationPluralKey(token, integerValue, decimalValue) {\n // Singular for a value of `1`, but not for `1.0`.\n if (integerValue === 1 && decimalValue === null) {\n return token;\n }\n\n return token + token;\n }\n\n var engLocale = {\n durationLabelsStandard: {\n S: 'millisecond',\n SS: 'milliseconds',\n s: 'second',\n ss: 'seconds',\n m: 'minute',\n mm: 'minutes',\n h: 'hour',\n hh: 'hours',\n d: 'day',\n dd: 'days',\n w: 'week',\n ww: 'weeks',\n M: 'month',\n MM: 'months',\n y: 'year',\n yy: 'years'\n },\n durationLabelsShort: {\n S: 'msec',\n SS: 'msecs',\n s: 'sec',\n ss: 'secs',\n m: 'min',\n mm: 'mins',\n h: 'hr',\n hh: 'hrs',\n d: 'dy',\n dd: 'dys',\n w: 'wk',\n ww: 'wks',\n M: 'mo',\n MM: 'mos',\n y: 'yr',\n yy: 'yrs'\n },\n durationTimeTemplates: {\n HMS: 'h:mm:ss',\n HM: 'h:mm',\n MS: 'm:ss'\n },\n durationLabelTypes: [\n { type: \"standard\", string: \"__\" },\n { type: \"short\", string: \"_\" }\n ],\n durationPluralKey: durationPluralKey\n };\n\n // isArray\n function isArray(array) {\n return Object.prototype.toString.call(array) === \"[object Array]\";\n }\n\n // isObject\n function isObject(obj) {\n return Object.prototype.toString.call(obj) === \"[object Object]\";\n }\n\n // findLast\n function findLast(array, callback) {\n var index = array.length;\n\n while (index -= 1) {\n if (callback(array[index])) { return array[index]; }\n }\n }\n\n // find\n function find(array, callback) {\n var index = 0;\n\n var max = array && array.length || 0;\n\n var match;\n\n if (typeof callback !== \"function\") {\n match = callback;\n callback = function (item) {\n return item === match;\n };\n }\n\n while (index < max) {\n if (callback(array[index])) { return array[index]; }\n index += 1;\n }\n }\n\n // each\n function each(array, callback) {\n var index = 0,\n max = array.length;\n\n if (!array || !max) { return; }\n\n while (index < max) {\n if (callback(array[index], index) === false) { return; }\n index += 1;\n }\n }\n\n // map\n function map(array, callback) {\n var index = 0,\n max = array.length,\n ret = [];\n\n if (!array || !max) { return ret; }\n\n while (index < max) {\n ret[index] = callback(array[index], index);\n index += 1;\n }\n\n return ret;\n }\n\n // pluck\n function pluck(array, prop) {\n return map(array, function (item) {\n return item[prop];\n });\n }\n\n // compact\n function compact(array) {\n var ret = [];\n\n each(array, function (item) {\n if (item) { ret.push(item); }\n });\n\n return ret;\n }\n\n // unique\n function unique(array) {\n var ret = [];\n\n each(array, function (_a) {\n if (!find(ret, _a)) { ret.push(_a); }\n });\n\n return ret;\n }\n\n // intersection\n function intersection(a, b) {\n var ret = [];\n\n each(a, function (_a) {\n each(b, function (_b) {\n if (_a === _b) { ret.push(_a); }\n });\n });\n\n return unique(ret);\n }\n\n // rest\n function rest(array, callback) {\n var ret = [];\n\n each(array, function (item, index) {\n if (!callback(item)) {\n ret = array.slice(index);\n return false;\n }\n });\n\n return ret;\n }\n\n // initial\n function initial(array, callback) {\n var reversed = array.slice().reverse();\n\n return rest(reversed, callback).reverse();\n }\n\n // extend\n function extend(a, b) {\n for (var key in b) {\n if (b.hasOwnProperty(key)) { a[key] = b[key]; }\n }\n\n return a;\n }\n\n // keys\n function keys(a) {\n var ret = [];\n\n for (var key in a) {\n if (a.hasOwnProperty(key)) { ret.push(key); }\n }\n\n return ret;\n }\n\n // any\n function any(array, callback) {\n var index = 0,\n max = array.length;\n\n if (!array || !max) { return false; }\n\n while (index < max) {\n if (callback(array[index], index) === true) { return true; }\n index += 1;\n }\n\n return false;\n }\n\n // flatten\n function flatten(array) {\n var ret = [];\n\n each(array, function(child) {\n ret = ret.concat(child);\n });\n\n return ret;\n }\n\n function toLocaleStringSupportsLocales() {\n var number = 0;\n try {\n number.toLocaleString('i');\n } catch (e) {\n return e.name === 'RangeError';\n }\n return false;\n }\n\n function featureTestFormatterRounding(formatter) {\n return formatter(3.55, \"en\", {\n useGrouping: false,\n minimumIntegerDigits: 1,\n minimumFractionDigits: 1,\n maximumFractionDigits: 1\n }) === \"3.6\";\n }\n\n function featureTestFormatter(formatter) {\n var passed = true;\n\n // Test minimumIntegerDigits.\n passed = passed && formatter(1, \"en\", { minimumIntegerDigits: 1 }) === \"1\";\n passed = passed && formatter(1, \"en\", { minimumIntegerDigits: 2 }) === \"01\";\n passed = passed && formatter(1, \"en\", { minimumIntegerDigits: 3 }) === \"001\";\n if (!passed) { return false; }\n\n // Test maximumFractionDigits and minimumFractionDigits.\n passed = passed && formatter(99.99, \"en\", { maximumFractionDigits: 0, minimumFractionDigits: 0 }) === \"100\";\n passed = passed && formatter(99.99, \"en\", { maximumFractionDigits: 1, minimumFractionDigits: 1 }) === \"100.0\";\n passed = passed && formatter(99.99, \"en\", { maximumFractionDigits: 2, minimumFractionDigits: 2 }) === \"99.99\";\n passed = passed && formatter(99.99, \"en\", { maximumFractionDigits: 3, minimumFractionDigits: 3 }) === \"99.990\";\n if (!passed) { return false; }\n\n // Test maximumSignificantDigits.\n passed = passed && formatter(99.99, \"en\", { maximumSignificantDigits: 1 }) === \"100\";\n passed = passed && formatter(99.99, \"en\", { maximumSignificantDigits: 2 }) === \"100\";\n passed = passed && formatter(99.99, \"en\", { maximumSignificantDigits: 3 }) === \"100\";\n passed = passed && formatter(99.99, \"en\", { maximumSignificantDigits: 4 }) === \"99.99\";\n passed = passed && formatter(99.99, \"en\", { maximumSignificantDigits: 5 }) === \"99.99\";\n if (!passed) { return false; }\n\n // Test grouping.\n passed = passed && formatter(1000, \"en\", { useGrouping: true }) === \"1,000\";\n passed = passed && formatter(1000, \"en\", { useGrouping: false }) === \"1000\";\n if (!passed) { return false; }\n\n return true;\n }\n\n // durationsFormat(durations [, template] [, precision] [, settings])\n function durationsFormat() {\n var args = [].slice.call(arguments);\n var settings = {};\n var durations;\n\n // Parse arguments.\n each(args, function (arg, index) {\n if (!index) {\n if (!isArray(arg)) {\n throw \"Expected array as the first argument to durationsFormat.\";\n }\n\n durations = arg;\n }\n\n if (typeof arg === \"string\" || typeof arg === \"function\") {\n settings.template = arg;\n return;\n }\n\n if (typeof arg === \"number\") {\n settings.precision = arg;\n return;\n }\n\n if (isObject(arg)) {\n extend(settings, arg);\n }\n });\n\n if (!durations || !durations.length) {\n return [];\n }\n\n settings.returnMomentTypes = true;\n\n var formattedDurations = map(durations, function (dur) {\n return dur.format(settings);\n });\n\n // Merge token types from all durations.\n var outputTypes = intersection(types, unique(pluck(flatten(formattedDurations), \"type\")));\n\n var largest = settings.largest;\n\n if (largest) {\n outputTypes = outputTypes.slice(0, largest);\n }\n\n settings.returnMomentTypes = false;\n settings.outputTypes = outputTypes;\n\n return map(durations, function (dur) {\n return dur.format(settings);\n });\n }\n\n // durationFormat([template] [, precision] [, settings])\n function durationFormat() {\n\n var args = [].slice.call(arguments);\n var settings = extend({}, this.format.defaults);\n\n // Keep a shadow copy of this moment for calculating remainders.\n // Perform all calculations on positive duration value, handle negative\n // sign at the very end.\n var asMilliseconds = this.asMilliseconds();\n var asMonths = this.asMonths();\n\n // Treat invalid durations as having a value of 0 milliseconds.\n if (typeof this.isValid === \"function\" && this.isValid() === false) {\n asMilliseconds = 0;\n asMonths = 0;\n }\n\n var isNegative = asMilliseconds < 0;\n\n // Two shadow copies are needed because of the way moment.js handles\n // duration arithmetic for years/months and for weeks/days/hours/minutes/seconds.\n var remainder = moment.duration(Math.abs(asMilliseconds), \"milliseconds\");\n var remainderMonths = moment.duration(Math.abs(asMonths), \"months\");\n\n // Parse arguments.\n each(args, function (arg) {\n if (typeof arg === \"string\" || typeof arg === \"function\") {\n settings.template = arg;\n return;\n }\n\n if (typeof arg === \"number\") {\n settings.precision = arg;\n return;\n }\n\n if (isObject(arg)) {\n extend(settings, arg);\n }\n });\n\n var momentTokens = {\n years: \"y\",\n months: \"M\",\n weeks: \"w\",\n days: \"d\",\n hours: \"h\",\n minutes: \"m\",\n seconds: \"s\",\n milliseconds: \"S\"\n };\n\n var tokenDefs = {\n escape: /\\[(.+?)\\]/,\n years: /\\*?[Yy]+/,\n months: /\\*?M+/,\n weeks: /\\*?[Ww]+/,\n days: /\\*?[Dd]+/,\n hours: /\\*?[Hh]+/,\n minutes: /\\*?m+/,\n seconds: /\\*?s+/,\n milliseconds: /\\*?S+/,\n general: /.+?/\n };\n\n // Types array is available in the template function.\n settings.types = types;\n\n var typeMap = function (token) {\n return find(types, function (type) {\n return tokenDefs[type].test(token);\n });\n };\n\n var tokenizer = new RegExp(map(types, function (type) {\n return tokenDefs[type].source;\n }).join(\"|\"), \"g\");\n\n // Current duration object is available in the template function.\n settings.duration = this;\n\n // Eval template function and cache template string.\n var template = typeof settings.template === \"function\" ? settings.template.apply(settings) : settings.template;\n\n // outputTypes and returnMomentTypes are settings to support durationsFormat().\n\n // outputTypes is an array of moment token types that determines\n // the tokens returned in formatted output. This option overrides\n // trim, largest, stopTrim, etc.\n var outputTypes = settings.outputTypes;\n\n // returnMomentTypes is a boolean that sets durationFormat to return\n // the processed momentTypes instead of formatted output.\n var returnMomentTypes = settings.returnMomentTypes;\n\n var largest = settings.largest;\n\n // Setup stopTrim array of token types.\n var stopTrim = [];\n\n if (!outputTypes) {\n if (isArray(settings.stopTrim)) {\n settings.stopTrim = settings.stopTrim.join(\"\");\n }\n\n // Parse stopTrim string to create token types array.\n if (settings.stopTrim) {\n each(settings.stopTrim.match(tokenizer), function (token) {\n var type = typeMap(token);\n\n if (type === \"escape\" || type === \"general\") {\n return;\n }\n\n stopTrim.push(type);\n });\n }\n }\n\n // Cache moment's locale data.\n var localeData = moment.localeData();\n\n if (!localeData) {\n localeData = {};\n }\n\n // Fall back to this plugin's `eng` extension.\n each(keys(engLocale), function (key) {\n if (typeof engLocale[key] === \"function\") {\n if (!localeData[key]) {\n localeData[key] = engLocale[key];\n }\n\n return;\n }\n\n if (!localeData[\"_\" + key]) {\n localeData[\"_\" + key] = engLocale[key];\n }\n });\n\n // Replace Duration Time Template strings.\n // For locale `eng`: `_HMS_`, `_HM_`, and `_MS_`.\n each(keys(localeData._durationTimeTemplates), function (item) {\n template = template.replace(\"_\" + item + \"_\", localeData._durationTimeTemplates[item]);\n });\n\n // Determine user's locale.\n var userLocale = settings.userLocale || moment.locale();\n\n var useLeftUnits = settings.useLeftUnits;\n var usePlural = settings.usePlural;\n var precision = settings.precision;\n var forceLength = settings.forceLength;\n var useGrouping = settings.useGrouping;\n var trunc = settings.trunc;\n\n // Use significant digits only when precision is greater than 0.\n var useSignificantDigits = settings.useSignificantDigits && precision > 0;\n var significantDigits = useSignificantDigits ? settings.precision : 0;\n var significantDigitsCache = significantDigits;\n\n var minValue = settings.minValue;\n var isMinValue = false;\n\n var maxValue = settings.maxValue;\n var isMaxValue = false;\n\n // formatNumber fallback options.\n var useToLocaleString = settings.useToLocaleString;\n var groupingSeparator = settings.groupingSeparator;\n var decimalSeparator = settings.decimalSeparator;\n var grouping = settings.grouping;\n\n useToLocaleString = useToLocaleString && (toLocaleStringWorks || intlNumberFormatWorks);\n\n // Trim options.\n var trim = settings.trim;\n\n if (isArray(trim)) {\n trim = trim.join(\" \");\n }\n\n if (trim === null && (largest || maxValue || useSignificantDigits)) {\n trim = \"all\";\n }\n\n if (trim === null || trim === true || trim === \"left\" || trim === \"right\") {\n trim = \"large\";\n }\n\n if (trim === false) {\n trim = \"\";\n }\n\n var trimIncludes = function (item) {\n return item.test(trim);\n };\n\n var rLarge = /large/;\n var rSmall = /small/;\n var rBoth = /both/;\n var rMid = /mid/;\n var rAll = /^all|[^sm]all/;\n var rFinal = /final/;\n\n var trimLarge = largest > 0 || any([rLarge, rBoth, rAll], trimIncludes);\n var trimSmall = any([rSmall, rBoth, rAll], trimIncludes);\n var trimMid = any([rMid, rAll], trimIncludes);\n var trimFinal = any([rFinal, rAll], trimIncludes);\n\n // Parse format string to create raw tokens array.\n var rawTokens = map(template.match(tokenizer), function (token, index) {\n var type = typeMap(token);\n\n if (token.slice(0, 1) === \"*\") {\n token = token.slice(1);\n\n if (type !== \"escape\" && type !== \"general\") {\n stopTrim.push(type);\n }\n }\n\n return {\n index: index,\n length: token.length,\n text: \"\",\n\n // Replace escaped tokens with the non-escaped token text.\n token: (type === \"escape\" ? token.replace(tokenDefs.escape, \"$1\") : token),\n\n // Ignore type on non-moment tokens.\n type: ((type === \"escape\" || type === \"general\") ? null : type)\n };\n });\n\n // Associate text tokens with moment tokens.\n var currentToken = {\n index: 0,\n length: 0,\n token: \"\",\n text: \"\",\n type: null\n };\n\n var tokens = [];\n\n if (useLeftUnits) {\n rawTokens.reverse();\n }\n\n each(rawTokens, function (token) {\n if (token.type) {\n if (currentToken.type || currentToken.text) {\n tokens.push(currentToken);\n }\n\n currentToken = token;\n\n return;\n }\n\n if (useLeftUnits) {\n currentToken.text = token.token + currentToken.text;\n } else {\n currentToken.text += token.token;\n }\n });\n\n if (currentToken.type || currentToken.text) {\n tokens.push(currentToken);\n }\n\n if (useLeftUnits) {\n tokens.reverse();\n }\n\n // Find unique moment token types in the template in order of\n // descending magnitude.\n var momentTypes = intersection(types, unique(compact(pluck(tokens, \"type\"))));\n\n // Exit early if there are no moment token types.\n if (!momentTypes.length) {\n return pluck(tokens, \"text\").join(\"\");\n }\n\n // Calculate values for each moment type in the template.\n // For processing the settings, values are associated with moment types.\n // Values will be assigned to tokens at the last step in order to\n // assume nothing about frequency or order of tokens in the template.\n momentTypes = map(momentTypes, function (momentType, index) {\n // Is this the least-magnitude moment token found?\n var isSmallest = ((index + 1) === momentTypes.length);\n\n // Is this the greatest-magnitude moment token found?\n var isLargest = (!index);\n\n // Get the raw value in the current units.\n var rawValue;\n\n if (momentType === \"years\" || momentType === \"months\") {\n rawValue = remainderMonths.as(momentType);\n } else {\n rawValue = remainder.as(momentType);\n }\n\n var wholeValue = Math.floor(rawValue);\n var decimalValue = rawValue - wholeValue;\n\n var token = find(tokens, function (token) {\n return momentType === token.type;\n });\n\n if (isLargest && maxValue && rawValue > maxValue) {\n isMaxValue = true;\n }\n\n if (isSmallest && minValue && Math.abs(settings.duration.as(momentType)) < minValue) {\n isMinValue = true;\n }\n\n // Note the length of the largest-magnitude moment token:\n // if it is greater than one and forceLength is not set,\n // then default forceLength to `true`.\n //\n // Rationale is this: If the template is \"h:mm:ss\" and the\n // moment value is 5 minutes, the user-friendly output is\n // \"5:00\", not \"05:00\". We shouldn't pad the `minutes` token\n // even though it has length of two if the template is \"h:mm:ss\";\n //\n // If the minutes output should always include the leading zero\n // even when the hour is trimmed then set `{ forceLength: true }`\n // to output \"05:00\". If the template is \"hh:mm:ss\", the user\n // clearly wanted everything padded so we should output \"05:00\";\n //\n // If the user wants the full padded output, they can use\n // template \"hh:mm:ss\" and set `{ trim: false }` to output\n // \"00:05:00\".\n if (isLargest && forceLength === null && token.length > 1) {\n forceLength = true;\n }\n\n // Update remainder.\n remainder.subtract(wholeValue, momentType);\n remainderMonths.subtract(wholeValue, momentType);\n\n return {\n rawValue: rawValue,\n wholeValue: wholeValue,\n // Decimal value is only retained for the least-magnitude\n // moment type in the format template.\n decimalValue: isSmallest ? decimalValue : 0,\n isSmallest: isSmallest,\n isLargest: isLargest,\n type: momentType,\n // Tokens can appear multiple times in a template string,\n // but all instances must share the same length.\n tokenLength: token.length\n };\n });\n\n var truncMethod = trunc ? Math.floor : Math.round;\n var truncate = function (value, places) {\n var factor = Math.pow(10, places);\n return truncMethod(value * factor) / factor;\n };\n\n var foundFirst = false;\n var bubbled = false;\n\n var formatValue = function (momentType, index) {\n var formatOptions = {\n useGrouping: useGrouping,\n groupingSeparator: groupingSeparator,\n decimalSeparator: decimalSeparator,\n grouping: grouping,\n useToLocaleString: useToLocaleString\n };\n\n if (useSignificantDigits) {\n if (significantDigits <= 0) {\n momentType.rawValue = 0;\n momentType.wholeValue = 0;\n momentType.decimalValue = 0;\n } else {\n formatOptions.maximumSignificantDigits = significantDigits;\n momentType.significantDigits = significantDigits;\n }\n }\n\n if (isMaxValue && !bubbled) {\n if (momentType.isLargest) {\n momentType.wholeValue = maxValue;\n momentType.decimalValue = 0;\n } else {\n momentType.wholeValue = 0;\n momentType.decimalValue = 0;\n }\n }\n\n if (isMinValue && !bubbled) {\n if (momentType.isSmallest) {\n momentType.wholeValue = minValue;\n momentType.decimalValue = 0;\n } else {\n momentType.wholeValue = 0;\n momentType.decimalValue = 0;\n }\n }\n\n if (momentType.isSmallest || momentType.significantDigits && momentType.significantDigits - momentType.wholeValue.toString().length <= 0) {\n // Apply precision to least significant token value.\n if (precision < 0) {\n momentType.value = truncate(momentType.wholeValue, precision);\n } else if (precision === 0) {\n momentType.value = truncMethod(momentType.wholeValue + momentType.decimalValue);\n } else { // precision > 0\n if (useSignificantDigits) {\n if (trunc) {\n momentType.value = truncate(momentType.rawValue, significantDigits - momentType.wholeValue.toString().length);\n } else {\n momentType.value = momentType.rawValue;\n }\n\n if (momentType.wholeValue) {\n significantDigits -= momentType.wholeValue.toString().length;\n }\n } else {\n formatOptions.fractionDigits = precision;\n\n if (trunc) {\n momentType.value = momentType.wholeValue + truncate(momentType.decimalValue, precision);\n } else {\n momentType.value = momentType.wholeValue + momentType.decimalValue;\n }\n }\n }\n } else {\n if (useSignificantDigits && momentType.wholeValue) {\n // Outer Math.round required here to handle floating point errors.\n momentType.value = Math.round(truncate(momentType.wholeValue, momentType.significantDigits - momentType.wholeValue.toString().length));\n\n significantDigits -= momentType.wholeValue.toString().length;\n } else {\n momentType.value = momentType.wholeValue;\n }\n }\n\n if (momentType.tokenLength > 1 && (forceLength || foundFirst)) {\n formatOptions.minimumIntegerDigits = momentType.tokenLength;\n\n if (bubbled && formatOptions.maximumSignificantDigits < momentType.tokenLength) {\n delete formatOptions.maximumSignificantDigits;\n }\n }\n\n if (!foundFirst && (momentType.value > 0 || trim === \"\" /* trim: false */ || find(stopTrim, momentType.type) || find(outputTypes, momentType.type))) {\n foundFirst = true;\n }\n\n momentType.formattedValue = formatNumber(momentType.value, formatOptions, userLocale);\n\n formatOptions.useGrouping = false;\n formatOptions.decimalSeparator = \".\";\n momentType.formattedValueEn = formatNumber(momentType.value, formatOptions, \"en\");\n\n if (momentType.tokenLength === 2 && momentType.type === \"milliseconds\") {\n momentType.formattedValueMS = formatNumber(momentType.value, {\n minimumIntegerDigits: 3,\n useGrouping: false\n }, \"en\").slice(0, 2);\n }\n\n return momentType;\n };\n\n // Calculate formatted values.\n momentTypes = map(momentTypes, formatValue);\n momentTypes = compact(momentTypes);\n\n // Bubble rounded values.\n if (momentTypes.length > 1) {\n var findType = function (type) {\n return find(momentTypes, function (momentType) {\n return momentType.type === type;\n });\n };\n\n var bubbleTypes = function (bubble) {\n var bubbleMomentType = findType(bubble.type);\n\n if (!bubbleMomentType) {\n return;\n }\n\n each(bubble.targets, function (target) {\n var targetMomentType = findType(target.type);\n\n if (!targetMomentType) {\n return;\n }\n\n if (parseInt(bubbleMomentType.formattedValueEn, 10) === target.value) {\n bubbleMomentType.rawValue = 0;\n bubbleMomentType.wholeValue = 0;\n bubbleMomentType.decimalValue = 0;\n targetMomentType.rawValue += 1;\n targetMomentType.wholeValue += 1;\n targetMomentType.decimalValue = 0;\n targetMomentType.formattedValueEn = targetMomentType.wholeValue.toString();\n bubbled = true;\n }\n });\n };\n\n each(bubbles, bubbleTypes);\n }\n\n // Recalculate formatted values.\n if (bubbled) {\n foundFirst = false;\n significantDigits = significantDigitsCache;\n momentTypes = map(momentTypes, formatValue);\n momentTypes = compact(momentTypes);\n }\n\n if (outputTypes && !(isMaxValue && !settings.trim)) {\n momentTypes = map(momentTypes, function (momentType) {\n if (find(outputTypes, function (outputType) {\n return momentType.type === outputType;\n })) {\n return momentType;\n }\n\n return null;\n });\n\n momentTypes = compact(momentTypes);\n } else {\n // Trim Large.\n if (trimLarge) {\n momentTypes = rest(momentTypes, function (momentType) {\n // Stop trimming on:\n // - the smallest moment type\n // - a type marked for stopTrim\n // - a type that has a whole value\n return !momentType.isSmallest && !momentType.wholeValue && !find(stopTrim, momentType.type);\n });\n }\n\n // Largest.\n if (largest && momentTypes.length) {\n momentTypes = momentTypes.slice(0, largest);\n }\n\n // Trim Small.\n if (trimSmall && momentTypes.length > 1) {\n momentTypes = initial(momentTypes, function (momentType) {\n // Stop trimming on:\n // - a type marked for stopTrim\n // - a type that has a whole value\n // - the largest momentType\n return !momentType.wholeValue && !find(stopTrim, momentType.type) && !momentType.isLargest;\n });\n }\n\n // Trim Mid.\n if (trimMid) {\n momentTypes = map(momentTypes, function (momentType, index) {\n if (index > 0 && index < momentTypes.length - 1 && !momentType.wholeValue) {\n return null;\n }\n\n return momentType;\n });\n\n momentTypes = compact(momentTypes);\n }\n\n // Trim Final.\n if (trimFinal && momentTypes.length === 1 && !momentTypes[0].wholeValue && !(!trunc && momentTypes[0].isSmallest && momentTypes[0].rawValue < minValue)) {\n momentTypes = [];\n }\n }\n\n if (returnMomentTypes) {\n return momentTypes;\n }\n\n // Localize and pluralize unit labels.\n each(tokens, function (token) {\n var key = momentTokens[token.type];\n\n var momentType = find(momentTypes, function (momentType) {\n return momentType.type === token.type;\n });\n\n if (!key || !momentType) {\n return;\n }\n\n var values = momentType.formattedValueEn.split(\".\");\n\n values[0] = parseInt(values[0], 10);\n\n if (values[1]) {\n values[1] = parseFloat(\"0.\" + values[1], 10);\n } else {\n values[1] = null;\n }\n\n var pluralKey = localeData.durationPluralKey(key, values[0], values[1]);\n\n var labels = durationGetLabels(key, localeData);\n\n var autoLocalized = false;\n\n var pluralizedLabels = {};\n\n // Auto-Localized unit labels.\n each(localeData._durationLabelTypes, function (labelType) {\n var label = find(labels, function (label) {\n return label.type === labelType.type && label.key === pluralKey;\n });\n\n if (label) {\n pluralizedLabels[label.type] = label.label;\n\n if (stringIncludes(token.text, labelType.string)) {\n token.text = token.text.replace(labelType.string, label.label);\n autoLocalized = true;\n }\n }\n });\n\n // Auto-pluralized unit labels.\n if (usePlural && !autoLocalized) {\n labels.sort(durationLabelCompare);\n\n each(labels, function (label) {\n if (pluralizedLabels[label.type] === label.label) {\n if (stringIncludes(token.text, label.label)) {\n // Stop checking this token if its label is already\n // correctly pluralized.\n return false;\n }\n\n // Skip this label if it is correct, but not present in\n // the token's text.\n return;\n }\n\n if (stringIncludes(token.text, label.label)) {\n // Replece this token's label and stop checking.\n token.text = token.text.replace(label.label, pluralizedLabels[label.type]);\n return false;\n }\n });\n }\n });\n\n // Build ouptut.\n tokens = map(tokens, function (token) {\n if (!token.type) {\n return token.text;\n }\n\n var momentType = find(momentTypes, function (momentType) {\n return momentType.type === token.type;\n });\n\n if (!momentType) {\n return \"\";\n }\n\n var out = \"\";\n\n if (useLeftUnits) {\n out += token.text;\n }\n\n if (isNegative && isMaxValue || !isNegative && isMinValue) {\n out += \"< \";\n isMaxValue = false;\n isMinValue = false;\n }\n\n if (isNegative && isMinValue || !isNegative && isMaxValue) {\n out += \"> \";\n isMaxValue = false;\n isMinValue = false;\n }\n\n if (isNegative && (momentType.value > 0 || trim === \"\" || find(stopTrim, momentType.type) || find(outputTypes, momentType.type))) {\n out += \"-\";\n isNegative = false;\n }\n\n if (token.type === \"milliseconds\" && momentType.formattedValueMS) {\n out += momentType.formattedValueMS;\n } else {\n out += momentType.formattedValue;\n }\n\n if (!useLeftUnits) {\n out += token.text;\n }\n\n return out;\n });\n\n // Trim leading and trailing comma, space, colon, and dot.\n return tokens.join(\"\").replace(/(,| |:|\\.)*$/, \"\").replace(/^(,| |:|\\.)*/, \"\");\n }\n\n // defaultFormatTemplate\n function defaultFormatTemplate() {\n var dur = this.duration;\n\n var findType = function findType(type) {\n return dur._data[type];\n };\n\n var firstType = find(this.types, findType);\n\n var lastType = findLast(this.types, findType);\n\n // Default template strings for each duration dimension type.\n switch (firstType) {\n case \"milliseconds\":\n return \"S __\";\n case \"seconds\": // Fallthrough.\n case \"minutes\":\n return \"*_MS_\";\n case \"hours\":\n return \"_HMS_\";\n case \"days\": // Possible Fallthrough.\n if (firstType === lastType) {\n return \"d __\";\n }\n case \"weeks\":\n if (firstType === lastType) {\n return \"w __\";\n }\n\n if (this.trim === null) {\n this.trim = \"both\";\n }\n\n return \"w __, d __, h __\";\n case \"months\": // Possible Fallthrough.\n if (firstType === lastType) {\n return \"M __\";\n }\n case \"years\":\n if (firstType === lastType) {\n return \"y __\";\n }\n\n if (this.trim === null) {\n this.trim = \"both\";\n }\n\n return \"y __, M __, d __\";\n default:\n if (this.trim === null) {\n this.trim = \"both\";\n }\n\n return \"y __, d __, h __, m __, s __\";\n }\n }\n\n // init\n function init(context) {\n if (!context) {\n throw \"Moment Duration Format init cannot find moment instance.\";\n }\n\n context.duration.format = durationsFormat;\n context.duration.fn.format = durationFormat;\n\n context.duration.fn.format.defaults = {\n // Many options are defaulted to `null` to distinguish between\n // 'not set' and 'set to `false`'\n\n // trim\n // Can be a string, a delimited list of strings, an array of strings,\n // or a boolean.\n // \"large\" - will trim largest-magnitude zero-value tokens until\n // finding a token with a value, a token identified as 'stopTrim', or\n // the final token of the format string.\n // \"small\" - will trim smallest-magnitude zero-value tokens until\n // finding a token with a value, a token identified as 'stopTrim', or\n // the final token of the format string.\n // \"both\" - will execute \"large\" trim then \"small\" trim.\n // \"mid\" - will trim any zero-value tokens that are not the first or\n // last tokens. Usually used in conjunction with \"large\" or \"both\".\n // e.g. \"large mid\" or \"both mid\".\n // \"final\" - will trim the final token if it is zero-value. Use this\n // option with \"large\" or \"both\" to output an empty string when\n // formatting a zero-value duration. e.g. \"large final\" or \"both final\".\n // \"all\" - Will trim all zero-value tokens. Shorthand for \"both mid final\".\n // \"left\" - maps to \"large\" to support plugin's version 1 API.\n // \"right\" - maps to \"large\" to support plugin's version 1 API.\n // `false` - template tokens are not trimmed.\n // `true` - treated as \"large\".\n // `null` - treated as \"large\".\n trim: null,\n\n // stopTrim\n // A moment token string, a delimited set of moment token strings,\n // or an array of moment token strings. Trimming will stop when a token\n // listed in this option is reached. A \"*\" character in the format\n // template string will also mark a moment token as stopTrim.\n // e.g. \"d [days] *h:mm:ss\" will always stop trimming at the 'hours' token.\n stopTrim: null,\n\n // largest\n // Set to a positive integer to output only the \"n\" largest-magnitude\n // moment tokens that have a value. All lesser-magnitude moment tokens\n // will be ignored. This option takes effect even if `trim` is set\n // to `false`.\n largest: null,\n\n // maxValue\n // Use `maxValue` to render generalized output for large duration values,\n // e.g. `\"> 60 days\"`. `maxValue` must be a positive integer and is\n /// applied to the greatest-magnitude moment token in the format template.\n maxValue: null,\n\n // minValue\n // Use `minValue` to render generalized output for small duration values,\n // e.g. `\"< 5 minutes\"`. `minValue` must be a positive integer and is\n // applied to the least-magnitude moment token in the format template.\n minValue: null,\n\n // precision\n // If a positive integer, number of decimal fraction digits to render.\n // If a negative integer, number of integer place digits to truncate to 0.\n // If `useSignificantDigits` is set to `true` and `precision` is a positive\n // integer, sets the maximum number of significant digits used in the\n // formatted output.\n precision: 0,\n\n // trunc\n // Default behavior rounds final token value. Set to `true` to\n // truncate final token value, which was the default behavior in\n // version 1 of this plugin.\n trunc: false,\n\n // forceLength\n // Force first moment token with a value to render at full length\n // even when template is trimmed and first moment token has length of 1.\n forceLength: null,\n\n // userLocale\n // Formatted numerical output is rendered using `toLocaleString`\n // and the locale of the user's environment. Set this option to render\n // numerical output using a different locale. Unit names are rendered\n // and detected using the locale set in moment.js, which can be different\n // from the locale of user's environment.\n userLocale: null,\n\n // usePlural\n // Will automatically singularize or pluralize unit names when they\n // appear in the text associated with each moment token. Standard and\n // short unit labels are singularized and pluralized, based on locale.\n // e.g. in english, \"1 second\" or \"1 sec\" would be rendered instead\n // of \"1 seconds\" or \"1 secs\". The default pluralization function\n // renders a plural label for a value with decimal precision.\n // e.g. \"1.0 seconds\" is never rendered as \"1.0 second\".\n // Label types and pluralization function are configurable in the\n // localeData extensions.\n usePlural: true,\n\n // useLeftUnits\n // The text to the right of each moment token in a format string\n // is treated as that token's units for the purposes of trimming,\n // singularizing, and auto-localizing.\n // e.g. \"h [hours], m [minutes], s [seconds]\".\n // To properly singularize or localize a format string such as\n // \"[hours] h, [minutes] m, [seconds] s\", where the units appear\n // to the left of each moment token, set useLeftUnits to `true`.\n // This plugin is not tested in the context of rtl text.\n useLeftUnits: false,\n\n // useGrouping\n // Enables locale-based digit grouping in the formatted output. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString\n useGrouping: true,\n\n // useSignificantDigits\n // Treat the `precision` option as the maximum significant digits\n // to be rendered. Precision must be a positive integer. Significant\n // digits extend across unit types,\n // e.g. \"6 hours 37.5 minutes\" represents 4 significant digits.\n // Enabling this option causes token length to be ignored. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString\n useSignificantDigits: false,\n\n // template\n // The template string used to format the duration. May be a function\n // or a string. Template functions are executed with the `this` binding\n // of the settings object so that template strings may be dynamically\n // generated based on the duration object (accessible via `this.duration`)\n // or any of the other settings. Leading and trailing space, comma,\n // period, and colon characters are trimmed from the resulting string.\n template: defaultFormatTemplate,\n\n // useToLocaleString\n // Set this option to `false` to ignore the `toLocaleString` feature\n // test and force the use of the `formatNumber` fallback function\n // included in this plugin.\n useToLocaleString: true,\n\n // formatNumber fallback options.\n // When `toLocaleString` is detected and passes the feature test, the\n // following options will have no effect: `toLocaleString` will be used\n // for formatting and the grouping separator, decimal separator, and\n // integer digit grouping will be determined by the user locale.\n\n // groupingSeparator\n // The integer digit grouping separator used when using the fallback\n // formatNumber function.\n groupingSeparator: \",\",\n\n // decimalSeparator\n // The decimal separator used when using the fallback formatNumber\n // function.\n decimalSeparator: \".\",\n\n // grouping\n // The integer digit grouping used when using the fallback formatNumber\n // function. Must be an array. The default value of `[3]` gives the\n // standard 3-digit thousand/million/billion digit groupings for the\n // \"en\" locale. Setting this option to `[3, 2]` would generate the\n // thousand/lakh/crore digit groupings used in the \"en-IN\" locale.\n grouping: [3]\n };\n\n context.updateLocale('en', engLocale);\n }\n\n // Run feature tests for `Number#toLocaleString`.\n var toLocaleStringFormatter = function(number, locale, options) {\n return number.toLocaleString(locale, options);\n };\n\n toLocaleStringWorks = toLocaleStringSupportsLocales() && featureTestFormatter(toLocaleStringFormatter);\n toLocaleStringRoundingWorks = toLocaleStringWorks && featureTestFormatterRounding(toLocaleStringFormatter);\n\n // Run feature tests for `Intl.NumberFormat#format`.\n var intlNumberFormatFormatter = function(number, locale, options) {\n if (typeof window !== 'undefined' && window && window.Intl && window.Intl.NumberFormat) {\n return window.Intl.NumberFormat(locale, options).format(number);\n }\n };\n\n intlNumberFormatWorks = featureTestFormatter(intlNumberFormatFormatter);\n intlNumberFormatRoundingWorks = intlNumberFormatWorks && featureTestFormatterRounding(intlNumberFormatFormatter);\n\n // Initialize duration format on the global moment instance.\n init(moment);\n\n // Return the init function so that duration format can be\n // initialized on other moment instances.\n return init;\n});\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","var anObject = require('../internals/an-object');\nvar aFunction = require('../internals/a-function');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `SpeciesConstructor` abstract operation\n// https://tc39.github.io/ecma262/#sec-speciesconstructor\nmodule.exports = function (O, defaultConstructor) {\n var C = anObject(O).constructor;\n var S;\n return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);\n};\n","//! moment.js locale configuration\n//! locale : Azerbaijani [az]\n//! author : topchiyev : https://github.com/topchiyev\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var suffixes = {\n 1: '-inci',\n 5: '-inci',\n 8: '-inci',\n 70: '-inci',\n 80: '-inci',\n 2: '-nci',\n 7: '-nci',\n 20: '-nci',\n 50: '-nci',\n 3: '-üncü',\n 4: '-üncü',\n 100: '-üncü',\n 6: '-ncı',\n 9: '-uncu',\n 10: '-uncu',\n 30: '-uncu',\n 60: '-ıncı',\n 90: '-ıncı',\n };\n\n var az = moment.defineLocale('az', {\n months: 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split(\n '_'\n ),\n monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),\n weekdays: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(\n '_'\n ),\n weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),\n weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[bugün saat] LT',\n nextDay: '[sabah saat] LT',\n nextWeek: '[gələn həftə] dddd [saat] LT',\n lastDay: '[dünən] LT',\n lastWeek: '[keçən həftə] dddd [saat] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s sonra',\n past: '%s əvvəl',\n s: 'bir neçə saniyə',\n ss: '%d saniyə',\n m: 'bir dəqiqə',\n mm: '%d dəqiqə',\n h: 'bir saat',\n hh: '%d saat',\n d: 'bir gün',\n dd: '%d gün',\n M: 'bir ay',\n MM: '%d ay',\n y: 'bir il',\n yy: '%d il',\n },\n meridiemParse: /gecə|səhər|gündüz|axşam/,\n isPM: function (input) {\n return /^(gündüz|axşam)$/.test(input);\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'gecə';\n } else if (hour < 12) {\n return 'səhər';\n } else if (hour < 17) {\n return 'gündüz';\n } else {\n return 'axşam';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,\n ordinal: function (number) {\n if (number === 0) {\n // special case for zero\n return number + '-ıncı';\n }\n var a = number % 10,\n b = (number % 100) - a,\n c = number >= 100 ? 100 : null;\n return number + (suffixes[a] || suffixes[b] || suffixes[c]);\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return az;\n\n})));\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","'use strict';\nvar $ = require('../internals/export');\nvar $trim = require('../internals/string-trim').trim;\nvar forcedStringTrimMethod = require('../internals/string-trim-forced');\n\n// `String.prototype.trim` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.trim\n$({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {\n trim: function trim() {\n return $trim(this);\n }\n});\n","//! moment.js locale configuration\n//! locale : Chinese (Hong Kong) [zh-hk]\n//! author : Ben : https://github.com/ben-lin\n//! author : Chris Lam : https://github.com/hehachris\n//! author : Konstantin : https://github.com/skfd\n//! author : Anthony : https://github.com/anthonylau\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var zhHk = moment.defineLocale('zh-hk', {\n months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(\n '_'\n ),\n monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(\n '_'\n ),\n weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),\n weekdaysShort: '週日_週一_週二_週三_週四_週五_週六'.split('_'),\n weekdaysMin: '日_一_二_三_四_五_六'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY/MM/DD',\n LL: 'YYYY年M月D日',\n LLL: 'YYYY年M月D日 HH:mm',\n LLLL: 'YYYY年M月D日dddd HH:mm',\n l: 'YYYY/M/D',\n ll: 'YYYY年M月D日',\n lll: 'YYYY年M月D日 HH:mm',\n llll: 'YYYY年M月D日dddd HH:mm',\n },\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {\n return hour;\n } else if (meridiem === '中午') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === '下午' || meridiem === '晚上') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return '凌晨';\n } else if (hm < 900) {\n return '早上';\n } else if (hm < 1200) {\n return '上午';\n } else if (hm === 1200) {\n return '中午';\n } else if (hm < 1800) {\n return '下午';\n } else {\n return '晚上';\n }\n },\n calendar: {\n sameDay: '[今天]LT',\n nextDay: '[明天]LT',\n nextWeek: '[下]ddddLT',\n lastDay: '[昨天]LT',\n lastWeek: '[上]ddddLT',\n sameElse: 'L',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(日|月|週)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n case 'M':\n return number + '月';\n case 'w':\n case 'W':\n return number + '週';\n default:\n return number;\n }\n },\n relativeTime: {\n future: '%s後',\n past: '%s前',\n s: '幾秒',\n ss: '%d 秒',\n m: '1 分鐘',\n mm: '%d 分鐘',\n h: '1 小時',\n hh: '%d 小時',\n d: '1 天',\n dd: '%d 天',\n M: '1 個月',\n MM: '%d 個月',\n y: '1 年',\n yy: '%d 年',\n },\n });\n\n return zhHk;\n\n})));\n","'use strict';\n\nvar utils = require('../utils');\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n\n var valueFromConfig2Keys = ['url', 'method', 'data'];\n var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params'];\n var defaultToConfig2Keys = [\n 'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer',\n 'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',\n 'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress',\n 'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent',\n 'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding'\n ];\n var directMergeKeys = ['validateStatus'];\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n }\n\n utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n }\n });\n\n utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties);\n\n utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n\n utils.forEach(directMergeKeys, function merge(prop) {\n if (prop in config2) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n\n var axiosKeys = valueFromConfig2Keys\n .concat(mergeDeepPropertiesKeys)\n .concat(defaultToConfig2Keys)\n .concat(directMergeKeys);\n\n var otherKeys = Object\n .keys(config1)\n .concat(Object.keys(config2))\n .filter(function filterAxiosKeys(key) {\n return axiosKeys.indexOf(key) === -1;\n });\n\n utils.forEach(otherKeys, mergeDeepProperties);\n\n return config;\n};\n","//! moment.js locale configuration\n//! locale : Croatian [hr]\n//! author : Bojan Marković : https://github.com/bmarkovic\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function translate(number, withoutSuffix, key) {\n var result = number + ' ';\n switch (key) {\n case 'ss':\n if (number === 1) {\n result += 'sekunda';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'sekunde';\n } else {\n result += 'sekundi';\n }\n return result;\n case 'm':\n return withoutSuffix ? 'jedna minuta' : 'jedne minute';\n case 'mm':\n if (number === 1) {\n result += 'minuta';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'minute';\n } else {\n result += 'minuta';\n }\n return result;\n case 'h':\n return withoutSuffix ? 'jedan sat' : 'jednog sata';\n case 'hh':\n if (number === 1) {\n result += 'sat';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'sata';\n } else {\n result += 'sati';\n }\n return result;\n case 'dd':\n if (number === 1) {\n result += 'dan';\n } else {\n result += 'dana';\n }\n return result;\n case 'MM':\n if (number === 1) {\n result += 'mjesec';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'mjeseca';\n } else {\n result += 'mjeseci';\n }\n return result;\n case 'yy':\n if (number === 1) {\n result += 'godina';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'godine';\n } else {\n result += 'godina';\n }\n return result;\n }\n }\n\n var hr = moment.defineLocale('hr', {\n months: {\n format: 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split(\n '_'\n ),\n standalone: 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split(\n '_'\n ),\n },\n monthsShort: 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(\n '_'\n ),\n weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),\n weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'Do MMMM YYYY',\n LLL: 'Do MMMM YYYY H:mm',\n LLLL: 'dddd, Do MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[danas u] LT',\n nextDay: '[sutra u] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[u] [nedjelju] [u] LT';\n case 3:\n return '[u] [srijedu] [u] LT';\n case 6:\n return '[u] [subotu] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[u] dddd [u] LT';\n }\n },\n lastDay: '[jučer u] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[prošlu] [nedjelju] [u] LT';\n case 3:\n return '[prošlu] [srijedu] [u] LT';\n case 6:\n return '[prošle] [subote] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[prošli] dddd [u] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'za %s',\n past: 'prije %s',\n s: 'par sekundi',\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: 'dan',\n dd: translate,\n M: 'mjesec',\n MM: translate,\n y: 'godinu',\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return hr;\n\n})));\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","'use strict';\nvar bind = require('../internals/function-bind-context');\nvar toObject = require('../internals/to-object');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar getIteratorMethod = require('../internals/get-iterator-method');\n\n// `Array.from` method implementation\n// https://tc39.github.io/ecma262/#sec-array.from\nmodule.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {\n var O = toObject(arrayLike);\n var C = typeof this == 'function' ? this : Array;\n var argumentsLength = arguments.length;\n var mapfn = argumentsLength > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var iteratorMethod = getIteratorMethod(O);\n var index = 0;\n var length, result, step, iterator, next, value;\n if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2);\n // if the target is not iterable or it's an array with the default iterator - use a simple case\n if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) {\n iterator = iteratorMethod.call(O);\n next = iterator.next;\n result = new C();\n for (;!(step = next.call(iterator)).done; index++) {\n value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;\n createProperty(result, index, value);\n }\n } else {\n length = toLength(O.length);\n result = new C(length);\n for (;length > index; index++) {\n value = mapping ? mapfn(O[index], index) : O[index];\n createProperty(result, index, value);\n }\n }\n result.length = index;\n return result;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar aFunction = require('../internals/a-function');\nvar toObject = require('../internals/to-object');\nvar fails = require('../internals/fails');\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\n\nvar test = [];\nvar nativeSort = test.sort;\n\n// IE8-\nvar FAILS_ON_UNDEFINED = fails(function () {\n test.sort(undefined);\n});\n// V8 bug\nvar FAILS_ON_NULL = fails(function () {\n test.sort(null);\n});\n// Old WebKit\nvar STRICT_METHOD = arrayMethodIsStrict('sort');\n\nvar FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD;\n\n// `Array.prototype.sort` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.sort\n$({ target: 'Array', proto: true, forced: FORCED }, {\n sort: function sort(comparefn) {\n return comparefn === undefined\n ? nativeSort.call(toObject(this))\n : nativeSort.call(toObject(this), aFunction(comparefn));\n }\n});\n","//! moment.js locale configuration\n//! locale : Indonesian [id]\n//! author : Mohammad Satrio Utomo : https://github.com/tyok\n//! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var id = moment.defineLocale('id', {\n months: 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des'.split('_'),\n weekdays: 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'),\n weekdaysShort: 'Min_Sen_Sel_Rab_Kam_Jum_Sab'.split('_'),\n weekdaysMin: 'Mg_Sn_Sl_Rb_Km_Jm_Sb'.split('_'),\n longDateFormat: {\n LT: 'HH.mm',\n LTS: 'HH.mm.ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY [pukul] HH.mm',\n LLLL: 'dddd, D MMMM YYYY [pukul] HH.mm',\n },\n meridiemParse: /pagi|siang|sore|malam/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'pagi') {\n return hour;\n } else if (meridiem === 'siang') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'sore' || meridiem === 'malam') {\n return hour + 12;\n }\n },\n meridiem: function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'pagi';\n } else if (hours < 15) {\n return 'siang';\n } else if (hours < 19) {\n return 'sore';\n } else {\n return 'malam';\n }\n },\n calendar: {\n sameDay: '[Hari ini pukul] LT',\n nextDay: '[Besok pukul] LT',\n nextWeek: 'dddd [pukul] LT',\n lastDay: '[Kemarin pukul] LT',\n lastWeek: 'dddd [lalu pukul] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'dalam %s',\n past: '%s yang lalu',\n s: 'beberapa detik',\n ss: '%d detik',\n m: 'semenit',\n mm: '%d menit',\n h: 'sejam',\n hh: '%d jam',\n d: 'sehari',\n dd: '%d hari',\n M: 'sebulan',\n MM: '%d bulan',\n y: 'setahun',\n yy: '%d tahun',\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return id;\n\n})));\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","//! moment.js locale configuration\n//! locale : Irish or Irish Gaelic [ga]\n//! author : André Silva : https://github.com/askpt\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var months = [\n 'Eanáir',\n 'Feabhra',\n 'Márta',\n 'Aibreán',\n 'Bealtaine',\n 'Meitheamh',\n 'Iúil',\n 'Lúnasa',\n 'Meán Fómhair',\n 'Deireadh Fómhair',\n 'Samhain',\n 'Nollaig',\n ],\n monthsShort = [\n 'Ean',\n 'Feabh',\n 'Márt',\n 'Aib',\n 'Beal',\n 'Meith',\n 'Iúil',\n 'Lún',\n 'M.F.',\n 'D.F.',\n 'Samh',\n 'Noll',\n ],\n weekdays = [\n 'Dé Domhnaigh',\n 'Dé Luain',\n 'Dé Máirt',\n 'Dé Céadaoin',\n 'Déardaoin',\n 'Dé hAoine',\n 'Dé Sathairn',\n ],\n weekdaysShort = ['Domh', 'Luan', 'Máirt', 'Céad', 'Déar', 'Aoine', 'Sath'],\n weekdaysMin = ['Do', 'Lu', 'Má', 'Cé', 'Dé', 'A', 'Sa'];\n\n var ga = moment.defineLocale('ga', {\n months: months,\n monthsShort: monthsShort,\n monthsParseExact: true,\n weekdays: weekdays,\n weekdaysShort: weekdaysShort,\n weekdaysMin: weekdaysMin,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Inniu ag] LT',\n nextDay: '[Amárach ag] LT',\n nextWeek: 'dddd [ag] LT',\n lastDay: '[Inné ag] LT',\n lastWeek: 'dddd [seo caite] [ag] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'i %s',\n past: '%s ó shin',\n s: 'cúpla soicind',\n ss: '%d soicind',\n m: 'nóiméad',\n mm: '%d nóiméad',\n h: 'uair an chloig',\n hh: '%d uair an chloig',\n d: 'lá',\n dd: '%d lá',\n M: 'mí',\n MM: '%d míonna',\n y: 'bliain',\n yy: '%d bliain',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(d|na|mh)/,\n ordinal: function (number) {\n var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return ga;\n\n})));\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","//! moment.js locale configuration\n//! locale : Urdu [ur]\n//! author : Sawood Alam : https://github.com/ibnesayeed\n//! author : Zack : https://github.com/ZackVision\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var months = [\n 'جنوری',\n 'فروری',\n 'مارچ',\n 'اپریل',\n 'مئی',\n 'جون',\n 'جولائی',\n 'اگست',\n 'ستمبر',\n 'اکتوبر',\n 'نومبر',\n 'دسمبر',\n ],\n days = ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ'];\n\n var ur = moment.defineLocale('ur', {\n months: months,\n monthsShort: months,\n weekdays: days,\n weekdaysShort: days,\n weekdaysMin: days,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd، D MMMM YYYY HH:mm',\n },\n meridiemParse: /صبح|شام/,\n isPM: function (input) {\n return 'شام' === input;\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'صبح';\n }\n return 'شام';\n },\n calendar: {\n sameDay: '[آج بوقت] LT',\n nextDay: '[کل بوقت] LT',\n nextWeek: 'dddd [بوقت] LT',\n lastDay: '[گذشتہ روز بوقت] LT',\n lastWeek: '[گذشتہ] dddd [بوقت] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s بعد',\n past: '%s قبل',\n s: 'چند سیکنڈ',\n ss: '%d سیکنڈ',\n m: 'ایک منٹ',\n mm: '%d منٹ',\n h: 'ایک گھنٹہ',\n hh: '%d گھنٹے',\n d: 'ایک دن',\n dd: '%d دن',\n M: 'ایک ماہ',\n MM: '%d ماہ',\n y: 'ایک سال',\n yy: '%d سال',\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/,/g, '،');\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return ur;\n\n})));\n","//! moment.js locale configuration\n//! locale : siSwati [ss]\n//! author : Nicolai Davies : https://github.com/nicolaidavies\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var ss = moment.defineLocale('ss', {\n months: \"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\n '_'\n ),\n monthsShort: 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'),\n weekdays: 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split(\n '_'\n ),\n weekdaysShort: 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'),\n weekdaysMin: 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY h:mm A',\n LLLL: 'dddd, D MMMM YYYY h:mm A',\n },\n calendar: {\n sameDay: '[Namuhla nga] LT',\n nextDay: '[Kusasa nga] LT',\n nextWeek: 'dddd [nga] LT',\n lastDay: '[Itolo nga] LT',\n lastWeek: 'dddd [leliphelile] [nga] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'nga %s',\n past: 'wenteka nga %s',\n s: 'emizuzwana lomcane',\n ss: '%d mzuzwana',\n m: 'umzuzu',\n mm: '%d emizuzu',\n h: 'lihora',\n hh: '%d emahora',\n d: 'lilanga',\n dd: '%d emalanga',\n M: 'inyanga',\n MM: '%d tinyanga',\n y: 'umnyaka',\n yy: '%d iminyaka',\n },\n meridiemParse: /ekuseni|emini|entsambama|ebusuku/,\n meridiem: function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'ekuseni';\n } else if (hours < 15) {\n return 'emini';\n } else if (hours < 19) {\n return 'entsambama';\n } else {\n return 'ebusuku';\n }\n },\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'ekuseni') {\n return hour;\n } else if (meridiem === 'emini') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'entsambama' || meridiem === 'ebusuku') {\n if (hour === 0) {\n return 0;\n }\n return hour + 12;\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}/,\n ordinal: '%d',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return ss;\n\n})));\n","'use strict';\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar anObject = require('../internals/an-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar regExpExec = require('../internals/regexp-exec-abstract');\n\nvar max = Math.max;\nvar min = Math.min;\nvar floor = Math.floor;\nvar SUBSTITUTION_SYMBOLS = /\\$([$&'`]|\\d\\d?|<[^>]*>)/g;\nvar SUBSTITUTION_SYMBOLS_NO_NAMED = /\\$([$&'`]|\\d\\d?)/g;\n\nvar maybeToString = function (it) {\n return it === undefined ? it : String(it);\n};\n\n// @@replace logic\nfixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {\n var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE;\n var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0;\n var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';\n\n return [\n // `String.prototype.replace` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];\n return replacer !== undefined\n ? replacer.call(searchValue, O, replaceValue)\n : nativeReplace.call(String(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace\n function (regexp, replaceValue) {\n if (\n (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) ||\n (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1)\n ) {\n var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);\n if (res.done) return res.value;\n }\n\n var rx = anObject(regexp);\n var S = String(this);\n\n var functionalReplace = typeof replaceValue === 'function';\n if (!functionalReplace) replaceValue = String(replaceValue);\n\n var global = rx.global;\n if (global) {\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n var results = [];\n while (true) {\n var result = regExpExec(rx, S);\n if (result === null) break;\n\n results.push(result);\n if (!global) break;\n\n var matchStr = String(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n\n var matched = String(result[0]);\n var position = max(min(toInteger(result.index), S.length), 0);\n var captures = [];\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = [matched].concat(captures, position, S);\n if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);\n var replacement = String(replaceValue.apply(undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += S.slice(nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n return accumulatedResult + S.slice(nextSourcePosition);\n }\n ];\n\n // https://tc39.github.io/ecma262/#sec-getsubstitution\n function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {\n var tailPos = position + matched.length;\n var m = captures.length;\n var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;\n if (namedCaptures !== undefined) {\n namedCaptures = toObject(namedCaptures);\n symbols = SUBSTITUTION_SYMBOLS;\n }\n return nativeReplace.call(replacement, symbols, function (match, ch) {\n var capture;\n switch (ch.charAt(0)) {\n case '$': return '$';\n case '&': return matched;\n case '`': return str.slice(0, position);\n case \"'\": return str.slice(tailPos);\n case '<':\n capture = namedCaptures[ch.slice(1, -1)];\n break;\n default: // \\d\\d?\n var n = +ch;\n if (n === 0) return match;\n if (n > m) {\n var f = floor(n / 10);\n if (f === 0) return match;\n if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);\n return match;\n }\n capture = captures[n - 1];\n }\n return capture === undefined ? '' : capture;\n });\n }\n});\n","//! moment.js locale configuration\n//! locale : Spanish (United States) [es-us]\n//! author : bustta : https://github.com/bustta\n//! author : chrisrodz : https://github.com/chrisrodz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(\n '_'\n ),\n monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),\n monthsParse = [\n /^ene/i,\n /^feb/i,\n /^mar/i,\n /^abr/i,\n /^may/i,\n /^jun/i,\n /^jul/i,\n /^ago/i,\n /^sep/i,\n /^oct/i,\n /^nov/i,\n /^dic/i,\n ],\n monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;\n\n var esUs = moment.defineLocale('es-us', {\n months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(\n '_'\n ),\n monthsShort: function (m, format) {\n if (!m) {\n return monthsShortDot;\n } else if (/-MMM-/.test(format)) {\n return monthsShort[m.month()];\n } else {\n return monthsShortDot[m.month()];\n }\n },\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,\n monthsShortStrictRegex: /^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),\n weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),\n weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'MM/DD/YYYY',\n LL: 'D [de] MMMM [de] YYYY',\n LLL: 'D [de] MMMM [de] YYYY h:mm A',\n LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A',\n },\n calendar: {\n sameDay: function () {\n return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n nextDay: function () {\n return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n nextWeek: function () {\n return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n lastDay: function () {\n return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n lastWeek: function () {\n return (\n '[el] dddd [pasado a la' +\n (this.hours() !== 1 ? 's' : '') +\n '] LT'\n );\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'en %s',\n past: 'hace %s',\n s: 'unos segundos',\n ss: '%d segundos',\n m: 'un minuto',\n mm: '%d minutos',\n h: 'una hora',\n hh: '%d horas',\n d: 'un día',\n dd: '%d días',\n w: 'una semana',\n ww: '%d semanas',\n M: 'un mes',\n MM: '%d meses',\n y: 'un año',\n yy: '%d años',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return esUs;\n\n})));\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.7.0',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","//! moment.js locale configuration\n//! locale : Tetun Dili (East Timor) [tet]\n//! author : Joshua Brooks : https://github.com/joshbrooks\n//! author : Onorio De J. Afonso : https://github.com/marobo\n//! author : Sonia Simoes : https://github.com/soniasimoes\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var tet = moment.defineLocale('tet', {\n months: 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru'.split(\n '_'\n ),\n monthsShort: 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),\n weekdays: 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu'.split('_'),\n weekdaysShort: 'Dom_Seg_Ters_Kua_Kint_Sest_Sab'.split('_'),\n weekdaysMin: 'Do_Seg_Te_Ku_Ki_Ses_Sa'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Ohin iha] LT',\n nextDay: '[Aban iha] LT',\n nextWeek: 'dddd [iha] LT',\n lastDay: '[Horiseik iha] LT',\n lastWeek: 'dddd [semana kotuk] [iha] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'iha %s',\n past: '%s liuba',\n s: 'segundu balun',\n ss: 'segundu %d',\n m: 'minutu ida',\n mm: 'minutu %d',\n h: 'oras ida',\n hh: 'oras %d',\n d: 'loron ida',\n dd: 'loron %d',\n M: 'fulan ida',\n MM: 'fulan %d',\n y: 'tinan ida',\n yy: 'tinan %d',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal: function (number) {\n var b = number % 10,\n output =\n ~~((number % 100) / 10) === 1\n ? 'th'\n : b === 1\n ? 'st'\n : b === 2\n ? 'nd'\n : b === 3\n ? 'rd'\n : 'th';\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return tet;\n\n})));\n","// a string of all valid unicode whitespaces\n// eslint-disable-next-line max-len\nmodule.exports = '\\u0009\\u000A\\u000B\\u000C\\u000D\\u0020\\u00A0\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n","var requireObjectCoercible = require('../internals/require-object-coercible');\nvar whitespaces = require('../internals/whitespaces');\n\nvar whitespace = '[' + whitespaces + ']';\nvar ltrim = RegExp('^' + whitespace + whitespace + '*');\nvar rtrim = RegExp(whitespace + whitespace + '*$');\n\n// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation\nvar createMethod = function (TYPE) {\n return function ($this) {\n var string = String(requireObjectCoercible($this));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n };\n};\n\nmodule.exports = {\n // `String.prototype.{ trimLeft, trimStart }` methods\n // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart\n start: createMethod(1),\n // `String.prototype.{ trimRight, trimEnd }` methods\n // https://tc39.github.io/ecma262/#sec-string.prototype.trimend\n end: createMethod(2),\n // `String.prototype.trim` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.trim\n trim: createMethod(3)\n};\n","//! moment.js locale configuration\n//! locale : Maldivian [dv]\n//! author : Jawish Hameed : https://github.com/jawish\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var months = [\n 'ޖެނުއަރީ',\n 'ފެބްރުއަރީ',\n 'މާރިޗު',\n 'އޭޕްރީލު',\n 'މޭ',\n 'ޖޫން',\n 'ޖުލައި',\n 'އޯގަސްޓު',\n 'ސެޕްޓެމްބަރު',\n 'އޮކްޓޯބަރު',\n 'ނޮވެމްބަރު',\n 'ޑިސެމްބަރު',\n ],\n weekdays = [\n 'އާދިއްތަ',\n 'ހޯމަ',\n 'އަންގާރަ',\n 'ބުދަ',\n 'ބުރާސްފަތި',\n 'ހުކުރު',\n 'ހޮނިހިރު',\n ];\n\n var dv = moment.defineLocale('dv', {\n months: months,\n monthsShort: months,\n weekdays: weekdays,\n weekdaysShort: weekdays,\n weekdaysMin: 'އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'D/M/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n meridiemParse: /މކ|މފ/,\n isPM: function (input) {\n return 'މފ' === input;\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'މކ';\n } else {\n return 'މފ';\n }\n },\n calendar: {\n sameDay: '[މިއަދު] LT',\n nextDay: '[މާދަމާ] LT',\n nextWeek: 'dddd LT',\n lastDay: '[އިއްޔެ] LT',\n lastWeek: '[ފާއިތުވި] dddd LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'ތެރޭގައި %s',\n past: 'ކުރިން %s',\n s: 'ސިކުންތުކޮޅެއް',\n ss: 'd% ސިކުންތު',\n m: 'މިނިޓެއް',\n mm: 'މިނިޓު %d',\n h: 'ގަޑިއިރެއް',\n hh: 'ގަޑިއިރު %d',\n d: 'ދުވަހެއް',\n dd: 'ދުވަސް %d',\n M: 'މަހެއް',\n MM: 'މަސް %d',\n y: 'އަހަރެއް',\n yy: 'އަހަރު %d',\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/,/g, '،');\n },\n week: {\n dow: 7, // Sunday is the first day of the week.\n doy: 12, // The week that contains Jan 12th is the first week of the year.\n },\n });\n\n return dv;\n\n})));\n","var isRegExp = require('../internals/is-regexp');\n\nmodule.exports = function (it) {\n if (isRegExp(it)) {\n throw TypeError(\"The method doesn't accept regular expressions\");\n } return it;\n};\n","//! moment.js locale configuration\n//! locale : Turkmen [tk]\n//! author : Atamyrat Abdyrahmanov : https://github.com/atamyratabdy\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var suffixes = {\n 1: \"'inji\",\n 5: \"'inji\",\n 8: \"'inji\",\n 70: \"'inji\",\n 80: \"'inji\",\n 2: \"'nji\",\n 7: \"'nji\",\n 20: \"'nji\",\n 50: \"'nji\",\n 3: \"'ünji\",\n 4: \"'ünji\",\n 100: \"'ünji\",\n 6: \"'njy\",\n 9: \"'unjy\",\n 10: \"'unjy\",\n 30: \"'unjy\",\n 60: \"'ynjy\",\n 90: \"'ynjy\",\n };\n\n var tk = moment.defineLocale('tk', {\n months: 'Ýanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr'.split(\n '_'\n ),\n monthsShort: 'Ýan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek'.split('_'),\n weekdays: 'Ýekşenbe_Duşenbe_Sişenbe_Çarşenbe_Penşenbe_Anna_Şenbe'.split(\n '_'\n ),\n weekdaysShort: 'Ýek_Duş_Siş_Çar_Pen_Ann_Şen'.split('_'),\n weekdaysMin: 'Ýk_Dş_Sş_Çr_Pn_An_Şn'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[bugün sagat] LT',\n nextDay: '[ertir sagat] LT',\n nextWeek: '[indiki] dddd [sagat] LT',\n lastDay: '[düýn] LT',\n lastWeek: '[geçen] dddd [sagat] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s soň',\n past: '%s öň',\n s: 'birnäçe sekunt',\n m: 'bir minut',\n mm: '%d minut',\n h: 'bir sagat',\n hh: '%d sagat',\n d: 'bir gün',\n dd: '%d gün',\n M: 'bir aý',\n MM: '%d aý',\n y: 'bir ýyl',\n yy: '%d ýyl',\n },\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'Do':\n case 'DD':\n return number;\n default:\n if (number === 0) {\n // special case for zero\n return number + \"'unjy\";\n }\n var a = number % 10,\n b = (number % 100) - a,\n c = number >= 100 ? 100 : null;\n return number + (suffixes[a] || suffixes[b] || suffixes[c]);\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return tk;\n\n})));\n","//! moment.js locale configuration\n//! locale : Hungarian [hu]\n//! author : Adam Brunner : https://github.com/adambrunner\n//! author : Peter Viszt : https://github.com/passatgt\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(\n ' '\n );\n function translate(number, withoutSuffix, key, isFuture) {\n var num = number;\n switch (key) {\n case 's':\n return isFuture || withoutSuffix\n ? 'néhány másodperc'\n : 'néhány másodperce';\n case 'ss':\n return num + (isFuture || withoutSuffix)\n ? ' másodperc'\n : ' másodperce';\n case 'm':\n return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');\n case 'mm':\n return num + (isFuture || withoutSuffix ? ' perc' : ' perce');\n case 'h':\n return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');\n case 'hh':\n return num + (isFuture || withoutSuffix ? ' óra' : ' órája');\n case 'd':\n return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');\n case 'dd':\n return num + (isFuture || withoutSuffix ? ' nap' : ' napja');\n case 'M':\n return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');\n case 'MM':\n return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');\n case 'y':\n return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');\n case 'yy':\n return num + (isFuture || withoutSuffix ? ' év' : ' éve');\n }\n return '';\n }\n function week(isFuture) {\n return (\n (isFuture ? '' : '[múlt] ') +\n '[' +\n weekEndings[this.day()] +\n '] LT[-kor]'\n );\n }\n\n var hu = moment.defineLocale('hu', {\n months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split(\n '_'\n ),\n monthsShort: 'jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),\n weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),\n weekdaysMin: 'v_h_k_sze_cs_p_szo'.split('_'),\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'YYYY.MM.DD.',\n LL: 'YYYY. MMMM D.',\n LLL: 'YYYY. MMMM D. H:mm',\n LLLL: 'YYYY. MMMM D., dddd H:mm',\n },\n meridiemParse: /de|du/i,\n isPM: function (input) {\n return input.charAt(1).toLowerCase() === 'u';\n },\n meridiem: function (hours, minutes, isLower) {\n if (hours < 12) {\n return isLower === true ? 'de' : 'DE';\n } else {\n return isLower === true ? 'du' : 'DU';\n }\n },\n calendar: {\n sameDay: '[ma] LT[-kor]',\n nextDay: '[holnap] LT[-kor]',\n nextWeek: function () {\n return week.call(this, true);\n },\n lastDay: '[tegnap] LT[-kor]',\n lastWeek: function () {\n return week.call(this, false);\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s múlva',\n past: '%s',\n s: translate,\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: translate,\n dd: translate,\n M: translate,\n MM: translate,\n y: translate,\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return hu;\n\n})));\n","//! moment.js locale configuration\n//! locale : Chinese (China) [zh-cn]\n//! author : suupic : https://github.com/suupic\n//! author : Zeno Zeng : https://github.com/zenozeng\n//! author : uu109 : https://github.com/uu109\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var zhCn = moment.defineLocale('zh-cn', {\n months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(\n '_'\n ),\n monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(\n '_'\n ),\n weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),\n weekdaysShort: '周日_周一_周二_周三_周四_周五_周六'.split('_'),\n weekdaysMin: '日_一_二_三_四_五_六'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY/MM/DD',\n LL: 'YYYY年M月D日',\n LLL: 'YYYY年M月D日Ah点mm分',\n LLLL: 'YYYY年M月D日ddddAh点mm分',\n l: 'YYYY/M/D',\n ll: 'YYYY年M月D日',\n lll: 'YYYY年M月D日 HH:mm',\n llll: 'YYYY年M月D日dddd HH:mm',\n },\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {\n return hour;\n } else if (meridiem === '下午' || meridiem === '晚上') {\n return hour + 12;\n } else {\n // '中午'\n return hour >= 11 ? hour : hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return '凌晨';\n } else if (hm < 900) {\n return '早上';\n } else if (hm < 1130) {\n return '上午';\n } else if (hm < 1230) {\n return '中午';\n } else if (hm < 1800) {\n return '下午';\n } else {\n return '晚上';\n }\n },\n calendar: {\n sameDay: '[今天]LT',\n nextDay: '[明天]LT',\n nextWeek: function (now) {\n if (now.week() !== this.week()) {\n return '[下]dddLT';\n } else {\n return '[本]dddLT';\n }\n },\n lastDay: '[昨天]LT',\n lastWeek: function (now) {\n if (this.week() !== now.week()) {\n return '[上]dddLT';\n } else {\n return '[本]dddLT';\n }\n },\n sameElse: 'L',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(日|月|周)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n case 'M':\n return number + '月';\n case 'w':\n case 'W':\n return number + '周';\n default:\n return number;\n }\n },\n relativeTime: {\n future: '%s后',\n past: '%s前',\n s: '几秒',\n ss: '%d 秒',\n m: '1 分钟',\n mm: '%d 分钟',\n h: '1 小时',\n hh: '%d 小时',\n d: '1 天',\n dd: '%d 天',\n w: '1 周',\n ww: '%d 周',\n M: '1 个月',\n MM: '%d 个月',\n y: '1 年',\n yy: '%d 年',\n },\n week: {\n // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return zhCn;\n\n})));\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","//! moment.js locale configuration\n//! locale : Telugu [te]\n//! author : Krishna Chaitanya Thota : https://github.com/kcthota\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var te = moment.defineLocale('te', {\n months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split(\n '_'\n ),\n monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(\n '_'\n ),\n weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),\n weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),\n longDateFormat: {\n LT: 'A h:mm',\n LTS: 'A h:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, A h:mm',\n LLLL: 'dddd, D MMMM YYYY, A h:mm',\n },\n calendar: {\n sameDay: '[నేడు] LT',\n nextDay: '[రేపు] LT',\n nextWeek: 'dddd, LT',\n lastDay: '[నిన్న] LT',\n lastWeek: '[గత] dddd, LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s లో',\n past: '%s క్రితం',\n s: 'కొన్ని క్షణాలు',\n ss: '%d సెకన్లు',\n m: 'ఒక నిమిషం',\n mm: '%d నిమిషాలు',\n h: 'ఒక గంట',\n hh: '%d గంటలు',\n d: 'ఒక రోజు',\n dd: '%d రోజులు',\n M: 'ఒక నెల',\n MM: '%d నెలలు',\n y: 'ఒక సంవత్సరం',\n yy: '%d సంవత్సరాలు',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}వ/,\n ordinal: '%dవ',\n meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'రాత్రి') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'ఉదయం') {\n return hour;\n } else if (meridiem === 'మధ్యాహ్నం') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'సాయంత్రం') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'రాత్రి';\n } else if (hour < 10) {\n return 'ఉదయం';\n } else if (hour < 17) {\n return 'మధ్యాహ్నం';\n } else if (hour < 20) {\n return 'సాయంత్రం';\n } else {\n return 'రాత్రి';\n }\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return te;\n\n})));\n","var toHex = require('colornames');\nvar _words = require('lodash.words');\nvar trimStart = require('lodash.trimstart');\nvar padEnd = require('lodash.padend');\nvar rgbHex = require('rgb-hex');\nvar hexRgb = require('hex-rgb');\n\nconst MIXED_WEIGHT = 0.75;\nconst TEXT_WEIGHT = 0.25;\nconst SEED = 16777215;\nconst FACTOR = 49979693;\n\nmodule.exports = function(object) {\n return '#' + generateColor(String(JSON.stringify(object)));\n};\n\nfunction getColors(text) {\n var words = _words(text);\n var colors = [];\n words.forEach(function(word) {\n var color = toHex(word);\n if (color) colors.push(hexRgb(trimStart(color, '#'), {format: 'array'}));\n });\n return colors;\n}\n\nfunction mixColors(colors) {\n var mixed = [0, 0, 0];\n colors.forEach(function(value) {\n for (var i = 0; i < 3; i++) mixed[i] += value[i];\n });\n return [mixed[0] / colors.length, mixed[1] / colors.length, mixed[2] / colors.length];\n}\n\nfunction generateColor(text) {\n var mixed;\n var colors = getColors(text);\n if (colors.length > 0) mixed = mixColors(colors);\n var b = 1;\n var d = 0;\n var f = 1;\n if (text.length > 0) {\n for (var i = 0; i < text.length; i++)\n text[i].charCodeAt(0) > d && (d = text[i].charCodeAt(0)),\n (f = parseInt(SEED / d)),\n (b = (b + text[i].charCodeAt(0) * f * FACTOR) % SEED);\n }\n var hex = ((b * text.length) % SEED).toString(16);\n hex = padEnd(hex, 6, hex);\n var rgb = hexRgb(hex, {format: 'array'});\n if (mixed)\n return rgbHex(\n TEXT_WEIGHT * rgb[0] + MIXED_WEIGHT * mixed[0],\n TEXT_WEIGHT * rgb[1] + MIXED_WEIGHT * mixed[1],\n TEXT_WEIGHT * rgb[2] + MIXED_WEIGHT * mixed[2]\n );\n return hex;\n}\n","//! moment.js locale configuration\n//! locale : Swedish [sv]\n//! author : Jens Alm : https://github.com/ulmus\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var sv = moment.defineLocale('sv', {\n months: 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split(\n '_'\n ),\n monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),\n weekdays: 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),\n weekdaysShort: 'sön_mån_tis_ons_tor_fre_lör'.split('_'),\n weekdaysMin: 'sö_må_ti_on_to_fr_lö'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY-MM-DD',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY [kl.] HH:mm',\n LLLL: 'dddd D MMMM YYYY [kl.] HH:mm',\n lll: 'D MMM YYYY HH:mm',\n llll: 'ddd D MMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Idag] LT',\n nextDay: '[Imorgon] LT',\n lastDay: '[Igår] LT',\n nextWeek: '[På] dddd LT',\n lastWeek: '[I] dddd[s] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'om %s',\n past: 'för %s sedan',\n s: 'några sekunder',\n ss: '%d sekunder',\n m: 'en minut',\n mm: '%d minuter',\n h: 'en timme',\n hh: '%d timmar',\n d: 'en dag',\n dd: '%d dagar',\n M: 'en månad',\n MM: '%d månader',\n y: 'ett år',\n yy: '%d år',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(\\:e|\\:a)/,\n ordinal: function (number) {\n var b = number % 10,\n output =\n ~~((number % 100) / 10) === 1\n ? ':e'\n : b === 1\n ? ':a'\n : b === 2\n ? ':a'\n : b === 3\n ? ':e'\n : ':e';\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return sv;\n\n})));\n","var classof = require('../internals/classof-raw');\nvar global = require('../internals/global');\n\nmodule.exports = classof(global.process) == 'process';\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Set` constructor\n// https://tc39.github.io/ecma262/#sec-set-objects\nmodule.exports = collection('Set', function (init) {\n return function Set() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","//! moment.js locale configuration\n//! locale : Uyghur (China) [ug-cn]\n//! author: boyaq : https://github.com/boyaq\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var ugCn = moment.defineLocale('ug-cn', {\n months: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(\n '_'\n ),\n monthsShort: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(\n '_'\n ),\n weekdays: 'يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە'.split(\n '_'\n ),\n weekdaysShort: 'يە_دۈ_سە_چا_پە_جۈ_شە'.split('_'),\n weekdaysMin: 'يە_دۈ_سە_چا_پە_جۈ_شە'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY-MM-DD',\n LL: 'YYYY-يىلىM-ئاينىڭD-كۈنى',\n LLL: 'YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',\n LLLL: 'dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',\n },\n meridiemParse: /يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (\n meridiem === 'يېرىم كېچە' ||\n meridiem === 'سەھەر' ||\n meridiem === 'چۈشتىن بۇرۇن'\n ) {\n return hour;\n } else if (meridiem === 'چۈشتىن كېيىن' || meridiem === 'كەچ') {\n return hour + 12;\n } else {\n return hour >= 11 ? hour : hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return 'يېرىم كېچە';\n } else if (hm < 900) {\n return 'سەھەر';\n } else if (hm < 1130) {\n return 'چۈشتىن بۇرۇن';\n } else if (hm < 1230) {\n return 'چۈش';\n } else if (hm < 1800) {\n return 'چۈشتىن كېيىن';\n } else {\n return 'كەچ';\n }\n },\n calendar: {\n sameDay: '[بۈگۈن سائەت] LT',\n nextDay: '[ئەتە سائەت] LT',\n nextWeek: '[كېلەركى] dddd [سائەت] LT',\n lastDay: '[تۆنۈگۈن] LT',\n lastWeek: '[ئالدىنقى] dddd [سائەت] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s كېيىن',\n past: '%s بۇرۇن',\n s: 'نەچچە سېكونت',\n ss: '%d سېكونت',\n m: 'بىر مىنۇت',\n mm: '%d مىنۇت',\n h: 'بىر سائەت',\n hh: '%d سائەت',\n d: 'بىر كۈن',\n dd: '%d كۈن',\n M: 'بىر ئاي',\n MM: '%d ئاي',\n y: 'بىر يىل',\n yy: '%d يىل',\n },\n\n dayOfMonthOrdinalParse: /\\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '-كۈنى';\n case 'w':\n case 'W':\n return number + '-ھەپتە';\n default:\n return number;\n }\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/,/g, '،');\n },\n week: {\n // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 1st is the first week of the year.\n },\n });\n\n return ugCn;\n\n})));\n","module.exports = function(module) {\n\tif (!module.webpackPolyfill) {\n\t\tmodule.deprecate = function() {};\n\t\tmodule.paths = [];\n\t\t// module.parent = undefined by default\n\t\tif (!module.children) module.children = [];\n\t\tObject.defineProperty(module, \"loaded\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.l;\n\t\t\t}\n\t\t});\n\t\tObject.defineProperty(module, \"id\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.i;\n\t\t\t}\n\t\t});\n\t\tmodule.webpackPolyfill = 1;\n\t}\n\treturn module;\n};\n","//! moment.js locale configuration\n//! locale : Malay [ms-my]\n//! note : DEPRECATED, the correct one is [ms]\n//! author : Weldan Jamili : https://github.com/weldan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var msMy = moment.defineLocale('ms-my', {\n months: 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),\n weekdays: 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),\n weekdaysShort: 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),\n weekdaysMin: 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),\n longDateFormat: {\n LT: 'HH.mm',\n LTS: 'HH.mm.ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY [pukul] HH.mm',\n LLLL: 'dddd, D MMMM YYYY [pukul] HH.mm',\n },\n meridiemParse: /pagi|tengahari|petang|malam/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'pagi') {\n return hour;\n } else if (meridiem === 'tengahari') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'petang' || meridiem === 'malam') {\n return hour + 12;\n }\n },\n meridiem: function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'pagi';\n } else if (hours < 15) {\n return 'tengahari';\n } else if (hours < 19) {\n return 'petang';\n } else {\n return 'malam';\n }\n },\n calendar: {\n sameDay: '[Hari ini pukul] LT',\n nextDay: '[Esok pukul] LT',\n nextWeek: 'dddd [pukul] LT',\n lastDay: '[Kelmarin pukul] LT',\n lastWeek: 'dddd [lepas pukul] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'dalam %s',\n past: '%s yang lepas',\n s: 'beberapa saat',\n ss: '%d saat',\n m: 'seminit',\n mm: '%d minit',\n h: 'sejam',\n hh: '%d jam',\n d: 'sehari',\n dd: '%d hari',\n M: 'sebulan',\n MM: '%d bulan',\n y: 'setahun',\n yy: '%d tahun',\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return msMy;\n\n})));\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","//! moment.js locale configuration\n//! locale : Esperanto [eo]\n//! author : Colin Dean : https://github.com/colindean\n//! author : Mia Nordentoft Imperatori : https://github.com/miestasmia\n//! comment : miestasmia corrected the translation by colindean\n//! comment : Vivakvo corrected the translation by colindean and miestasmia\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var eo = moment.defineLocale('eo', {\n months: 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split(\n '_'\n ),\n monthsShort: 'jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec'.split('_'),\n weekdays: 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),\n weekdaysShort: 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),\n weekdaysMin: 'di_lu_ma_me_ĵa_ve_sa'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY-MM-DD',\n LL: '[la] D[-an de] MMMM, YYYY',\n LLL: '[la] D[-an de] MMMM, YYYY HH:mm',\n LLLL: 'dddd[n], [la] D[-an de] MMMM, YYYY HH:mm',\n llll: 'ddd, [la] D[-an de] MMM, YYYY HH:mm',\n },\n meridiemParse: /[ap]\\.t\\.m/i,\n isPM: function (input) {\n return input.charAt(0).toLowerCase() === 'p';\n },\n meridiem: function (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'p.t.m.' : 'P.T.M.';\n } else {\n return isLower ? 'a.t.m.' : 'A.T.M.';\n }\n },\n calendar: {\n sameDay: '[Hodiaŭ je] LT',\n nextDay: '[Morgaŭ je] LT',\n nextWeek: 'dddd[n je] LT',\n lastDay: '[Hieraŭ je] LT',\n lastWeek: '[pasintan] dddd[n je] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'post %s',\n past: 'antaŭ %s',\n s: 'kelkaj sekundoj',\n ss: '%d sekundoj',\n m: 'unu minuto',\n mm: '%d minutoj',\n h: 'unu horo',\n hh: '%d horoj',\n d: 'unu tago', //ne 'diurno', ĉar estas uzita por proksimumo\n dd: '%d tagoj',\n M: 'unu monato',\n MM: '%d monatoj',\n y: 'unu jaro',\n yy: '%d jaroj',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}a/,\n ordinal: '%da',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return eo;\n\n})));\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","//! moment.js locale configuration\n//! locale : Sindhi [sd]\n//! author : Narain Sagar : https://github.com/narainsagar\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var months = [\n 'جنوري',\n 'فيبروري',\n 'مارچ',\n 'اپريل',\n 'مئي',\n 'جون',\n 'جولاءِ',\n 'آگسٽ',\n 'سيپٽمبر',\n 'آڪٽوبر',\n 'نومبر',\n 'ڊسمبر',\n ],\n days = ['آچر', 'سومر', 'اڱارو', 'اربع', 'خميس', 'جمع', 'ڇنڇر'];\n\n var sd = moment.defineLocale('sd', {\n months: months,\n monthsShort: months,\n weekdays: days,\n weekdaysShort: days,\n weekdaysMin: days,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd، D MMMM YYYY HH:mm',\n },\n meridiemParse: /صبح|شام/,\n isPM: function (input) {\n return 'شام' === input;\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'صبح';\n }\n return 'شام';\n },\n calendar: {\n sameDay: '[اڄ] LT',\n nextDay: '[سڀاڻي] LT',\n nextWeek: 'dddd [اڳين هفتي تي] LT',\n lastDay: '[ڪالهه] LT',\n lastWeek: '[گزريل هفتي] dddd [تي] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s پوء',\n past: '%s اڳ',\n s: 'چند سيڪنڊ',\n ss: '%d سيڪنڊ',\n m: 'هڪ منٽ',\n mm: '%d منٽ',\n h: 'هڪ ڪلاڪ',\n hh: '%d ڪلاڪ',\n d: 'هڪ ڏينهن',\n dd: '%d ڏينهن',\n M: 'هڪ مهينو',\n MM: '%d مهينا',\n y: 'هڪ سال',\n yy: '%d سال',\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/,/g, '،');\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return sd;\n\n})));\n","//! moment.js locale configuration\n//! locale : Breton [br]\n//! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function relativeTimeWithMutation(number, withoutSuffix, key) {\n var format = {\n mm: 'munutenn',\n MM: 'miz',\n dd: 'devezh',\n };\n return number + ' ' + mutation(format[key], number);\n }\n function specialMutationForYears(number) {\n switch (lastNumber(number)) {\n case 1:\n case 3:\n case 4:\n case 5:\n case 9:\n return number + ' bloaz';\n default:\n return number + ' vloaz';\n }\n }\n function lastNumber(number) {\n if (number > 9) {\n return lastNumber(number % 10);\n }\n return number;\n }\n function mutation(text, number) {\n if (number === 2) {\n return softMutation(text);\n }\n return text;\n }\n function softMutation(text) {\n var mutationTable = {\n m: 'v',\n b: 'v',\n d: 'z',\n };\n if (mutationTable[text.charAt(0)] === undefined) {\n return text;\n }\n return mutationTable[text.charAt(0)] + text.substring(1);\n }\n\n var monthsParse = [\n /^gen/i,\n /^c[ʼ\\']hwe/i,\n /^meu/i,\n /^ebr/i,\n /^mae/i,\n /^(mez|eve)/i,\n /^gou/i,\n /^eos/i,\n /^gwe/i,\n /^her/i,\n /^du/i,\n /^ker/i,\n ],\n monthsRegex = /^(genver|c[ʼ\\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,\n monthsStrictRegex = /^(genver|c[ʼ\\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,\n monthsShortStrictRegex = /^(gen|c[ʼ\\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,\n fullWeekdaysParse = [\n /^sul/i,\n /^lun/i,\n /^meurzh/i,\n /^merc[ʼ\\']her/i,\n /^yaou/i,\n /^gwener/i,\n /^sadorn/i,\n ],\n shortWeekdaysParse = [\n /^Sul/i,\n /^Lun/i,\n /^Meu/i,\n /^Mer/i,\n /^Yao/i,\n /^Gwe/i,\n /^Sad/i,\n ],\n minWeekdaysParse = [\n /^Su/i,\n /^Lu/i,\n /^Me([^r]|$)/i,\n /^Mer/i,\n /^Ya/i,\n /^Gw/i,\n /^Sa/i,\n ];\n\n var br = moment.defineLocale('br', {\n months: 'Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split(\n '_'\n ),\n monthsShort: 'Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'),\n weekdays: 'Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn'.split('_'),\n weekdaysShort: 'Sul_Lun_Meu_Mer_Yao_Gwe_Sad'.split('_'),\n weekdaysMin: 'Su_Lu_Me_Mer_Ya_Gw_Sa'.split('_'),\n weekdaysParse: minWeekdaysParse,\n fullWeekdaysParse: fullWeekdaysParse,\n shortWeekdaysParse: shortWeekdaysParse,\n minWeekdaysParse: minWeekdaysParse,\n\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: monthsStrictRegex,\n monthsShortStrictRegex: monthsShortStrictRegex,\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D [a viz] MMMM YYYY',\n LLL: 'D [a viz] MMMM YYYY HH:mm',\n LLLL: 'dddd, D [a viz] MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Hiziv da] LT',\n nextDay: '[Warcʼhoazh da] LT',\n nextWeek: 'dddd [da] LT',\n lastDay: '[Decʼh da] LT',\n lastWeek: 'dddd [paset da] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'a-benn %s',\n past: '%s ʼzo',\n s: 'un nebeud segondennoù',\n ss: '%d eilenn',\n m: 'ur vunutenn',\n mm: relativeTimeWithMutation,\n h: 'un eur',\n hh: '%d eur',\n d: 'un devezh',\n dd: relativeTimeWithMutation,\n M: 'ur miz',\n MM: relativeTimeWithMutation,\n y: 'ur bloaz',\n yy: specialMutationForYears,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(añ|vet)/,\n ordinal: function (number) {\n var output = number === 1 ? 'añ' : 'vet';\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n meridiemParse: /a.m.|g.m./, // goude merenn | a-raok merenn\n isPM: function (token) {\n return token === 'g.m.';\n },\n meridiem: function (hour, minute, isLower) {\n return hour < 12 ? 'a.m.' : 'g.m.';\n },\n });\n\n return br;\n\n})));\n","//! moment.js locale configuration\n//! locale : Maori [mi]\n//! author : John Corrigan : https://github.com/johnideal\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var mi = moment.defineLocale('mi', {\n months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split(\n '_'\n ),\n monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split(\n '_'\n ),\n monthsRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,\n monthsStrictRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,\n monthsShortRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,\n monthsShortStrictRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,\n weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'),\n weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),\n weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY [i] HH:mm',\n LLLL: 'dddd, D MMMM YYYY [i] HH:mm',\n },\n calendar: {\n sameDay: '[i teie mahana, i] LT',\n nextDay: '[apopo i] LT',\n nextWeek: 'dddd [i] LT',\n lastDay: '[inanahi i] LT',\n lastWeek: 'dddd [whakamutunga i] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'i roto i %s',\n past: '%s i mua',\n s: 'te hēkona ruarua',\n ss: '%d hēkona',\n m: 'he meneti',\n mm: '%d meneti',\n h: 'te haora',\n hh: '%d haora',\n d: 'he ra',\n dd: '%d ra',\n M: 'he marama',\n MM: '%d marama',\n y: 'he tau',\n yy: '%d tau',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return mi;\n\n})));\n","//! moment.js locale configuration\n//! locale : Macedonian [mk]\n//! author : Borislav Mickov : https://github.com/B0k0\n//! author : Sashko Todorov : https://github.com/bkyceh\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var mk = moment.defineLocale('mk', {\n months: 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split(\n '_'\n ),\n monthsShort: 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'),\n weekdays: 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split(\n '_'\n ),\n weekdaysShort: 'нед_пон_вто_сре_чет_пет_саб'.split('_'),\n weekdaysMin: 'нe_пo_вт_ср_че_пе_сa'.split('_'),\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'D.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY H:mm',\n LLLL: 'dddd, D MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[Денес во] LT',\n nextDay: '[Утре во] LT',\n nextWeek: '[Во] dddd [во] LT',\n lastDay: '[Вчера во] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 6:\n return '[Изминатата] dddd [во] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[Изминатиот] dddd [во] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'за %s',\n past: 'пред %s',\n s: 'неколку секунди',\n ss: '%d секунди',\n m: 'една минута',\n mm: '%d минути',\n h: 'еден час',\n hh: '%d часа',\n d: 'еден ден',\n dd: '%d дена',\n M: 'еден месец',\n MM: '%d месеци',\n y: 'една година',\n yy: '%d години',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ев|ен|ти|ви|ри|ми)/,\n ordinal: function (number) {\n var lastDigit = number % 10,\n last2Digits = number % 100;\n if (number === 0) {\n return number + '-ев';\n } else if (last2Digits === 0) {\n return number + '-ен';\n } else if (last2Digits > 10 && last2Digits < 20) {\n return number + '-ти';\n } else if (lastDigit === 1) {\n return number + '-ви';\n } else if (lastDigit === 2) {\n return number + '-ри';\n } else if (lastDigit === 7 || lastDigit === 8) {\n return number + '-ми';\n } else {\n return number + '-ти';\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return mk;\n\n})));\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar shared = require('../internals/shared-store');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = shared.state || (shared.state = new WeakMap());\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n metadata.facade = it;\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n metadata.facade = it;\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","//! moment.js locale configuration\n//! locale : Norwegian Bokmål [nb]\n//! authors : Espen Hovlandsdal : https://github.com/rexxars\n//! Sigurd Gartmann : https://github.com/sigurdga\n//! Stephen Ramthun : https://github.com/stephenramthun\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var nb = moment.defineLocale('nb', {\n months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(\n '_'\n ),\n monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),\n weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),\n weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY [kl.] HH:mm',\n LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',\n },\n calendar: {\n sameDay: '[i dag kl.] LT',\n nextDay: '[i morgen kl.] LT',\n nextWeek: 'dddd [kl.] LT',\n lastDay: '[i går kl.] LT',\n lastWeek: '[forrige] dddd [kl.] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'om %s',\n past: '%s siden',\n s: 'noen sekunder',\n ss: '%d sekunder',\n m: 'ett minutt',\n mm: '%d minutter',\n h: 'en time',\n hh: '%d timer',\n d: 'en dag',\n dd: '%d dager',\n w: 'en uke',\n ww: '%d uker',\n M: 'en måned',\n MM: '%d måneder',\n y: 'ett år',\n yy: '%d år',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return nb;\n\n})));\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","//! moment.js locale configuration\n//! locale : Kazakh [kk]\n//! authors : Nurlan Rakhimzhanov : https://github.com/nurlan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var suffixes = {\n 0: '-ші',\n 1: '-ші',\n 2: '-ші',\n 3: '-ші',\n 4: '-ші',\n 5: '-ші',\n 6: '-шы',\n 7: '-ші',\n 8: '-ші',\n 9: '-шы',\n 10: '-шы',\n 20: '-шы',\n 30: '-шы',\n 40: '-шы',\n 50: '-ші',\n 60: '-шы',\n 70: '-ші',\n 80: '-ші',\n 90: '-шы',\n 100: '-ші',\n };\n\n var kk = moment.defineLocale('kk', {\n months: 'қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан'.split(\n '_'\n ),\n monthsShort: 'қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел'.split('_'),\n weekdays: 'жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі'.split(\n '_'\n ),\n weekdaysShort: 'жек_дүй_сей_сәр_бей_жұм_сен'.split('_'),\n weekdaysMin: 'жк_дй_сй_ср_бй_жм_сн'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Бүгін сағат] LT',\n nextDay: '[Ертең сағат] LT',\n nextWeek: 'dddd [сағат] LT',\n lastDay: '[Кеше сағат] LT',\n lastWeek: '[Өткен аптаның] dddd [сағат] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s ішінде',\n past: '%s бұрын',\n s: 'бірнеше секунд',\n ss: '%d секунд',\n m: 'бір минут',\n mm: '%d минут',\n h: 'бір сағат',\n hh: '%d сағат',\n d: 'бір күн',\n dd: '%d күн',\n M: 'бір ай',\n MM: '%d ай',\n y: 'бір жыл',\n yy: '%d жыл',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ші|шы)/,\n ordinal: function (number) {\n var a = number % 10,\n b = number >= 100 ? 100 : null;\n return number + (suffixes[number] || suffixes[a] || suffixes[b]);\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return kk;\n\n})));\n","//! moment.js locale configuration\n//! locale : Arabic (Tunisia) [ar-tn]\n//! author : Nader Toukabri : https://github.com/naderio\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var arTn = moment.defineLocale('ar-tn', {\n months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(\n '_'\n ),\n monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(\n '_'\n ),\n weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'في %s',\n past: 'منذ %s',\n s: 'ثوان',\n ss: '%d ثانية',\n m: 'دقيقة',\n mm: '%d دقائق',\n h: 'ساعة',\n hh: '%d ساعات',\n d: 'يوم',\n dd: '%d أيام',\n M: 'شهر',\n MM: '%d أشهر',\n y: 'سنة',\n yy: '%d سنوات',\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return arTn;\n\n})));\n","//! moment.js locale configuration\n//! locale : Italian [it]\n//! author : Lorenzo : https://github.com/aliem\n//! author: Mattia Larentis: https://github.com/nostalgiaz\n//! author: Marco : https://github.com/Manfre98\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var it = moment.defineLocale('it', {\n months: 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split(\n '_'\n ),\n monthsShort: 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),\n weekdays: 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split(\n '_'\n ),\n weekdaysShort: 'dom_lun_mar_mer_gio_ven_sab'.split('_'),\n weekdaysMin: 'do_lu_ma_me_gi_ve_sa'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: function () {\n return (\n '[Oggi a' +\n (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : \"ll'\") +\n ']LT'\n );\n },\n nextDay: function () {\n return (\n '[Domani a' +\n (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : \"ll'\") +\n ']LT'\n );\n },\n nextWeek: function () {\n return (\n 'dddd [a' +\n (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : \"ll'\") +\n ']LT'\n );\n },\n lastDay: function () {\n return (\n '[Ieri a' +\n (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : \"ll'\") +\n ']LT'\n );\n },\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return (\n '[La scorsa] dddd [a' +\n (this.hours() > 1\n ? 'lle '\n : this.hours() === 0\n ? ' '\n : \"ll'\") +\n ']LT'\n );\n default:\n return (\n '[Lo scorso] dddd [a' +\n (this.hours() > 1\n ? 'lle '\n : this.hours() === 0\n ? ' '\n : \"ll'\") +\n ']LT'\n );\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'tra %s',\n past: '%s fa',\n s: 'alcuni secondi',\n ss: '%d secondi',\n m: 'un minuto',\n mm: '%d minuti',\n h: \"un'ora\",\n hh: '%d ore',\n d: 'un giorno',\n dd: '%d giorni',\n w: 'una settimana',\n ww: '%d settimane',\n M: 'un mese',\n MM: '%d mesi',\n y: 'un anno',\n yy: '%d anni',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return it;\n\n})));\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n var state;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) {\n createNonEnumerableProperty(value, 'name', key);\n }\n state = enforceInternalState(value);\n if (!state.source) {\n state.source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","//! moment.js locale configuration\n//! locale : Italian (Switzerland) [it-ch]\n//! author : xfh : https://github.com/xfh\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var itCh = moment.defineLocale('it-ch', {\n months: 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split(\n '_'\n ),\n monthsShort: 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),\n weekdays: 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split(\n '_'\n ),\n weekdaysShort: 'dom_lun_mar_mer_gio_ven_sab'.split('_'),\n weekdaysMin: 'do_lu_ma_me_gi_ve_sa'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Oggi alle] LT',\n nextDay: '[Domani alle] LT',\n nextWeek: 'dddd [alle] LT',\n lastDay: '[Ieri alle] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[la scorsa] dddd [alle] LT';\n default:\n return '[lo scorso] dddd [alle] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: function (s) {\n return (/^[0-9].+$/.test(s) ? 'tra' : 'in') + ' ' + s;\n },\n past: '%s fa',\n s: 'alcuni secondi',\n ss: '%d secondi',\n m: 'un minuto',\n mm: '%d minuti',\n h: \"un'ora\",\n hh: '%d ore',\n d: 'un giorno',\n dd: '%d giorni',\n M: 'un mese',\n MM: '%d mesi',\n y: 'un anno',\n yy: '%d anni',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return itCh;\n\n})));\n","//! moment.js locale configuration\n//! locale : English (New Zealand) [en-nz]\n//! author : Luke McGregor : https://github.com/lukemcgregor\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var enNz = moment.defineLocale('en-nz', {\n months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(\n '_'\n ),\n weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY h:mm A',\n LLLL: 'dddd, D MMMM YYYY h:mm A',\n },\n calendar: {\n sameDay: '[Today at] LT',\n nextDay: '[Tomorrow at] LT',\n nextWeek: 'dddd [at] LT',\n lastDay: '[Yesterday at] LT',\n lastWeek: '[Last] dddd [at] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'in %s',\n past: '%s ago',\n s: 'a few seconds',\n ss: '%d seconds',\n m: 'a minute',\n mm: '%d minutes',\n h: 'an hour',\n hh: '%d hours',\n d: 'a day',\n dd: '%d days',\n M: 'a month',\n MM: '%d months',\n y: 'a year',\n yy: '%d years',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal: function (number) {\n var b = number % 10,\n output =\n ~~((number % 100) / 10) === 1\n ? 'th'\n : b === 1\n ? 'st'\n : b === 2\n ? 'nd'\n : b === 3\n ? 'rd'\n : 'th';\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return enNz;\n\n})));\n","//! moment.js locale configuration\n//! locale : Frisian [fy]\n//! author : Robin van der Vliet : https://github.com/robin0van0der0v\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split(\n '_'\n ),\n monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split(\n '_'\n );\n\n var fy = moment.defineLocale('fy', {\n months: 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split(\n '_'\n ),\n monthsShort: function (m, format) {\n if (!m) {\n return monthsShortWithDots;\n } else if (/-MMM-/.test(format)) {\n return monthsShortWithoutDots[m.month()];\n } else {\n return monthsShortWithDots[m.month()];\n }\n },\n monthsParseExact: true,\n weekdays: 'snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon'.split(\n '_'\n ),\n weekdaysShort: 'si._mo._ti._wo._to._fr._so.'.split('_'),\n weekdaysMin: 'Si_Mo_Ti_Wo_To_Fr_So'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD-MM-YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[hjoed om] LT',\n nextDay: '[moarn om] LT',\n nextWeek: 'dddd [om] LT',\n lastDay: '[juster om] LT',\n lastWeek: '[ôfrûne] dddd [om] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'oer %s',\n past: '%s lyn',\n s: 'in pear sekonden',\n ss: '%d sekonden',\n m: 'ien minút',\n mm: '%d minuten',\n h: 'ien oere',\n hh: '%d oeren',\n d: 'ien dei',\n dd: '%d dagen',\n M: 'ien moanne',\n MM: '%d moannen',\n y: 'ien jier',\n yy: '%d jierren',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ste|de)/,\n ordinal: function (number) {\n return (\n number +\n (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')\n );\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return fy;\n\n})));\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","//! moment.js locale configuration\n//! locale : English (Israel) [en-il]\n//! author : Chris Gedrim : https://github.com/chrisgedrim\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var enIl = moment.defineLocale('en-il', {\n months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(\n '_'\n ),\n weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Today at] LT',\n nextDay: '[Tomorrow at] LT',\n nextWeek: 'dddd [at] LT',\n lastDay: '[Yesterday at] LT',\n lastWeek: '[Last] dddd [at] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'in %s',\n past: '%s ago',\n s: 'a few seconds',\n ss: '%d seconds',\n m: 'a minute',\n mm: '%d minutes',\n h: 'an hour',\n hh: '%d hours',\n d: 'a day',\n dd: '%d days',\n M: 'a month',\n MM: '%d months',\n y: 'a year',\n yy: '%d years',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal: function (number) {\n var b = number % 10,\n output =\n ~~((number % 100) / 10) === 1\n ? 'th'\n : b === 1\n ? 'st'\n : b === 2\n ? 'nd'\n : b === 3\n ? 'rd'\n : 'th';\n return number + output;\n },\n });\n\n return enIl;\n\n})));\n","exports.f = Object.getOwnPropertySymbols;\n","var path = require('../internals/path');\nvar has = require('../internals/has');\nvar wrappedWellKnownSymbolModule = require('../internals/well-known-symbol-wrapped');\nvar defineProperty = require('../internals/object-define-property').f;\n\nmodule.exports = function (NAME) {\n var Symbol = path.Symbol || (path.Symbol = {});\n if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {\n value: wrappedWellKnownSymbolModule.f(NAME)\n });\n};\n","//! moment.js locale configuration\n//! locale : Swahili [sw]\n//! author : Fahad Kassim : https://github.com/fadsel\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var sw = moment.defineLocale('sw', {\n months: 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split(\n '_'\n ),\n monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),\n weekdays: 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split(\n '_'\n ),\n weekdaysShort: 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),\n weekdaysMin: 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'hh:mm A',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[leo saa] LT',\n nextDay: '[kesho saa] LT',\n nextWeek: '[wiki ijayo] dddd [saat] LT',\n lastDay: '[jana] LT',\n lastWeek: '[wiki iliyopita] dddd [saat] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s baadaye',\n past: 'tokea %s',\n s: 'hivi punde',\n ss: 'sekunde %d',\n m: 'dakika moja',\n mm: 'dakika %d',\n h: 'saa limoja',\n hh: 'masaa %d',\n d: 'siku moja',\n dd: 'siku %d',\n M: 'mwezi mmoja',\n MM: 'miezi %d',\n y: 'mwaka mmoja',\n yy: 'miaka %d',\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return sw;\n\n})));\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","//! moment.js locale configuration\n//! locale : Slovak [sk]\n//! author : Martin Minka : https://github.com/k2s\n//! based on work of petrbela : https://github.com/petrbela\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split(\n '_'\n ),\n monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');\n function plural(n) {\n return n > 1 && n < 5;\n }\n function translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's': // a few seconds / in a few seconds / a few seconds ago\n return withoutSuffix || isFuture ? 'pár sekúnd' : 'pár sekundami';\n case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'sekundy' : 'sekúnd');\n } else {\n return result + 'sekundami';\n }\n case 'm': // a minute / in a minute / a minute ago\n return withoutSuffix ? 'minúta' : isFuture ? 'minútu' : 'minútou';\n case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'minúty' : 'minút');\n } else {\n return result + 'minútami';\n }\n case 'h': // an hour / in an hour / an hour ago\n return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';\n case 'hh': // 9 hours / in 9 hours / 9 hours ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'hodiny' : 'hodín');\n } else {\n return result + 'hodinami';\n }\n case 'd': // a day / in a day / a day ago\n return withoutSuffix || isFuture ? 'deň' : 'dňom';\n case 'dd': // 9 days / in 9 days / 9 days ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'dni' : 'dní');\n } else {\n return result + 'dňami';\n }\n case 'M': // a month / in a month / a month ago\n return withoutSuffix || isFuture ? 'mesiac' : 'mesiacom';\n case 'MM': // 9 months / in 9 months / 9 months ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'mesiace' : 'mesiacov');\n } else {\n return result + 'mesiacmi';\n }\n case 'y': // a year / in a year / a year ago\n return withoutSuffix || isFuture ? 'rok' : 'rokom';\n case 'yy': // 9 years / in 9 years / 9 years ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'roky' : 'rokov');\n } else {\n return result + 'rokmi';\n }\n }\n }\n\n var sk = moment.defineLocale('sk', {\n months: months,\n monthsShort: monthsShort,\n weekdays: 'nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota'.split('_'),\n weekdaysShort: 'ne_po_ut_st_št_pi_so'.split('_'),\n weekdaysMin: 'ne_po_ut_st_št_pi_so'.split('_'),\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd D. MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[dnes o] LT',\n nextDay: '[zajtra o] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[v nedeľu o] LT';\n case 1:\n case 2:\n return '[v] dddd [o] LT';\n case 3:\n return '[v stredu o] LT';\n case 4:\n return '[vo štvrtok o] LT';\n case 5:\n return '[v piatok o] LT';\n case 6:\n return '[v sobotu o] LT';\n }\n },\n lastDay: '[včera o] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[minulú nedeľu o] LT';\n case 1:\n case 2:\n return '[minulý] dddd [o] LT';\n case 3:\n return '[minulú stredu o] LT';\n case 4:\n case 5:\n return '[minulý] dddd [o] LT';\n case 6:\n return '[minulú sobotu o] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'za %s',\n past: 'pred %s',\n s: translate,\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: translate,\n dd: translate,\n M: translate,\n MM: translate,\n y: translate,\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return sk;\n\n})));\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $find = require('../internals/array-iteration').find;\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar FIND = 'find';\nvar SKIPS_HOLES = true;\n\nvar USES_TO_LENGTH = arrayMethodUsesToLength(FIND);\n\n// Shouldn't skip holes\nif (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });\n\n// `Array.prototype.find` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.find\n$({ target: 'Array', proto: true, forced: SKIPS_HOLES || !USES_TO_LENGTH }, {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables(FIND);\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","module.exports = [\n {\n \"value\":\"#B0171F\",\n \"name\":\"indian red\"\n },\n {\n \"value\":\"#DC143C\",\n \"css\":true,\n \"name\":\"crimson\"\n },\n {\n \"value\":\"#FFB6C1\",\n \"css\":true,\n \"name\":\"lightpink\"\n },\n {\n \"value\":\"#FFAEB9\",\n \"name\":\"lightpink 1\"\n },\n {\n \"value\":\"#EEA2AD\",\n \"name\":\"lightpink 2\"\n },\n {\n \"value\":\"#CD8C95\",\n \"name\":\"lightpink 3\"\n },\n {\n \"value\":\"#8B5F65\",\n \"name\":\"lightpink 4\"\n },\n {\n \"value\":\"#FFC0CB\",\n \"css\":true,\n \"name\":\"pink\"\n },\n {\n \"value\":\"#FFB5C5\",\n \"name\":\"pink 1\"\n },\n {\n \"value\":\"#EEA9B8\",\n \"name\":\"pink 2\"\n },\n {\n \"value\":\"#CD919E\",\n \"name\":\"pink 3\"\n },\n {\n \"value\":\"#8B636C\",\n \"name\":\"pink 4\"\n },\n {\n \"value\":\"#DB7093\",\n \"css\":true,\n \"name\":\"palevioletred\"\n },\n {\n \"value\":\"#FF82AB\",\n \"name\":\"palevioletred 1\"\n },\n {\n \"value\":\"#EE799F\",\n \"name\":\"palevioletred 2\"\n },\n {\n \"value\":\"#CD6889\",\n \"name\":\"palevioletred 3\"\n },\n {\n \"value\":\"#8B475D\",\n \"name\":\"palevioletred 4\"\n },\n {\n \"value\":\"#FFF0F5\",\n \"name\":\"lavenderblush 1\"\n },\n {\n \"value\":\"#FFF0F5\",\n \"css\":true,\n \"name\":\"lavenderblush\"\n },\n {\n \"value\":\"#EEE0E5\",\n \"name\":\"lavenderblush 2\"\n },\n {\n \"value\":\"#CDC1C5\",\n \"name\":\"lavenderblush 3\"\n },\n {\n \"value\":\"#8B8386\",\n \"name\":\"lavenderblush 4\"\n },\n {\n \"value\":\"#FF3E96\",\n \"name\":\"violetred 1\"\n },\n {\n \"value\":\"#EE3A8C\",\n \"name\":\"violetred 2\"\n },\n {\n \"value\":\"#CD3278\",\n \"name\":\"violetred 3\"\n },\n {\n \"value\":\"#8B2252\",\n \"name\":\"violetred 4\"\n },\n {\n \"value\":\"#FF69B4\",\n \"css\":true,\n \"name\":\"hotpink\"\n },\n {\n \"value\":\"#FF6EB4\",\n \"name\":\"hotpink 1\"\n },\n {\n \"value\":\"#EE6AA7\",\n \"name\":\"hotpink 2\"\n },\n {\n \"value\":\"#CD6090\",\n \"name\":\"hotpink 3\"\n },\n {\n \"value\":\"#8B3A62\",\n \"name\":\"hotpink 4\"\n },\n {\n \"value\":\"#872657\",\n \"name\":\"raspberry\"\n },\n {\n \"value\":\"#FF1493\",\n \"name\":\"deeppink 1\"\n },\n {\n \"value\":\"#FF1493\",\n \"css\":true,\n \"name\":\"deeppink\"\n },\n {\n \"value\":\"#EE1289\",\n \"name\":\"deeppink 2\"\n },\n {\n \"value\":\"#CD1076\",\n \"name\":\"deeppink 3\"\n },\n {\n \"value\":\"#8B0A50\",\n \"name\":\"deeppink 4\"\n },\n {\n \"value\":\"#FF34B3\",\n \"name\":\"maroon 1\"\n },\n {\n \"value\":\"#EE30A7\",\n \"name\":\"maroon 2\"\n },\n {\n \"value\":\"#CD2990\",\n \"name\":\"maroon 3\"\n },\n {\n \"value\":\"#8B1C62\",\n \"name\":\"maroon 4\"\n },\n {\n \"value\":\"#C71585\",\n \"css\":true,\n \"name\":\"mediumvioletred\"\n },\n {\n \"value\":\"#D02090\",\n \"name\":\"violetred\"\n },\n {\n \"value\":\"#DA70D6\",\n \"css\":true,\n \"name\":\"orchid\"\n },\n {\n \"value\":\"#FF83FA\",\n \"name\":\"orchid 1\"\n },\n {\n \"value\":\"#EE7AE9\",\n \"name\":\"orchid 2\"\n },\n {\n \"value\":\"#CD69C9\",\n \"name\":\"orchid 3\"\n },\n {\n \"value\":\"#8B4789\",\n \"name\":\"orchid 4\"\n },\n {\n \"value\":\"#D8BFD8\",\n \"css\":true,\n \"name\":\"thistle\"\n },\n {\n \"value\":\"#FFE1FF\",\n \"name\":\"thistle 1\"\n },\n {\n \"value\":\"#EED2EE\",\n \"name\":\"thistle 2\"\n },\n {\n \"value\":\"#CDB5CD\",\n \"name\":\"thistle 3\"\n },\n {\n \"value\":\"#8B7B8B\",\n \"name\":\"thistle 4\"\n },\n {\n \"value\":\"#FFBBFF\",\n \"name\":\"plum 1\"\n },\n {\n \"value\":\"#EEAEEE\",\n \"name\":\"plum 2\"\n },\n {\n \"value\":\"#CD96CD\",\n \"name\":\"plum 3\"\n },\n {\n \"value\":\"#8B668B\",\n \"name\":\"plum 4\"\n },\n {\n \"value\":\"#DDA0DD\",\n \"css\":true,\n \"name\":\"plum\"\n },\n {\n \"value\":\"#EE82EE\",\n \"css\":true,\n \"name\":\"violet\"\n },\n {\n \"value\":\"#FF00FF\",\n \"vga\":true,\n \"name\":\"magenta\"\n },\n {\n \"value\":\"#FF00FF\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"fuchsia\"\n },\n {\n \"value\":\"#EE00EE\",\n \"name\":\"magenta 2\"\n },\n {\n \"value\":\"#CD00CD\",\n \"name\":\"magenta 3\"\n },\n {\n \"value\":\"#8B008B\",\n \"name\":\"magenta 4\"\n },\n {\n \"value\":\"#8B008B\",\n \"css\":true,\n \"name\":\"darkmagenta\"\n },\n {\n \"value\":\"#800080\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"purple\"\n },\n {\n \"value\":\"#BA55D3\",\n \"css\":true,\n \"name\":\"mediumorchid\"\n },\n {\n \"value\":\"#E066FF\",\n \"name\":\"mediumorchid 1\"\n },\n {\n \"value\":\"#D15FEE\",\n \"name\":\"mediumorchid 2\"\n },\n {\n \"value\":\"#B452CD\",\n \"name\":\"mediumorchid 3\"\n },\n {\n \"value\":\"#7A378B\",\n \"name\":\"mediumorchid 4\"\n },\n {\n \"value\":\"#9400D3\",\n \"css\":true,\n \"name\":\"darkviolet\"\n },\n {\n \"value\":\"#9932CC\",\n \"css\":true,\n \"name\":\"darkorchid\"\n },\n {\n \"value\":\"#BF3EFF\",\n \"name\":\"darkorchid 1\"\n },\n {\n \"value\":\"#B23AEE\",\n \"name\":\"darkorchid 2\"\n },\n {\n \"value\":\"#9A32CD\",\n \"name\":\"darkorchid 3\"\n },\n {\n \"value\":\"#68228B\",\n \"name\":\"darkorchid 4\"\n },\n {\n \"value\":\"#4B0082\",\n \"css\":true,\n \"name\":\"indigo\"\n },\n {\n \"value\":\"#8A2BE2\",\n \"css\":true,\n \"name\":\"blueviolet\"\n },\n {\n \"value\":\"#9B30FF\",\n \"name\":\"purple 1\"\n },\n {\n \"value\":\"#912CEE\",\n \"name\":\"purple 2\"\n },\n {\n \"value\":\"#7D26CD\",\n \"name\":\"purple 3\"\n },\n {\n \"value\":\"#551A8B\",\n \"name\":\"purple 4\"\n },\n {\n \"value\":\"#9370DB\",\n \"css\":true,\n \"name\":\"mediumpurple\"\n },\n {\n \"value\":\"#AB82FF\",\n \"name\":\"mediumpurple 1\"\n },\n {\n \"value\":\"#9F79EE\",\n \"name\":\"mediumpurple 2\"\n },\n {\n \"value\":\"#8968CD\",\n \"name\":\"mediumpurple 3\"\n },\n {\n \"value\":\"#5D478B\",\n \"name\":\"mediumpurple 4\"\n },\n {\n \"value\":\"#483D8B\",\n \"css\":true,\n \"name\":\"darkslateblue\"\n },\n {\n \"value\":\"#8470FF\",\n \"name\":\"lightslateblue\"\n },\n {\n \"value\":\"#7B68EE\",\n \"css\":true,\n \"name\":\"mediumslateblue\"\n },\n {\n \"value\":\"#6A5ACD\",\n \"css\":true,\n \"name\":\"slateblue\"\n },\n {\n \"value\":\"#836FFF\",\n \"name\":\"slateblue 1\"\n },\n {\n \"value\":\"#7A67EE\",\n \"name\":\"slateblue 2\"\n },\n {\n \"value\":\"#6959CD\",\n \"name\":\"slateblue 3\"\n },\n {\n \"value\":\"#473C8B\",\n \"name\":\"slateblue 4\"\n },\n {\n \"value\":\"#F8F8FF\",\n \"css\":true,\n \"name\":\"ghostwhite\"\n },\n {\n \"value\":\"#E6E6FA\",\n \"css\":true,\n \"name\":\"lavender\"\n },\n {\n \"value\":\"#0000FF\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"blue\"\n },\n {\n \"value\":\"#0000EE\",\n \"name\":\"blue 2\"\n },\n {\n \"value\":\"#0000CD\",\n \"name\":\"blue 3\"\n },\n {\n \"value\":\"#0000CD\",\n \"css\":true,\n \"name\":\"mediumblue\"\n },\n {\n \"value\":\"#00008B\",\n \"name\":\"blue 4\"\n },\n {\n \"value\":\"#00008B\",\n \"css\":true,\n \"name\":\"darkblue\"\n },\n {\n \"value\":\"#000080\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"navy\"\n },\n {\n \"value\":\"#191970\",\n \"css\":true,\n \"name\":\"midnightblue\"\n },\n {\n \"value\":\"#3D59AB\",\n \"name\":\"cobalt\"\n },\n {\n \"value\":\"#4169E1\",\n \"css\":true,\n \"name\":\"royalblue\"\n },\n {\n \"value\":\"#4876FF\",\n \"name\":\"royalblue 1\"\n },\n {\n \"value\":\"#436EEE\",\n \"name\":\"royalblue 2\"\n },\n {\n \"value\":\"#3A5FCD\",\n \"name\":\"royalblue 3\"\n },\n {\n \"value\":\"#27408B\",\n \"name\":\"royalblue 4\"\n },\n {\n \"value\":\"#6495ED\",\n \"css\":true,\n \"name\":\"cornflowerblue\"\n },\n {\n \"value\":\"#B0C4DE\",\n \"css\":true,\n \"name\":\"lightsteelblue\"\n },\n {\n \"value\":\"#CAE1FF\",\n \"name\":\"lightsteelblue 1\"\n },\n {\n \"value\":\"#BCD2EE\",\n \"name\":\"lightsteelblue 2\"\n },\n {\n \"value\":\"#A2B5CD\",\n \"name\":\"lightsteelblue 3\"\n },\n {\n \"value\":\"#6E7B8B\",\n \"name\":\"lightsteelblue 4\"\n },\n {\n \"value\":\"#778899\",\n \"css\":true,\n \"name\":\"lightslategray\"\n },\n {\n \"value\":\"#708090\",\n \"css\":true,\n \"name\":\"slategray\"\n },\n {\n \"value\":\"#C6E2FF\",\n \"name\":\"slategray 1\"\n },\n {\n \"value\":\"#B9D3EE\",\n \"name\":\"slategray 2\"\n },\n {\n \"value\":\"#9FB6CD\",\n \"name\":\"slategray 3\"\n },\n {\n \"value\":\"#6C7B8B\",\n \"name\":\"slategray 4\"\n },\n {\n \"value\":\"#1E90FF\",\n \"name\":\"dodgerblue 1\"\n },\n {\n \"value\":\"#1E90FF\",\n \"css\":true,\n \"name\":\"dodgerblue\"\n },\n {\n \"value\":\"#1C86EE\",\n \"name\":\"dodgerblue 2\"\n },\n {\n \"value\":\"#1874CD\",\n \"name\":\"dodgerblue 3\"\n },\n {\n \"value\":\"#104E8B\",\n \"name\":\"dodgerblue 4\"\n },\n {\n \"value\":\"#F0F8FF\",\n \"css\":true,\n \"name\":\"aliceblue\"\n },\n {\n \"value\":\"#4682B4\",\n \"css\":true,\n \"name\":\"steelblue\"\n },\n {\n \"value\":\"#63B8FF\",\n \"name\":\"steelblue 1\"\n },\n {\n \"value\":\"#5CACEE\",\n \"name\":\"steelblue 2\"\n },\n {\n \"value\":\"#4F94CD\",\n \"name\":\"steelblue 3\"\n },\n {\n \"value\":\"#36648B\",\n \"name\":\"steelblue 4\"\n },\n {\n \"value\":\"#87CEFA\",\n \"css\":true,\n \"name\":\"lightskyblue\"\n },\n {\n \"value\":\"#B0E2FF\",\n \"name\":\"lightskyblue 1\"\n },\n {\n \"value\":\"#A4D3EE\",\n \"name\":\"lightskyblue 2\"\n },\n {\n \"value\":\"#8DB6CD\",\n \"name\":\"lightskyblue 3\"\n },\n {\n \"value\":\"#607B8B\",\n \"name\":\"lightskyblue 4\"\n },\n {\n \"value\":\"#87CEFF\",\n \"name\":\"skyblue 1\"\n },\n {\n \"value\":\"#7EC0EE\",\n \"name\":\"skyblue 2\"\n },\n {\n \"value\":\"#6CA6CD\",\n \"name\":\"skyblue 3\"\n },\n {\n \"value\":\"#4A708B\",\n \"name\":\"skyblue 4\"\n },\n {\n \"value\":\"#87CEEB\",\n \"css\":true,\n \"name\":\"skyblue\"\n },\n {\n \"value\":\"#00BFFF\",\n \"name\":\"deepskyblue 1\"\n },\n {\n \"value\":\"#00BFFF\",\n \"css\":true,\n \"name\":\"deepskyblue\"\n },\n {\n \"value\":\"#00B2EE\",\n \"name\":\"deepskyblue 2\"\n },\n {\n \"value\":\"#009ACD\",\n \"name\":\"deepskyblue 3\"\n },\n {\n \"value\":\"#00688B\",\n \"name\":\"deepskyblue 4\"\n },\n {\n \"value\":\"#33A1C9\",\n \"name\":\"peacock\"\n },\n {\n \"value\":\"#ADD8E6\",\n \"css\":true,\n \"name\":\"lightblue\"\n },\n {\n \"value\":\"#BFEFFF\",\n \"name\":\"lightblue 1\"\n },\n {\n \"value\":\"#B2DFEE\",\n \"name\":\"lightblue 2\"\n },\n {\n \"value\":\"#9AC0CD\",\n \"name\":\"lightblue 3\"\n },\n {\n \"value\":\"#68838B\",\n \"name\":\"lightblue 4\"\n },\n {\n \"value\":\"#B0E0E6\",\n \"css\":true,\n \"name\":\"powderblue\"\n },\n {\n \"value\":\"#98F5FF\",\n \"name\":\"cadetblue 1\"\n },\n {\n \"value\":\"#8EE5EE\",\n \"name\":\"cadetblue 2\"\n },\n {\n \"value\":\"#7AC5CD\",\n \"name\":\"cadetblue 3\"\n },\n {\n \"value\":\"#53868B\",\n \"name\":\"cadetblue 4\"\n },\n {\n \"value\":\"#00F5FF\",\n \"name\":\"turquoise 1\"\n },\n {\n \"value\":\"#00E5EE\",\n \"name\":\"turquoise 2\"\n },\n {\n \"value\":\"#00C5CD\",\n \"name\":\"turquoise 3\"\n },\n {\n \"value\":\"#00868B\",\n \"name\":\"turquoise 4\"\n },\n {\n \"value\":\"#5F9EA0\",\n \"css\":true,\n \"name\":\"cadetblue\"\n },\n {\n \"value\":\"#00CED1\",\n \"css\":true,\n \"name\":\"darkturquoise\"\n },\n {\n \"value\":\"#F0FFFF\",\n \"name\":\"azure 1\"\n },\n {\n \"value\":\"#F0FFFF\",\n \"css\":true,\n \"name\":\"azure\"\n },\n {\n \"value\":\"#E0EEEE\",\n \"name\":\"azure 2\"\n },\n {\n \"value\":\"#C1CDCD\",\n \"name\":\"azure 3\"\n },\n {\n \"value\":\"#838B8B\",\n \"name\":\"azure 4\"\n },\n {\n \"value\":\"#E0FFFF\",\n \"name\":\"lightcyan 1\"\n },\n {\n \"value\":\"#E0FFFF\",\n \"css\":true,\n \"name\":\"lightcyan\"\n },\n {\n \"value\":\"#D1EEEE\",\n \"name\":\"lightcyan 2\"\n },\n {\n \"value\":\"#B4CDCD\",\n \"name\":\"lightcyan 3\"\n },\n {\n \"value\":\"#7A8B8B\",\n \"name\":\"lightcyan 4\"\n },\n {\n \"value\":\"#BBFFFF\",\n \"name\":\"paleturquoise 1\"\n },\n {\n \"value\":\"#AEEEEE\",\n \"name\":\"paleturquoise 2\"\n },\n {\n \"value\":\"#AEEEEE\",\n \"css\":true,\n \"name\":\"paleturquoise\"\n },\n {\n \"value\":\"#96CDCD\",\n \"name\":\"paleturquoise 3\"\n },\n {\n \"value\":\"#668B8B\",\n \"name\":\"paleturquoise 4\"\n },\n {\n \"value\":\"#2F4F4F\",\n \"css\":true,\n \"name\":\"darkslategray\"\n },\n {\n \"value\":\"#97FFFF\",\n \"name\":\"darkslategray 1\"\n },\n {\n \"value\":\"#8DEEEE\",\n \"name\":\"darkslategray 2\"\n },\n {\n \"value\":\"#79CDCD\",\n \"name\":\"darkslategray 3\"\n },\n {\n \"value\":\"#528B8B\",\n \"name\":\"darkslategray 4\"\n },\n {\n \"value\":\"#00FFFF\",\n \"name\":\"cyan\"\n },\n {\n \"value\":\"#00FFFF\",\n \"css\":true,\n \"name\":\"aqua\"\n },\n {\n \"value\":\"#00EEEE\",\n \"name\":\"cyan 2\"\n },\n {\n \"value\":\"#00CDCD\",\n \"name\":\"cyan 3\"\n },\n {\n \"value\":\"#008B8B\",\n \"name\":\"cyan 4\"\n },\n {\n \"value\":\"#008B8B\",\n \"css\":true,\n \"name\":\"darkcyan\"\n },\n {\n \"value\":\"#008080\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"teal\"\n },\n {\n \"value\":\"#48D1CC\",\n \"css\":true,\n \"name\":\"mediumturquoise\"\n },\n {\n \"value\":\"#20B2AA\",\n \"css\":true,\n \"name\":\"lightseagreen\"\n },\n {\n \"value\":\"#03A89E\",\n \"name\":\"manganeseblue\"\n },\n {\n \"value\":\"#40E0D0\",\n \"css\":true,\n \"name\":\"turquoise\"\n },\n {\n \"value\":\"#808A87\",\n \"name\":\"coldgrey\"\n },\n {\n \"value\":\"#00C78C\",\n \"name\":\"turquoiseblue\"\n },\n {\n \"value\":\"#7FFFD4\",\n \"name\":\"aquamarine 1\"\n },\n {\n \"value\":\"#7FFFD4\",\n \"css\":true,\n \"name\":\"aquamarine\"\n },\n {\n \"value\":\"#76EEC6\",\n \"name\":\"aquamarine 2\"\n },\n {\n \"value\":\"#66CDAA\",\n \"name\":\"aquamarine 3\"\n },\n {\n \"value\":\"#66CDAA\",\n \"css\":true,\n \"name\":\"mediumaquamarine\"\n },\n {\n \"value\":\"#458B74\",\n \"name\":\"aquamarine 4\"\n },\n {\n \"value\":\"#00FA9A\",\n \"css\":true,\n \"name\":\"mediumspringgreen\"\n },\n {\n \"value\":\"#F5FFFA\",\n \"css\":true,\n \"name\":\"mintcream\"\n },\n {\n \"value\":\"#00FF7F\",\n \"css\":true,\n \"name\":\"springgreen\"\n },\n {\n \"value\":\"#00EE76\",\n \"name\":\"springgreen 1\"\n },\n {\n \"value\":\"#00CD66\",\n \"name\":\"springgreen 2\"\n },\n {\n \"value\":\"#008B45\",\n \"name\":\"springgreen 3\"\n },\n {\n \"value\":\"#3CB371\",\n \"css\":true,\n \"name\":\"mediumseagreen\"\n },\n {\n \"value\":\"#54FF9F\",\n \"name\":\"seagreen 1\"\n },\n {\n \"value\":\"#4EEE94\",\n \"name\":\"seagreen 2\"\n },\n {\n \"value\":\"#43CD80\",\n \"name\":\"seagreen 3\"\n },\n {\n \"value\":\"#2E8B57\",\n \"name\":\"seagreen 4\"\n },\n {\n \"value\":\"#2E8B57\",\n \"css\":true,\n \"name\":\"seagreen\"\n },\n {\n \"value\":\"#00C957\",\n \"name\":\"emeraldgreen\"\n },\n {\n \"value\":\"#BDFCC9\",\n \"name\":\"mint\"\n },\n {\n \"value\":\"#3D9140\",\n \"name\":\"cobaltgreen\"\n },\n {\n \"value\":\"#F0FFF0\",\n \"name\":\"honeydew 1\"\n },\n {\n \"value\":\"#F0FFF0\",\n \"css\":true,\n \"name\":\"honeydew\"\n },\n {\n \"value\":\"#E0EEE0\",\n \"name\":\"honeydew 2\"\n },\n {\n \"value\":\"#C1CDC1\",\n \"name\":\"honeydew 3\"\n },\n {\n \"value\":\"#838B83\",\n \"name\":\"honeydew 4\"\n },\n {\n \"value\":\"#8FBC8F\",\n \"css\":true,\n \"name\":\"darkseagreen\"\n },\n {\n \"value\":\"#C1FFC1\",\n \"name\":\"darkseagreen 1\"\n },\n {\n \"value\":\"#B4EEB4\",\n \"name\":\"darkseagreen 2\"\n },\n {\n \"value\":\"#9BCD9B\",\n \"name\":\"darkseagreen 3\"\n },\n {\n \"value\":\"#698B69\",\n \"name\":\"darkseagreen 4\"\n },\n {\n \"value\":\"#98FB98\",\n \"css\":true,\n \"name\":\"palegreen\"\n },\n {\n \"value\":\"#9AFF9A\",\n \"name\":\"palegreen 1\"\n },\n {\n \"value\":\"#90EE90\",\n \"name\":\"palegreen 2\"\n },\n {\n \"value\":\"#90EE90\",\n \"css\":true,\n \"name\":\"lightgreen\"\n },\n {\n \"value\":\"#7CCD7C\",\n \"name\":\"palegreen 3\"\n },\n {\n \"value\":\"#548B54\",\n \"name\":\"palegreen 4\"\n },\n {\n \"value\":\"#32CD32\",\n \"css\":true,\n \"name\":\"limegreen\"\n },\n {\n \"value\":\"#228B22\",\n \"css\":true,\n \"name\":\"forestgreen\"\n },\n {\n \"value\":\"#00FF00\",\n \"vga\":true,\n \"name\":\"green 1\"\n },\n {\n \"value\":\"#00FF00\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"lime\"\n },\n {\n \"value\":\"#00EE00\",\n \"name\":\"green 2\"\n },\n {\n \"value\":\"#00CD00\",\n \"name\":\"green 3\"\n },\n {\n \"value\":\"#008B00\",\n \"name\":\"green 4\"\n },\n {\n \"value\":\"#008000\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"green\"\n },\n {\n \"value\":\"#006400\",\n \"css\":true,\n \"name\":\"darkgreen\"\n },\n {\n \"value\":\"#308014\",\n \"name\":\"sapgreen\"\n },\n {\n \"value\":\"#7CFC00\",\n \"css\":true,\n \"name\":\"lawngreen\"\n },\n {\n \"value\":\"#7FFF00\",\n \"name\":\"chartreuse 1\"\n },\n {\n \"value\":\"#7FFF00\",\n \"css\":true,\n \"name\":\"chartreuse\"\n },\n {\n \"value\":\"#76EE00\",\n \"name\":\"chartreuse 2\"\n },\n {\n \"value\":\"#66CD00\",\n \"name\":\"chartreuse 3\"\n },\n {\n \"value\":\"#458B00\",\n \"name\":\"chartreuse 4\"\n },\n {\n \"value\":\"#ADFF2F\",\n \"css\":true,\n \"name\":\"greenyellow\"\n },\n {\n \"value\":\"#CAFF70\",\n \"name\":\"darkolivegreen 1\"\n },\n {\n \"value\":\"#BCEE68\",\n \"name\":\"darkolivegreen 2\"\n },\n {\n \"value\":\"#A2CD5A\",\n \"name\":\"darkolivegreen 3\"\n },\n {\n \"value\":\"#6E8B3D\",\n \"name\":\"darkolivegreen 4\"\n },\n {\n \"value\":\"#556B2F\",\n \"css\":true,\n \"name\":\"darkolivegreen\"\n },\n {\n \"value\":\"#6B8E23\",\n \"css\":true,\n \"name\":\"olivedrab\"\n },\n {\n \"value\":\"#C0FF3E\",\n \"name\":\"olivedrab 1\"\n },\n {\n \"value\":\"#B3EE3A\",\n \"name\":\"olivedrab 2\"\n },\n {\n \"value\":\"#9ACD32\",\n \"name\":\"olivedrab 3\"\n },\n {\n \"value\":\"#9ACD32\",\n \"css\":true,\n \"name\":\"yellowgreen\"\n },\n {\n \"value\":\"#698B22\",\n \"name\":\"olivedrab 4\"\n },\n {\n \"value\":\"#FFFFF0\",\n \"name\":\"ivory 1\"\n },\n {\n \"value\":\"#FFFFF0\",\n \"css\":true,\n \"name\":\"ivory\"\n },\n {\n \"value\":\"#EEEEE0\",\n \"name\":\"ivory 2\"\n },\n {\n \"value\":\"#CDCDC1\",\n \"name\":\"ivory 3\"\n },\n {\n \"value\":\"#8B8B83\",\n \"name\":\"ivory 4\"\n },\n {\n \"value\":\"#F5F5DC\",\n \"css\":true,\n \"name\":\"beige\"\n },\n {\n \"value\":\"#FFFFE0\",\n \"name\":\"lightyellow 1\"\n },\n {\n \"value\":\"#FFFFE0\",\n \"css\":true,\n \"name\":\"lightyellow\"\n },\n {\n \"value\":\"#EEEED1\",\n \"name\":\"lightyellow 2\"\n },\n {\n \"value\":\"#CDCDB4\",\n \"name\":\"lightyellow 3\"\n },\n {\n \"value\":\"#8B8B7A\",\n \"name\":\"lightyellow 4\"\n },\n {\n \"value\":\"#FAFAD2\",\n \"css\":true,\n \"name\":\"lightgoldenrodyellow\"\n },\n {\n \"value\":\"#FFFF00\",\n \"vga\":true,\n \"name\":\"yellow 1\"\n },\n {\n \"value\":\"#FFFF00\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"yellow\"\n },\n {\n \"value\":\"#EEEE00\",\n \"name\":\"yellow 2\"\n },\n {\n \"value\":\"#CDCD00\",\n \"name\":\"yellow 3\"\n },\n {\n \"value\":\"#8B8B00\",\n \"name\":\"yellow 4\"\n },\n {\n \"value\":\"#808069\",\n \"name\":\"warmgrey\"\n },\n {\n \"value\":\"#808000\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"olive\"\n },\n {\n \"value\":\"#BDB76B\",\n \"css\":true,\n \"name\":\"darkkhaki\"\n },\n {\n \"value\":\"#FFF68F\",\n \"name\":\"khaki 1\"\n },\n {\n \"value\":\"#EEE685\",\n \"name\":\"khaki 2\"\n },\n {\n \"value\":\"#CDC673\",\n \"name\":\"khaki 3\"\n },\n {\n \"value\":\"#8B864E\",\n \"name\":\"khaki 4\"\n },\n {\n \"value\":\"#F0E68C\",\n \"css\":true,\n \"name\":\"khaki\"\n },\n {\n \"value\":\"#EEE8AA\",\n \"css\":true,\n \"name\":\"palegoldenrod\"\n },\n {\n \"value\":\"#FFFACD\",\n \"name\":\"lemonchiffon 1\"\n },\n {\n \"value\":\"#FFFACD\",\n \"css\":true,\n \"name\":\"lemonchiffon\"\n },\n {\n \"value\":\"#EEE9BF\",\n \"name\":\"lemonchiffon 2\"\n },\n {\n \"value\":\"#CDC9A5\",\n \"name\":\"lemonchiffon 3\"\n },\n {\n \"value\":\"#8B8970\",\n \"name\":\"lemonchiffon 4\"\n },\n {\n \"value\":\"#FFEC8B\",\n \"name\":\"lightgoldenrod 1\"\n },\n {\n \"value\":\"#EEDC82\",\n \"name\":\"lightgoldenrod 2\"\n },\n {\n \"value\":\"#CDBE70\",\n \"name\":\"lightgoldenrod 3\"\n },\n {\n \"value\":\"#8B814C\",\n \"name\":\"lightgoldenrod 4\"\n },\n {\n \"value\":\"#E3CF57\",\n \"name\":\"banana\"\n },\n {\n \"value\":\"#FFD700\",\n \"name\":\"gold 1\"\n },\n {\n \"value\":\"#FFD700\",\n \"css\":true,\n \"name\":\"gold\"\n },\n {\n \"value\":\"#EEC900\",\n \"name\":\"gold 2\"\n },\n {\n \"value\":\"#CDAD00\",\n \"name\":\"gold 3\"\n },\n {\n \"value\":\"#8B7500\",\n \"name\":\"gold 4\"\n },\n {\n \"value\":\"#FFF8DC\",\n \"name\":\"cornsilk 1\"\n },\n {\n \"value\":\"#FFF8DC\",\n \"css\":true,\n \"name\":\"cornsilk\"\n },\n {\n \"value\":\"#EEE8CD\",\n \"name\":\"cornsilk 2\"\n },\n {\n \"value\":\"#CDC8B1\",\n \"name\":\"cornsilk 3\"\n },\n {\n \"value\":\"#8B8878\",\n \"name\":\"cornsilk 4\"\n },\n {\n \"value\":\"#DAA520\",\n \"css\":true,\n \"name\":\"goldenrod\"\n },\n {\n \"value\":\"#FFC125\",\n \"name\":\"goldenrod 1\"\n },\n {\n \"value\":\"#EEB422\",\n \"name\":\"goldenrod 2\"\n },\n {\n \"value\":\"#CD9B1D\",\n \"name\":\"goldenrod 3\"\n },\n {\n \"value\":\"#8B6914\",\n \"name\":\"goldenrod 4\"\n },\n {\n \"value\":\"#B8860B\",\n \"css\":true,\n \"name\":\"darkgoldenrod\"\n },\n {\n \"value\":\"#FFB90F\",\n \"name\":\"darkgoldenrod 1\"\n },\n {\n \"value\":\"#EEAD0E\",\n \"name\":\"darkgoldenrod 2\"\n },\n {\n \"value\":\"#CD950C\",\n \"name\":\"darkgoldenrod 3\"\n },\n {\n \"value\":\"#8B6508\",\n \"name\":\"darkgoldenrod 4\"\n },\n {\n \"value\":\"#FFA500\",\n \"name\":\"orange 1\"\n },\n {\n \"value\":\"#FF8000\",\n \"css\":true,\n \"name\":\"orange\"\n },\n {\n \"value\":\"#EE9A00\",\n \"name\":\"orange 2\"\n },\n {\n \"value\":\"#CD8500\",\n \"name\":\"orange 3\"\n },\n {\n \"value\":\"#8B5A00\",\n \"name\":\"orange 4\"\n },\n {\n \"value\":\"#FFFAF0\",\n \"css\":true,\n \"name\":\"floralwhite\"\n },\n {\n \"value\":\"#FDF5E6\",\n \"css\":true,\n \"name\":\"oldlace\"\n },\n {\n \"value\":\"#F5DEB3\",\n \"css\":true,\n \"name\":\"wheat\"\n },\n {\n \"value\":\"#FFE7BA\",\n \"name\":\"wheat 1\"\n },\n {\n \"value\":\"#EED8AE\",\n \"name\":\"wheat 2\"\n },\n {\n \"value\":\"#CDBA96\",\n \"name\":\"wheat 3\"\n },\n {\n \"value\":\"#8B7E66\",\n \"name\":\"wheat 4\"\n },\n {\n \"value\":\"#FFE4B5\",\n \"css\":true,\n \"name\":\"moccasin\"\n },\n {\n \"value\":\"#FFEFD5\",\n \"css\":true,\n \"name\":\"papayawhip\"\n },\n {\n \"value\":\"#FFEBCD\",\n \"css\":true,\n \"name\":\"blanchedalmond\"\n },\n {\n \"value\":\"#FFDEAD\",\n \"name\":\"navajowhite 1\"\n },\n {\n \"value\":\"#FFDEAD\",\n \"css\":true,\n \"name\":\"navajowhite\"\n },\n {\n \"value\":\"#EECFA1\",\n \"name\":\"navajowhite 2\"\n },\n {\n \"value\":\"#CDB38B\",\n \"name\":\"navajowhite 3\"\n },\n {\n \"value\":\"#8B795E\",\n \"name\":\"navajowhite 4\"\n },\n {\n \"value\":\"#FCE6C9\",\n \"name\":\"eggshell\"\n },\n {\n \"value\":\"#D2B48C\",\n \"css\":true,\n \"name\":\"tan\"\n },\n {\n \"value\":\"#9C661F\",\n \"name\":\"brick\"\n },\n {\n \"value\":\"#FF9912\",\n \"name\":\"cadmiumyellow\"\n },\n {\n \"value\":\"#FAEBD7\",\n \"css\":true,\n \"name\":\"antiquewhite\"\n },\n {\n \"value\":\"#FFEFDB\",\n \"name\":\"antiquewhite 1\"\n },\n {\n \"value\":\"#EEDFCC\",\n \"name\":\"antiquewhite 2\"\n },\n {\n \"value\":\"#CDC0B0\",\n \"name\":\"antiquewhite 3\"\n },\n {\n \"value\":\"#8B8378\",\n \"name\":\"antiquewhite 4\"\n },\n {\n \"value\":\"#DEB887\",\n \"css\":true,\n \"name\":\"burlywood\"\n },\n {\n \"value\":\"#FFD39B\",\n \"name\":\"burlywood 1\"\n },\n {\n \"value\":\"#EEC591\",\n \"name\":\"burlywood 2\"\n },\n {\n \"value\":\"#CDAA7D\",\n \"name\":\"burlywood 3\"\n },\n {\n \"value\":\"#8B7355\",\n \"name\":\"burlywood 4\"\n },\n {\n \"value\":\"#FFE4C4\",\n \"name\":\"bisque 1\"\n },\n {\n \"value\":\"#FFE4C4\",\n \"css\":true,\n \"name\":\"bisque\"\n },\n {\n \"value\":\"#EED5B7\",\n \"name\":\"bisque 2\"\n },\n {\n \"value\":\"#CDB79E\",\n \"name\":\"bisque 3\"\n },\n {\n \"value\":\"#8B7D6B\",\n \"name\":\"bisque 4\"\n },\n {\n \"value\":\"#E3A869\",\n \"name\":\"melon\"\n },\n {\n \"value\":\"#ED9121\",\n \"name\":\"carrot\"\n },\n {\n \"value\":\"#FF8C00\",\n \"css\":true,\n \"name\":\"darkorange\"\n },\n {\n \"value\":\"#FF7F00\",\n \"name\":\"darkorange 1\"\n },\n {\n \"value\":\"#EE7600\",\n \"name\":\"darkorange 2\"\n },\n {\n \"value\":\"#CD6600\",\n \"name\":\"darkorange 3\"\n },\n {\n \"value\":\"#8B4500\",\n \"name\":\"darkorange 4\"\n },\n {\n \"value\":\"#FFA54F\",\n \"name\":\"tan 1\"\n },\n {\n \"value\":\"#EE9A49\",\n \"name\":\"tan 2\"\n },\n {\n \"value\":\"#CD853F\",\n \"name\":\"tan 3\"\n },\n {\n \"value\":\"#CD853F\",\n \"css\":true,\n \"name\":\"peru\"\n },\n {\n \"value\":\"#8B5A2B\",\n \"name\":\"tan 4\"\n },\n {\n \"value\":\"#FAF0E6\",\n \"css\":true,\n \"name\":\"linen\"\n },\n {\n \"value\":\"#FFDAB9\",\n \"name\":\"peachpuff 1\"\n },\n {\n \"value\":\"#FFDAB9\",\n \"css\":true,\n \"name\":\"peachpuff\"\n },\n {\n \"value\":\"#EECBAD\",\n \"name\":\"peachpuff 2\"\n },\n {\n \"value\":\"#CDAF95\",\n \"name\":\"peachpuff 3\"\n },\n {\n \"value\":\"#8B7765\",\n \"name\":\"peachpuff 4\"\n },\n {\n \"value\":\"#FFF5EE\",\n \"name\":\"seashell 1\"\n },\n {\n \"value\":\"#FFF5EE\",\n \"css\":true,\n \"name\":\"seashell\"\n },\n {\n \"value\":\"#EEE5DE\",\n \"name\":\"seashell 2\"\n },\n {\n \"value\":\"#CDC5BF\",\n \"name\":\"seashell 3\"\n },\n {\n \"value\":\"#8B8682\",\n \"name\":\"seashell 4\"\n },\n {\n \"value\":\"#F4A460\",\n \"css\":true,\n \"name\":\"sandybrown\"\n },\n {\n \"value\":\"#C76114\",\n \"name\":\"rawsienna\"\n },\n {\n \"value\":\"#D2691E\",\n \"css\":true,\n \"name\":\"chocolate\"\n },\n {\n \"value\":\"#FF7F24\",\n \"name\":\"chocolate 1\"\n },\n {\n \"value\":\"#EE7621\",\n \"name\":\"chocolate 2\"\n },\n {\n \"value\":\"#CD661D\",\n \"name\":\"chocolate 3\"\n },\n {\n \"value\":\"#8B4513\",\n \"name\":\"chocolate 4\"\n },\n {\n \"value\":\"#8B4513\",\n \"css\":true,\n \"name\":\"saddlebrown\"\n },\n {\n \"value\":\"#292421\",\n \"name\":\"ivoryblack\"\n },\n {\n \"value\":\"#FF7D40\",\n \"name\":\"flesh\"\n },\n {\n \"value\":\"#FF6103\",\n \"name\":\"cadmiumorange\"\n },\n {\n \"value\":\"#8A360F\",\n \"name\":\"burntsienna\"\n },\n {\n \"value\":\"#A0522D\",\n \"css\":true,\n \"name\":\"sienna\"\n },\n {\n \"value\":\"#FF8247\",\n \"name\":\"sienna 1\"\n },\n {\n \"value\":\"#EE7942\",\n \"name\":\"sienna 2\"\n },\n {\n \"value\":\"#CD6839\",\n \"name\":\"sienna 3\"\n },\n {\n \"value\":\"#8B4726\",\n \"name\":\"sienna 4\"\n },\n {\n \"value\":\"#FFA07A\",\n \"name\":\"lightsalmon 1\"\n },\n {\n \"value\":\"#FFA07A\",\n \"css\":true,\n \"name\":\"lightsalmon\"\n },\n {\n \"value\":\"#EE9572\",\n \"name\":\"lightsalmon 2\"\n },\n {\n \"value\":\"#CD8162\",\n \"name\":\"lightsalmon 3\"\n },\n {\n \"value\":\"#8B5742\",\n \"name\":\"lightsalmon 4\"\n },\n {\n \"value\":\"#FF7F50\",\n \"css\":true,\n \"name\":\"coral\"\n },\n {\n \"value\":\"#FF4500\",\n \"name\":\"orangered 1\"\n },\n {\n \"value\":\"#FF4500\",\n \"css\":true,\n \"name\":\"orangered\"\n },\n {\n \"value\":\"#EE4000\",\n \"name\":\"orangered 2\"\n },\n {\n \"value\":\"#CD3700\",\n \"name\":\"orangered 3\"\n },\n {\n \"value\":\"#8B2500\",\n \"name\":\"orangered 4\"\n },\n {\n \"value\":\"#5E2612\",\n \"name\":\"sepia\"\n },\n {\n \"value\":\"#E9967A\",\n \"css\":true,\n \"name\":\"darksalmon\"\n },\n {\n \"value\":\"#FF8C69\",\n \"name\":\"salmon 1\"\n },\n {\n \"value\":\"#EE8262\",\n \"name\":\"salmon 2\"\n },\n {\n \"value\":\"#CD7054\",\n \"name\":\"salmon 3\"\n },\n {\n \"value\":\"#8B4C39\",\n \"name\":\"salmon 4\"\n },\n {\n \"value\":\"#FF7256\",\n \"name\":\"coral 1\"\n },\n {\n \"value\":\"#EE6A50\",\n \"name\":\"coral 2\"\n },\n {\n \"value\":\"#CD5B45\",\n \"name\":\"coral 3\"\n },\n {\n \"value\":\"#8B3E2F\",\n \"name\":\"coral 4\"\n },\n {\n \"value\":\"#8A3324\",\n \"name\":\"burntumber\"\n },\n {\n \"value\":\"#FF6347\",\n \"name\":\"tomato 1\"\n },\n {\n \"value\":\"#FF6347\",\n \"css\":true,\n \"name\":\"tomato\"\n },\n {\n \"value\":\"#EE5C42\",\n \"name\":\"tomato 2\"\n },\n {\n \"value\":\"#CD4F39\",\n \"name\":\"tomato 3\"\n },\n {\n \"value\":\"#8B3626\",\n \"name\":\"tomato 4\"\n },\n {\n \"value\":\"#FA8072\",\n \"css\":true,\n \"name\":\"salmon\"\n },\n {\n \"value\":\"#FFE4E1\",\n \"name\":\"mistyrose 1\"\n },\n {\n \"value\":\"#FFE4E1\",\n \"css\":true,\n \"name\":\"mistyrose\"\n },\n {\n \"value\":\"#EED5D2\",\n \"name\":\"mistyrose 2\"\n },\n {\n \"value\":\"#CDB7B5\",\n \"name\":\"mistyrose 3\"\n },\n {\n \"value\":\"#8B7D7B\",\n \"name\":\"mistyrose 4\"\n },\n {\n \"value\":\"#FFFAFA\",\n \"name\":\"snow 1\"\n },\n {\n \"value\":\"#FFFAFA\",\n \"css\":true,\n \"name\":\"snow\"\n },\n {\n \"value\":\"#EEE9E9\",\n \"name\":\"snow 2\"\n },\n {\n \"value\":\"#CDC9C9\",\n \"name\":\"snow 3\"\n },\n {\n \"value\":\"#8B8989\",\n \"name\":\"snow 4\"\n },\n {\n \"value\":\"#BC8F8F\",\n \"css\":true,\n \"name\":\"rosybrown\"\n },\n {\n \"value\":\"#FFC1C1\",\n \"name\":\"rosybrown 1\"\n },\n {\n \"value\":\"#EEB4B4\",\n \"name\":\"rosybrown 2\"\n },\n {\n \"value\":\"#CD9B9B\",\n \"name\":\"rosybrown 3\"\n },\n {\n \"value\":\"#8B6969\",\n \"name\":\"rosybrown 4\"\n },\n {\n \"value\":\"#F08080\",\n \"css\":true,\n \"name\":\"lightcoral\"\n },\n {\n \"value\":\"#CD5C5C\",\n \"css\":true,\n \"name\":\"indianred\"\n },\n {\n \"value\":\"#FF6A6A\",\n \"name\":\"indianred 1\"\n },\n {\n \"value\":\"#EE6363\",\n \"name\":\"indianred 2\"\n },\n {\n \"value\":\"#8B3A3A\",\n \"name\":\"indianred 4\"\n },\n {\n \"value\":\"#CD5555\",\n \"name\":\"indianred 3\"\n },\n {\n \"value\":\"#A52A2A\",\n \"css\":true,\n \"name\":\"brown\"\n },\n {\n \"value\":\"#FF4040\",\n \"name\":\"brown 1\"\n },\n {\n \"value\":\"#EE3B3B\",\n \"name\":\"brown 2\"\n },\n {\n \"value\":\"#CD3333\",\n \"name\":\"brown 3\"\n },\n {\n \"value\":\"#8B2323\",\n \"name\":\"brown 4\"\n },\n {\n \"value\":\"#B22222\",\n \"css\":true,\n \"name\":\"firebrick\"\n },\n {\n \"value\":\"#FF3030\",\n \"name\":\"firebrick 1\"\n },\n {\n \"value\":\"#EE2C2C\",\n \"name\":\"firebrick 2\"\n },\n {\n \"value\":\"#CD2626\",\n \"name\":\"firebrick 3\"\n },\n {\n \"value\":\"#8B1A1A\",\n \"name\":\"firebrick 4\"\n },\n {\n \"value\":\"#FF0000\",\n \"vga\":true,\n \"name\":\"red 1\"\n },\n {\n \"value\":\"#FF0000\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"red\"\n },\n {\n \"value\":\"#EE0000\",\n \"name\":\"red 2\"\n },\n {\n \"value\":\"#CD0000\",\n \"name\":\"red 3\"\n },\n {\n \"value\":\"#8B0000\",\n \"name\":\"red 4\"\n },\n {\n \"value\":\"#8B0000\",\n \"css\":true,\n \"name\":\"darkred\"\n },\n {\n \"value\":\"#800000\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"maroon\"\n },\n {\n \"value\":\"#8E388E\",\n \"name\":\"sgi beet\"\n },\n {\n \"value\":\"#7171C6\",\n \"name\":\"sgi slateblue\"\n },\n {\n \"value\":\"#7D9EC0\",\n \"name\":\"sgi lightblue\"\n },\n {\n \"value\":\"#388E8E\",\n \"name\":\"sgi teal\"\n },\n {\n \"value\":\"#71C671\",\n \"name\":\"sgi chartreuse\"\n },\n {\n \"value\":\"#8E8E38\",\n \"name\":\"sgi olivedrab\"\n },\n {\n \"value\":\"#C5C1AA\",\n \"name\":\"sgi brightgray\"\n },\n {\n \"value\":\"#C67171\",\n \"name\":\"sgi salmon\"\n },\n {\n \"value\":\"#555555\",\n \"name\":\"sgi darkgray\"\n },\n {\n \"value\":\"#1E1E1E\",\n \"name\":\"sgi gray 12\"\n },\n {\n \"value\":\"#282828\",\n \"name\":\"sgi gray 16\"\n },\n {\n \"value\":\"#515151\",\n \"name\":\"sgi gray 32\"\n },\n {\n \"value\":\"#5B5B5B\",\n \"name\":\"sgi gray 36\"\n },\n {\n \"value\":\"#848484\",\n \"name\":\"sgi gray 52\"\n },\n {\n \"value\":\"#8E8E8E\",\n \"name\":\"sgi gray 56\"\n },\n {\n \"value\":\"#AAAAAA\",\n \"name\":\"sgi lightgray\"\n },\n {\n \"value\":\"#B7B7B7\",\n \"name\":\"sgi gray 72\"\n },\n {\n \"value\":\"#C1C1C1\",\n \"name\":\"sgi gray 76\"\n },\n {\n \"value\":\"#EAEAEA\",\n \"name\":\"sgi gray 92\"\n },\n {\n \"value\":\"#F4F4F4\",\n \"name\":\"sgi gray 96\"\n },\n {\n \"value\":\"#FFFFFF\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"white\"\n },\n {\n \"value\":\"#F5F5F5\",\n \"name\":\"white smoke\"\n },\n {\n \"value\":\"#F5F5F5\",\n \"name\":\"gray 96\"\n },\n {\n \"value\":\"#DCDCDC\",\n \"css\":true,\n \"name\":\"gainsboro\"\n },\n {\n \"value\":\"#D3D3D3\",\n \"css\":true,\n \"name\":\"lightgrey\"\n },\n {\n \"value\":\"#C0C0C0\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"silver\"\n },\n {\n \"value\":\"#A9A9A9\",\n \"css\":true,\n \"name\":\"darkgray\"\n },\n {\n \"value\":\"#808080\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"gray\"\n },\n {\n \"value\":\"#696969\",\n \"css\":true,\n \"name\":\"dimgray\"\n },\n {\n \"value\":\"#696969\",\n \"name\":\"gray 42\"\n },\n {\n \"value\":\"#000000\",\n \"vga\":true,\n \"css\":true,\n \"name\":\"black\"\n },\n {\n \"value\":\"#FCFCFC\",\n \"name\":\"gray 99\"\n },\n {\n \"value\":\"#FAFAFA\",\n \"name\":\"gray 98\"\n },\n {\n \"value\":\"#F7F7F7\",\n \"name\":\"gray 97\"\n },\n {\n \"value\":\"#F2F2F2\",\n \"name\":\"gray 95\"\n },\n {\n \"value\":\"#F0F0F0\",\n \"name\":\"gray 94\"\n },\n {\n \"value\":\"#EDEDED\",\n \"name\":\"gray 93\"\n },\n {\n \"value\":\"#EBEBEB\",\n \"name\":\"gray 92\"\n },\n {\n \"value\":\"#E8E8E8\",\n \"name\":\"gray 91\"\n },\n {\n \"value\":\"#E5E5E5\",\n \"name\":\"gray 90\"\n },\n {\n \"value\":\"#E3E3E3\",\n \"name\":\"gray 89\"\n },\n {\n \"value\":\"#E0E0E0\",\n \"name\":\"gray 88\"\n },\n {\n \"value\":\"#DEDEDE\",\n \"name\":\"gray 87\"\n },\n {\n \"value\":\"#DBDBDB\",\n \"name\":\"gray 86\"\n },\n {\n \"value\":\"#D9D9D9\",\n \"name\":\"gray 85\"\n },\n {\n \"value\":\"#D6D6D6\",\n \"name\":\"gray 84\"\n },\n {\n \"value\":\"#D4D4D4\",\n \"name\":\"gray 83\"\n },\n {\n \"value\":\"#D1D1D1\",\n \"name\":\"gray 82\"\n },\n {\n \"value\":\"#CFCFCF\",\n \"name\":\"gray 81\"\n },\n {\n \"value\":\"#CCCCCC\",\n \"name\":\"gray 80\"\n },\n {\n \"value\":\"#C9C9C9\",\n \"name\":\"gray 79\"\n },\n {\n \"value\":\"#C7C7C7\",\n \"name\":\"gray 78\"\n },\n {\n \"value\":\"#C4C4C4\",\n \"name\":\"gray 77\"\n },\n {\n \"value\":\"#C2C2C2\",\n \"name\":\"gray 76\"\n },\n {\n \"value\":\"#BFBFBF\",\n \"name\":\"gray 75\"\n },\n {\n \"value\":\"#BDBDBD\",\n \"name\":\"gray 74\"\n },\n {\n \"value\":\"#BABABA\",\n \"name\":\"gray 73\"\n },\n {\n \"value\":\"#B8B8B8\",\n \"name\":\"gray 72\"\n },\n {\n \"value\":\"#B5B5B5\",\n \"name\":\"gray 71\"\n },\n {\n \"value\":\"#B3B3B3\",\n \"name\":\"gray 70\"\n },\n {\n \"value\":\"#B0B0B0\",\n \"name\":\"gray 69\"\n },\n {\n \"value\":\"#ADADAD\",\n \"name\":\"gray 68\"\n },\n {\n \"value\":\"#ABABAB\",\n \"name\":\"gray 67\"\n },\n {\n \"value\":\"#A8A8A8\",\n \"name\":\"gray 66\"\n },\n {\n \"value\":\"#A6A6A6\",\n \"name\":\"gray 65\"\n },\n {\n \"value\":\"#A3A3A3\",\n \"name\":\"gray 64\"\n },\n {\n \"value\":\"#A1A1A1\",\n \"name\":\"gray 63\"\n },\n {\n \"value\":\"#9E9E9E\",\n \"name\":\"gray 62\"\n },\n {\n \"value\":\"#9C9C9C\",\n \"name\":\"gray 61\"\n },\n {\n \"value\":\"#999999\",\n \"name\":\"gray 60\"\n },\n {\n \"value\":\"#969696\",\n \"name\":\"gray 59\"\n },\n {\n \"value\":\"#949494\",\n \"name\":\"gray 58\"\n },\n {\n \"value\":\"#919191\",\n \"name\":\"gray 57\"\n },\n {\n \"value\":\"#8F8F8F\",\n \"name\":\"gray 56\"\n },\n {\n \"value\":\"#8C8C8C\",\n \"name\":\"gray 55\"\n },\n {\n \"value\":\"#8A8A8A\",\n \"name\":\"gray 54\"\n },\n {\n \"value\":\"#878787\",\n \"name\":\"gray 53\"\n },\n {\n \"value\":\"#858585\",\n \"name\":\"gray 52\"\n },\n {\n \"value\":\"#828282\",\n \"name\":\"gray 51\"\n },\n {\n \"value\":\"#7F7F7F\",\n \"name\":\"gray 50\"\n },\n {\n \"value\":\"#7D7D7D\",\n \"name\":\"gray 49\"\n },\n {\n \"value\":\"#7A7A7A\",\n \"name\":\"gray 48\"\n },\n {\n \"value\":\"#787878\",\n \"name\":\"gray 47\"\n },\n {\n \"value\":\"#757575\",\n \"name\":\"gray 46\"\n },\n {\n \"value\":\"#737373\",\n \"name\":\"gray 45\"\n },\n {\n \"value\":\"#707070\",\n \"name\":\"gray 44\"\n },\n {\n \"value\":\"#6E6E6E\",\n \"name\":\"gray 43\"\n },\n {\n \"value\":\"#666666\",\n \"name\":\"gray 40\"\n },\n {\n \"value\":\"#636363\",\n \"name\":\"gray 39\"\n },\n {\n \"value\":\"#616161\",\n \"name\":\"gray 38\"\n },\n {\n \"value\":\"#5E5E5E\",\n \"name\":\"gray 37\"\n },\n {\n \"value\":\"#5C5C5C\",\n \"name\":\"gray 36\"\n },\n {\n \"value\":\"#595959\",\n \"name\":\"gray 35\"\n },\n {\n \"value\":\"#575757\",\n \"name\":\"gray 34\"\n },\n {\n \"value\":\"#545454\",\n \"name\":\"gray 33\"\n },\n {\n \"value\":\"#525252\",\n \"name\":\"gray 32\"\n },\n {\n \"value\":\"#4F4F4F\",\n \"name\":\"gray 31\"\n },\n {\n \"value\":\"#4D4D4D\",\n \"name\":\"gray 30\"\n },\n {\n \"value\":\"#4A4A4A\",\n \"name\":\"gray 29\"\n },\n {\n \"value\":\"#474747\",\n \"name\":\"gray 28\"\n },\n {\n \"value\":\"#454545\",\n \"name\":\"gray 27\"\n },\n {\n \"value\":\"#424242\",\n \"name\":\"gray 26\"\n },\n {\n \"value\":\"#404040\",\n \"name\":\"gray 25\"\n },\n {\n \"value\":\"#3D3D3D\",\n \"name\":\"gray 24\"\n },\n {\n \"value\":\"#3B3B3B\",\n \"name\":\"gray 23\"\n },\n {\n \"value\":\"#383838\",\n \"name\":\"gray 22\"\n },\n {\n \"value\":\"#363636\",\n \"name\":\"gray 21\"\n },\n {\n \"value\":\"#333333\",\n \"name\":\"gray 20\"\n },\n {\n \"value\":\"#303030\",\n \"name\":\"gray 19\"\n },\n {\n \"value\":\"#2E2E2E\",\n \"name\":\"gray 18\"\n },\n {\n \"value\":\"#2B2B2B\",\n \"name\":\"gray 17\"\n },\n {\n \"value\":\"#292929\",\n \"name\":\"gray 16\"\n },\n {\n \"value\":\"#262626\",\n \"name\":\"gray 15\"\n },\n {\n \"value\":\"#242424\",\n \"name\":\"gray 14\"\n },\n {\n \"value\":\"#212121\",\n \"name\":\"gray 13\"\n },\n {\n \"value\":\"#1F1F1F\",\n \"name\":\"gray 12\"\n },\n {\n \"value\":\"#1C1C1C\",\n \"name\":\"gray 11\"\n },\n {\n \"value\":\"#1A1A1A\",\n \"name\":\"gray 10\"\n },\n {\n \"value\":\"#171717\",\n \"name\":\"gray 9\"\n },\n {\n \"value\":\"#141414\",\n \"name\":\"gray 8\"\n },\n {\n \"value\":\"#121212\",\n \"name\":\"gray 7\"\n },\n {\n \"value\":\"#0F0F0F\",\n \"name\":\"gray 6\"\n },\n {\n \"value\":\"#0D0D0D\",\n \"name\":\"gray 5\"\n },\n {\n \"value\":\"#0A0A0A\",\n \"name\":\"gray 4\"\n },\n {\n \"value\":\"#080808\",\n \"name\":\"gray 3\"\n },\n {\n \"value\":\"#050505\",\n \"name\":\"gray 2\"\n },\n {\n \"value\":\"#030303\",\n \"name\":\"gray 1\"\n },\n {\n \"value\":\"#F5F5F5\",\n \"css\":true,\n \"name\":\"whitesmoke\"\n }\n]\n","//! moment.js locale configuration\n//! locale : Yoruba Nigeria [yo]\n//! author : Atolagbe Abisoye : https://github.com/andela-batolagbe\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var yo = moment.defineLocale('yo', {\n months: 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.split(\n '_'\n ),\n monthsShort: 'Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀'.split('_'),\n weekdays: 'Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta'.split('_'),\n weekdaysShort: 'Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá'.split('_'),\n weekdaysMin: 'Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb'.split('_'),\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY h:mm A',\n LLLL: 'dddd, D MMMM YYYY h:mm A',\n },\n calendar: {\n sameDay: '[Ònì ni] LT',\n nextDay: '[Ọ̀la ni] LT',\n nextWeek: \"dddd [Ọsẹ̀ tón'bọ] [ni] LT\",\n lastDay: '[Àna ni] LT',\n lastWeek: 'dddd [Ọsẹ̀ tólọ́] [ni] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'ní %s',\n past: '%s kọjá',\n s: 'ìsẹjú aayá die',\n ss: 'aayá %d',\n m: 'ìsẹjú kan',\n mm: 'ìsẹjú %d',\n h: 'wákati kan',\n hh: 'wákati %d',\n d: 'ọjọ́ kan',\n dd: 'ọjọ́ %d',\n M: 'osù kan',\n MM: 'osù %d',\n y: 'ọdún kan',\n yy: 'ọdún %d',\n },\n dayOfMonthOrdinalParse: /ọjọ́\\s\\d{1,2}/,\n ordinal: 'ọjọ́ %d',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return yo;\n\n})));\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","//! moment.js locale configuration\n//! locale : Slovenian [sl]\n//! author : Robert Sedovšek : https://github.com/sedovsek\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's':\n return withoutSuffix || isFuture\n ? 'nekaj sekund'\n : 'nekaj sekundami';\n case 'ss':\n if (number === 1) {\n result += withoutSuffix ? 'sekundo' : 'sekundi';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'sekundi' : 'sekundah';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'sekunde' : 'sekundah';\n } else {\n result += 'sekund';\n }\n return result;\n case 'm':\n return withoutSuffix ? 'ena minuta' : 'eno minuto';\n case 'mm':\n if (number === 1) {\n result += withoutSuffix ? 'minuta' : 'minuto';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'minuti' : 'minutama';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'minute' : 'minutami';\n } else {\n result += withoutSuffix || isFuture ? 'minut' : 'minutami';\n }\n return result;\n case 'h':\n return withoutSuffix ? 'ena ura' : 'eno uro';\n case 'hh':\n if (number === 1) {\n result += withoutSuffix ? 'ura' : 'uro';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'uri' : 'urama';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'ure' : 'urami';\n } else {\n result += withoutSuffix || isFuture ? 'ur' : 'urami';\n }\n return result;\n case 'd':\n return withoutSuffix || isFuture ? 'en dan' : 'enim dnem';\n case 'dd':\n if (number === 1) {\n result += withoutSuffix || isFuture ? 'dan' : 'dnem';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'dni' : 'dnevoma';\n } else {\n result += withoutSuffix || isFuture ? 'dni' : 'dnevi';\n }\n return result;\n case 'M':\n return withoutSuffix || isFuture ? 'en mesec' : 'enim mesecem';\n case 'MM':\n if (number === 1) {\n result += withoutSuffix || isFuture ? 'mesec' : 'mesecem';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'meseca' : 'mesecema';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'mesece' : 'meseci';\n } else {\n result += withoutSuffix || isFuture ? 'mesecev' : 'meseci';\n }\n return result;\n case 'y':\n return withoutSuffix || isFuture ? 'eno leto' : 'enim letom';\n case 'yy':\n if (number === 1) {\n result += withoutSuffix || isFuture ? 'leto' : 'letom';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'leti' : 'letoma';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'leta' : 'leti';\n } else {\n result += withoutSuffix || isFuture ? 'let' : 'leti';\n }\n return result;\n }\n }\n\n var sl = moment.defineLocale('sl', {\n months: 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split(\n '_'\n ),\n monthsShort: 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'),\n weekdaysShort: 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),\n weekdaysMin: 'ne_po_to_sr_če_pe_so'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD. MM. YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd, D. MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[danes ob] LT',\n nextDay: '[jutri ob] LT',\n\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[v] [nedeljo] [ob] LT';\n case 3:\n return '[v] [sredo] [ob] LT';\n case 6:\n return '[v] [soboto] [ob] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[v] dddd [ob] LT';\n }\n },\n lastDay: '[včeraj ob] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[prejšnjo] [nedeljo] [ob] LT';\n case 3:\n return '[prejšnjo] [sredo] [ob] LT';\n case 6:\n return '[prejšnjo] [soboto] [ob] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[prejšnji] dddd [ob] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'čez %s',\n past: 'pred %s',\n s: processRelativeTime,\n ss: processRelativeTime,\n m: processRelativeTime,\n mm: processRelativeTime,\n h: processRelativeTime,\n hh: processRelativeTime,\n d: processRelativeTime,\n dd: processRelativeTime,\n M: processRelativeTime,\n MM: processRelativeTime,\n y: processRelativeTime,\n yy: processRelativeTime,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return sl;\n\n})));\n","//! moment.js locale configuration\n//! locale : Finnish [fi]\n//! author : Tarmo Aidantausta : https://github.com/bleadof\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(\n ' '\n ),\n numbersFuture = [\n 'nolla',\n 'yhden',\n 'kahden',\n 'kolmen',\n 'neljän',\n 'viiden',\n 'kuuden',\n numbersPast[7],\n numbersPast[8],\n numbersPast[9],\n ];\n function translate(number, withoutSuffix, key, isFuture) {\n var result = '';\n switch (key) {\n case 's':\n return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';\n case 'ss':\n result = isFuture ? 'sekunnin' : 'sekuntia';\n break;\n case 'm':\n return isFuture ? 'minuutin' : 'minuutti';\n case 'mm':\n result = isFuture ? 'minuutin' : 'minuuttia';\n break;\n case 'h':\n return isFuture ? 'tunnin' : 'tunti';\n case 'hh':\n result = isFuture ? 'tunnin' : 'tuntia';\n break;\n case 'd':\n return isFuture ? 'päivän' : 'päivä';\n case 'dd':\n result = isFuture ? 'päivän' : 'päivää';\n break;\n case 'M':\n return isFuture ? 'kuukauden' : 'kuukausi';\n case 'MM':\n result = isFuture ? 'kuukauden' : 'kuukautta';\n break;\n case 'y':\n return isFuture ? 'vuoden' : 'vuosi';\n case 'yy':\n result = isFuture ? 'vuoden' : 'vuotta';\n break;\n }\n result = verbalNumber(number, isFuture) + ' ' + result;\n return result;\n }\n function verbalNumber(number, isFuture) {\n return number < 10\n ? isFuture\n ? numbersFuture[number]\n : numbersPast[number]\n : number;\n }\n\n var fi = moment.defineLocale('fi', {\n months: 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split(\n '_'\n ),\n monthsShort: 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split(\n '_'\n ),\n weekdays: 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split(\n '_'\n ),\n weekdaysShort: 'su_ma_ti_ke_to_pe_la'.split('_'),\n weekdaysMin: 'su_ma_ti_ke_to_pe_la'.split('_'),\n longDateFormat: {\n LT: 'HH.mm',\n LTS: 'HH.mm.ss',\n L: 'DD.MM.YYYY',\n LL: 'Do MMMM[ta] YYYY',\n LLL: 'Do MMMM[ta] YYYY, [klo] HH.mm',\n LLLL: 'dddd, Do MMMM[ta] YYYY, [klo] HH.mm',\n l: 'D.M.YYYY',\n ll: 'Do MMM YYYY',\n lll: 'Do MMM YYYY, [klo] HH.mm',\n llll: 'ddd, Do MMM YYYY, [klo] HH.mm',\n },\n calendar: {\n sameDay: '[tänään] [klo] LT',\n nextDay: '[huomenna] [klo] LT',\n nextWeek: 'dddd [klo] LT',\n lastDay: '[eilen] [klo] LT',\n lastWeek: '[viime] dddd[na] [klo] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s päästä',\n past: '%s sitten',\n s: translate,\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: translate,\n dd: translate,\n M: translate,\n MM: translate,\n y: translate,\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return fi;\n\n})));\n","//! moment.js locale configuration\n//! locale : Arabic (Saudi Arabia) [ar-sa]\n//! author : Suhail Alkowaileet : https://github.com/xsoh\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '١',\n 2: '٢',\n 3: '٣',\n 4: '٤',\n 5: '٥',\n 6: '٦',\n 7: '٧',\n 8: '٨',\n 9: '٩',\n 0: '٠',\n },\n numberMap = {\n '١': '1',\n '٢': '2',\n '٣': '3',\n '٤': '4',\n '٥': '5',\n '٦': '6',\n '٧': '7',\n '٨': '8',\n '٩': '9',\n '٠': '0',\n };\n\n var arSa = moment.defineLocale('ar-sa', {\n months: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(\n '_'\n ),\n monthsShort: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(\n '_'\n ),\n weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n meridiemParse: /ص|م/,\n isPM: function (input) {\n return 'م' === input;\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ص';\n } else {\n return 'م';\n }\n },\n calendar: {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'في %s',\n past: 'منذ %s',\n s: 'ثوان',\n ss: '%d ثانية',\n m: 'دقيقة',\n mm: '%d دقائق',\n h: 'ساعة',\n hh: '%d ساعات',\n d: 'يوم',\n dd: '%d أيام',\n M: 'شهر',\n MM: '%d أشهر',\n y: 'سنة',\n yy: '%d سنوات',\n },\n preparse: function (string) {\n return string\n .replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {\n return numberMap[match];\n })\n .replace(/،/g, ',');\n },\n postformat: function (string) {\n return string\n .replace(/\\d/g, function (match) {\n return symbolMap[match];\n })\n .replace(/,/g, '،');\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return arSa;\n\n})));\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","'use strict';\n\nvar isAbsoluteURL = require('../helpers/isAbsoluteURL');\nvar combineURLs = require('../helpers/combineURLs');\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","'use strict';\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar anObject = require('../internals/an-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar sameValue = require('../internals/same-value');\nvar regExpExec = require('../internals/regexp-exec-abstract');\n\n// @@search logic\nfixRegExpWellKnownSymbolLogic('search', 1, function (SEARCH, nativeSearch, maybeCallNative) {\n return [\n // `String.prototype.search` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.search\n function search(regexp) {\n var O = requireObjectCoercible(this);\n var searcher = regexp == undefined ? undefined : regexp[SEARCH];\n return searcher !== undefined ? searcher.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));\n },\n // `RegExp.prototype[@@search]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search\n function (regexp) {\n var res = maybeCallNative(nativeSearch, regexp, this);\n if (res.done) return res.value;\n\n var rx = anObject(regexp);\n var S = String(this);\n\n var previousLastIndex = rx.lastIndex;\n if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;\n var result = regExpExec(rx, S);\n if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;\n return result === null ? -1 : result.index;\n }\n ];\n});\n","//! moment.js locale configuration\n//! locale : Bulgarian [bg]\n//! author : Krasen Borisov : https://github.com/kraz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var bg = moment.defineLocale('bg', {\n months: 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split(\n '_'\n ),\n monthsShort: 'яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),\n weekdays: 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split(\n '_'\n ),\n weekdaysShort: 'нед_пон_вто_сря_чет_пет_съб'.split('_'),\n weekdaysMin: 'нд_пн_вт_ср_чт_пт_сб'.split('_'),\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'D.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY H:mm',\n LLLL: 'dddd, D MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[Днес в] LT',\n nextDay: '[Утре в] LT',\n nextWeek: 'dddd [в] LT',\n lastDay: '[Вчера в] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 6:\n return '[Миналата] dddd [в] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[Миналия] dddd [в] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'след %s',\n past: 'преди %s',\n s: 'няколко секунди',\n ss: '%d секунди',\n m: 'минута',\n mm: '%d минути',\n h: 'час',\n hh: '%d часа',\n d: 'ден',\n dd: '%d дена',\n w: 'седмица',\n ww: '%d седмици',\n M: 'месец',\n MM: '%d месеца',\n y: 'година',\n yy: '%d години',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ев|ен|ти|ви|ри|ми)/,\n ordinal: function (number) {\n var lastDigit = number % 10,\n last2Digits = number % 100;\n if (number === 0) {\n return number + '-ев';\n } else if (last2Digits === 0) {\n return number + '-ен';\n } else if (last2Digits > 10 && last2Digits < 20) {\n return number + '-ти';\n } else if (lastDigit === 1) {\n return number + '-ви';\n } else if (lastDigit === 2) {\n return number + '-ри';\n } else if (lastDigit === 7 || lastDigit === 8) {\n return number + '-ми';\n } else {\n return number + '-ти';\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return bg;\n\n})));\n","function _typeof(obj) {\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nfunction _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _toConsumableArray(arr) {\n return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread();\n}\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) {\n for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];\n\n return arr2;\n }\n}\n\nfunction _iterableToArray(iter) {\n if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === \"[object Arguments]\") return Array.from(iter);\n}\n\nfunction _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance\");\n}\n\nfunction processOptions(value) {\n var options;\n\n if (typeof value === 'function') {\n // Simple options (callback-only)\n options = {\n callback: value\n };\n } else {\n // Options object\n options = value;\n }\n\n return options;\n}\nfunction throttle(callback, delay) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n var timeout;\n var lastState;\n var currentArgs;\n\n var throttled = function throttled(state) {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n currentArgs = args;\n if (timeout && state === lastState) return;\n var leading = options.leading;\n\n if (typeof leading === 'function') {\n leading = leading(state, lastState);\n }\n\n if ((!timeout || state !== lastState) && leading) {\n callback.apply(void 0, [state].concat(_toConsumableArray(currentArgs)));\n }\n\n lastState = state;\n clearTimeout(timeout);\n timeout = setTimeout(function () {\n callback.apply(void 0, [state].concat(_toConsumableArray(currentArgs)));\n timeout = 0;\n }, delay);\n };\n\n throttled._clear = function () {\n clearTimeout(timeout);\n timeout = null;\n };\n\n return throttled;\n}\nfunction deepEqual(val1, val2) {\n if (val1 === val2) return true;\n\n if (_typeof(val1) === 'object') {\n for (var key in val1) {\n if (!deepEqual(val1[key], val2[key])) {\n return false;\n }\n }\n\n return true;\n }\n\n return false;\n}\n\nvar VisibilityState =\n/*#__PURE__*/\nfunction () {\n function VisibilityState(el, options, vnode) {\n _classCallCheck(this, VisibilityState);\n\n this.el = el;\n this.observer = null;\n this.frozen = false;\n this.createObserver(options, vnode);\n }\n\n _createClass(VisibilityState, [{\n key: \"createObserver\",\n value: function createObserver(options, vnode) {\n var _this = this;\n\n if (this.observer) {\n this.destroyObserver();\n }\n\n if (this.frozen) return;\n this.options = processOptions(options);\n\n this.callback = function (result, entry) {\n _this.options.callback(result, entry);\n\n if (result && _this.options.once) {\n _this.frozen = true;\n\n _this.destroyObserver();\n }\n }; // Throttle\n\n\n if (this.callback && this.options.throttle) {\n var _ref = this.options.throttleOptions || {},\n _leading = _ref.leading;\n\n this.callback = throttle(this.callback, this.options.throttle, {\n leading: function leading(state) {\n return _leading === 'both' || _leading === 'visible' && state || _leading === 'hidden' && !state;\n }\n });\n }\n\n this.oldResult = undefined;\n this.observer = new IntersectionObserver(function (entries) {\n var entry = entries[0];\n\n if (entries.length > 1) {\n var intersectingEntry = entries.find(function (e) {\n return e.isIntersecting;\n });\n\n if (intersectingEntry) {\n entry = intersectingEntry;\n }\n }\n\n if (_this.callback) {\n // Use isIntersecting if possible because browsers can report isIntersecting as true, but intersectionRatio as 0, when something very slowly enters the viewport.\n var result = entry.isIntersecting && entry.intersectionRatio >= _this.threshold;\n if (result === _this.oldResult) return;\n _this.oldResult = result;\n\n _this.callback(result, entry);\n }\n }, this.options.intersection); // Wait for the element to be in document\n\n vnode.context.$nextTick(function () {\n if (_this.observer) {\n _this.observer.observe(_this.el);\n }\n });\n }\n }, {\n key: \"destroyObserver\",\n value: function destroyObserver() {\n if (this.observer) {\n this.observer.disconnect();\n this.observer = null;\n } // Cancel throttled call\n\n\n if (this.callback && this.callback._clear) {\n this.callback._clear();\n\n this.callback = null;\n }\n }\n }, {\n key: \"threshold\",\n get: function get() {\n return this.options.intersection && this.options.intersection.threshold || 0;\n }\n }]);\n\n return VisibilityState;\n}();\n\nfunction bind(el, _ref2, vnode) {\n var value = _ref2.value;\n if (!value) return;\n\n if (typeof IntersectionObserver === 'undefined') {\n console.warn('[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill');\n } else {\n var state = new VisibilityState(el, value, vnode);\n el._vue_visibilityState = state;\n }\n}\n\nfunction update(el, _ref3, vnode) {\n var value = _ref3.value,\n oldValue = _ref3.oldValue;\n if (deepEqual(value, oldValue)) return;\n var state = el._vue_visibilityState;\n\n if (!value) {\n unbind(el);\n return;\n }\n\n if (state) {\n state.createObserver(value, vnode);\n } else {\n bind(el, {\n value: value\n }, vnode);\n }\n}\n\nfunction unbind(el) {\n var state = el._vue_visibilityState;\n\n if (state) {\n state.destroyObserver();\n delete el._vue_visibilityState;\n }\n}\n\nvar ObserveVisibility = {\n bind: bind,\n update: update,\n unbind: unbind\n};\n\nfunction install(Vue) {\n Vue.directive('observe-visibility', ObserveVisibility);\n /* -- Add more components here -- */\n}\n/* -- Plugin definition & Auto-install -- */\n\n/* You shouldn't have to modify the code below */\n// Plugin\n\nvar plugin = {\n // eslint-disable-next-line no-undef\n version: \"0.4.6\",\n install: install\n};\n\nvar GlobalVue = null;\n\nif (typeof window !== 'undefined') {\n GlobalVue = window.Vue;\n} else if (typeof global !== 'undefined') {\n GlobalVue = global.Vue;\n}\n\nif (GlobalVue) {\n GlobalVue.use(plugin);\n}\n\nexport default plugin;\nexport { ObserveVisibility, install };\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","//! moment.js locale configuration\n//! locale : Burmese [my]\n//! author : Squar team, mysquar.com\n//! author : David Rossellat : https://github.com/gholadr\n//! author : Tin Aung Lin : https://github.com/thanyawzinmin\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '၁',\n 2: '၂',\n 3: '၃',\n 4: '၄',\n 5: '၅',\n 6: '၆',\n 7: '၇',\n 8: '၈',\n 9: '၉',\n 0: '၀',\n },\n numberMap = {\n '၁': '1',\n '၂': '2',\n '၃': '3',\n '၄': '4',\n '၅': '5',\n '၆': '6',\n '၇': '7',\n '၈': '8',\n '၉': '9',\n '၀': '0',\n };\n\n var my = moment.defineLocale('my', {\n months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split(\n '_'\n ),\n monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),\n weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split(\n '_'\n ),\n weekdaysShort: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),\n weekdaysMin: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),\n\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[ယနေ.] LT [မှာ]',\n nextDay: '[မနက်ဖြန်] LT [မှာ]',\n nextWeek: 'dddd LT [မှာ]',\n lastDay: '[မနေ.က] LT [မှာ]',\n lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'လာမည့် %s မှာ',\n past: 'လွန်ခဲ့သော %s က',\n s: 'စက္ကန်.အနည်းငယ်',\n ss: '%d စက္ကန့်',\n m: 'တစ်မိနစ်',\n mm: '%d မိနစ်',\n h: 'တစ်နာရီ',\n hh: '%d နာရီ',\n d: 'တစ်ရက်',\n dd: '%d ရက်',\n M: 'တစ်လ',\n MM: '%d လ',\n y: 'တစ်နှစ်',\n yy: '%d နှစ်',\n },\n preparse: function (string) {\n return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return my;\n\n})));\n","/**\n * Module dependencies\n */\nvar colors = require('./colors')\n\nvar cssColors = colors.filter(function(color){\n return !! color.css\n})\n\nvar vgaColors = colors.filter(function(color){\n return !! color.vga\n})\n\n\n/**\n * Get color value for a certain name.\n * @param name {String}\n * @return {String} Hex color value\n * @api public\n */\n\nmodule.exports = function(name) {\n var color = module.exports.get(name)\n return color && color.value\n}\n\n/**\n * Get color object.\n *\n * @param name {String}\n * @return {Object} Color object\n * @api public\n */\n\nmodule.exports.get = function(name) {\n name = name || ''\n name = name.trim().toLowerCase()\n return colors.filter(function(color){\n return color.name.toLowerCase() === name\n }).pop()\n}\n\n/**\n * Get all color object.\n *\n * @return {Array}\n * @api public\n */\n\nmodule.exports.all = module.exports.get.all = function() {\n return colors\n}\n\n/**\n * Get color object compatible with CSS.\n *\n * @return {Array}\n * @api public\n */\n\nmodule.exports.get.css = function(name) {\n if (!name) return cssColors\n name = name || ''\n name = name.trim().toLowerCase()\n return cssColors.filter(function(color){\n return color.name.toLowerCase() === name\n }).pop()\n}\n\n\n\nmodule.exports.get.vga = function(name) {\n if (!name) return vgaColors\n name = name || ''\n name = name.trim().toLowerCase()\n return vgaColors.filter(function(color){\n return color.name.toLowerCase() === name\n }).pop()\n}\n","//! moment.js locale configuration\n//! locale : Galician [gl]\n//! author : Juan G. Hurtado : https://github.com/juanghurtado\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var gl = moment.defineLocale('gl', {\n months: 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split(\n '_'\n ),\n monthsShort: 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),\n weekdaysShort: 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),\n weekdaysMin: 'do_lu_ma_mé_xo_ve_sá'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D [de] MMMM [de] YYYY',\n LLL: 'D [de] MMMM [de] YYYY H:mm',\n LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',\n },\n calendar: {\n sameDay: function () {\n return '[hoxe ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';\n },\n nextDay: function () {\n return '[mañá ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';\n },\n nextWeek: function () {\n return 'dddd [' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT';\n },\n lastDay: function () {\n return '[onte ' + (this.hours() !== 1 ? 'á' : 'a') + '] LT';\n },\n lastWeek: function () {\n return (\n '[o] dddd [pasado ' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT'\n );\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: function (str) {\n if (str.indexOf('un') === 0) {\n return 'n' + str;\n }\n return 'en ' + str;\n },\n past: 'hai %s',\n s: 'uns segundos',\n ss: '%d segundos',\n m: 'un minuto',\n mm: '%d minutos',\n h: 'unha hora',\n hh: '%d horas',\n d: 'un día',\n dd: '%d días',\n M: 'un mes',\n MM: '%d meses',\n y: 'un ano',\n yy: '%d anos',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return gl;\n\n})));\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","//! moment.js locale configuration\n//! locale : Spanish [es]\n//! author : Julio Napurí : https://github.com/julionc\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(\n '_'\n ),\n monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),\n monthsParse = [\n /^ene/i,\n /^feb/i,\n /^mar/i,\n /^abr/i,\n /^may/i,\n /^jun/i,\n /^jul/i,\n /^ago/i,\n /^sep/i,\n /^oct/i,\n /^nov/i,\n /^dic/i,\n ],\n monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;\n\n var es = moment.defineLocale('es', {\n months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(\n '_'\n ),\n monthsShort: function (m, format) {\n if (!m) {\n return monthsShortDot;\n } else if (/-MMM-/.test(format)) {\n return monthsShort[m.month()];\n } else {\n return monthsShortDot[m.month()];\n }\n },\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,\n monthsShortStrictRegex: /^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),\n weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),\n weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D [de] MMMM [de] YYYY',\n LLL: 'D [de] MMMM [de] YYYY H:mm',\n LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',\n },\n calendar: {\n sameDay: function () {\n return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n nextDay: function () {\n return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n nextWeek: function () {\n return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n lastDay: function () {\n return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\n },\n lastWeek: function () {\n return (\n '[el] dddd [pasado a la' +\n (this.hours() !== 1 ? 's' : '') +\n '] LT'\n );\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'en %s',\n past: 'hace %s',\n s: 'unos segundos',\n ss: '%d segundos',\n m: 'un minuto',\n mm: '%d minutos',\n h: 'una hora',\n hh: '%d horas',\n d: 'un día',\n dd: '%d días',\n w: 'una semana',\n ww: '%d semanas',\n M: 'un mes',\n MM: '%d meses',\n y: 'un año',\n yy: '%d años',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n invalidDate: 'Fecha inválida',\n });\n\n return es;\n\n})));\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\n\n// `AdvanceStringIndex` abstract operation\n// https://tc39.github.io/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? charAt(S, index).length : 1);\n};\n","/*!\n * vue-router v3.4.9\n * (c) 2020 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (process.env.NODE_ENV !== 'production' && !condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction extend (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nfunction decode (str) {\n try {\n return decodeURIComponent(str)\n } catch (err) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n }\n }\n return str\n}\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n process.env.NODE_ENV !== 'production' && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n var value = extraQuery[key];\n parsedQuery[key] = Array.isArray(value)\n ? value.map(castQueryParamValue)\n : castQueryParamValue(value);\n }\n return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj\n ? Object.keys(obj)\n .map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n })\n .filter(function (x) { return x.length > 0; })\n .join('&')\n : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return (\n a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') &&\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query)\n )\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params)\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a).sort();\n var bKeys = Object.keys(b).sort();\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key, i) {\n var aVal = a[key];\n var bKey = bKeys[i];\n if (bKey !== key) { return false }\n var bVal = b[key];\n // query values can be null and undefined\n if (aVal == null || bVal == null) { return aVal === bVal }\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\nfunction handleRouteEntered (route) {\n for (var i = 0; i < route.matched.length; i++) {\n var record = route.matched[i];\n for (var name in record.instances) {\n var instance = record.instances[name];\n var cbs = record.enteredCbs[name];\n if (!instance || !cbs) { continue }\n delete record.enteredCbs[name];\n for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n }\n }\n }\n}\n\nvar View = {\n name: 'RouterView',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n // used by devtools to display a router-view badge\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n if (vnodeData.routerView) {\n depth++;\n }\n if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n var cachedData = cache[name];\n var cachedComponent = cachedData && cachedData.component;\n if (cachedComponent) {\n // #2301\n // pass props\n if (cachedData.configProps) {\n fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n }\n return h(cachedComponent, data, children)\n } else {\n // render previous empty view\n return h()\n }\n }\n\n var matched = route.matched[depth];\n var component = matched && matched.components[name];\n\n // render empty node if no matched route or no config component\n if (!matched || !component) {\n cache[name] = null;\n return h()\n }\n\n // cache component\n cache[name] = { component: component };\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // register instance in init hook\n // in case kept-alive component be actived when routes changed\n data.hook.init = function (vnode) {\n if (vnode.data.keepAlive &&\n vnode.componentInstance &&\n vnode.componentInstance !== matched.instances[name]\n ) {\n matched.instances[name] = vnode.componentInstance;\n }\n\n // if the route transition has already been confirmed then we weren't\n // able to call the cbs during confirmation as the component was not\n // registered yet, so we call it here.\n handleRouteEntered(route);\n };\n\n var configProps = matched.props && matched.props[name];\n // save route and configProps in cache\n if (configProps) {\n extend(cache[name], {\n route: route,\n configProps: configProps\n });\n fillPropsinData(component, data, route, configProps);\n }\n\n return h(component, data, children)\n }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n // resolve props\n var propsToPass = data.props = resolveProps(route, configProps);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n}\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/\\//g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n params = params || {};\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n return filler(params, { pretty: true })\n } catch (e) {\n if (process.env.NODE_ENV !== 'production') {\n // Fix #3072 no warn if `pathMatch` is string\n warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n } finally {\n // delete the 0 if it was added\n delete params[0];\n }\n}\n\n/* */\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next._normalized) {\n return next\n } else if (next.name) {\n next = extend({}, raw);\n var params = next.params;\n if (params && typeof params === 'object') {\n next.params = extend({}, params);\n }\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = extend({}, next);\n next._normalized = true;\n var params$1 = extend(extend({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params$1;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n } else if (process.env.NODE_ENV !== 'production') {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar Link = {\n name: 'RouterLink',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n exact: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n ariaCurrentValue: {\n type: String,\n default: 'page'\n },\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(\n this.to,\n current,\n this.append\n );\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback =\n globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n var exactActiveClassFallback =\n globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass =\n this.activeClass == null ? activeClassFallback : this.activeClass;\n var exactActiveClass =\n this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n\n var compareTarget = route.redirectedFrom\n ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget);\n classes[activeClass] = this.exact\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1.replace) {\n router.replace(location, noop);\n } else {\n router.push(location, noop);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) {\n on[e] = handler;\n });\n } else {\n on[this.event] = handler;\n }\n\n var data = { class: classes };\n\n var scopedSlot =\n !this.$scopedSlots.$hasNormal &&\n this.$scopedSlots.default &&\n this.$scopedSlots.default({\n href: href,\n route: route,\n navigate: handler,\n isActive: classes[activeClass],\n isExactActive: classes[exactActiveClass]\n });\n\n if (scopedSlot) {\n if (scopedSlot.length === 1) {\n return scopedSlot[0]\n } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n (\"RouterLink with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n );\n }\n return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n }\n }\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n } else {\n // find the first child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the is a static node\n a.isStatic = false;\n var aData = (a.data = extend({}, a.data));\n aData.on = aData.on || {};\n // transform existing events in both objects into arrays so we can push later\n for (var event in aData.on) {\n var handler$1 = aData.on[event];\n if (event in on) {\n aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n }\n }\n // append new listeners for router-link\n for (var event$1 in on) {\n if (event$1 in aData.on) {\n // on[event] is always a function\n aData.on[event$1].push(on[event$1]);\n } else {\n aData.on[event$1] = handler;\n }\n }\n\n var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n aAttrs.href = href;\n aAttrs['aria-current'] = ariaCurrentValue;\n } else {\n // doesn't have child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('RouterView', View);\n Vue.component('RouterLink', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n if (process.env.NODE_ENV === 'development') {\n // warn if routes do not include leading slashes\n var found = pathList\n // check for missing leading slash\n .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n if (found.length > 0) {\n var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (process.env.NODE_ENV !== 'production') {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(\n path || name\n )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n );\n\n warn(\n // eslint-disable-next-line no-control-regex\n !/[^\\u0000-\\u007F]+/.test(path),\n \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n \"your path is correctly encoded before passing it to the router. Use \" +\n \"encodeURI to encode static segments of your path.\"\n );\n }\n\n var pathToRegexpOptions =\n route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n instances: {},\n enteredCbs: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props:\n route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (process.env.NODE_ENV !== 'production') {\n if (\n route.name &&\n !route.redirect &&\n route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n ) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n for (var i = 0; i < aliases.length; ++i) {\n var alias = aliases[i];\n if (process.env.NODE_ENV !== 'production' && alias === path) {\n warn(\n false,\n (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n );\n // skip in dev to make it work\n continue\n }\n\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n }\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (\n path,\n pathToRegexpOptions\n) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (process.env.NODE_ENV !== 'production') {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(\n !keys[key.name],\n (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n );\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (\n path,\n parent,\n strict\n) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n if (key) {\n // Fix #1994: using * with props: true generates a param named 0\n params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nfunction genStateKey () {\n return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n return (_key = key)\n}\n\n/* */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Prevent browser scroll behavior on History popstate\n if ('scrollRestoration' in window.history) {\n window.history.scrollRestoration = 'manual';\n }\n // Fix for #1585 for Firefox\n // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n // window.location.protocol + '//' + window.location.host\n // location.host contains the port and location.hostname doesn't\n var protocolAndPath = window.location.protocol + '//' + window.location.host;\n var absolutePath = window.location.href.replace(protocolAndPath, '');\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, window.history.state);\n stateCopy.key = getStateKey();\n window.history.replaceState(stateCopy, '', absolutePath);\n window.addEventListener('popstate', handlePopState);\n return function () {\n window.removeEventListener('popstate', handlePopState);\n }\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior.call(\n router,\n to,\n from,\n isPop ? position : null\n );\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll\n .then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n })\n .catch(function (err) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction handlePopState (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n : document.querySelector(shouldScroll.selector);\n\n if (el) {\n var offset =\n shouldScroll.offset && typeof shouldScroll.offset === 'object'\n ? shouldScroll.offset\n : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n // $flow-disable-line\n if ('scrollBehavior' in document.documentElement.style) {\n window.scrollTo({\n left: position.x,\n top: position.y,\n // $flow-disable-line\n behavior: shouldScroll.behavior\n });\n } else {\n window.scrollTo(position.x, position.y);\n }\n }\n}\n\n/* */\n\nvar supportsPushState =\n inBrowser &&\n (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && typeof window.history.pushState === 'function'\n })();\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, history.state);\n stateCopy.key = getStateKey();\n history.replaceState(stateCopy, '', url);\n } else {\n history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n redirected: 2,\n aborted: 4,\n cancelled: 8,\n duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.redirected,\n (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n to\n )) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n var error = createRouterError(\n from,\n to,\n NavigationFailureType.duplicated,\n (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n );\n // backwards compatible with the first introduction of Errors\n error.name = 'NavigationDuplicated';\n return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.cancelled,\n (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n )\n}\n\nfunction createNavigationAbortedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.aborted,\n (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createRouterError (from, to, type, message) {\n var error = new Error(message);\n error._isRouter = true;\n error.from = from;\n error.to = to;\n error.type = type;\n\n return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n if (typeof to === 'string') { return to }\n if ('path' in to) { return to.path }\n var location = {};\n propertiesToLog.forEach(function (key) {\n if (key in to) { location[key] = to[key]; }\n });\n return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n return (\n isError(err) &&\n err._isRouter &&\n (errorType == null || err.type === errorType)\n )\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n process.env.NODE_ENV !== 'production' && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n location,\n onComplete,\n onAbort\n) {\n var this$1 = this;\n\n var route;\n // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n try {\n route = this.router.match(location, this.current);\n } catch (e) {\n this.errorCbs.forEach(function (cb) {\n cb(e);\n });\n // Exception should still be thrown\n throw e\n }\n var prev = this.current;\n this.confirmTransition(\n route,\n function () {\n this$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1.ensureURL();\n this$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n\n // fire ready cbs once\n if (!this$1.ready) {\n this$1.ready = true;\n this$1.readyCbs.forEach(function (cb) {\n cb(route);\n });\n }\n },\n function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1.ready) {\n // Initial redirection should not mark the history as ready yet\n // because it's triggered by the redirection instead\n // https://github.com/vuejs/vue-router/issues/3225\n // https://github.com/vuejs/vue-router/issues/3331\n if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n this$1.ready = true;\n this$1.readyErrorCbs.forEach(function (cb) {\n cb(err);\n });\n }\n }\n }\n );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1 = this;\n\n var current = this.current;\n this.pending = route;\n var abort = function (err) {\n // changed after adding errors with\n // https://github.com/vuejs/vue-router/pull/3047 before that change,\n // redirect and aborted navigation would produce an err == null\n if (!isNavigationFailure(err) && isError(err)) {\n if (this$1.errorCbs.length) {\n this$1.errorCbs.forEach(function (cb) {\n cb(err);\n });\n } else {\n warn(false, 'uncaught error during route navigation:');\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n var lastRouteIndex = route.matched.length - 1;\n var lastCurrentIndex = current.matched.length - 1;\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n lastRouteIndex === lastCurrentIndex &&\n route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n ) {\n this.ensureURL();\n return abort(createNavigationDuplicatedError(current, route))\n }\n\n var ref = resolveQueue(\n this.current.matched,\n route.matched\n );\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n var iterator = function (hook, next) {\n if (this$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n try {\n hook(route, current, function (to) {\n if (to === false) {\n // next(false) -> abort navigation, ensure current URL\n this$1.ensureURL(true);\n abort(createNavigationAbortedError(current, route));\n } else if (isError(to)) {\n this$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' &&\n (typeof to.path === 'string' || typeof to.name === 'string'))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort(createNavigationRedirectedError(current, route));\n if (typeof to === 'object' && to.replace) {\n this$1.replace(to);\n } else {\n this$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated);\n var queue = enterGuards.concat(this$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n this$1.pending = null;\n onComplete(route);\n if (this$1.router.app) {\n this$1.router.app.$nextTick(function () {\n handleRouteEntered(route);\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n this.current = route;\n this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n // clean up event listeners\n // https://github.com/vuejs/vue-router/issues/2341\n this.listeners.forEach(function (cleanupListener) {\n cleanupListener();\n });\n this.listeners = [];\n\n // reset current history route\n // https://github.com/vuejs/vue-router/issues/3294\n this.current = START;\n this.pending = null;\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated\n) {\n return extractGuards(\n activated,\n 'beforeRouteEnter',\n function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key)\n }\n )\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n if (typeof cb === 'function') {\n if (!match.enteredCbs[key]) {\n match.enteredCbs[key] = [];\n }\n match.enteredCbs[key].push(cb);\n }\n next(cb);\n })\n }\n}\n\n/* */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n function HTML5History (router, base) {\n History.call(this, router, base);\n\n this._startLocation = getLocation(this.base);\n }\n\n if ( History ) HTML5History.__proto__ = History;\n HTML5History.prototype = Object.create( History && History.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.setupListeners = function setupListeners () {\n var this$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1.base);\n if (this$1.current === START && location === this$1._startLocation) {\n return\n }\n\n this$1.transitionTo(location, function (route) {\n if (supportsScroll) {\n handleScroll(router, route, current, true);\n }\n });\n };\n window.addEventListener('popstate', handleRoutingEvent);\n this.listeners.push(function () {\n window.removeEventListener('popstate', handleRoutingEvent);\n });\n };\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n if (base && path.toLowerCase().indexOf(base.toLowerCase()) === 0) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n function HashHistory (router, base, fallback) {\n History.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History ) HashHistory.__proto__ = History;\n HashHistory.prototype = Object.create( History && History.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n };\n var eventType = supportsPushState ? 'popstate' : 'hashchange';\n window.addEventListener(\n eventType,\n handleRoutingEvent\n );\n this.listeners.push(function () {\n window.removeEventListener(eventType, handleRoutingEvent);\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(cleanPath(base + '/#' + location));\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n // empty path\n if (index < 0) { return '' }\n\n href = href.slice(index + 1);\n\n return href\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n function AbstractHistory (router, base) {\n History.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History ) AbstractHistory.__proto__ = History;\n AbstractHistory.prototype = Object.create( History && History.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index + 1).concat(route);\n this$1.index++;\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index).concat(route);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(\n route,\n function () {\n var prev = this$1.current;\n this$1.index = targetIndex;\n this$1.updateRoute(route);\n this$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n },\n function (err) {\n if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n this$1.index = targetIndex;\n }\n }\n );\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback =\n mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (process.env.NODE_ENV !== 'production') {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1 = this;\n\n process.env.NODE_ENV !== 'production' &&\n assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // set up app destroyed handler\n // https://github.com/vuejs/vue-router/issues/2639\n app.$once('hook:destroyed', function () {\n // clean out app from this.apps array once destroyed\n var index = this$1.apps.indexOf(app);\n if (index > -1) { this$1.apps.splice(index, 1); }\n // ensure we still have a main app or null if no apps\n // we do not release the router so it can be reused\n if (this$1.app === app) { this$1.app = this$1.apps[0] || null; }\n\n if (!this$1.app) { this$1.history.teardown(); }\n });\n\n // main app previously initialized\n // return as we don't need to set up new history listener\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History || history instanceof HashHistory) {\n var handleInitialScroll = function (routeOrError) {\n var from = history.current;\n var expectScroll = this$1.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll && 'fullPath' in routeOrError) {\n handleScroll(this$1, routeOrError, from, false);\n }\n };\n var setupListeners = function (routeOrError) {\n history.setupListeners();\n handleInitialScroll(routeOrError);\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupListeners,\n setupListeners\n );\n }\n\n history.listen(function (route) {\n this$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1.history.push(location, resolve, reject);\n })\n } else {\n this.history.push(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1.history.replace(location, resolve, reject);\n })\n } else {\n this.history.replace(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply(\n [],\n route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n })\n )\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n current = current || this.history.current;\n var location = normalizeLocation(to, current, append, this);\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\nVueRouter.install = install;\nVueRouter.version = '3.4.9';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nexport default VueRouter;\n","//! moment.js locale configuration\n//! locale : Greek [el]\n//! author : Aggelos Karalias : https://github.com/mehiel\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function isFunction(input) {\n return (\n (typeof Function !== 'undefined' && input instanceof Function) ||\n Object.prototype.toString.call(input) === '[object Function]'\n );\n }\n\n var el = moment.defineLocale('el', {\n monthsNominativeEl: 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(\n '_'\n ),\n monthsGenitiveEl: 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(\n '_'\n ),\n months: function (momentToFormat, format) {\n if (!momentToFormat) {\n return this._monthsNominativeEl;\n } else if (\n typeof format === 'string' &&\n /D/.test(format.substring(0, format.indexOf('MMMM')))\n ) {\n // if there is a day number before 'MMMM'\n return this._monthsGenitiveEl[momentToFormat.month()];\n } else {\n return this._monthsNominativeEl[momentToFormat.month()];\n }\n },\n monthsShort: 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),\n weekdays: 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split(\n '_'\n ),\n weekdaysShort: 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),\n weekdaysMin: 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),\n meridiem: function (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'μμ' : 'ΜΜ';\n } else {\n return isLower ? 'πμ' : 'ΠΜ';\n }\n },\n isPM: function (input) {\n return (input + '').toLowerCase()[0] === 'μ';\n },\n meridiemParse: /[ΠΜ]\\.?Μ?\\.?/i,\n longDateFormat: {\n LT: 'h:mm A',\n LTS: 'h:mm:ss A',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY h:mm A',\n LLLL: 'dddd, D MMMM YYYY h:mm A',\n },\n calendarEl: {\n sameDay: '[Σήμερα {}] LT',\n nextDay: '[Αύριο {}] LT',\n nextWeek: 'dddd [{}] LT',\n lastDay: '[Χθες {}] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 6:\n return '[το προηγούμενο] dddd [{}] LT';\n default:\n return '[την προηγούμενη] dddd [{}] LT';\n }\n },\n sameElse: 'L',\n },\n calendar: function (key, mom) {\n var output = this._calendarEl[key],\n hours = mom && mom.hours();\n if (isFunction(output)) {\n output = output.apply(mom);\n }\n return output.replace('{}', hours % 12 === 1 ? 'στη' : 'στις');\n },\n relativeTime: {\n future: 'σε %s',\n past: '%s πριν',\n s: 'λίγα δευτερόλεπτα',\n ss: '%d δευτερόλεπτα',\n m: 'ένα λεπτό',\n mm: '%d λεπτά',\n h: 'μία ώρα',\n hh: '%d ώρες',\n d: 'μία μέρα',\n dd: '%d μέρες',\n M: 'ένας μήνας',\n MM: '%d μήνες',\n y: 'ένας χρόνος',\n yy: '%d χρόνια',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}η/,\n ordinal: '%dη',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4st is the first week of the year.\n },\n });\n\n return el;\n\n})));\n","//! moment.js locale configuration\n//! locale : Polish [pl]\n//! author : Rafal Hirsz : https://github.com/evoL\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split(\n '_'\n ),\n monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split(\n '_'\n ),\n monthsParse = [\n /^sty/i,\n /^lut/i,\n /^mar/i,\n /^kwi/i,\n /^maj/i,\n /^cze/i,\n /^lip/i,\n /^sie/i,\n /^wrz/i,\n /^paź/i,\n /^lis/i,\n /^gru/i,\n ];\n function plural(n) {\n return n % 10 < 5 && n % 10 > 1 && ~~(n / 10) % 10 !== 1;\n }\n function translate(number, withoutSuffix, key) {\n var result = number + ' ';\n switch (key) {\n case 'ss':\n return result + (plural(number) ? 'sekundy' : 'sekund');\n case 'm':\n return withoutSuffix ? 'minuta' : 'minutę';\n case 'mm':\n return result + (plural(number) ? 'minuty' : 'minut');\n case 'h':\n return withoutSuffix ? 'godzina' : 'godzinę';\n case 'hh':\n return result + (plural(number) ? 'godziny' : 'godzin');\n case 'ww':\n return result + (plural(number) ? 'tygodnie' : 'tygodni');\n case 'MM':\n return result + (plural(number) ? 'miesiące' : 'miesięcy');\n case 'yy':\n return result + (plural(number) ? 'lata' : 'lat');\n }\n }\n\n var pl = moment.defineLocale('pl', {\n months: function (momentToFormat, format) {\n if (!momentToFormat) {\n return monthsNominative;\n } else if (/D MMMM/.test(format)) {\n return monthsSubjective[momentToFormat.month()];\n } else {\n return monthsNominative[momentToFormat.month()];\n }\n },\n monthsShort: 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n weekdays: 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split(\n '_'\n ),\n weekdaysShort: 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),\n weekdaysMin: 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Dziś o] LT',\n nextDay: '[Jutro o] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[W niedzielę o] LT';\n\n case 2:\n return '[We wtorek o] LT';\n\n case 3:\n return '[W środę o] LT';\n\n case 6:\n return '[W sobotę o] LT';\n\n default:\n return '[W] dddd [o] LT';\n }\n },\n lastDay: '[Wczoraj o] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[W zeszłą niedzielę o] LT';\n case 3:\n return '[W zeszłą środę o] LT';\n case 6:\n return '[W zeszłą sobotę o] LT';\n default:\n return '[W zeszły] dddd [o] LT';\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'za %s',\n past: '%s temu',\n s: 'kilka sekund',\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: '1 dzień',\n dd: '%d dni',\n w: 'tydzień',\n ww: translate,\n M: 'miesiąc',\n MM: translate,\n y: 'rok',\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return pl;\n\n})));\n","//! moment.js locale configuration\n//! locale : Persian [fa]\n//! author : Ebrahim Byagowi : https://github.com/ebraminio\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '۱',\n 2: '۲',\n 3: '۳',\n 4: '۴',\n 5: '۵',\n 6: '۶',\n 7: '۷',\n 8: '۸',\n 9: '۹',\n 0: '۰',\n },\n numberMap = {\n '۱': '1',\n '۲': '2',\n '۳': '3',\n '۴': '4',\n '۵': '5',\n '۶': '6',\n '۷': '7',\n '۸': '8',\n '۹': '9',\n '۰': '0',\n };\n\n var fa = moment.defineLocale('fa', {\n months: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(\n '_'\n ),\n monthsShort: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(\n '_'\n ),\n weekdays: 'یک\\u200cشنبه_دوشنبه_سه\\u200cشنبه_چهارشنبه_پنج\\u200cشنبه_جمعه_شنبه'.split(\n '_'\n ),\n weekdaysShort: 'یک\\u200cشنبه_دوشنبه_سه\\u200cشنبه_چهارشنبه_پنج\\u200cشنبه_جمعه_شنبه'.split(\n '_'\n ),\n weekdaysMin: 'ی_د_س_چ_پ_ج_ش'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n meridiemParse: /قبل از ظهر|بعد از ظهر/,\n isPM: function (input) {\n return /بعد از ظهر/.test(input);\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'قبل از ظهر';\n } else {\n return 'بعد از ظهر';\n }\n },\n calendar: {\n sameDay: '[امروز ساعت] LT',\n nextDay: '[فردا ساعت] LT',\n nextWeek: 'dddd [ساعت] LT',\n lastDay: '[دیروز ساعت] LT',\n lastWeek: 'dddd [پیش] [ساعت] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'در %s',\n past: '%s پیش',\n s: 'چند ثانیه',\n ss: '%d ثانیه',\n m: 'یک دقیقه',\n mm: '%d دقیقه',\n h: 'یک ساعت',\n hh: '%d ساعت',\n d: 'یک روز',\n dd: '%d روز',\n M: 'یک ماه',\n MM: '%d ماه',\n y: 'یک سال',\n yy: '%d سال',\n },\n preparse: function (string) {\n return string\n .replace(/[۰-۹]/g, function (match) {\n return numberMap[match];\n })\n .replace(/،/g, ',');\n },\n postformat: function (string) {\n return string\n .replace(/\\d/g, function (match) {\n return symbolMap[match];\n })\n .replace(/,/g, '،');\n },\n dayOfMonthOrdinalParse: /\\d{1,2}م/,\n ordinal: '%dم',\n week: {\n dow: 6, // Saturday is the first day of the week.\n doy: 12, // The week that contains Jan 12th is the first week of the year.\n },\n });\n\n return fa;\n\n})));\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","//! moment.js locale configuration\n//! locale : Arabic [ar]\n//! author : Abdel Said: https://github.com/abdelsaid\n//! author : Ahmed Elkhatib\n//! author : forabi https://github.com/forabi\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '١',\n 2: '٢',\n 3: '٣',\n 4: '٤',\n 5: '٥',\n 6: '٦',\n 7: '٧',\n 8: '٨',\n 9: '٩',\n 0: '٠',\n },\n numberMap = {\n '١': '1',\n '٢': '2',\n '٣': '3',\n '٤': '4',\n '٥': '5',\n '٦': '6',\n '٧': '7',\n '٨': '8',\n '٩': '9',\n '٠': '0',\n },\n pluralForm = function (n) {\n return n === 0\n ? 0\n : n === 1\n ? 1\n : n === 2\n ? 2\n : n % 100 >= 3 && n % 100 <= 10\n ? 3\n : n % 100 >= 11\n ? 4\n : 5;\n },\n plurals = {\n s: [\n 'أقل من ثانية',\n 'ثانية واحدة',\n ['ثانيتان', 'ثانيتين'],\n '%d ثوان',\n '%d ثانية',\n '%d ثانية',\n ],\n m: [\n 'أقل من دقيقة',\n 'دقيقة واحدة',\n ['دقيقتان', 'دقيقتين'],\n '%d دقائق',\n '%d دقيقة',\n '%d دقيقة',\n ],\n h: [\n 'أقل من ساعة',\n 'ساعة واحدة',\n ['ساعتان', 'ساعتين'],\n '%d ساعات',\n '%d ساعة',\n '%d ساعة',\n ],\n d: [\n 'أقل من يوم',\n 'يوم واحد',\n ['يومان', 'يومين'],\n '%d أيام',\n '%d يومًا',\n '%d يوم',\n ],\n M: [\n 'أقل من شهر',\n 'شهر واحد',\n ['شهران', 'شهرين'],\n '%d أشهر',\n '%d شهرا',\n '%d شهر',\n ],\n y: [\n 'أقل من عام',\n 'عام واحد',\n ['عامان', 'عامين'],\n '%d أعوام',\n '%d عامًا',\n '%d عام',\n ],\n },\n pluralize = function (u) {\n return function (number, withoutSuffix, string, isFuture) {\n var f = pluralForm(number),\n str = plurals[u][pluralForm(number)];\n if (f === 2) {\n str = str[withoutSuffix ? 0 : 1];\n }\n return str.replace(/%d/i, number);\n };\n },\n months = [\n 'يناير',\n 'فبراير',\n 'مارس',\n 'أبريل',\n 'مايو',\n 'يونيو',\n 'يوليو',\n 'أغسطس',\n 'سبتمبر',\n 'أكتوبر',\n 'نوفمبر',\n 'ديسمبر',\n ];\n\n var ar = moment.defineLocale('ar', {\n months: months,\n monthsShort: months,\n weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'D/\\u200FM/\\u200FYYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n meridiemParse: /ص|م/,\n isPM: function (input) {\n return 'م' === input;\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ص';\n } else {\n return 'م';\n }\n },\n calendar: {\n sameDay: '[اليوم عند الساعة] LT',\n nextDay: '[غدًا عند الساعة] LT',\n nextWeek: 'dddd [عند الساعة] LT',\n lastDay: '[أمس عند الساعة] LT',\n lastWeek: 'dddd [عند الساعة] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'بعد %s',\n past: 'منذ %s',\n s: pluralize('s'),\n ss: pluralize('s'),\n m: pluralize('m'),\n mm: pluralize('m'),\n h: pluralize('h'),\n hh: pluralize('h'),\n d: pluralize('d'),\n dd: pluralize('d'),\n M: pluralize('M'),\n MM: pluralize('M'),\n y: pluralize('y'),\n yy: pluralize('y'),\n },\n preparse: function (string) {\n return string\n .replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {\n return numberMap[match];\n })\n .replace(/،/g, ',');\n },\n postformat: function (string) {\n return string\n .replace(/\\d/g, function (match) {\n return symbolMap[match];\n })\n .replace(/,/g, '،');\n },\n week: {\n dow: 6, // Saturday is the first day of the week.\n doy: 12, // The week that contains Jan 12th is the first week of the year.\n },\n });\n\n return ar;\n\n})));\n","//! moment.js locale configuration\n//! locale : Bengali [bn]\n//! author : Kaushik Gandhi : https://github.com/kaushikgandhi\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '১',\n 2: '২',\n 3: '৩',\n 4: '৪',\n 5: '৫',\n 6: '৬',\n 7: '৭',\n 8: '৮',\n 9: '৯',\n 0: '০',\n },\n numberMap = {\n '১': '1',\n '২': '2',\n '৩': '3',\n '৪': '4',\n '৫': '5',\n '৬': '6',\n '৭': '7',\n '৮': '8',\n '৯': '9',\n '০': '0',\n };\n\n var bn = moment.defineLocale('bn', {\n months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(\n '_'\n ),\n monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(\n '_'\n ),\n weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(\n '_'\n ),\n weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),\n weekdaysMin: 'রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি'.split('_'),\n longDateFormat: {\n LT: 'A h:mm সময়',\n LTS: 'A h:mm:ss সময়',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, A h:mm সময়',\n LLLL: 'dddd, D MMMM YYYY, A h:mm সময়',\n },\n calendar: {\n sameDay: '[আজ] LT',\n nextDay: '[আগামীকাল] LT',\n nextWeek: 'dddd, LT',\n lastDay: '[গতকাল] LT',\n lastWeek: '[গত] dddd, LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s পরে',\n past: '%s আগে',\n s: 'কয়েক সেকেন্ড',\n ss: '%d সেকেন্ড',\n m: 'এক মিনিট',\n mm: '%d মিনিট',\n h: 'এক ঘন্টা',\n hh: '%d ঘন্টা',\n d: 'এক দিন',\n dd: '%d দিন',\n M: 'এক মাস',\n MM: '%d মাস',\n y: 'এক বছর',\n yy: '%d বছর',\n },\n preparse: function (string) {\n return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (\n (meridiem === 'রাত' && hour >= 4) ||\n (meridiem === 'দুপুর' && hour < 5) ||\n meridiem === 'বিকাল'\n ) {\n return hour + 12;\n } else {\n return hour;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'রাত';\n } else if (hour < 10) {\n return 'সকাল';\n } else if (hour < 17) {\n return 'দুপুর';\n } else if (hour < 20) {\n return 'বিকাল';\n } else {\n return 'রাত';\n }\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return bn;\n\n})));\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","//! moment.js locale configuration\n//! locale : Chinese (Taiwan) [zh-tw]\n//! author : Ben : https://github.com/ben-lin\n//! author : Chris Lam : https://github.com/hehachris\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var zhTw = moment.defineLocale('zh-tw', {\n months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(\n '_'\n ),\n monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(\n '_'\n ),\n weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),\n weekdaysShort: '週日_週一_週二_週三_週四_週五_週六'.split('_'),\n weekdaysMin: '日_一_二_三_四_五_六'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY/MM/DD',\n LL: 'YYYY年M月D日',\n LLL: 'YYYY年M月D日 HH:mm',\n LLLL: 'YYYY年M月D日dddd HH:mm',\n l: 'YYYY/M/D',\n ll: 'YYYY年M月D日',\n lll: 'YYYY年M月D日 HH:mm',\n llll: 'YYYY年M月D日dddd HH:mm',\n },\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {\n return hour;\n } else if (meridiem === '中午') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === '下午' || meridiem === '晚上') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return '凌晨';\n } else if (hm < 900) {\n return '早上';\n } else if (hm < 1130) {\n return '上午';\n } else if (hm < 1230) {\n return '中午';\n } else if (hm < 1800) {\n return '下午';\n } else {\n return '晚上';\n }\n },\n calendar: {\n sameDay: '[今天] LT',\n nextDay: '[明天] LT',\n nextWeek: '[下]dddd LT',\n lastDay: '[昨天] LT',\n lastWeek: '[上]dddd LT',\n sameElse: 'L',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(日|月|週)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n case 'M':\n return number + '月';\n case 'w':\n case 'W':\n return number + '週';\n default:\n return number;\n }\n },\n relativeTime: {\n future: '%s後',\n past: '%s前',\n s: '幾秒',\n ss: '%d 秒',\n m: '1 分鐘',\n mm: '%d 分鐘',\n h: '1 小時',\n hh: '%d 小時',\n d: '1 天',\n dd: '%d 天',\n M: '1 個月',\n MM: '%d 個月',\n y: '1 年',\n yy: '%d 年',\n },\n });\n\n return zhTw;\n\n})));\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","'use strict';\nvar regexpFlags = require('./regexp-flags');\nvar stickyHelpers = require('./regexp-sticky-helpers');\n\nvar nativeExec = RegExp.prototype.exec;\n// This always refers to the native implementation, because the\n// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,\n// which loads this file before patching the method.\nvar nativeReplace = String.prototype.replace;\n\nvar patchedExec = nativeExec;\n\nvar UPDATES_LAST_INDEX_WRONG = (function () {\n var re1 = /a/;\n var re2 = /b*/g;\n nativeExec.call(re1, 'a');\n nativeExec.call(re2, 'a');\n return re1.lastIndex !== 0 || re2.lastIndex !== 0;\n})();\n\nvar UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET;\n\n// nonparticipating capturing group, copied from es5-shim's String#split patch.\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\n\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y;\n\nif (PATCH) {\n patchedExec = function exec(str) {\n var re = this;\n var lastIndex, reCopy, match, i;\n var sticky = UNSUPPORTED_Y && re.sticky;\n var flags = regexpFlags.call(re);\n var source = re.source;\n var charsAdded = 0;\n var strCopy = str;\n\n if (sticky) {\n flags = flags.replace('y', '');\n if (flags.indexOf('g') === -1) {\n flags += 'g';\n }\n\n strCopy = String(str).slice(re.lastIndex);\n // Support anchored sticky behavior.\n if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\\n')) {\n source = '(?: ' + source + ')';\n strCopy = ' ' + strCopy;\n charsAdded++;\n }\n // ^(? + rx + ) is needed, in combination with some str slicing, to\n // simulate the 'y' flag.\n reCopy = new RegExp('^(?:' + source + ')', flags);\n }\n\n if (NPCG_INCLUDED) {\n reCopy = new RegExp('^' + source + '$(?!\\\\s)', flags);\n }\n if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;\n\n match = nativeExec.call(sticky ? reCopy : re, strCopy);\n\n if (sticky) {\n if (match) {\n match.input = match.input.slice(charsAdded);\n match[0] = match[0].slice(charsAdded);\n match.index = re.lastIndex;\n re.lastIndex += match[0].length;\n } else re.lastIndex = 0;\n } else if (UPDATES_LAST_INDEX_WRONG && match) {\n re.lastIndex = re.global ? match.index + match[0].length : lastIndex;\n }\n if (NPCG_INCLUDED && match && match.length > 1) {\n // Fix browsers whose `exec` methods don't consistently return `undefined`\n // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/\n nativeReplace.call(match[0], reCopy, function () {\n for (i = 1; i < arguments.length - 2; i++) {\n if (arguments[i] === undefined) match[i] = undefined;\n }\n });\n }\n\n return match;\n };\n}\n\nmodule.exports = patchedExec;\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","//! moment.js locale configuration\n//! locale : Russian [ru]\n//! author : Viktorminator : https://github.com/Viktorminator\n//! author : Menelion Elensúle : https://github.com/Oire\n//! author : Коренберг Марк : https://github.com/socketpair\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function plural(word, num) {\n var forms = word.split('_');\n return num % 10 === 1 && num % 100 !== 11\n ? forms[0]\n : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)\n ? forms[1]\n : forms[2];\n }\n function relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n ss: withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',\n mm: withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',\n hh: 'час_часа_часов',\n dd: 'день_дня_дней',\n ww: 'неделя_недели_недель',\n MM: 'месяц_месяца_месяцев',\n yy: 'год_года_лет',\n };\n if (key === 'm') {\n return withoutSuffix ? 'минута' : 'минуту';\n } else {\n return number + ' ' + plural(format[key], +number);\n }\n }\n var monthsParse = [\n /^янв/i,\n /^фев/i,\n /^мар/i,\n /^апр/i,\n /^ма[йя]/i,\n /^июн/i,\n /^июл/i,\n /^авг/i,\n /^сен/i,\n /^окт/i,\n /^ноя/i,\n /^дек/i,\n ];\n\n // http://new.gramota.ru/spravka/rules/139-prop : § 103\n // Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637\n // CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753\n var ru = moment.defineLocale('ru', {\n months: {\n format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split(\n '_'\n ),\n standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split(\n '_'\n ),\n },\n monthsShort: {\n // по CLDR именно \"июл.\" и \"июн.\", но какой смысл менять букву на точку?\n format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split(\n '_'\n ),\n standalone: 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split(\n '_'\n ),\n },\n weekdays: {\n standalone: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split(\n '_'\n ),\n format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split(\n '_'\n ),\n isFormat: /\\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?] ?dddd/,\n },\n weekdaysShort: 'вс_пн_вт_ср_чт_пт_сб'.split('_'),\n weekdaysMin: 'вс_пн_вт_ср_чт_пт_сб'.split('_'),\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n\n // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки\n monthsRegex: /^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,\n\n // копия предыдущего\n monthsShortRegex: /^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,\n\n // полные названия с падежами\n monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,\n\n // Выражение, которое соответствует только сокращённым формам\n monthsShortStrictRegex: /^(янв\\.|февр?\\.|мар[т.]|апр\\.|ма[яй]|июн[ья.]|июл[ья.]|авг\\.|сент?\\.|окт\\.|нояб?\\.|дек\\.)/i,\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY г.',\n LLL: 'D MMMM YYYY г., H:mm',\n LLLL: 'dddd, D MMMM YYYY г., H:mm',\n },\n calendar: {\n sameDay: '[Сегодня, в] LT',\n nextDay: '[Завтра, в] LT',\n lastDay: '[Вчера, в] LT',\n nextWeek: function (now) {\n if (now.week() !== this.week()) {\n switch (this.day()) {\n case 0:\n return '[В следующее] dddd, [в] LT';\n case 1:\n case 2:\n case 4:\n return '[В следующий] dddd, [в] LT';\n case 3:\n case 5:\n case 6:\n return '[В следующую] dddd, [в] LT';\n }\n } else {\n if (this.day() === 2) {\n return '[Во] dddd, [в] LT';\n } else {\n return '[В] dddd, [в] LT';\n }\n }\n },\n lastWeek: function (now) {\n if (now.week() !== this.week()) {\n switch (this.day()) {\n case 0:\n return '[В прошлое] dddd, [в] LT';\n case 1:\n case 2:\n case 4:\n return '[В прошлый] dddd, [в] LT';\n case 3:\n case 5:\n case 6:\n return '[В прошлую] dddd, [в] LT';\n }\n } else {\n if (this.day() === 2) {\n return '[Во] dddd, [в] LT';\n } else {\n return '[В] dddd, [в] LT';\n }\n }\n },\n sameElse: 'L',\n },\n relativeTime: {\n future: 'через %s',\n past: '%s назад',\n s: 'несколько секунд',\n ss: relativeTimeWithPlural,\n m: relativeTimeWithPlural,\n mm: relativeTimeWithPlural,\n h: 'час',\n hh: relativeTimeWithPlural,\n d: 'день',\n dd: relativeTimeWithPlural,\n w: 'неделя',\n ww: relativeTimeWithPlural,\n M: 'месяц',\n MM: relativeTimeWithPlural,\n y: 'год',\n yy: relativeTimeWithPlural,\n },\n meridiemParse: /ночи|утра|дня|вечера/i,\n isPM: function (input) {\n return /^(дня|вечера)$/.test(input);\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ночи';\n } else if (hour < 12) {\n return 'утра';\n } else if (hour < 17) {\n return 'дня';\n } else {\n return 'вечера';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(й|го|я)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'M':\n case 'd':\n case 'DDD':\n return number + '-й';\n case 'D':\n return number + '-го';\n case 'w':\n case 'W':\n return number + '-я';\n default:\n return number;\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return ru;\n\n})));\n","//! moment.js locale configuration\n//! locale : Mongolian [mn]\n//! author : Javkhlantugs Nyamdorj : https://github.com/javkhaanj7\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function translate(number, withoutSuffix, key, isFuture) {\n switch (key) {\n case 's':\n return withoutSuffix ? 'хэдхэн секунд' : 'хэдхэн секундын';\n case 'ss':\n return number + (withoutSuffix ? ' секунд' : ' секундын');\n case 'm':\n case 'mm':\n return number + (withoutSuffix ? ' минут' : ' минутын');\n case 'h':\n case 'hh':\n return number + (withoutSuffix ? ' цаг' : ' цагийн');\n case 'd':\n case 'dd':\n return number + (withoutSuffix ? ' өдөр' : ' өдрийн');\n case 'M':\n case 'MM':\n return number + (withoutSuffix ? ' сар' : ' сарын');\n case 'y':\n case 'yy':\n return number + (withoutSuffix ? ' жил' : ' жилийн');\n default:\n return number;\n }\n }\n\n var mn = moment.defineLocale('mn', {\n months: 'Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар'.split(\n '_'\n ),\n monthsShort: '1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба'.split('_'),\n weekdaysShort: 'Ням_Дав_Мяг_Лха_Пүр_Баа_Бям'.split('_'),\n weekdaysMin: 'Ня_Да_Мя_Лх_Пү_Ба_Бя'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'YYYY-MM-DD',\n LL: 'YYYY оны MMMMын D',\n LLL: 'YYYY оны MMMMын D HH:mm',\n LLLL: 'dddd, YYYY оны MMMMын D HH:mm',\n },\n meridiemParse: /ҮӨ|ҮХ/i,\n isPM: function (input) {\n return input === 'ҮХ';\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ҮӨ';\n } else {\n return 'ҮХ';\n }\n },\n calendar: {\n sameDay: '[Өнөөдөр] LT',\n nextDay: '[Маргааш] LT',\n nextWeek: '[Ирэх] dddd LT',\n lastDay: '[Өчигдөр] LT',\n lastWeek: '[Өнгөрсөн] dddd LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s дараа',\n past: '%s өмнө',\n s: translate,\n ss: translate,\n m: translate,\n mm: translate,\n h: translate,\n hh: translate,\n d: translate,\n dd: translate,\n M: translate,\n MM: translate,\n y: translate,\n yy: translate,\n },\n dayOfMonthOrdinalParse: /\\d{1,2} өдөр/,\n ordinal: function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + ' өдөр';\n default:\n return number;\n }\n },\n });\n\n return mn;\n\n})));\n","//! moment.js locale configuration\n//! locale : Kyrgyz [ky]\n//! author : Chyngyz Arystan uulu : https://github.com/chyngyz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var suffixes = {\n 0: '-чү',\n 1: '-чи',\n 2: '-чи',\n 3: '-чү',\n 4: '-чү',\n 5: '-чи',\n 6: '-чы',\n 7: '-чи',\n 8: '-чи',\n 9: '-чу',\n 10: '-чу',\n 20: '-чы',\n 30: '-чу',\n 40: '-чы',\n 50: '-чү',\n 60: '-чы',\n 70: '-чи',\n 80: '-чи',\n 90: '-чу',\n 100: '-чү',\n };\n\n var ky = moment.defineLocale('ky', {\n months: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split(\n '_'\n ),\n monthsShort: 'янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split(\n '_'\n ),\n weekdays: 'Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби'.split(\n '_'\n ),\n weekdaysShort: 'Жек_Дүй_Шей_Шар_Бей_Жум_Ише'.split('_'),\n weekdaysMin: 'Жк_Дй_Шй_Шр_Бй_Жм_Иш'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Бүгүн саат] LT',\n nextDay: '[Эртең саат] LT',\n nextWeek: 'dddd [саат] LT',\n lastDay: '[Кечээ саат] LT',\n lastWeek: '[Өткөн аптанын] dddd [күнү] [саат] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s ичинде',\n past: '%s мурун',\n s: 'бирнече секунд',\n ss: '%d секунд',\n m: 'бир мүнөт',\n mm: '%d мүнөт',\n h: 'бир саат',\n hh: '%d саат',\n d: 'бир күн',\n dd: '%d күн',\n M: 'бир ай',\n MM: '%d ай',\n y: 'бир жыл',\n yy: '%d жыл',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(чи|чы|чү|чу)/,\n ordinal: function (number) {\n var a = number % 10,\n b = number >= 100 ? 100 : null;\n return number + (suffixes[number] || suffixes[a] || suffixes[b]);\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return ky;\n\n})));\n","//! moment.js locale configuration\n//! locale : Bengali (Bangladesh) [bn-bd]\n//! author : Asraf Hossain Patoary : https://github.com/ashwoolford\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var symbolMap = {\n 1: '১',\n 2: '২',\n 3: '৩',\n 4: '৪',\n 5: '৫',\n 6: '৬',\n 7: '৭',\n 8: '৮',\n 9: '৯',\n 0: '০',\n },\n numberMap = {\n '১': '1',\n '২': '2',\n '৩': '3',\n '৪': '4',\n '৫': '5',\n '৬': '6',\n '৭': '7',\n '৮': '8',\n '৯': '9',\n '০': '0',\n };\n\n var bnBd = moment.defineLocale('bn-bd', {\n months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(\n '_'\n ),\n monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(\n '_'\n ),\n weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(\n '_'\n ),\n weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),\n weekdaysMin: 'রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি'.split('_'),\n longDateFormat: {\n LT: 'A h:mm সময়',\n LTS: 'A h:mm:ss সময়',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY, A h:mm সময়',\n LLLL: 'dddd, D MMMM YYYY, A h:mm সময়',\n },\n calendar: {\n sameDay: '[আজ] LT',\n nextDay: '[আগামীকাল] LT',\n nextWeek: 'dddd, LT',\n lastDay: '[গতকাল] LT',\n lastWeek: '[গত] dddd, LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: '%s পরে',\n past: '%s আগে',\n s: 'কয়েক সেকেন্ড',\n ss: '%d সেকেন্ড',\n m: 'এক মিনিট',\n mm: '%d মিনিট',\n h: 'এক ঘন্টা',\n hh: '%d ঘন্টা',\n d: 'এক দিন',\n dd: '%d দিন',\n M: 'এক মাস',\n MM: '%d মাস',\n y: 'এক বছর',\n yy: '%d বছর',\n },\n preparse: function (string) {\n return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n\n meridiemParse: /রাত|ভোর|সকাল|দুপুর|বিকাল|সন্ধ্যা|রাত/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'রাত') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'ভোর') {\n return hour;\n } else if (meridiem === 'সকাল') {\n return hour;\n } else if (meridiem === 'দুপুর') {\n return hour >= 3 ? hour : hour + 12;\n } else if (meridiem === 'বিকাল') {\n return hour + 12;\n } else if (meridiem === 'সন্ধ্যা') {\n return hour + 12;\n }\n },\n\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'রাত';\n } else if (hour < 6) {\n return 'ভোর';\n } else if (hour < 12) {\n return 'সকাল';\n } else if (hour < 15) {\n return 'দুপুর';\n } else if (hour < 18) {\n return 'বিকাল';\n } else if (hour < 20) {\n return 'সন্ধ্যা';\n } else {\n return 'রাত';\n }\n },\n week: {\n dow: 0, // Sunday is the first day of the week.\n doy: 6, // The week that contains Jan 6th is the first week of the year.\n },\n });\n\n return bnBd;\n\n})));\n","//! moment.js locale configuration\n//! locale : Romanian [ro]\n//! author : Vlad Gurdiga : https://github.com/gurdiga\n//! author : Valentin Agachi : https://github.com/avaly\n//! author : Emanuel Cepoi : https://github.com/cepem\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n function relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n ss: 'secunde',\n mm: 'minute',\n hh: 'ore',\n dd: 'zile',\n ww: 'săptămâni',\n MM: 'luni',\n yy: 'ani',\n },\n separator = ' ';\n if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) {\n separator = ' de ';\n }\n return number + separator + format[key];\n }\n\n var ro = moment.defineLocale('ro', {\n months: 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split(\n '_'\n ),\n monthsShort: 'ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split(\n '_'\n ),\n monthsParseExact: true,\n weekdays: 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),\n weekdaysShort: 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),\n weekdaysMin: 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'),\n longDateFormat: {\n LT: 'H:mm',\n LTS: 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY H:mm',\n LLLL: 'dddd, D MMMM YYYY H:mm',\n },\n calendar: {\n sameDay: '[azi la] LT',\n nextDay: '[mâine la] LT',\n nextWeek: 'dddd [la] LT',\n lastDay: '[ieri la] LT',\n lastWeek: '[fosta] dddd [la] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'peste %s',\n past: '%s în urmă',\n s: 'câteva secunde',\n ss: relativeTimeWithPlural,\n m: 'un minut',\n mm: relativeTimeWithPlural,\n h: 'o oră',\n hh: relativeTimeWithPlural,\n d: 'o zi',\n dd: relativeTimeWithPlural,\n w: 'o săptămână',\n ww: relativeTimeWithPlural,\n M: 'o lună',\n MM: relativeTimeWithPlural,\n y: 'un an',\n yy: relativeTimeWithPlural,\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 7, // The week that contains Jan 7th is the first week of the year.\n },\n });\n\n return ro;\n\n})));\n","//! moment.js locale configuration\n//! locale : Welsh [cy]\n//! author : Robert Allen : https://github.com/robgallen\n//! author : https://github.com/ryangreaves\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var cy = moment.defineLocale('cy', {\n months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split(\n '_'\n ),\n monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split(\n '_'\n ),\n weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split(\n '_'\n ),\n weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),\n weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),\n weekdaysParseExact: true,\n // time formats are the same as en-gb\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Heddiw am] LT',\n nextDay: '[Yfory am] LT',\n nextWeek: 'dddd [am] LT',\n lastDay: '[Ddoe am] LT',\n lastWeek: 'dddd [diwethaf am] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'mewn %s',\n past: '%s yn ôl',\n s: 'ychydig eiliadau',\n ss: '%d eiliad',\n m: 'munud',\n mm: '%d munud',\n h: 'awr',\n hh: '%d awr',\n d: 'diwrnod',\n dd: '%d diwrnod',\n M: 'mis',\n MM: '%d mis',\n y: 'blwyddyn',\n yy: '%d flynedd',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,\n // traditional ordinal numbers above 31 are not commonly used in colloquial Welsh\n ordinal: function (number) {\n var b = number,\n output = '',\n lookup = [\n '',\n 'af',\n 'il',\n 'ydd',\n 'ydd',\n 'ed',\n 'ed',\n 'ed',\n 'fed',\n 'fed',\n 'fed', // 1af to 10fed\n 'eg',\n 'fed',\n 'eg',\n 'eg',\n 'fed',\n 'eg',\n 'eg',\n 'fed',\n 'eg',\n 'fed', // 11eg to 20fed\n ];\n if (b > 20) {\n if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) {\n output = 'fed'; // not 30ain, 70ain or 90ain\n } else {\n output = 'ain';\n }\n } else if (b > 0) {\n output = lookup[b];\n }\n return number + output;\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return cy;\n\n})));\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","var anObject = require('../internals/an-object');\nvar iteratorClose = require('../internals/iterator-close');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n iteratorClose(iterator);\n throw error;\n }\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","//! moment.js locale configuration\n//! locale : French [fr]\n//! author : John Fischer : https://github.com/jfroffice\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n //! moment.js locale configuration\n\n var monthsStrictRegex = /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,\n monthsShortStrictRegex = /(janv\\.?|févr\\.?|mars|avr\\.?|mai|juin|juil\\.?|août|sept\\.?|oct\\.?|nov\\.?|déc\\.?)/i,\n monthsRegex = /(janv\\.?|févr\\.?|mars|avr\\.?|mai|juin|juil\\.?|août|sept\\.?|oct\\.?|nov\\.?|déc\\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,\n monthsParse = [\n /^janv/i,\n /^févr/i,\n /^mars/i,\n /^avr/i,\n /^mai/i,\n /^juin/i,\n /^juil/i,\n /^août/i,\n /^sept/i,\n /^oct/i,\n /^nov/i,\n /^déc/i,\n ];\n\n var fr = moment.defineLocale('fr', {\n months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(\n '_'\n ),\n monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(\n '_'\n ),\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: monthsStrictRegex,\n monthsShortStrictRegex: monthsShortStrictRegex,\n monthsParse: monthsParse,\n longMonthsParse: monthsParse,\n shortMonthsParse: monthsParse,\n weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),\n weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),\n weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),\n weekdaysParseExact: true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm',\n },\n calendar: {\n sameDay: '[Aujourd’hui à] LT',\n nextDay: '[Demain à] LT',\n nextWeek: 'dddd [à] LT',\n lastDay: '[Hier à] LT',\n lastWeek: 'dddd [dernier à] LT',\n sameElse: 'L',\n },\n relativeTime: {\n future: 'dans %s',\n past: 'il y a %s',\n s: 'quelques secondes',\n ss: '%d secondes',\n m: 'une minute',\n mm: '%d minutes',\n h: 'une heure',\n hh: '%d heures',\n d: 'un jour',\n dd: '%d jours',\n w: 'une semaine',\n ww: '%d semaines',\n M: 'un mois',\n MM: '%d mois',\n y: 'un an',\n yy: '%d ans',\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(er|)/,\n ordinal: function (number, period) {\n switch (period) {\n // TODO: Return 'e' when day of month > 1. Move this case inside\n // block for masculine words below.\n // See https://github.com/moment/moment/issues/3375\n case 'D':\n return number + (number === 1 ? 'er' : '');\n\n // Words with masculine grammatical gender: mois, trimestre, jour\n default:\n case 'M':\n case 'Q':\n case 'DDD':\n case 'd':\n return number + (number === 1 ? 'er' : 'e');\n\n // Words with feminine grammatical gender: semaine\n case 'w':\n case 'W':\n return number + (number === 1 ? 're' : 'e');\n }\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4, // The week that contains Jan 4th is the first week of the year.\n },\n });\n\n return fr;\n\n})));\n","'use strict';\n\nvar fails = require('./fails');\n\n// babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,\n// so we use an intermediate function.\nfunction RE(s, f) {\n return RegExp(s, f);\n}\n\nexports.UNSUPPORTED_Y = fails(function () {\n // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError\n var re = RE('a', 'y');\n re.lastIndex = 2;\n return re.exec('abcd') != null;\n});\n\nexports.BROKEN_CARET = fails(function () {\n // https://bugzilla.mozilla.org/show_bug.cgi?id=773687\n var re = RE('^r', 'gy');\n re.lastIndex = 2;\n return re.exec('str') != null;\n});\n","/*!\n * Vue.js v2.6.12\n * (c) 2014-2020 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// These helpers produce better VM code in JS engines due to their\n// explicitness and function inlining.\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive.\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value, e.g., [object Object].\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\nfunction isPromise (val) {\n return (\n isDef(val) &&\n typeof val.then === 'function' &&\n typeof val.catch === 'function'\n )\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if an attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array.\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether an object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it,\n * e.g., PhantomJS 1.x. Technically, we don't need this anymore\n * since native bind is now performant enough in most browsers.\n * But removing it would mean breaking code that was able to run in\n * PhantomJS 1.x, so this must be kept for backward compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/* eslint-disable no-unused-vars */\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/* eslint-enable no-unused-vars */\n\n/**\n * Return the same value.\n */\nvar identity = function (_) { return _; };\n\n/**\n * Generate a string containing static keys from compiler modules.\n */\nfunction genStaticKeys (modules) {\n return modules.reduce(function (keys, m) {\n return keys.concat(m.staticKeys || [])\n }, []).join(',')\n}\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (a instanceof Date && b instanceof Date) {\n return a.getTime() === b.getTime()\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\n/**\n * Return the first index at which a loosely equal value can be\n * found in the array (if value is a plain object, the array must\n * contain an object of the same shape), or -1 if it is not present.\n */\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured',\n 'serverPrefetch'\n];\n\n/* */\n\n\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Perform updates asynchronously. Intended to be used by Vue Test Utils\n * This will significantly reduce performance if set to false.\n */\n async: true,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n});\n\n/* */\n\n/**\n * unicode letters used for parsing html tags, component names and property paths.\n * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname\n * skipping \\u10000-\\uEFFFF due to it freezing up PhantomJS\n */\nvar unicodeRegExp = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = new RegExp((\"[^\" + (unicodeRegExp.source) + \".$_\\\\d]\"));\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\nvar isPhantomJS = UA && /phantomjs/.test(UA);\nvar isFF = UA && UA.match(/firefox\\/(\\d+)/);\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'] && global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = /*@__PURE__*/(function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return ''\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm;\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n // subs aren't sorted in scheduler if not running async\n // we need to sort them now to make sure they fire in correct\n // order\n subs.sort(function (a, b) { return a.id - b.id; });\n }\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// The current target watcher being evaluated.\n// This is globally unique because only one watcher\n// can be evaluated at a time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (target) {\n targetStack.push(target);\n Dep.target = target;\n}\n\nfunction popTarget () {\n targetStack.pop();\n Dep.target = targetStack[targetStack.length - 1];\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n // #7975\n // clone children array to avoid mutating original in case of cloning\n // a child.\n vnode.children && vnode.children.slice(),\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.asyncMeta = vnode.asyncMeta;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n if (hasProto) {\n protoAugment(value, arrayMethods);\n } else {\n copyAugment(value, arrayMethods, arrayKeys);\n }\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through all properties and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive$$1(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment a target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment a target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive$$1 (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n var setter = property && property.set;\n if ((!getter || setter) && arguments.length === 2) {\n val = obj[key];\n }\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n // #7981: for accessor properties without setter\n if (getter && !setter) { return }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive$$1(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n\n var keys = hasSymbol\n ? Reflect.ownKeys(from)\n : Object.keys(from);\n\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n // in case the object is already observed...\n if (key === '__ob__') { continue }\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (\n toVal !== fromVal &&\n isPlainObject(toVal) &&\n isPlainObject(fromVal)\n ) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n var res = childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal;\n return res\n ? dedupeHooks(res)\n : res\n}\n\nfunction dedupeHooks (hooks) {\n var res = [];\n for (var i = 0; i < hooks.length; i++) {\n if (res.indexOf(hooks[i]) === -1) {\n res.push(hooks[i]);\n }\n }\n return res\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!new RegExp((\"^[a-zA-Z][\\\\-\\\\.0-9_\" + (unicodeRegExp.source) + \"]*$\")).test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'should conform to valid custom element name in html5 specification.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def$$1 = dirs[key];\n if (typeof def$$1 === 'function') {\n dirs[key] = { bind: def$$1, update: def$$1 };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n\n // Apply extends and mixins on the child options,\n // but only if it is a raw options object that isn't\n // the result of another mergeOptions call.\n // Only merged options has the _base property.\n if (!child._base) {\n if (child.extends) {\n parent = mergeOptions(parent, child.extends, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n }\n\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\n\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false)\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n\n if (!valid) {\n warn(\n getInvalidTypeMessage(name, value, expectedTypes),\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\nfunction getInvalidTypeMessage (name, value, expectedTypes) {\n var message = \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', '));\n var expectedType = expectedTypes[0];\n var receivedType = toRawType(value);\n var expectedValue = styleValue(value, expectedType);\n var receivedValue = styleValue(value, receivedType);\n // check if we need to specify expected value\n if (expectedTypes.length === 1 &&\n isExplicable(expectedType) &&\n !isBoolean(expectedType, receivedType)) {\n message += \" with value \" + expectedValue;\n }\n message += \", got \" + receivedType + \" \";\n // check if we need to specify received value\n if (isExplicable(receivedType)) {\n message += \"with value \" + receivedValue + \".\";\n }\n return message\n}\n\nfunction styleValue (value, type) {\n if (type === 'String') {\n return (\"\\\"\" + value + \"\\\"\")\n } else if (type === 'Number') {\n return (\"\" + (Number(value)))\n } else {\n return (\"\" + value)\n }\n}\n\nfunction isExplicable (value) {\n var explicitTypes = ['string', 'number', 'boolean'];\n return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })\n}\n\nfunction isBoolean () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n // Deactivate deps tracking while processing error handler to avoid possible infinite rendering.\n // See: https://github.com/vuejs/vuex/issues/1505\n pushTarget();\n try {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n } finally {\n popTarget();\n }\n}\n\nfunction invokeWithErrorHandling (\n handler,\n context,\n args,\n vm,\n info\n) {\n var res;\n try {\n res = args ? handler.apply(context, args) : handler.call(context);\n if (res && !res._isVue && isPromise(res) && !res._handled) {\n res.catch(function (e) { return handleError(e, vm, info + \" (Promise/async)\"); });\n // issue #9511\n // avoid catch triggering multiple times when nested calls\n res._handled = true;\n }\n } catch (e) {\n handleError(e, vm, info);\n }\n return res\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n // if the user intentionally throws the original error in the handler,\n // do not log it twice\n if (e !== err) {\n logError(e, null, 'config.errorHandler');\n }\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n\nvar isUsingMicroTask = false;\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using microtasks.\n// In 2.5 we used (macro) tasks (in combination with microtasks).\n// However, it has subtle problems when state is changed right before repaint\n// (e.g. #6813, out-in transitions).\n// Also, using (macro) tasks in event handler would cause some weird behaviors\n// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).\n// So we now use microtasks everywhere, again.\n// A major drawback of this tradeoff is that there are some scenarios\n// where microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690, which have workarounds)\n// or even between bubbling of the same event (#6566).\nvar timerFunc;\n\n// The nextTick behavior leverages the microtask queue, which can be accessed\n// via either native Promise.then or MutationObserver.\n// MutationObserver has wider support, however it is seriously bugged in\n// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It\n// completely stops working after triggering a few times... so, if native\n// Promise is available, we will use it:\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n timerFunc = function () {\n p.then(flushCallbacks);\n // In problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n isUsingMicroTask = true;\n} else if (!isIE && typeof MutationObserver !== 'undefined' && (\n isNative(MutationObserver) ||\n // PhantomJS and iOS 7.x\n MutationObserver.toString() === '[object MutationObserverConstructor]'\n)) {\n // Use MutationObserver where native Promise is not available,\n // e.g. PhantomJS, iOS7, Android 4.4\n // (#6466 MutationObserver is unreliable in IE11)\n var counter = 1;\n var observer = new MutationObserver(flushCallbacks);\n var textNode = document.createTextNode(String(counter));\n observer.observe(textNode, {\n characterData: true\n });\n timerFunc = function () {\n counter = (counter + 1) % 2;\n textNode.data = String(counter);\n };\n isUsingMicroTask = true;\n} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n // Fallback to setImmediate.\n // Technically it leverages the (macro) task queue,\n // but it is still a better choice than setTimeout.\n timerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else {\n // Fallback to setTimeout.\n timerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n timerFunc();\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n // perf.clearMeasures(name)\n };\n }\n}\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var warnReservedPrefix = function (target, key) {\n warn(\n \"Property \\\"\" + key + \"\\\" must be accessed with \\\"$data.\" + key + \"\\\" because \" +\n 'properties starting with \"$\" or \"_\" are not proxied in the Vue instance to ' +\n 'prevent conflicts with Vue internals. ' +\n 'See: https://vuejs.org/v2/api/#data',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) ||\n (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));\n if (!has && !isAllowed) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns, vm) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n invokeWithErrorHandling(cloned[i], null, arguments$1, vm, \"v-on handler\");\n }\n } else {\n // return handler return value for single handlers\n return invokeWithErrorHandling(fns, null, arguments, vm, \"v-on handler\")\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n createOnceHandler,\n vm\n) {\n var name, def$$1, cur, old, event;\n for (name in on) {\n def$$1 = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur, vm);\n }\n if (isTrue(event.once)) {\n cur = on[name] = createOnceHandler(event.name, cur, event.capture);\n }\n add(event.name, cur, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g.