diff --git a/Writerside/.obsidian/plugins/copilot/main.js b/Writerside/.obsidian/plugins/copilot/main.js index 97db158..1c15d84 100644 --- a/Writerside/.obsidian/plugins/copilot/main.js +++ b/Writerside/.obsidian/plugins/copilot/main.js @@ -38338,8 +38338,8 @@ var require_Client2 = __commonJS({ this._options = _options; } /** - * The `chat` endpoint allows users to have conversations with a Large Language Model (LLM) from Cohere. Users can send messages as part of a persisted conversation using the `conversation_id` parameter, or they can pass in their own conversation history using the `chat_history` parameter. - * The endpoint features additional parameters such as [connectors](https://docs.cohere.com/docs/connectors) and `documents` that enable conversations enriched by external knowledge. We call this "Retrieval Augmented Generation", or "RAG". + * The `chat` endpoint allows users to have ai-chats with a Large Language Model (LLM) from Cohere. Users can send messages as part of a persisted conversation using the `conversation_id` parameter, or they can pass in their own conversation history using the `chat_history` parameter. + * The endpoint features additional parameters such as [connectors](https://docs.cohere.com/docs/connectors) and `documents` that enable ai-chats enriched by external knowledge. We call this "Retrieval Augmented Generation", or "RAG". * */ chatStream(request2, requestOptions) { @@ -38397,8 +38397,8 @@ var require_Client2 = __commonJS({ }); } /** - * The `chat` endpoint allows users to have conversations with a Large Language Model (LLM) from Cohere. Users can send messages as part of a persisted conversation using the `conversation_id` parameter, or they can pass in their own conversation history using the `chat_history` parameter. - * The endpoint features additional parameters such as [connectors](https://docs.cohere.com/docs/connectors) and `documents` that enable conversations enriched by external knowledge. We call this "Retrieval Augmented Generation", or "RAG". + * The `chat` endpoint allows users to have ai-chats with a Large Language Model (LLM) from Cohere. Users can send messages as part of a persisted conversation using the `conversation_id` parameter, or they can pass in their own conversation history using the `chat_history` parameter. + * The endpoint features additional parameters such as [connectors](https://docs.cohere.com/docs/connectors) and `documents` that enable ai-chats enriched by external knowledge. We call this "Retrieval Augmented Generation", or "RAG". * */ chat(request2, requestOptions) { @@ -72823,7 +72823,7 @@ var DEFAULT_SETTINGS = { ttlDays: 30, stream: true, embeddingProvider: OPENAI, - defaultSaveFolder: "copilot-conversations", + defaultSaveFolder: "copilot-ai-chats", debug: false }; @@ -86568,8 +86568,8 @@ var CopilotSettingTab = class extends import_obsidian10.PluginSettingTab { await this.plugin.saveSettings(); }); }); - new import_obsidian10.Setting(containerEl).setName("Default Conversation Folder Name").setDesc("The default folder name where chat conversations will be saved. Default is 'copilot-conversations'").addText( - (text4) => text4.setPlaceholder("copilot-conversations").setValue(this.plugin.settings.defaultSaveFolder).onChange(async (value) => { + new import_obsidian10.Setting(containerEl).setName("Default Conversation Folder Name").setDesc("The default folder name where chat ai-chats will be saved. Default is 'copilot-ai-chats'").addText( + (text4) => text4.setPlaceholder("copilot-ai-chats").setValue(this.plugin.settings.defaultSaveFolder).onChange(async (value) => { this.plugin.settings.defaultSaveFolder = value; await this.plugin.saveSettings(); }) diff --git a/Writerside/.obsidian/plugins/graph-analysis/main.js b/Writerside/.obsidian/plugins/graph-analysis/main.js index 581bdfe..8da39a8 100644 --- a/Writerside/.obsidian/plugins/graph-analysis/main.js +++ b/Writerside/.obsidian/plugins/graph-analysis/main.js @@ -23,825 +23,1637 @@ PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ function __awaiter(thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); + function adopt(value) { + return value instanceof P + ? value + : new P(function (resolve) { + resolve(value); + }); + } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { + try { + step(generator.next(value)); + } catch (e) { + reject(e); + } + } + function rejected(value) { + try { + step(generator['throw'](value)); + } catch (e) { + reject(e); + } + } + function step(result) { + result.done + ? resolve(result.value) + : adopt(result.value).then(fulfilled, rejected); + } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); } -var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; +var commonjsGlobal = + typeof globalThis !== 'undefined' + ? globalThis + : typeof window !== 'undefined' + ? window + : typeof global !== 'undefined' + ? global + : typeof self !== 'undefined' + ? self + : {}; function getAugmentedNamespace(n) { - if (n.__esModule) return n; - var a = Object.defineProperty({}, '__esModule', {value: true}); - Object.keys(n).forEach(function (k) { - var d = Object.getOwnPropertyDescriptor(n, k); - Object.defineProperty(a, k, d.get ? d : { - enumerable: true, - get: function () { - return n[k]; - } - }); - }); - return a; + if (n.__esModule) return n; + var a = Object.defineProperty({}, '__esModule', { value: true }); + Object.keys(n).forEach(function (k) { + var d = Object.getOwnPropertyDescriptor(n, k); + Object.defineProperty( + a, + k, + d.get + ? d + : { + enumerable: true, + get: function () { + return n[k]; + }, + }, + ); + }); + return a; } function createCommonjsModule(fn) { var module = { exports: {} }; - return fn(module, module.exports), module.exports; + return fn(module, module.exports), module.exports; } createCommonjsModule(function (module, exports) { -(function webpackUniversalModuleDefinition(root, factory) { - module.exports = factory(); -})(typeof self !== 'undefined' ? self : commonjsGlobal, function() { -return /******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { -/******/ configurable: false, -/******/ enumerable: true, -/******/ get: getter -/******/ }); -/******/ } -/******/ }; -/******/ -/******/ // define __esModule on exports -/******/ __webpack_require__.r = function(exports) { -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = 0); -/******/ }) -/************************************************************************/ -/******/ ({ - -/***/ "./dist/icons.json": -/*!*************************!*\ + (function webpackUniversalModuleDefinition(root, factory) { + module.exports = factory(); + })(typeof self !== 'undefined' ? self : commonjsGlobal, function () { + return /******/ (function (modules) { + // webpackBootstrap + /******/ // The module cache + /******/ var installedModules = {}; + /******/ + /******/ // The require function + /******/ function __webpack_require__(moduleId) { + /******/ + /******/ // Check if module is in cache + /******/ if (installedModules[moduleId]) { + /******/ return installedModules[moduleId].exports; + /******/ + } + /******/ // Create a new module (and put it into the cache) + /******/ var module = (installedModules[moduleId] = { + /******/ i: moduleId, + /******/ l: false, + /******/ exports: {}, + /******/ + }); + /******/ + /******/ // Execute the module function + /******/ modules[moduleId].call( + module.exports, + module, + module.exports, + __webpack_require__, + ); + /******/ + /******/ // Flag the module as loaded + /******/ module.l = true; + /******/ + /******/ // Return the exports of the module + /******/ return module.exports; + /******/ + } + /******/ + /******/ + /******/ // expose the modules object (__webpack_modules__) + /******/ __webpack_require__.m = modules; + /******/ + /******/ // expose the module cache + /******/ __webpack_require__.c = installedModules; + /******/ + /******/ // define getter function for harmony exports + /******/ __webpack_require__.d = function (exports, name, getter) { + /******/ if (!__webpack_require__.o(exports, name)) { + /******/ Object.defineProperty(exports, name, { + /******/ configurable: false, + /******/ enumerable: true, + /******/ get: getter, + /******/ + }); + /******/ + } + /******/ + }; + /******/ + /******/ // define __esModule on exports + /******/ __webpack_require__.r = function (exports) { + /******/ Object.defineProperty(exports, '__esModule', { value: true }); + /******/ + }; + /******/ + /******/ // getDefaultExport function for compatibility with non-harmony modules + /******/ __webpack_require__.n = function (module) { + /******/ var getter = + module && module.__esModule + ? /******/ function getDefault() { + return module['default']; + } + : /******/ function getModuleExports() { + return module; + }; + /******/ __webpack_require__.d(getter, 'a', getter); + /******/ return getter; + /******/ + }; + /******/ + /******/ // Object.prototype.hasOwnProperty.call + /******/ __webpack_require__.o = function (object, property) { + return Object.prototype.hasOwnProperty.call(object, property); + }; + /******/ + /******/ // __webpack_public_path__ + /******/ __webpack_require__.p = ''; + /******/ + /******/ + /******/ // Load entry module and return exports + /******/ return __webpack_require__((__webpack_require__.s = 0)); + /******/ + })( + /************************************************************************/ + /******/ { + /***/ './dist/icons.json': + /*!*************************!*\ !*** ./dist/icons.json ***! \*************************/ -/*! exports provided: activity, airplay, alert-circle, alert-octagon, alert-triangle, align-center, align-justify, align-left, align-right, anchor, aperture, archive, arrow-down-circle, arrow-down-left, arrow-down-right, arrow-down, arrow-left-circle, arrow-left, arrow-right-circle, arrow-right, arrow-up-circle, arrow-up-left, arrow-up-right, arrow-up, at-sign, award, bar-chart-2, bar-chart, battery-charging, battery, bell-off, bell, bluetooth, bold, book-open, book, bookmark, box, briefcase, calendar, camera-off, camera, cast, check-circle, check-square, check, chevron-down, chevron-left, chevron-right, chevron-up, chevrons-down, chevrons-left, chevrons-right, chevrons-up, chrome, circle, clipboard, clock, cloud-drizzle, cloud-lightning, cloud-off, cloud-rain, cloud-snow, cloud, code, codepen, codesandbox, coffee, columns, command, compass, copy, corner-down-left, corner-down-right, corner-left-down, corner-left-up, corner-right-down, corner-right-up, corner-up-left, corner-up-right, cpu, credit-card, crop, crosshair, database, delete, disc, divide-circle, divide-square, divide, dollar-sign, download-cloud, download, dribbble, droplet, edit-2, edit-3, edit, external-link, eye-off, eye, facebook, fast-forward, feather, figma, file-minus, file-plus, file-text, file, film, filter, flag, folder-minus, folder-plus, folder, framer, frown, gift, git-branch, git-commit, git-merge, git-pull-request, github, gitlab, globe, grid, hard-drive, hash, headphones, heart, help-circle, hexagon, home, image, inbox, info, instagram, italic, key, layers, layout, life-buoy, link-2, link, linkedin, list, loader, lock, log-in, log-out, mail, map-pin, map, maximize-2, maximize, meh, menu, message-circle, message-square, mic-off, mic, minimize-2, minimize, minus-circle, minus-square, minus, monitor, moon, more-horizontal, more-vertical, mouse-pointer, move, music, navigation-2, navigation, octagon, package, paperclip, pause-circle, pause, pen-tool, percent, phone-call, phone-forwarded, phone-incoming, phone-missed, phone-off, phone-outgoing, phone, pie-chart, play-circle, play, plus-circle, plus-square, plus, pocket, power, printer, radio, refresh-ccw, refresh-cw, repeat, rewind, rotate-ccw, rotate-cw, rss, save, scissors, search, send, server, settings, share-2, share, shield-off, shield, shopping-bag, shopping-cart, shuffle, sidebar, skip-back, skip-forward, slack, slash, sliders, smartphone, smile, speaker, square, star, stop-circle, sun, sunrise, sunset, tablet, tag, target, terminal, thermometer, thumbs-down, thumbs-up, toggle-left, toggle-right, tool, trash-2, trash, trello, trending-down, trending-up, triangle, truck, tv, twitch, twitter, type, umbrella, underline, unlock, upload-cloud, upload, user-check, user-minus, user-plus, user-x, user, users, video-off, video, voicemail, volume-1, volume-2, volume-x, volume, watch, wifi-off, wifi, wind, x-circle, x-octagon, x-square, x, youtube, zap-off, zap, zoom-in, zoom-out, default */ -/***/ (function(module) { - -module.exports = {"activity":"","airplay":"","alert-circle":"","alert-octagon":"","alert-triangle":"","align-center":"","align-justify":"","align-left":"","align-right":"","anchor":"","aperture":"","archive":"","arrow-down-circle":"","arrow-down-left":"","arrow-down-right":"","arrow-down":"","arrow-left-circle":"","arrow-left":"","arrow-right-circle":"","arrow-right":"","arrow-up-circle":"","arrow-up-left":"","arrow-up-right":"","arrow-up":"","at-sign":"","award":"","bar-chart-2":"","bar-chart":"","battery-charging":"","battery":"","bell-off":"","bell":"","bluetooth":"","bold":"","book-open":"","book":"","bookmark":"","box":"","briefcase":"","calendar":"","camera-off":"","camera":"","cast":"","check-circle":"","check-square":"","check":"","chevron-down":"","chevron-left":"","chevron-right":"","chevron-up":"","chevrons-down":"","chevrons-left":"","chevrons-right":"","chevrons-up":"","chrome":"","circle":"","clipboard":"","clock":"","cloud-drizzle":"","cloud-lightning":"","cloud-off":"","cloud-rain":"","cloud-snow":"","cloud":"","code":"","codepen":"","codesandbox":"","coffee":"","columns":"","command":"","compass":"","copy":"","corner-down-left":"","corner-down-right":"","corner-left-down":"","corner-left-up":"","corner-right-down":"","corner-right-up":"","corner-up-left":"","corner-up-right":"","cpu":"","credit-card":"","crop":"","crosshair":"","database":"","delete":"","disc":"","divide-circle":"","divide-square":"","divide":"","dollar-sign":"","download-cloud":"","download":"","dribbble":"","droplet":"","edit-2":"","edit-3":"","edit":"","external-link":"","eye-off":"","eye":"","facebook":"","fast-forward":"","feather":"","figma":"","file-minus":"","file-plus":"","file-text":"","file":"","film":"","filter":"","flag":"","folder-minus":"","folder-plus":"","folder":"","framer":"","frown":"","gift":"","git-branch":"","git-commit":"","git-merge":"","git-pull-request":"","github":"","gitlab":"","globe":"","grid":"","hard-drive":"","hash":"","headphones":"","heart":"","help-circle":"","hexagon":"","home":"","image":"","inbox":"","info":"","instagram":"","italic":"","key":"","layers":"","layout":"","life-buoy":"","link-2":"","link":"","linkedin":"","list":"","loader":"","lock":"","log-in":"","log-out":"","mail":"","map-pin":"","map":"","maximize-2":"","maximize":"","meh":"","menu":"","message-circle":"","message-square":"","mic-off":"","mic":"","minimize-2":"","minimize":"","minus-circle":"","minus-square":"","minus":"","monitor":"","moon":"","more-horizontal":"","more-vertical":"","mouse-pointer":"","move":"","music":"","navigation-2":"","navigation":"","octagon":"","package":"","paperclip":"","pause-circle":"","pause":"","pen-tool":"","percent":"","phone-call":"","phone-forwarded":"","phone-incoming":"","phone-missed":"","phone-off":"","phone-outgoing":"","phone":"","pie-chart":"","play-circle":"","play":"","plus-circle":"","plus-square":"","plus":"","pocket":"","power":"","printer":"","radio":"","refresh-ccw":"","refresh-cw":"","repeat":"","rewind":"","rotate-ccw":"","rotate-cw":"","rss":"","save":"","scissors":"","search":"","send":"","server":"","settings":"","share-2":"","share":"","shield-off":"","shield":"","shopping-bag":"","shopping-cart":"","shuffle":"","sidebar":"","skip-back":"","skip-forward":"","slack":"","slash":"","sliders":"","smartphone":"","smile":"","speaker":"","square":"","star":"","stop-circle":"","sun":"","sunrise":"","sunset":"","tablet":"","tag":"","target":"","terminal":"","thermometer":"","thumbs-down":"","thumbs-up":"","toggle-left":"","toggle-right":"","tool":"","trash-2":"","trash":"","trello":"","trending-down":"","trending-up":"","triangle":"","truck":"","tv":"","twitch":"","twitter":"","type":"","umbrella":"","underline":"","unlock":"","upload-cloud":"","upload":"","user-check":"","user-minus":"","user-plus":"","user-x":"","user":"","users":"","video-off":"","video":"","voicemail":"","volume-1":"","volume-2":"","volume-x":"","volume":"","watch":"","wifi-off":"","wifi":"","wind":"","x-circle":"","x-octagon":"","x-square":"","x":"","youtube":"","zap-off":"","zap":"","zoom-in":"","zoom-out":""}; - -/***/ }), + /*! exports provided: activity, airplay, alert-circle, alert-octagon, alert-triangle, align-center, align-justify, align-left, align-right, anchor, aperture, archive, arrow-down-circle, arrow-down-left, arrow-down-right, arrow-down, arrow-left-circle, arrow-left, arrow-right-circle, arrow-right, arrow-up-circle, arrow-up-left, arrow-up-right, arrow-up, at-sign, award, bar-chart-2, bar-chart, battery-charging, battery, bell-off, bell, bluetooth, bold, book-open, book, bookmark, box, briefcase, calendar, camera-off, camera, cast, check-circle, check-square, check, chevron-down, chevron-left, chevron-right, chevron-up, chevrons-down, chevrons-left, chevrons-right, chevrons-up, chrome, circle, clipboard, clock, cloud-drizzle, cloud-lightning, cloud-off, cloud-rain, cloud-snow, cloud, code, codepen, codesandbox, coffee, columns, command, compass, copy, corner-down-left, corner-down-right, corner-left-down, corner-left-up, corner-right-down, corner-right-up, corner-up-left, corner-up-right, cpu, credit-card, crop, crosshair, database, delete, disc, divide-circle, divide-square, divide, dollar-sign, download-cloud, download, dribbble, droplet, edit-2, edit-3, edit, external-link, eye-off, eye, facebook, fast-forward, feather, figma, file-minus, file-plus, file-text, file, film, filter, flag, folder-minus, folder-plus, folder, framer, frown, gift, git-branch, git-commit, git-merge, git-pull-request, github, gitlab, globe, grid, hard-drive, hash, headphones, heart, help-circle, hexagon, home, image, inbox, info, instagram, italic, key, layers, layout, life-buoy, link-2, link, linkedin, list, loader, lock, log-in, log-out, mail, map-pin, map, maximize-2, maximize, meh, menu, message-circle, message-square, mic-off, mic, minimize-2, minimize, minus-circle, minus-square, minus, monitor, moon, more-horizontal, more-vertical, mouse-pointer, move, music, navigation-2, navigation, octagon, package, paperclip, pause-circle, pause, pen-tool, percent, phone-call, phone-forwarded, phone-incoming, phone-missed, phone-off, phone-outgoing, phone, pie-chart, play-circle, play, plus-circle, plus-square, plus, pocket, power, printer, radio, refresh-ccw, refresh-cw, repeat, rewind, rotate-ccw, rotate-cw, rss, save, scissors, search, send, server, settings, share-2, share, shield-off, shield, shopping-bag, shopping-cart, shuffle, sidebar, skip-back, skip-forward, slack, slash, sliders, smartphone, smile, speaker, square, star, stop-circle, sun, sunrise, sunset, tablet, tag, target, terminal, thermometer, thumbs-down, thumbs-up, toggle-left, toggle-right, tool, trash-2, trash, trello, trending-down, trending-up, triangle, truck, tv, twitch, twitter, type, umbrella, underline, unlock, upload-cloud, upload, user-check, user-minus, user-plus, user-x, user, users, video-off, video, voicemail, volume-1, volume-2, volume-x, volume, watch, wifi-off, wifi, wind, x-circle, x-octagon, x-square, x, youtube, zap-off, zap, zoom-in, zoom-out, default */ + /***/ function (module) { + module.exports = { + activity: + '', + airplay: + '', + 'alert-circle': + '', + 'alert-octagon': + '', + 'alert-triangle': + '', + 'align-center': + '', + 'align-justify': + '', + 'align-left': + '', + 'align-right': + '', + anchor: + '', + aperture: + '', + archive: + '', + 'arrow-down-circle': + '', + 'arrow-down-left': + '', + 'arrow-down-right': + '', + 'arrow-down': + '', + 'arrow-left-circle': + '', + 'arrow-left': + '', + 'arrow-right-circle': + '', + 'arrow-right': + '', + 'arrow-up-circle': + '', + 'arrow-up-left': + '', + 'arrow-up-right': + '', + 'arrow-up': + '', + 'at-sign': + '', + award: + '', + 'bar-chart-2': + '', + 'bar-chart': + '', + 'battery-charging': + '', + battery: + '', + 'bell-off': + '', + bell: '', + bluetooth: + '', + bold: '', + 'book-open': + '', + book: '', + bookmark: + '', + box: '', + briefcase: + '', + calendar: + '', + 'camera-off': + '', + camera: + '', + cast: '', + 'check-circle': + '', + 'check-square': + '', + check: '', + 'chevron-down': '', + 'chevron-left': '', + 'chevron-right': '', + 'chevron-up': '', + 'chevrons-down': + '', + 'chevrons-left': + '', + 'chevrons-right': + '', + 'chevrons-up': + '', + chrome: + '', + circle: '', + clipboard: + '', + clock: + '', + 'cloud-drizzle': + '', + 'cloud-lightning': + '', + 'cloud-off': + '', + 'cloud-rain': + '', + 'cloud-snow': + '', + cloud: + '', + code: '', + codepen: + '', + codesandbox: + '', + coffee: + '', + columns: + '', + command: + '', + compass: + '', + copy: '', + 'corner-down-left': + '', + 'corner-down-right': + '', + 'corner-left-down': + '', + 'corner-left-up': + '', + 'corner-right-down': + '', + 'corner-right-up': + '', + 'corner-up-left': + '', + 'corner-up-right': + '', + cpu: '', + 'credit-card': + '', + crop: '', + crosshair: + '', + database: + '', + delete: + '', + disc: '', + 'divide-circle': + '', + 'divide-square': + '', + divide: + '', + 'dollar-sign': + '', + 'download-cloud': + '', + download: + '', + dribbble: + '', + droplet: + '', + 'edit-2': + '', + 'edit-3': + '', + edit: '', + 'external-link': + '', + 'eye-off': + '', + eye: '', + facebook: + '', + 'fast-forward': + '', + feather: + '', + figma: + '', + 'file-minus': + '', + 'file-plus': + '', + 'file-text': + '', + file: '', + film: '', + filter: + '', + flag: '', + 'folder-minus': + '', + 'folder-plus': + '', + folder: + '', + framer: + '', + frown: + '', + gift: '', + 'git-branch': + '', + 'git-commit': + '', + 'git-merge': + '', + 'git-pull-request': + '', + github: + '', + gitlab: + '', + globe: + '', + grid: '', + 'hard-drive': + '', + hash: '', + headphones: + '', + heart: + '', + 'help-circle': + '', + hexagon: + '', + home: '', + image: + '', + inbox: + '', + info: '', + instagram: + '', + italic: + '', + key: '', + layers: + '', + layout: + '', + 'life-buoy': + '', + 'link-2': + '', + link: '', + linkedin: + '', + list: '', + loader: + '', + lock: '', + 'log-in': + '', + 'log-out': + '', + mail: '', + 'map-pin': + '', + map: '', + 'maximize-2': + '', + maximize: + '', + meh: '', + menu: '', + 'message-circle': + '', + 'message-square': + '', + 'mic-off': + '', + mic: '', + 'minimize-2': + '', + minimize: + '', + 'minus-circle': + '', + 'minus-square': + '', + minus: '', + monitor: + '', + moon: '', + 'more-horizontal': + '', + 'more-vertical': + '', + 'mouse-pointer': + '', + move: '', + music: + '', + 'navigation-2': + '', + navigation: + '', + octagon: + '', + package: + '', + paperclip: + '', + 'pause-circle': + '', + pause: + '', + 'pen-tool': + '', + percent: + '', + 'phone-call': + '', + 'phone-forwarded': + '', + 'phone-incoming': + '', + 'phone-missed': + '', + 'phone-off': + '', + 'phone-outgoing': + '', + phone: + '', + 'pie-chart': + '', + 'play-circle': + '', + play: '', + 'plus-circle': + '', + 'plus-square': + '', + plus: '', + pocket: + '', + power: + '', + printer: + '', + radio: + '', + 'refresh-ccw': + '', + 'refresh-cw': + '', + repeat: + '', + rewind: + '', + 'rotate-ccw': + '', + 'rotate-cw': + '', + rss: '', + save: '', + scissors: + '', + search: + '', + send: '', + server: + '', + settings: + '', + 'share-2': + '', + share: + '', + 'shield-off': + '', + shield: + '', + 'shopping-bag': + '', + 'shopping-cart': + '', + shuffle: + '', + sidebar: + '', + 'skip-back': + '', + 'skip-forward': + '', + slack: + '', + slash: + '', + sliders: + '', + smartphone: + '', + smile: + '', + speaker: + '', + square: + '', + star: '', + 'stop-circle': + '', + sun: '', + sunrise: + '', + sunset: + '', + tablet: + '', + tag: '', + target: + '', + terminal: + '', + thermometer: + '', + 'thumbs-down': + '', + 'thumbs-up': + '', + 'toggle-left': + '', + 'toggle-right': + '', + tool: '', + 'trash-2': + '', + trash: + '', + trello: + '', + 'trending-down': + '', + 'trending-up': + '', + triangle: + '', + truck: + '', + tv: '', + twitch: + '', + twitter: + '', + type: '', + umbrella: + '', + underline: + '', + unlock: + '', + 'upload-cloud': + '', + upload: + '', + 'user-check': + '', + 'user-minus': + '', + 'user-plus': + '', + 'user-x': + '', + user: '', + users: + '', + 'video-off': + '', + video: + '', + voicemail: + '', + 'volume-1': + '', + 'volume-2': + '', + 'volume-x': + '', + volume: + '', + watch: + '', + 'wifi-off': + '', + wifi: '', + wind: '', + 'x-circle': + '', + 'x-octagon': + '', + 'x-square': + '', + x: '', + youtube: + '', + 'zap-off': + '', + zap: '', + 'zoom-in': + '', + 'zoom-out': + '', + }; + + /***/ + }, -/***/ "./node_modules/classnames/dedupe.js": -/*!*******************************************!*\ + /***/ './node_modules/classnames/dedupe.js': + /*!*******************************************!*\ !*** ./node_modules/classnames/dedupe.js ***! \*******************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__; /*! Copyright (c) 2016 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames */ -/* global define */ - -(function () { - - var classNames = (function () { - // don't inherit from Object so we can skip hasOwnProperty check later - // http://stackoverflow.com/questions/15518328/creating-js-object-with-object-createnull#answer-21079232 - function StorageObject() {} - StorageObject.prototype = Object.create(null); - - function _parseArray (resultSet, array) { - var length = array.length; - - for (var i = 0; i < length; ++i) { - _parse(resultSet, array[i]); - } - } - - var hasOwn = {}.hasOwnProperty; - - function _parseNumber (resultSet, num) { - resultSet[num] = true; - } - - function _parseObject (resultSet, object) { - for (var k in object) { - if (hasOwn.call(object, k)) { - // set value to false instead of deleting it to avoid changing object structure - // https://www.smashingmagazine.com/2012/11/writing-fast-memory-efficient-javascript/#de-referencing-misconceptions - resultSet[k] = !!object[k]; - } - } - } - - var SPACE = /\s+/; - function _parseString (resultSet, str) { - var array = str.split(SPACE); - var length = array.length; - - for (var i = 0; i < length; ++i) { - resultSet[array[i]] = true; - } - } - - function _parse (resultSet, arg) { - if (!arg) return; - var argType = typeof arg; - - // 'foo bar' - if (argType === 'string') { - _parseString(resultSet, arg); - - // ['foo', 'bar', ...] - } else if (Array.isArray(arg)) { - _parseArray(resultSet, arg); - - // { 'foo': true, ... } - } else if (argType === 'object') { - _parseObject(resultSet, arg); - - // '130' - } else if (argType === 'number') { - _parseNumber(resultSet, arg); - } - } - - function _classNames () { - // don't leak arguments - // https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#32-leaking-arguments - var len = arguments.length; - var args = Array(len); - for (var i = 0; i < len; i++) { - args[i] = arguments[i]; - } - - var classSet = new StorageObject(); - _parseArray(classSet, args); - - var list = []; - - for (var k in classSet) { - if (classSet[k]) { - list.push(k); - } - } - - return list.join(' '); - } - - return _classNames; - })(); - - if (typeof module !== 'undefined' && module.exports) { - module.exports = classNames; - } else { - // register as 'classnames', consistent with npm package name - !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () { - return classNames; - }).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), - __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - } -}()); - - -/***/ }), - -/***/ "./node_modules/core-js/es/array/from.js": -/*!***********************************************!*\ - !*** ./node_modules/core-js/es/array/from.js ***! - \***********************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { + /* global define */ -__webpack_require__(/*! ../../modules/es.string.iterator */ "./node_modules/core-js/modules/es.string.iterator.js"); -__webpack_require__(/*! ../../modules/es.array.from */ "./node_modules/core-js/modules/es.array.from.js"); -var path = __webpack_require__(/*! ../../internals/path */ "./node_modules/core-js/internals/path.js"); + (function () { + var classNames = (function () { + // don't inherit from Object so we can skip hasOwnProperty check later + // http://stackoverflow.com/questions/15518328/creating-js-object-with-object-createnull#answer-21079232 + function StorageObject() {} + StorageObject.prototype = Object.create(null); -module.exports = path.Array.from; + function _parseArray(resultSet, array) { + var length = array.length; + for (var i = 0; i < length; ++i) { + _parse(resultSet, array[i]); + } + } -/***/ }), + var hasOwn = {}.hasOwnProperty; -/***/ "./node_modules/core-js/internals/a-function.js": -/*!******************************************************!*\ - !*** ./node_modules/core-js/internals/a-function.js ***! - \******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { + function _parseNumber(resultSet, num) { + resultSet[num] = true; + } -module.exports = function (it) { - if (typeof it != 'function') { - throw TypeError(String(it) + ' is not a function'); - } return it; -}; + function _parseObject(resultSet, object) { + for (var k in object) { + if (hasOwn.call(object, k)) { + // set value to false instead of deleting it to avoid changing object structure + // https://www.smashingmagazine.com/2012/11/writing-fast-memory-efficient-javascript/#de-referencing-misconceptions + resultSet[k] = !!object[k]; + } + } + } + var SPACE = /\s+/; + function _parseString(resultSet, str) { + var array = str.split(SPACE); + var length = array.length; + + for (var i = 0; i < length; ++i) { + resultSet[array[i]] = true; + } + } -/***/ }), + function _parse(resultSet, arg) { + if (!arg) return; + var argType = typeof arg; -/***/ "./node_modules/core-js/internals/an-object.js": -/*!*****************************************************!*\ - !*** ./node_modules/core-js/internals/an-object.js ***! - \*****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { + // 'foo bar' + if (argType === 'string') { + _parseString(resultSet, arg); -var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js"); + // ['foo', 'bar', ...] + } else if (Array.isArray(arg)) { + _parseArray(resultSet, arg); -module.exports = function (it) { - if (!isObject(it)) { - throw TypeError(String(it) + ' is not an object'); - } return it; -}; + // { 'foo': true, ... } + } else if (argType === 'object') { + _parseObject(resultSet, arg); + + // '130' + } else if (argType === 'number') { + _parseNumber(resultSet, arg); + } + } + + function _classNames() { + // don't leak arguments + // https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#32-leaking-arguments + var len = arguments.length; + var args = Array(len); + for (var i = 0; i < len; i++) { + args[i] = arguments[i]; + } + + var classSet = new StorageObject(); + _parseArray(classSet, args); + + var list = []; + + for (var k in classSet) { + if (classSet[k]) { + list.push(k); + } + } + + return list.join(' '); + } + + return _classNames; + })(); + + if (typeof module !== 'undefined' && module.exports) { + module.exports = classNames; + } else { + // register as 'classnames', consistent with npm package name + !((__WEBPACK_AMD_DEFINE_ARRAY__ = []), + (__WEBPACK_AMD_DEFINE_RESULT__ = function () { + return classNames; + }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)), + __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && + (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } + })(); + /***/ + }, + + /***/ './node_modules/core-js/es/array/from.js': + /*!***********************************************!*\ + !*** ./node_modules/core-js/es/array/from.js ***! + \***********************************************/ + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + __webpack_require__( + /*! ../../modules/es.string.iterator */ './node_modules/core-js/modules/es.string.iterator.js', + ); + __webpack_require__( + /*! ../../modules/es.array.from */ './node_modules/core-js/modules/es.array.from.js', + ); + var path = __webpack_require__( + /*! ../../internals/path */ './node_modules/core-js/internals/path.js', + ); + + module.exports = path.Array.from; + + /***/ + }, + + /***/ './node_modules/core-js/internals/a-function.js': + /*!******************************************************!*\ + !*** ./node_modules/core-js/internals/a-function.js ***! + \******************************************************/ + /*! no static exports found */ + /***/ function (module, exports) { + module.exports = function (it) { + if (typeof it != 'function') { + throw TypeError(String(it) + ' is not a function'); + } + return it; + }; + + /***/ + }, -/***/ }), + /***/ './node_modules/core-js/internals/an-object.js': + /*!*****************************************************!*\ + !*** ./node_modules/core-js/internals/an-object.js ***! + \*****************************************************/ + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var isObject = __webpack_require__( + /*! ../internals/is-object */ './node_modules/core-js/internals/is-object.js', + ); + + module.exports = function (it) { + if (!isObject(it)) { + throw TypeError(String(it) + ' is not an object'); + } + return it; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/array-from.js": -/*!******************************************************!*\ + /***/ './node_modules/core-js/internals/array-from.js': + /*!******************************************************!*\ !*** ./node_modules/core-js/internals/array-from.js ***! \******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var bind = __webpack_require__(/*! ../internals/bind-context */ "./node_modules/core-js/internals/bind-context.js"); -var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js"); -var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "./node_modules/core-js/internals/call-with-safe-iteration-closing.js"); -var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "./node_modules/core-js/internals/is-array-iterator-method.js"); -var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js"); -var createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/core-js/internals/create-property.js"); -var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "./node_modules/core-js/internals/get-iterator-method.js"); - -// `Array.from` method -// https://tc39.github.io/ecma262/#sec-array.from -module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) { - var O = toObject(arrayLike); - var C = typeof this == 'function' ? this : Array; - var argumentsLength = arguments.length; - var mapfn = argumentsLength > 1 ? arguments[1] : undefined; - var mapping = mapfn !== undefined; - var index = 0; - var iteratorMethod = getIteratorMethod(O); - var length, result, step, iterator; - if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2); - // if the target is not iterable or it's an array with the default iterator - use a simple case - if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) { - iterator = iteratorMethod.call(O); - result = new C(); - for (;!(step = iterator.next()).done; index++) { - createProperty(result, index, mapping - ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) - : step.value - ); - } - } else { - length = toLength(O.length); - result = new C(length); - for (;length > index; index++) { - createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]); - } - } - result.length = index; - return result; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var bind = __webpack_require__( + /*! ../internals/bind-context */ './node_modules/core-js/internals/bind-context.js', + ); + var toObject = __webpack_require__( + /*! ../internals/to-object */ './node_modules/core-js/internals/to-object.js', + ); + var callWithSafeIterationClosing = __webpack_require__( + /*! ../internals/call-with-safe-iteration-closing */ './node_modules/core-js/internals/call-with-safe-iteration-closing.js', + ); + var isArrayIteratorMethod = __webpack_require__( + /*! ../internals/is-array-iterator-method */ './node_modules/core-js/internals/is-array-iterator-method.js', + ); + var toLength = __webpack_require__( + /*! ../internals/to-length */ './node_modules/core-js/internals/to-length.js', + ); + var createProperty = __webpack_require__( + /*! ../internals/create-property */ './node_modules/core-js/internals/create-property.js', + ); + var getIteratorMethod = __webpack_require__( + /*! ../internals/get-iterator-method */ './node_modules/core-js/internals/get-iterator-method.js', + ); + // `Array.from` method + // https://tc39.github.io/ecma262/#sec-array.from + module.exports = function from( + arrayLike /* , mapfn = undefined, thisArg = undefined */, + ) { + var O = toObject(arrayLike); + var C = typeof this == 'function' ? this : Array; + var argumentsLength = arguments.length; + var mapfn = argumentsLength > 1 ? arguments[1] : undefined; + var mapping = mapfn !== undefined; + var index = 0; + var iteratorMethod = getIteratorMethod(O); + var length, result, step, iterator; + if (mapping) + mapfn = bind( + mapfn, + argumentsLength > 2 ? arguments[2] : undefined, + 2, + ); + // if the target is not iterable or it's an array with the default iterator - use a simple case + if ( + iteratorMethod != undefined && + !(C == Array && isArrayIteratorMethod(iteratorMethod)) + ) { + iterator = iteratorMethod.call(O); + result = new C(); + for (; !(step = iterator.next()).done; index++) { + createProperty( + result, + index, + mapping + ? callWithSafeIterationClosing( + iterator, + mapfn, + [step.value, index], + true, + ) + : step.value, + ); + } + } else { + length = toLength(O.length); + result = new C(length); + for (; length > index; index++) { + createProperty( + result, + index, + mapping ? mapfn(O[index], index) : O[index], + ); + } + } + result.length = index; + return result; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/array-includes.js": -/*!**********************************************************!*\ + /***/ './node_modules/core-js/internals/array-includes.js': + /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/array-includes.js ***! \**********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js"); -var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js"); -var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/core-js/internals/to-absolute-index.js"); - -// `Array.prototype.{ indexOf, includes }` methods implementation -// false -> Array#indexOf -// https://tc39.github.io/ecma262/#sec-array.prototype.indexof -// true -> Array#includes -// https://tc39.github.io/ecma262/#sec-array.prototype.includes -module.exports = function (IS_INCLUDES) { - return function ($this, el, fromIndex) { - var O = toIndexedObject($this); - var length = toLength(O.length); - var index = toAbsoluteIndex(fromIndex, length); - var value; - // Array#includes uses SameValueZero equality algorithm - // eslint-disable-next-line no-self-compare - if (IS_INCLUDES && el != el) while (length > index) { - value = O[index++]; - // eslint-disable-next-line no-self-compare - if (value != value) return true; - // Array#indexOf ignores holes, Array#includes - not - } else for (;length > index; index++) if (IS_INCLUDES || index in O) { - if (O[index] === el) return IS_INCLUDES || index || 0; - } return !IS_INCLUDES && -1; - }; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var toIndexedObject = __webpack_require__( + /*! ../internals/to-indexed-object */ './node_modules/core-js/internals/to-indexed-object.js', + ); + var toLength = __webpack_require__( + /*! ../internals/to-length */ './node_modules/core-js/internals/to-length.js', + ); + var toAbsoluteIndex = __webpack_require__( + /*! ../internals/to-absolute-index */ './node_modules/core-js/internals/to-absolute-index.js', + ); + // `Array.prototype.{ indexOf, includes }` methods implementation + // false -> Array#indexOf + // https://tc39.github.io/ecma262/#sec-array.prototype.indexof + // true -> Array#includes + // https://tc39.github.io/ecma262/#sec-array.prototype.includes + module.exports = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + var O = toIndexedObject($this); + var length = toLength(O.length); + var index = toAbsoluteIndex(fromIndex, length); + var value; + // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare + if (IS_INCLUDES && el != el) + while (length > index) { + value = O[index++]; + // eslint-disable-next-line no-self-compare + if (value != value) return true; + // Array#indexOf ignores holes, Array#includes - not + } + else + for (; length > index; index++) + if (IS_INCLUDES || index in O) { + if (O[index] === el) return IS_INCLUDES || index || 0; + } + return !IS_INCLUDES && -1; + }; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/bind-context.js": -/*!********************************************************!*\ + /***/ './node_modules/core-js/internals/bind-context.js': + /*!********************************************************!*\ !*** ./node_modules/core-js/internals/bind-context.js ***! \********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/core-js/internals/a-function.js"); - -// optional / simple context binding -module.exports = function (fn, that, length) { - aFunction(fn); - if (that === undefined) return fn; - switch (length) { - case 0: return function () { - return fn.call(that); - }; - case 1: return function (a) { - return fn.call(that, a); - }; - case 2: return function (a, b) { - return fn.call(that, a, b); - }; - case 3: return function (a, b, c) { - return fn.call(that, a, b, c); - }; - } - return function (/* ...args */) { - return fn.apply(that, arguments); - }; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var aFunction = __webpack_require__( + /*! ../internals/a-function */ './node_modules/core-js/internals/a-function.js', + ); + // optional / simple context binding + module.exports = function (fn, that, length) { + aFunction(fn); + if (that === undefined) return fn; + switch (length) { + case 0: + return function () { + return fn.call(that); + }; + case 1: + return function (a) { + return fn.call(that, a); + }; + case 2: + return function (a, b) { + return fn.call(that, a, b); + }; + case 3: + return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + return function (/* ...args */) { + return fn.apply(that, arguments); + }; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/call-with-safe-iteration-closing.js": -/*!****************************************************************************!*\ + /***/ './node_modules/core-js/internals/call-with-safe-iteration-closing.js': + /*!****************************************************************************!*\ !*** ./node_modules/core-js/internals/call-with-safe-iteration-closing.js ***! \****************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js"); - -// call something on iterator step with safe closing on error -module.exports = function (iterator, fn, value, ENTRIES) { - try { - return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); - // 7.4.6 IteratorClose(iterator, completion) - } catch (error) { - var returnMethod = iterator['return']; - if (returnMethod !== undefined) anObject(returnMethod.call(iterator)); - throw error; - } -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var anObject = __webpack_require__( + /*! ../internals/an-object */ './node_modules/core-js/internals/an-object.js', + ); + // call something on iterator step with safe closing on error + module.exports = function (iterator, fn, value, ENTRIES) { + try { + return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); + // 7.4.6 IteratorClose(iterator, completion) + } catch (error) { + var returnMethod = iterator['return']; + if (returnMethod !== undefined) + anObject(returnMethod.call(iterator)); + throw error; + } + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/check-correctness-of-iteration.js": -/*!**************************************************************************!*\ + /***/ './node_modules/core-js/internals/check-correctness-of-iteration.js': + /*!**************************************************************************!*\ !*** ./node_modules/core-js/internals/check-correctness-of-iteration.js ***! \**************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js"); - -var ITERATOR = wellKnownSymbol('iterator'); -var SAFE_CLOSING = false; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var wellKnownSymbol = __webpack_require__( + /*! ../internals/well-known-symbol */ './node_modules/core-js/internals/well-known-symbol.js', + ); -try { - var called = 0; - var iteratorWithReturn = { - next: function () { - return { done: !!called++ }; - }, - 'return': function () { - SAFE_CLOSING = true; - } - }; - iteratorWithReturn[ITERATOR] = function () { - return this; - }; - // eslint-disable-next-line no-throw-literal - Array.from(iteratorWithReturn, function () { throw 2; }); -} catch (error) { /* empty */ } + var ITERATOR = wellKnownSymbol('iterator'); + var SAFE_CLOSING = false; -module.exports = function (exec, SKIP_CLOSING) { - if (!SKIP_CLOSING && !SAFE_CLOSING) return false; - var ITERATION_SUPPORT = false; - try { - var object = {}; - object[ITERATOR] = function () { - return { - next: function () { - return { done: ITERATION_SUPPORT = true }; - } - }; - }; - exec(object); - } catch (error) { /* empty */ } - return ITERATION_SUPPORT; -}; + try { + var called = 0; + var iteratorWithReturn = { + next: function () { + return { done: !!called++ }; + }, + return: function () { + SAFE_CLOSING = true; + }, + }; + iteratorWithReturn[ITERATOR] = function () { + return this; + }; + // eslint-disable-next-line no-throw-literal + Array.from(iteratorWithReturn, function () { + throw 2; + }); + } catch (error) { + /* empty */ + } + module.exports = function (exec, SKIP_CLOSING) { + if (!SKIP_CLOSING && !SAFE_CLOSING) return false; + var ITERATION_SUPPORT = false; + try { + var object = {}; + object[ITERATOR] = function () { + return { + next: function () { + return { done: (ITERATION_SUPPORT = true) }; + }, + }; + }; + exec(object); + } catch (error) { + /* empty */ + } + return ITERATION_SUPPORT; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/classof-raw.js": -/*!*******************************************************!*\ + /***/ './node_modules/core-js/internals/classof-raw.js': + /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/classof-raw.js ***! \*******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -var toString = {}.toString; - -module.exports = function (it) { - return toString.call(it).slice(8, -1); -}; + /*! no static exports found */ + /***/ function (module, exports) { + var toString = {}.toString; + module.exports = function (it) { + return toString.call(it).slice(8, -1); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/classof.js": -/*!***************************************************!*\ + /***/ './node_modules/core-js/internals/classof.js': + /*!***************************************************!*\ !*** ./node_modules/core-js/internals/classof.js ***! \***************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js"); -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js"); - -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); -// ES3 wrong here -var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; - -// fallback for IE11 Script Access Denied error -var tryGet = function (it, key) { - try { - return it[key]; - } catch (error) { /* empty */ } -}; - -// getting tag from ES6+ `Object.prototype.toString` -module.exports = function (it) { - var O, tag, result; - return it === undefined ? 'Undefined' : it === null ? 'Null' - // @@toStringTag case - : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag - // builtinTag case - : CORRECT_ARGUMENTS ? classofRaw(O) - // ES3 arguments fallback - : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result; -}; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var classofRaw = __webpack_require__( + /*! ../internals/classof-raw */ './node_modules/core-js/internals/classof-raw.js', + ); + var wellKnownSymbol = __webpack_require__( + /*! ../internals/well-known-symbol */ './node_modules/core-js/internals/well-known-symbol.js', + ); -/***/ }), + var TO_STRING_TAG = wellKnownSymbol('toStringTag'); + // ES3 wrong here + var CORRECT_ARGUMENTS = + classofRaw( + (function () { + return arguments; + })(), + ) == 'Arguments'; + + // fallback for IE11 Script Access Denied error + var tryGet = function (it, key) { + try { + return it[key]; + } catch (error) { + /* empty */ + } + }; + + // getting tag from ES6+ `Object.prototype.toString` + module.exports = function (it) { + var O, tag, result; + return it === undefined + ? 'Undefined' + : it === null + ? 'Null' + : // @@toStringTag case + typeof (tag = tryGet((O = Object(it)), TO_STRING_TAG)) == + 'string' + ? tag + : // builtinTag case + CORRECT_ARGUMENTS + ? classofRaw(O) + : // ES3 arguments fallback + (result = classofRaw(O)) == 'Object' && + typeof O.callee == 'function' + ? 'Arguments' + : result; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/copy-constructor-properties.js": -/*!***********************************************************************!*\ + /***/ './node_modules/core-js/internals/copy-constructor-properties.js': + /*!***********************************************************************!*\ !*** ./node_modules/core-js/internals/copy-constructor-properties.js ***! \***********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "./node_modules/core-js/internals/own-keys.js"); -var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js"); -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js"); - -module.exports = function (target, source) { - var keys = ownKeys(source); - var defineProperty = definePropertyModule.f; - var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; - for (var i = 0; i < keys.length; i++) { - var key = keys[i]; - if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key)); - } -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var has = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var ownKeys = __webpack_require__( + /*! ../internals/own-keys */ './node_modules/core-js/internals/own-keys.js', + ); + var getOwnPropertyDescriptorModule = __webpack_require__( + /*! ../internals/object-get-own-property-descriptor */ './node_modules/core-js/internals/object-get-own-property-descriptor.js', + ); + var definePropertyModule = __webpack_require__( + /*! ../internals/object-define-property */ './node_modules/core-js/internals/object-define-property.js', + ); + module.exports = function (target, source) { + var keys = ownKeys(source); + var defineProperty = definePropertyModule.f; + var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; + for (var i = 0; i < keys.length; i++) { + var key = keys[i]; + if (!has(target, key)) + defineProperty( + target, + key, + getOwnPropertyDescriptor(source, key), + ); + } + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/correct-prototype-getter.js": -/*!********************************************************************!*\ + /***/ './node_modules/core-js/internals/correct-prototype-getter.js': + /*!********************************************************************!*\ !*** ./node_modules/core-js/internals/correct-prototype-getter.js ***! \********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js"); - -module.exports = !fails(function () { - function F() { /* empty */ } - F.prototype.constructor = null; - return Object.getPrototypeOf(new F()) !== F.prototype; -}); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var fails = __webpack_require__( + /*! ../internals/fails */ './node_modules/core-js/internals/fails.js', + ); + module.exports = !fails(function () { + function F() { + /* empty */ + } + F.prototype.constructor = null; + return Object.getPrototypeOf(new F()) !== F.prototype; + }); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/create-iterator-constructor.js": -/*!***********************************************************************!*\ + /***/ './node_modules/core-js/internals/create-iterator-constructor.js': + /*!***********************************************************************!*\ !*** ./node_modules/core-js/internals/create-iterator-constructor.js ***! \***********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var IteratorPrototype = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/core-js/internals/iterators-core.js").IteratorPrototype; -var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js"); -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js"); -var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js"); -var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js"); - -var returnThis = function () { return this; }; - -module.exports = function (IteratorConstructor, NAME, next) { - var TO_STRING_TAG = NAME + ' Iterator'; - IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) }); - setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); - Iterators[TO_STRING_TAG] = returnThis; - return IteratorConstructor; -}; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var IteratorPrototype = __webpack_require__( + /*! ../internals/iterators-core */ './node_modules/core-js/internals/iterators-core.js', + ).IteratorPrototype; + var create = __webpack_require__( + /*! ../internals/object-create */ './node_modules/core-js/internals/object-create.js', + ); + var createPropertyDescriptor = __webpack_require__( + /*! ../internals/create-property-descriptor */ './node_modules/core-js/internals/create-property-descriptor.js', + ); + var setToStringTag = __webpack_require__( + /*! ../internals/set-to-string-tag */ './node_modules/core-js/internals/set-to-string-tag.js', + ); + var Iterators = __webpack_require__( + /*! ../internals/iterators */ './node_modules/core-js/internals/iterators.js', + ); -/***/ }), + var returnThis = function () { + return this; + }; + + module.exports = function (IteratorConstructor, NAME, next) { + var TO_STRING_TAG = NAME + ' Iterator'; + IteratorConstructor.prototype = create(IteratorPrototype, { + next: createPropertyDescriptor(1, next), + }); + setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); + Iterators[TO_STRING_TAG] = returnThis; + return IteratorConstructor; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/create-property-descriptor.js": -/*!**********************************************************************!*\ + /***/ './node_modules/core-js/internals/create-property-descriptor.js': + /*!**********************************************************************!*\ !*** ./node_modules/core-js/internals/create-property-descriptor.js ***! \**********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = function (bitmap, value) { - return { - enumerable: !(bitmap & 1), - configurable: !(bitmap & 2), - writable: !(bitmap & 4), - value: value - }; -}; - - -/***/ }), + /*! no static exports found */ + /***/ function (module, exports) { + module.exports = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value: value, + }; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/create-property.js": -/*!***********************************************************!*\ + /***/ './node_modules/core-js/internals/create-property.js': + /*!***********************************************************!*\ !*** ./node_modules/core-js/internals/create-property.js ***! \***********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js"); -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js"); -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js"); - -module.exports = function (object, key, value) { - var propertyKey = toPrimitive(key); - if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value)); - else object[propertyKey] = value; -}; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var toPrimitive = __webpack_require__( + /*! ../internals/to-primitive */ './node_modules/core-js/internals/to-primitive.js', + ); + var definePropertyModule = __webpack_require__( + /*! ../internals/object-define-property */ './node_modules/core-js/internals/object-define-property.js', + ); + var createPropertyDescriptor = __webpack_require__( + /*! ../internals/create-property-descriptor */ './node_modules/core-js/internals/create-property-descriptor.js', + ); -/***/ }), + module.exports = function (object, key, value) { + var propertyKey = toPrimitive(key); + if (propertyKey in object) + definePropertyModule.f( + object, + propertyKey, + createPropertyDescriptor(0, value), + ); + else object[propertyKey] = value; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/define-iterator.js": -/*!***********************************************************!*\ + /***/ './node_modules/core-js/internals/define-iterator.js': + /*!***********************************************************!*\ !*** ./node_modules/core-js/internals/define-iterator.js ***! \***********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js"); -var createIteratorConstructor = __webpack_require__(/*! ../internals/create-iterator-constructor */ "./node_modules/core-js/internals/create-iterator-constructor.js"); -var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/core-js/internals/object-get-prototype-of.js"); -var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/core-js/internals/object-set-prototype-of.js"); -var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js"); -var hide = __webpack_require__(/*! ../internals/hide */ "./node_modules/core-js/internals/hide.js"); -var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js"); -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js"); -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js"); -var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js"); -var IteratorsCore = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/core-js/internals/iterators-core.js"); - -var IteratorPrototype = IteratorsCore.IteratorPrototype; -var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS; -var ITERATOR = wellKnownSymbol('iterator'); -var KEYS = 'keys'; -var VALUES = 'values'; -var ENTRIES = 'entries'; - -var returnThis = function () { return this; }; - -module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { - createIteratorConstructor(IteratorConstructor, NAME, next); - - var getIterationMethod = function (KIND) { - if (KIND === DEFAULT && defaultIterator) return defaultIterator; - if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND]; - switch (KIND) { - case KEYS: return function keys() { return new IteratorConstructor(this, KIND); }; - case VALUES: return function values() { return new IteratorConstructor(this, KIND); }; - case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); }; - } return function () { return new IteratorConstructor(this); }; - }; - - var TO_STRING_TAG = NAME + ' Iterator'; - var INCORRECT_VALUES_NAME = false; - var IterablePrototype = Iterable.prototype; - var nativeIterator = IterablePrototype[ITERATOR] - || IterablePrototype['@@iterator'] - || DEFAULT && IterablePrototype[DEFAULT]; - var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT); - var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; - var CurrentIteratorPrototype, methods, KEY; - - // fix native - if (anyNativeIterator) { - CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable())); - if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) { - if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) { - if (setPrototypeOf) { - setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype); - } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') { - hide(CurrentIteratorPrototype, ITERATOR, returnThis); - } - } - // Set @@toStringTag to native iterators - setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true); - if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis; - } - } - - // fix Array#{values, @@iterator}.name in V8 / FF - if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { - INCORRECT_VALUES_NAME = true; - defaultIterator = function values() { return nativeIterator.call(this); }; - } + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var $ = __webpack_require__( + /*! ../internals/export */ './node_modules/core-js/internals/export.js', + ); + var createIteratorConstructor = __webpack_require__( + /*! ../internals/create-iterator-constructor */ './node_modules/core-js/internals/create-iterator-constructor.js', + ); + var getPrototypeOf = __webpack_require__( + /*! ../internals/object-get-prototype-of */ './node_modules/core-js/internals/object-get-prototype-of.js', + ); + var setPrototypeOf = __webpack_require__( + /*! ../internals/object-set-prototype-of */ './node_modules/core-js/internals/object-set-prototype-of.js', + ); + var setToStringTag = __webpack_require__( + /*! ../internals/set-to-string-tag */ './node_modules/core-js/internals/set-to-string-tag.js', + ); + var hide = __webpack_require__( + /*! ../internals/hide */ './node_modules/core-js/internals/hide.js', + ); + var redefine = __webpack_require__( + /*! ../internals/redefine */ './node_modules/core-js/internals/redefine.js', + ); + var wellKnownSymbol = __webpack_require__( + /*! ../internals/well-known-symbol */ './node_modules/core-js/internals/well-known-symbol.js', + ); + var IS_PURE = __webpack_require__( + /*! ../internals/is-pure */ './node_modules/core-js/internals/is-pure.js', + ); + var Iterators = __webpack_require__( + /*! ../internals/iterators */ './node_modules/core-js/internals/iterators.js', + ); + var IteratorsCore = __webpack_require__( + /*! ../internals/iterators-core */ './node_modules/core-js/internals/iterators-core.js', + ); - // define iterator - if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) { - hide(IterablePrototype, ITERATOR, defaultIterator); - } - Iterators[NAME] = defaultIterator; + var IteratorPrototype = IteratorsCore.IteratorPrototype; + var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS; + var ITERATOR = wellKnownSymbol('iterator'); + var KEYS = 'keys'; + var VALUES = 'values'; + var ENTRIES = 'entries'; + + var returnThis = function () { + return this; + }; + + module.exports = function ( + Iterable, + NAME, + IteratorConstructor, + next, + DEFAULT, + IS_SET, + FORCED, + ) { + createIteratorConstructor(IteratorConstructor, NAME, next); + + var getIterationMethod = function (KIND) { + if (KIND === DEFAULT && defaultIterator) return defaultIterator; + if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) + return IterablePrototype[KIND]; + switch (KIND) { + case KEYS: + return function keys() { + return new IteratorConstructor(this, KIND); + }; + case VALUES: + return function values() { + return new IteratorConstructor(this, KIND); + }; + case ENTRIES: + return function entries() { + return new IteratorConstructor(this, KIND); + }; + } + return function () { + return new IteratorConstructor(this); + }; + }; + + var TO_STRING_TAG = NAME + ' Iterator'; + var INCORRECT_VALUES_NAME = false; + var IterablePrototype = Iterable.prototype; + var nativeIterator = + IterablePrototype[ITERATOR] || + IterablePrototype['@@iterator'] || + (DEFAULT && IterablePrototype[DEFAULT]); + var defaultIterator = + (!BUGGY_SAFARI_ITERATORS && nativeIterator) || + getIterationMethod(DEFAULT); + var anyNativeIterator = + NAME == 'Array' + ? IterablePrototype.entries || nativeIterator + : nativeIterator; + var CurrentIteratorPrototype, methods, KEY; + + // fix native + if (anyNativeIterator) { + CurrentIteratorPrototype = getPrototypeOf( + anyNativeIterator.call(new Iterable()), + ); + if ( + IteratorPrototype !== Object.prototype && + CurrentIteratorPrototype.next + ) { + if ( + !IS_PURE && + getPrototypeOf(CurrentIteratorPrototype) !== + IteratorPrototype + ) { + if (setPrototypeOf) { + setPrototypeOf( + CurrentIteratorPrototype, + IteratorPrototype, + ); + } else if ( + typeof CurrentIteratorPrototype[ITERATOR] != 'function' + ) { + hide(CurrentIteratorPrototype, ITERATOR, returnThis); + } + } + // Set @@toStringTag to native iterators + setToStringTag( + CurrentIteratorPrototype, + TO_STRING_TAG, + true, + true, + ); + if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis; + } + } - // export additional methods - if (DEFAULT) { - methods = { - values: getIterationMethod(VALUES), - keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), - entries: getIterationMethod(ENTRIES) - }; - if (FORCED) for (KEY in methods) { - if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { - redefine(IterablePrototype, KEY, methods[KEY]); - } - } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods); - } + // fix Array#{values, @@iterator}.name in V8 / FF + if ( + DEFAULT == VALUES && + nativeIterator && + nativeIterator.name !== VALUES + ) { + INCORRECT_VALUES_NAME = true; + defaultIterator = function values() { + return nativeIterator.call(this); + }; + } - return methods; -}; + // define iterator + if ( + (!IS_PURE || FORCED) && + IterablePrototype[ITERATOR] !== defaultIterator + ) { + hide(IterablePrototype, ITERATOR, defaultIterator); + } + Iterators[NAME] = defaultIterator; + + // export additional methods + if (DEFAULT) { + methods = { + values: getIterationMethod(VALUES), + keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), + entries: getIterationMethod(ENTRIES), + }; + if (FORCED) + for (KEY in methods) { + if ( + BUGGY_SAFARI_ITERATORS || + INCORRECT_VALUES_NAME || + !(KEY in IterablePrototype) + ) { + redefine(IterablePrototype, KEY, methods[KEY]); + } + } + else + $( + { + target: NAME, + proto: true, + forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME, + }, + methods, + ); + } + return methods; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/descriptors.js": -/*!*******************************************************!*\ + /***/ './node_modules/core-js/internals/descriptors.js': + /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/descriptors.js ***! \*******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var fails = __webpack_require__( + /*! ../internals/fails */ './node_modules/core-js/internals/fails.js', + ); -var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js"); + // Thank's IE8 for his funny defineProperty + module.exports = !fails(function () { + return ( + Object.defineProperty({}, 'a', { + get: function () { + return 7; + }, + }).a != 7 + ); + }); -// Thank's IE8 for his funny defineProperty -module.exports = !fails(function () { - return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; -}); - - -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/document-create-element.js": -/*!*******************************************************************!*\ + /***/ './node_modules/core-js/internals/document-create-element.js': + /*!*******************************************************************!*\ !*** ./node_modules/core-js/internals/document-create-element.js ***! \*******************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js"); - -var document = global.document; -// typeof document.createElement is 'object' in old IE -var exist = isObject(document) && isObject(document.createElement); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var isObject = __webpack_require__( + /*! ../internals/is-object */ './node_modules/core-js/internals/is-object.js', + ); -module.exports = function (it) { - return exist ? document.createElement(it) : {}; -}; + var document = global.document; + // typeof document.createElement is 'object' in old IE + var exist = isObject(document) && isObject(document.createElement); + module.exports = function (it) { + return exist ? document.createElement(it) : {}; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/enum-bug-keys.js": -/*!*********************************************************!*\ + /***/ './node_modules/core-js/internals/enum-bug-keys.js': + /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/enum-bug-keys.js ***! \*********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -// IE8- don't enum bug keys -module.exports = [ - 'constructor', - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toLocaleString', - 'toString', - 'valueOf' -]; - - -/***/ }), + /*! no static exports found */ + /***/ function (module, exports) { + // IE8- don't enum bug keys + module.exports = [ + 'constructor', + 'hasOwnProperty', + 'isPrototypeOf', + 'propertyIsEnumerable', + 'toLocaleString', + 'toString', + 'valueOf', + ]; + + /***/ + }, -/***/ "./node_modules/core-js/internals/export.js": -/*!**************************************************!*\ + /***/ './node_modules/core-js/internals/export.js': + /*!**************************************************!*\ !*** ./node_modules/core-js/internals/export.js ***! \**************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js").f; -var hide = __webpack_require__(/*! ../internals/hide */ "./node_modules/core-js/internals/hide.js"); -var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js"); -var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js"); -var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "./node_modules/core-js/internals/copy-constructor-properties.js"); -var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/core-js/internals/is-forced.js"); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var getOwnPropertyDescriptor = __webpack_require__( + /*! ../internals/object-get-own-property-descriptor */ './node_modules/core-js/internals/object-get-own-property-descriptor.js', + ).f; + var hide = __webpack_require__( + /*! ../internals/hide */ './node_modules/core-js/internals/hide.js', + ); + var redefine = __webpack_require__( + /*! ../internals/redefine */ './node_modules/core-js/internals/redefine.js', + ); + var setGlobal = __webpack_require__( + /*! ../internals/set-global */ './node_modules/core-js/internals/set-global.js', + ); + var copyConstructorProperties = __webpack_require__( + /*! ../internals/copy-constructor-properties */ './node_modules/core-js/internals/copy-constructor-properties.js', + ); + var isForced = __webpack_require__( + /*! ../internals/is-forced */ './node_modules/core-js/internals/is-forced.js', + ); -/* + /* options.target - name of the target object options.global - target is the global object options.stat - export as static methods of target @@ -855,1587 +1667,2344 @@ var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules options.enumerable - export as enumerable property options.noTargetGet - prevent calling a getter on target */ -module.exports = function (options, source) { - var TARGET = options.target; - var GLOBAL = options.global; - var STATIC = options.stat; - var FORCED, target, key, targetProperty, sourceProperty, descriptor; - if (GLOBAL) { - target = global; - } else if (STATIC) { - target = global[TARGET] || setGlobal(TARGET, {}); - } else { - target = (global[TARGET] || {}).prototype; - } - if (target) for (key in source) { - sourceProperty = source[key]; - if (options.noTargetGet) { - descriptor = getOwnPropertyDescriptor(target, key); - targetProperty = descriptor && descriptor.value; - } else targetProperty = target[key]; - FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); - // contained in target - if (!FORCED && targetProperty !== undefined) { - if (typeof sourceProperty === typeof targetProperty) continue; - copyConstructorProperties(sourceProperty, targetProperty); - } - // add a flag to not completely full polyfills - if (options.sham || (targetProperty && targetProperty.sham)) { - hide(sourceProperty, 'sham', true); - } - // extend global - redefine(target, key, sourceProperty, options); - } -}; - + module.exports = function (options, source) { + var TARGET = options.target; + var GLOBAL = options.global; + var STATIC = options.stat; + var FORCED, + target, + key, + targetProperty, + sourceProperty, + descriptor; + if (GLOBAL) { + target = global; + } else if (STATIC) { + target = global[TARGET] || setGlobal(TARGET, {}); + } else { + target = (global[TARGET] || {}).prototype; + } + if (target) + for (key in source) { + sourceProperty = source[key]; + if (options.noTargetGet) { + descriptor = getOwnPropertyDescriptor(target, key); + targetProperty = descriptor && descriptor.value; + } else targetProperty = target[key]; + FORCED = isForced( + GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, + options.forced, + ); + // contained in target + if (!FORCED && targetProperty !== undefined) { + if (typeof sourceProperty === typeof targetProperty) + continue; + copyConstructorProperties(sourceProperty, targetProperty); + } + // add a flag to not completely full polyfills + if (options.sham || (targetProperty && targetProperty.sham)) { + hide(sourceProperty, 'sham', true); + } + // extend global + redefine(target, key, sourceProperty, options); + } + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/fails.js": -/*!*************************************************!*\ + /***/ './node_modules/core-js/internals/fails.js': + /*!*************************************************!*\ !*** ./node_modules/core-js/internals/fails.js ***! \*************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = function (exec) { - try { - return !!exec(); - } catch (error) { - return true; - } -}; - + /*! no static exports found */ + /***/ function (module, exports) { + module.exports = function (exec) { + try { + return !!exec(); + } catch (error) { + return true; + } + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/function-to-string.js": -/*!**************************************************************!*\ + /***/ './node_modules/core-js/internals/function-to-string.js': + /*!**************************************************************!*\ !*** ./node_modules/core-js/internals/function-to-string.js ***! \**************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js"); - -module.exports = shared('native-function-to-string', Function.toString); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var shared = __webpack_require__( + /*! ../internals/shared */ './node_modules/core-js/internals/shared.js', + ); + module.exports = shared( + 'native-function-to-string', + Function.toString, + ); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/get-iterator-method.js": -/*!***************************************************************!*\ + /***/ './node_modules/core-js/internals/get-iterator-method.js': + /*!***************************************************************!*\ !*** ./node_modules/core-js/internals/get-iterator-method.js ***! \***************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var classof = __webpack_require__(/*! ../internals/classof */ "./node_modules/core-js/internals/classof.js"); -var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js"); -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js"); - -var ITERATOR = wellKnownSymbol('iterator'); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var classof = __webpack_require__( + /*! ../internals/classof */ './node_modules/core-js/internals/classof.js', + ); + var Iterators = __webpack_require__( + /*! ../internals/iterators */ './node_modules/core-js/internals/iterators.js', + ); + var wellKnownSymbol = __webpack_require__( + /*! ../internals/well-known-symbol */ './node_modules/core-js/internals/well-known-symbol.js', + ); -module.exports = function (it) { - if (it != undefined) return it[ITERATOR] - || it['@@iterator'] - || Iterators[classof(it)]; -}; + var ITERATOR = wellKnownSymbol('iterator'); + module.exports = function (it) { + if (it != undefined) + return ( + it[ITERATOR] || it['@@iterator'] || Iterators[classof(it)] + ); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/global.js": -/*!**************************************************!*\ + /***/ './node_modules/core-js/internals/global.js': + /*!**************************************************!*\ !*** ./node_modules/core-js/internals/global.js ***! \**************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -/* WEBPACK VAR INJECTION */(function(global) {var O = 'object'; -var check = function (it) { - return it && it.Math == Math && it; -}; - -// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 -module.exports = - // eslint-disable-next-line no-undef - check(typeof globalThis == O && globalThis) || - check(typeof window == O && window) || - check(typeof self == O && self) || - check(typeof global == O && global) || - // eslint-disable-next-line no-new-func - Function('return this')(); - -/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../webpack/buildin/global.js */ "./node_modules/webpack/buildin/global.js"))); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + /* WEBPACK VAR INJECTION */ (function (global) { + var O = 'object'; + var check = function (it) { + return it && it.Math == Math && it; + }; + + // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 + module.exports = + // eslint-disable-next-line no-undef + check(typeof globalThis == O && globalThis) || + check(typeof window == O && window) || + check(typeof self == O && self) || + check(typeof global == O && global) || + // eslint-disable-next-line no-new-func + Function('return this')(); + + /* WEBPACK VAR INJECTION */ + }).call( + this, + __webpack_require__( + /*! ./../../webpack/buildin/global.js */ './node_modules/webpack/buildin/global.js', + ), + ); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/has.js": -/*!***********************************************!*\ + /***/ './node_modules/core-js/internals/has.js': + /*!***********************************************!*\ !*** ./node_modules/core-js/internals/has.js ***! \***********************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { + /*! no static exports found */ + /***/ function (module, exports) { + var hasOwnProperty = {}.hasOwnProperty; -var hasOwnProperty = {}.hasOwnProperty; + module.exports = function (it, key) { + return hasOwnProperty.call(it, key); + }; -module.exports = function (it, key) { - return hasOwnProperty.call(it, key); -}; - - -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/hidden-keys.js": -/*!*******************************************************!*\ + /***/ './node_modules/core-js/internals/hidden-keys.js': + /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/hidden-keys.js ***! \*******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { + /*! no static exports found */ + /***/ function (module, exports) { + module.exports = {}; -module.exports = {}; - - -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/hide.js": -/*!************************************************!*\ + /***/ './node_modules/core-js/internals/hide.js': + /*!************************************************!*\ !*** ./node_modules/core-js/internals/hide.js ***! \************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js"); -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js"); -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js"); - -module.exports = DESCRIPTORS ? function (object, key, value) { - return definePropertyModule.f(object, key, createPropertyDescriptor(1, value)); -} : function (object, key, value) { - object[key] = value; - return object; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var DESCRIPTORS = __webpack_require__( + /*! ../internals/descriptors */ './node_modules/core-js/internals/descriptors.js', + ); + var definePropertyModule = __webpack_require__( + /*! ../internals/object-define-property */ './node_modules/core-js/internals/object-define-property.js', + ); + var createPropertyDescriptor = __webpack_require__( + /*! ../internals/create-property-descriptor */ './node_modules/core-js/internals/create-property-descriptor.js', + ); + module.exports = DESCRIPTORS + ? function (object, key, value) { + return definePropertyModule.f( + object, + key, + createPropertyDescriptor(1, value), + ); + } + : function (object, key, value) { + object[key] = value; + return object; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/html.js": -/*!************************************************!*\ + /***/ './node_modules/core-js/internals/html.js': + /*!************************************************!*\ !*** ./node_modules/core-js/internals/html.js ***! \************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); - -var document = global.document; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); -module.exports = document && document.documentElement; + var document = global.document; + module.exports = document && document.documentElement; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/ie8-dom-define.js": -/*!**********************************************************!*\ + /***/ './node_modules/core-js/internals/ie8-dom-define.js': + /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/ie8-dom-define.js ***! \**********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js"); -var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js"); -var createElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/core-js/internals/document-create-element.js"); - -// Thank's IE8 for his funny defineProperty -module.exports = !DESCRIPTORS && !fails(function () { - return Object.defineProperty(createElement('div'), 'a', { - get: function () { return 7; } - }).a != 7; -}); - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var DESCRIPTORS = __webpack_require__( + /*! ../internals/descriptors */ './node_modules/core-js/internals/descriptors.js', + ); + var fails = __webpack_require__( + /*! ../internals/fails */ './node_modules/core-js/internals/fails.js', + ); + var createElement = __webpack_require__( + /*! ../internals/document-create-element */ './node_modules/core-js/internals/document-create-element.js', + ); -/***/ }), + // Thank's IE8 for his funny defineProperty + module.exports = + !DESCRIPTORS && + !fails(function () { + return ( + Object.defineProperty(createElement('div'), 'a', { + get: function () { + return 7; + }, + }).a != 7 + ); + }); + + /***/ + }, -/***/ "./node_modules/core-js/internals/indexed-object.js": -/*!**********************************************************!*\ + /***/ './node_modules/core-js/internals/indexed-object.js': + /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/indexed-object.js ***! \**********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -// fallback for non-array-like ES3 and non-enumerable old V8 strings -var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js"); -var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js"); - -var split = ''.split; - -module.exports = fails(function () { - // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 - // eslint-disable-next-line no-prototype-builtins - return !Object('z').propertyIsEnumerable(0); -}) ? function (it) { - return classof(it) == 'String' ? split.call(it, '') : Object(it); -} : Object; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + // fallback for non-array-like ES3 and non-enumerable old V8 strings + var fails = __webpack_require__( + /*! ../internals/fails */ './node_modules/core-js/internals/fails.js', + ); + var classof = __webpack_require__( + /*! ../internals/classof-raw */ './node_modules/core-js/internals/classof-raw.js', + ); + var split = ''.split; + + module.exports = fails(function () { + // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 + // eslint-disable-next-line no-prototype-builtins + return !Object('z').propertyIsEnumerable(0); + }) + ? function (it) { + return classof(it) == 'String' + ? split.call(it, '') + : Object(it); + } + : Object; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/internal-state.js": -/*!**********************************************************!*\ + /***/ './node_modules/core-js/internals/internal-state.js': + /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/internal-state.js ***! \**********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ "./node_modules/core-js/internals/native-weak-map.js"); -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js"); -var hide = __webpack_require__(/*! ../internals/hide */ "./node_modules/core-js/internals/hide.js"); -var objectHas = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js"); -var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js"); - -var WeakMap = global.WeakMap; -var set, get, has; - -var enforce = function (it) { - return has(it) ? get(it) : set(it, {}); -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var NATIVE_WEAK_MAP = __webpack_require__( + /*! ../internals/native-weak-map */ './node_modules/core-js/internals/native-weak-map.js', + ); + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var isObject = __webpack_require__( + /*! ../internals/is-object */ './node_modules/core-js/internals/is-object.js', + ); + var hide = __webpack_require__( + /*! ../internals/hide */ './node_modules/core-js/internals/hide.js', + ); + var objectHas = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var sharedKey = __webpack_require__( + /*! ../internals/shared-key */ './node_modules/core-js/internals/shared-key.js', + ); + var hiddenKeys = __webpack_require__( + /*! ../internals/hidden-keys */ './node_modules/core-js/internals/hidden-keys.js', + ); -var getterFor = function (TYPE) { - return function (it) { - var state; - if (!isObject(it) || (state = get(it)).type !== TYPE) { - throw TypeError('Incompatible receiver, ' + TYPE + ' required'); - } return state; - }; -}; + var WeakMap = global.WeakMap; + var set, get, has; -if (NATIVE_WEAK_MAP) { - var store = new WeakMap(); - var wmget = store.get; - var wmhas = store.has; - var wmset = store.set; - set = function (it, metadata) { - wmset.call(store, it, metadata); - return metadata; - }; - get = function (it) { - return wmget.call(store, it) || {}; - }; - has = function (it) { - return wmhas.call(store, it); - }; -} else { - var STATE = sharedKey('state'); - hiddenKeys[STATE] = true; - set = function (it, metadata) { - hide(it, STATE, metadata); - return metadata; - }; - get = function (it) { - return objectHas(it, STATE) ? it[STATE] : {}; - }; - has = function (it) { - return objectHas(it, STATE); - }; -} + var enforce = function (it) { + return has(it) ? get(it) : set(it, {}); + }; -module.exports = { - set: set, - get: get, - has: has, - enforce: enforce, - getterFor: getterFor -}; + var getterFor = function (TYPE) { + return function (it) { + var state; + if (!isObject(it) || (state = get(it)).type !== TYPE) { + throw TypeError( + 'Incompatible receiver, ' + TYPE + ' required', + ); + } + return state; + }; + }; + + if (NATIVE_WEAK_MAP) { + var store = new WeakMap(); + var wmget = store.get; + var wmhas = store.has; + var wmset = store.set; + set = function (it, metadata) { + wmset.call(store, it, metadata); + return metadata; + }; + get = function (it) { + return wmget.call(store, it) || {}; + }; + has = function (it) { + return wmhas.call(store, it); + }; + } else { + var STATE = sharedKey('state'); + hiddenKeys[STATE] = true; + set = function (it, metadata) { + hide(it, STATE, metadata); + return metadata; + }; + get = function (it) { + return objectHas(it, STATE) ? it[STATE] : {}; + }; + has = function (it) { + return objectHas(it, STATE); + }; + } + module.exports = { + set: set, + get: get, + has: has, + enforce: enforce, + getterFor: getterFor, + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/is-array-iterator-method.js": -/*!********************************************************************!*\ + /***/ './node_modules/core-js/internals/is-array-iterator-method.js': + /*!********************************************************************!*\ !*** ./node_modules/core-js/internals/is-array-iterator-method.js ***! \********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js"); -var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js"); - -var ITERATOR = wellKnownSymbol('iterator'); -var ArrayPrototype = Array.prototype; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var wellKnownSymbol = __webpack_require__( + /*! ../internals/well-known-symbol */ './node_modules/core-js/internals/well-known-symbol.js', + ); + var Iterators = __webpack_require__( + /*! ../internals/iterators */ './node_modules/core-js/internals/iterators.js', + ); -// check on default Array iterator -module.exports = function (it) { - return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it); -}; + var ITERATOR = wellKnownSymbol('iterator'); + var ArrayPrototype = Array.prototype; + // check on default Array iterator + module.exports = function (it) { + return ( + it !== undefined && + (Iterators.Array === it || ArrayPrototype[ITERATOR] === it) + ); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/is-forced.js": -/*!*****************************************************!*\ + /***/ './node_modules/core-js/internals/is-forced.js': + /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/is-forced.js ***! \*****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js"); - -var replacement = /#|\.prototype\./; - -var isForced = function (feature, detection) { - var value = data[normalize(feature)]; - return value == POLYFILL ? true - : value == NATIVE ? false - : typeof detection == 'function' ? fails(detection) - : !!detection; -}; - -var normalize = isForced.normalize = function (string) { - return String(string).replace(replacement, '.').toLowerCase(); -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var fails = __webpack_require__( + /*! ../internals/fails */ './node_modules/core-js/internals/fails.js', + ); -var data = isForced.data = {}; -var NATIVE = isForced.NATIVE = 'N'; -var POLYFILL = isForced.POLYFILL = 'P'; + var replacement = /#|\.prototype\./; + + var isForced = function (feature, detection) { + var value = data[normalize(feature)]; + return value == POLYFILL + ? true + : value == NATIVE + ? false + : typeof detection == 'function' + ? fails(detection) + : !!detection; + }; + + var normalize = (isForced.normalize = function (string) { + return String(string).replace(replacement, '.').toLowerCase(); + }); -module.exports = isForced; + var data = (isForced.data = {}); + var NATIVE = (isForced.NATIVE = 'N'); + var POLYFILL = (isForced.POLYFILL = 'P'); + module.exports = isForced; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/is-object.js": -/*!*****************************************************!*\ + /***/ './node_modules/core-js/internals/is-object.js': + /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/is-object.js ***! \*****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = function (it) { - return typeof it === 'object' ? it !== null : typeof it === 'function'; -}; - - -/***/ }), + /*! no static exports found */ + /***/ function (module, exports) { + module.exports = function (it) { + return typeof it === 'object' + ? it !== null + : typeof it === 'function'; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/is-pure.js": -/*!***************************************************!*\ + /***/ './node_modules/core-js/internals/is-pure.js': + /*!***************************************************!*\ !*** ./node_modules/core-js/internals/is-pure.js ***! \***************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = false; + /*! no static exports found */ + /***/ function (module, exports) { + module.exports = false; + /***/ + }, -/***/ }), - -/***/ "./node_modules/core-js/internals/iterators-core.js": -/*!**********************************************************!*\ + /***/ './node_modules/core-js/internals/iterators-core.js': + /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/iterators-core.js ***! \**********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/core-js/internals/object-get-prototype-of.js"); -var hide = __webpack_require__(/*! ../internals/hide */ "./node_modules/core-js/internals/hide.js"); -var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js"); -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js"); - -var ITERATOR = wellKnownSymbol('iterator'); -var BUGGY_SAFARI_ITERATORS = false; - -var returnThis = function () { return this; }; - -// `%IteratorPrototype%` object -// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object -var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; - -if ([].keys) { - arrayIterator = [].keys(); - // Safari 8 has buggy iterators w/o `next` - if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; - else { - PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator)); - if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; - } -} + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var getPrototypeOf = __webpack_require__( + /*! ../internals/object-get-prototype-of */ './node_modules/core-js/internals/object-get-prototype-of.js', + ); + var hide = __webpack_require__( + /*! ../internals/hide */ './node_modules/core-js/internals/hide.js', + ); + var has = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var wellKnownSymbol = __webpack_require__( + /*! ../internals/well-known-symbol */ './node_modules/core-js/internals/well-known-symbol.js', + ); + var IS_PURE = __webpack_require__( + /*! ../internals/is-pure */ './node_modules/core-js/internals/is-pure.js', + ); -if (IteratorPrototype == undefined) IteratorPrototype = {}; + var ITERATOR = wellKnownSymbol('iterator'); + var BUGGY_SAFARI_ITERATORS = false; + + var returnThis = function () { + return this; + }; + + // `%IteratorPrototype%` object + // https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object + var IteratorPrototype, + PrototypeOfArrayIteratorPrototype, + arrayIterator; + + if ([].keys) { + arrayIterator = [].keys(); + // Safari 8 has buggy iterators w/o `next` + if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; + else { + PrototypeOfArrayIteratorPrototype = getPrototypeOf( + getPrototypeOf(arrayIterator), + ); + if (PrototypeOfArrayIteratorPrototype !== Object.prototype) + IteratorPrototype = PrototypeOfArrayIteratorPrototype; + } + } -// 25.1.2.1.1 %IteratorPrototype%[@@iterator]() -if (!IS_PURE && !has(IteratorPrototype, ITERATOR)) hide(IteratorPrototype, ITERATOR, returnThis); + if (IteratorPrototype == undefined) IteratorPrototype = {}; -module.exports = { - IteratorPrototype: IteratorPrototype, - BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS -}; + // 25.1.2.1.1 %IteratorPrototype%[@@iterator]() + if (!IS_PURE && !has(IteratorPrototype, ITERATOR)) + hide(IteratorPrototype, ITERATOR, returnThis); + module.exports = { + IteratorPrototype: IteratorPrototype, + BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS, + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/iterators.js": -/*!*****************************************************!*\ + /***/ './node_modules/core-js/internals/iterators.js': + /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/iterators.js ***! \*****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = {}; - + /*! no static exports found */ + /***/ function (module, exports) { + module.exports = {}; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/native-symbol.js": -/*!*********************************************************!*\ + /***/ './node_modules/core-js/internals/native-symbol.js': + /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/native-symbol.js ***! \*********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js"); - -module.exports = !!Object.getOwnPropertySymbols && !fails(function () { - // Chrome 38 Symbol has incorrect toString conversion - // eslint-disable-next-line no-undef - return !String(Symbol()); -}); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var fails = __webpack_require__( + /*! ../internals/fails */ './node_modules/core-js/internals/fails.js', + ); + module.exports = + !!Object.getOwnPropertySymbols && + !fails(function () { + // Chrome 38 Symbol has incorrect toString conversion + // eslint-disable-next-line no-undef + return !String(Symbol()); + }); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/native-weak-map.js": -/*!***********************************************************!*\ + /***/ './node_modules/core-js/internals/native-weak-map.js': + /*!***********************************************************!*\ !*** ./node_modules/core-js/internals/native-weak-map.js ***! \***********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var nativeFunctionToString = __webpack_require__(/*! ../internals/function-to-string */ "./node_modules/core-js/internals/function-to-string.js"); - -var WeakMap = global.WeakMap; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var nativeFunctionToString = __webpack_require__( + /*! ../internals/function-to-string */ './node_modules/core-js/internals/function-to-string.js', + ); -module.exports = typeof WeakMap === 'function' && /native code/.test(nativeFunctionToString.call(WeakMap)); + var WeakMap = global.WeakMap; + module.exports = + typeof WeakMap === 'function' && + /native code/.test(nativeFunctionToString.call(WeakMap)); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/object-create.js": -/*!*********************************************************!*\ + /***/ './node_modules/core-js/internals/object-create.js': + /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/object-create.js ***! \*********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js"); -var defineProperties = __webpack_require__(/*! ../internals/object-define-properties */ "./node_modules/core-js/internals/object-define-properties.js"); -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/core-js/internals/enum-bug-keys.js"); -var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js"); -var html = __webpack_require__(/*! ../internals/html */ "./node_modules/core-js/internals/html.js"); -var documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/core-js/internals/document-create-element.js"); -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js"); -var IE_PROTO = sharedKey('IE_PROTO'); - -var PROTOTYPE = 'prototype'; -var Empty = function () { /* empty */ }; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var createDict = function () { - // Thrash, waste and sodomy: IE GC bug - var iframe = documentCreateElement('iframe'); - var length = enumBugKeys.length; - var lt = '<'; - var script = 'script'; - var gt = '>'; - var js = 'java' + script + ':'; - var iframeDocument; - iframe.style.display = 'none'; - html.appendChild(iframe); - iframe.src = String(js); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt); - iframeDocument.close(); - createDict = iframeDocument.F; - while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]]; - return createDict(); -}; - -// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) -module.exports = Object.create || function create(O, Properties) { - var result; - if (O !== null) { - Empty[PROTOTYPE] = anObject(O); - result = new Empty(); - Empty[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = createDict(); - return Properties === undefined ? result : defineProperties(result, Properties); -}; - -hiddenKeys[IE_PROTO] = true; - - -/***/ }), + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var anObject = __webpack_require__( + /*! ../internals/an-object */ './node_modules/core-js/internals/an-object.js', + ); + var defineProperties = __webpack_require__( + /*! ../internals/object-define-properties */ './node_modules/core-js/internals/object-define-properties.js', + ); + var enumBugKeys = __webpack_require__( + /*! ../internals/enum-bug-keys */ './node_modules/core-js/internals/enum-bug-keys.js', + ); + var hiddenKeys = __webpack_require__( + /*! ../internals/hidden-keys */ './node_modules/core-js/internals/hidden-keys.js', + ); + var html = __webpack_require__( + /*! ../internals/html */ './node_modules/core-js/internals/html.js', + ); + var documentCreateElement = __webpack_require__( + /*! ../internals/document-create-element */ './node_modules/core-js/internals/document-create-element.js', + ); + var sharedKey = __webpack_require__( + /*! ../internals/shared-key */ './node_modules/core-js/internals/shared-key.js', + ); + var IE_PROTO = sharedKey('IE_PROTO'); + + var PROTOTYPE = 'prototype'; + var Empty = function () { + /* empty */ + }; + + // Create object with fake `null` prototype: use iframe Object with cleared prototype + var createDict = function () { + // Thrash, waste and sodomy: IE GC bug + var iframe = documentCreateElement('iframe'); + var length = enumBugKeys.length; + var lt = '<'; + var script = 'script'; + var gt = '>'; + var js = 'java' + script + ':'; + var iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + iframe.src = String(js); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write( + lt + script + gt + 'document.F=Object' + lt + '/' + script + gt, + ); + iframeDocument.close(); + createDict = iframeDocument.F; + while (length--) + delete createDict[PROTOTYPE][enumBugKeys[length]]; + return createDict(); + }; + + // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) + module.exports = + Object.create || + function create(O, Properties) { + var result; + if (O !== null) { + Empty[PROTOTYPE] = anObject(O); + result = new Empty(); + Empty[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf polyfill + result[IE_PROTO] = O; + } else result = createDict(); + return Properties === undefined + ? result + : defineProperties(result, Properties); + }; + + hiddenKeys[IE_PROTO] = true; + + /***/ + }, -/***/ "./node_modules/core-js/internals/object-define-properties.js": -/*!********************************************************************!*\ + /***/ './node_modules/core-js/internals/object-define-properties.js': + /*!********************************************************************!*\ !*** ./node_modules/core-js/internals/object-define-properties.js ***! \********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js"); -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js"); -var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js"); -var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js"); - -module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) { - anObject(O); - var keys = objectKeys(Properties); - var length = keys.length; - var i = 0; - var key; - while (length > i) definePropertyModule.f(O, key = keys[i++], Properties[key]); - return O; -}; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var DESCRIPTORS = __webpack_require__( + /*! ../internals/descriptors */ './node_modules/core-js/internals/descriptors.js', + ); + var definePropertyModule = __webpack_require__( + /*! ../internals/object-define-property */ './node_modules/core-js/internals/object-define-property.js', + ); + var anObject = __webpack_require__( + /*! ../internals/an-object */ './node_modules/core-js/internals/an-object.js', + ); + var objectKeys = __webpack_require__( + /*! ../internals/object-keys */ './node_modules/core-js/internals/object-keys.js', + ); -/***/ }), + module.exports = DESCRIPTORS + ? Object.defineProperties + : function defineProperties(O, Properties) { + anObject(O); + var keys = objectKeys(Properties); + var length = keys.length; + var i = 0; + var key; + while (length > i) + definePropertyModule.f( + O, + (key = keys[i++]), + Properties[key], + ); + return O; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/object-define-property.js": -/*!******************************************************************!*\ + /***/ './node_modules/core-js/internals/object-define-property.js': + /*!******************************************************************!*\ !*** ./node_modules/core-js/internals/object-define-property.js ***! \******************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js"); -var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/core-js/internals/ie8-dom-define.js"); -var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js"); -var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js"); - -var nativeDefineProperty = Object.defineProperty; - -exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) { - anObject(O); - P = toPrimitive(P, true); - anObject(Attributes); - if (IE8_DOM_DEFINE) try { - return nativeDefineProperty(O, P, Attributes); - } catch (error) { /* empty */ } - if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported'); - if ('value' in Attributes) O[P] = Attributes.value; - return O; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var DESCRIPTORS = __webpack_require__( + /*! ../internals/descriptors */ './node_modules/core-js/internals/descriptors.js', + ); + var IE8_DOM_DEFINE = __webpack_require__( + /*! ../internals/ie8-dom-define */ './node_modules/core-js/internals/ie8-dom-define.js', + ); + var anObject = __webpack_require__( + /*! ../internals/an-object */ './node_modules/core-js/internals/an-object.js', + ); + var toPrimitive = __webpack_require__( + /*! ../internals/to-primitive */ './node_modules/core-js/internals/to-primitive.js', + ); + var nativeDefineProperty = Object.defineProperty; + + exports.f = DESCRIPTORS + ? nativeDefineProperty + : function defineProperty(O, P, Attributes) { + anObject(O); + P = toPrimitive(P, true); + anObject(Attributes); + if (IE8_DOM_DEFINE) + try { + return nativeDefineProperty(O, P, Attributes); + } catch (error) { + /* empty */ + } + if ('get' in Attributes || 'set' in Attributes) + throw TypeError('Accessors not supported'); + if ('value' in Attributes) O[P] = Attributes.value; + return O; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/object-get-own-property-descriptor.js": -/*!******************************************************************************!*\ + /***/ './node_modules/core-js/internals/object-get-own-property-descriptor.js': + /*!******************************************************************************!*\ !*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***! \******************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js"); -var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/core-js/internals/object-property-is-enumerable.js"); -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js"); -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js"); -var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js"); -var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/core-js/internals/ie8-dom-define.js"); - -var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; - -exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { - O = toIndexedObject(O); - P = toPrimitive(P, true); - if (IE8_DOM_DEFINE) try { - return nativeGetOwnPropertyDescriptor(O, P); - } catch (error) { /* empty */ } - if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]); -}; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var DESCRIPTORS = __webpack_require__( + /*! ../internals/descriptors */ './node_modules/core-js/internals/descriptors.js', + ); + var propertyIsEnumerableModule = __webpack_require__( + /*! ../internals/object-property-is-enumerable */ './node_modules/core-js/internals/object-property-is-enumerable.js', + ); + var createPropertyDescriptor = __webpack_require__( + /*! ../internals/create-property-descriptor */ './node_modules/core-js/internals/create-property-descriptor.js', + ); + var toIndexedObject = __webpack_require__( + /*! ../internals/to-indexed-object */ './node_modules/core-js/internals/to-indexed-object.js', + ); + var toPrimitive = __webpack_require__( + /*! ../internals/to-primitive */ './node_modules/core-js/internals/to-primitive.js', + ); + var has = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var IE8_DOM_DEFINE = __webpack_require__( + /*! ../internals/ie8-dom-define */ './node_modules/core-js/internals/ie8-dom-define.js', + ); -/***/ }), + var nativeGetOwnPropertyDescriptor = + Object.getOwnPropertyDescriptor; + + exports.f = DESCRIPTORS + ? nativeGetOwnPropertyDescriptor + : function getOwnPropertyDescriptor(O, P) { + O = toIndexedObject(O); + P = toPrimitive(P, true); + if (IE8_DOM_DEFINE) + try { + return nativeGetOwnPropertyDescriptor(O, P); + } catch (error) { + /* empty */ + } + if (has(O, P)) + return createPropertyDescriptor( + !propertyIsEnumerableModule.f.call(O, P), + O[P], + ); + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/object-get-own-property-names.js": -/*!*************************************************************************!*\ + /***/ './node_modules/core-js/internals/object-get-own-property-names.js': + /*!*************************************************************************!*\ !*** ./node_modules/core-js/internals/object-get-own-property-names.js ***! \*************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) -var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/core-js/internals/object-keys-internal.js"); -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/core-js/internals/enum-bug-keys.js"); - -var hiddenKeys = enumBugKeys.concat('length', 'prototype'); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) + var internalObjectKeys = __webpack_require__( + /*! ../internals/object-keys-internal */ './node_modules/core-js/internals/object-keys-internal.js', + ); + var enumBugKeys = __webpack_require__( + /*! ../internals/enum-bug-keys */ './node_modules/core-js/internals/enum-bug-keys.js', + ); -exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { - return internalObjectKeys(O, hiddenKeys); -}; + var hiddenKeys = enumBugKeys.concat('length', 'prototype'); + exports.f = + Object.getOwnPropertyNames || + function getOwnPropertyNames(O) { + return internalObjectKeys(O, hiddenKeys); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/object-get-own-property-symbols.js": -/*!***************************************************************************!*\ + /***/ './node_modules/core-js/internals/object-get-own-property-symbols.js': + /*!***************************************************************************!*\ !*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***! \***************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -exports.f = Object.getOwnPropertySymbols; + /*! no static exports found */ + /***/ function (module, exports) { + exports.f = Object.getOwnPropertySymbols; + /***/ + }, -/***/ }), - -/***/ "./node_modules/core-js/internals/object-get-prototype-of.js": -/*!*******************************************************************!*\ + /***/ './node_modules/core-js/internals/object-get-prototype-of.js': + /*!*******************************************************************!*\ !*** ./node_modules/core-js/internals/object-get-prototype-of.js ***! \*******************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js"); -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js"); -var CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "./node_modules/core-js/internals/correct-prototype-getter.js"); - -var IE_PROTO = sharedKey('IE_PROTO'); -var ObjectPrototype = Object.prototype; - -// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) -module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) { - O = toObject(O); - if (has(O, IE_PROTO)) return O[IE_PROTO]; - if (typeof O.constructor == 'function' && O instanceof O.constructor) { - return O.constructor.prototype; - } return O instanceof Object ? ObjectPrototype : null; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var has = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var toObject = __webpack_require__( + /*! ../internals/to-object */ './node_modules/core-js/internals/to-object.js', + ); + var sharedKey = __webpack_require__( + /*! ../internals/shared-key */ './node_modules/core-js/internals/shared-key.js', + ); + var CORRECT_PROTOTYPE_GETTER = __webpack_require__( + /*! ../internals/correct-prototype-getter */ './node_modules/core-js/internals/correct-prototype-getter.js', + ); + var IE_PROTO = sharedKey('IE_PROTO'); + var ObjectPrototype = Object.prototype; + + // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) + module.exports = CORRECT_PROTOTYPE_GETTER + ? Object.getPrototypeOf + : function (O) { + O = toObject(O); + if (has(O, IE_PROTO)) return O[IE_PROTO]; + if ( + typeof O.constructor == 'function' && + O instanceof O.constructor + ) { + return O.constructor.prototype; + } + return O instanceof Object ? ObjectPrototype : null; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/object-keys-internal.js": -/*!****************************************************************!*\ + /***/ './node_modules/core-js/internals/object-keys-internal.js': + /*!****************************************************************!*\ !*** ./node_modules/core-js/internals/object-keys-internal.js ***! \****************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js"); -var arrayIncludes = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/core-js/internals/array-includes.js"); -var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js"); - -var arrayIndexOf = arrayIncludes(false); - -module.exports = function (object, names) { - var O = toIndexedObject(object); - var i = 0; - var result = []; - var key; - for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key); - // Don't enum bug & hidden keys - while (names.length > i) if (has(O, key = names[i++])) { - ~arrayIndexOf(result, key) || result.push(key); - } - return result; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var has = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var toIndexedObject = __webpack_require__( + /*! ../internals/to-indexed-object */ './node_modules/core-js/internals/to-indexed-object.js', + ); + var arrayIncludes = __webpack_require__( + /*! ../internals/array-includes */ './node_modules/core-js/internals/array-includes.js', + ); + var hiddenKeys = __webpack_require__( + /*! ../internals/hidden-keys */ './node_modules/core-js/internals/hidden-keys.js', + ); + var arrayIndexOf = arrayIncludes(false); + + module.exports = function (object, names) { + var O = toIndexedObject(object); + var i = 0; + var result = []; + var key; + for (key in O) + !has(hiddenKeys, key) && has(O, key) && result.push(key); + // Don't enum bug & hidden keys + while (names.length > i) + if (has(O, (key = names[i++]))) { + ~arrayIndexOf(result, key) || result.push(key); + } + return result; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/object-keys.js": -/*!*******************************************************!*\ + /***/ './node_modules/core-js/internals/object-keys.js': + /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/object-keys.js ***! \*******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/core-js/internals/object-keys-internal.js"); -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/core-js/internals/enum-bug-keys.js"); - -// 19.1.2.14 / 15.2.3.14 Object.keys(O) -module.exports = Object.keys || function keys(O) { - return internalObjectKeys(O, enumBugKeys); -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var internalObjectKeys = __webpack_require__( + /*! ../internals/object-keys-internal */ './node_modules/core-js/internals/object-keys-internal.js', + ); + var enumBugKeys = __webpack_require__( + /*! ../internals/enum-bug-keys */ './node_modules/core-js/internals/enum-bug-keys.js', + ); + // 19.1.2.14 / 15.2.3.14 Object.keys(O) + module.exports = + Object.keys || + function keys(O) { + return internalObjectKeys(O, enumBugKeys); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/object-property-is-enumerable.js": -/*!*************************************************************************!*\ + /***/ './node_modules/core-js/internals/object-property-is-enumerable.js': + /*!*************************************************************************!*\ !*** ./node_modules/core-js/internals/object-property-is-enumerable.js ***! \*************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var nativePropertyIsEnumerable = {}.propertyIsEnumerable; -var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; - -// Nashorn ~ JDK8 bug -var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1); - -exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) { - var descriptor = getOwnPropertyDescriptor(this, V); - return !!descriptor && descriptor.enumerable; -} : nativePropertyIsEnumerable; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var nativePropertyIsEnumerable = {}.propertyIsEnumerable; + var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; + + // Nashorn ~ JDK8 bug + var NASHORN_BUG = + getOwnPropertyDescriptor && + !nativePropertyIsEnumerable.call({ 1: 2 }, 1); + + exports.f = NASHORN_BUG + ? function propertyIsEnumerable(V) { + var descriptor = getOwnPropertyDescriptor(this, V); + return !!descriptor && descriptor.enumerable; + } + : nativePropertyIsEnumerable; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/object-set-prototype-of.js": -/*!*******************************************************************!*\ + /***/ './node_modules/core-js/internals/object-set-prototype-of.js': + /*!*******************************************************************!*\ !*** ./node_modules/core-js/internals/object-set-prototype-of.js ***! \*******************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var validateSetPrototypeOfArguments = __webpack_require__(/*! ../internals/validate-set-prototype-of-arguments */ "./node_modules/core-js/internals/validate-set-prototype-of-arguments.js"); - -// Works with __proto__ only. Old v8 can't work with null proto objects. -/* eslint-disable no-proto */ -module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () { - var correctSetter = false; - var test = {}; - var setter; - try { - setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set; - setter.call(test, []); - correctSetter = test instanceof Array; - } catch (error) { /* empty */ } - return function setPrototypeOf(O, proto) { - validateSetPrototypeOfArguments(O, proto); - if (correctSetter) setter.call(O, proto); - else O.__proto__ = proto; - return O; - }; -}() : undefined); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var validateSetPrototypeOfArguments = __webpack_require__( + /*! ../internals/validate-set-prototype-of-arguments */ './node_modules/core-js/internals/validate-set-prototype-of-arguments.js', + ); + // Works with __proto__ only. Old v8 can't work with null proto objects. + /* eslint-disable no-proto */ + module.exports = + Object.setPrototypeOf || + ('__proto__' in {} + ? (function () { + var correctSetter = false; + var test = {}; + var setter; + try { + setter = Object.getOwnPropertyDescriptor( + Object.prototype, + '__proto__', + ).set; + setter.call(test, []); + correctSetter = test instanceof Array; + } catch (error) { + /* empty */ + } + return function setPrototypeOf(O, proto) { + validateSetPrototypeOfArguments(O, proto); + if (correctSetter) setter.call(O, proto); + else O.__proto__ = proto; + return O; + }; + })() + : undefined); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/own-keys.js": -/*!****************************************************!*\ + /***/ './node_modules/core-js/internals/own-keys.js': + /*!****************************************************!*\ !*** ./node_modules/core-js/internals/own-keys.js ***! \****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var getOwnPropertyNamesModule = __webpack_require__( + /*! ../internals/object-get-own-property-names */ './node_modules/core-js/internals/object-get-own-property-names.js', + ); + var getOwnPropertySymbolsModule = __webpack_require__( + /*! ../internals/object-get-own-property-symbols */ './node_modules/core-js/internals/object-get-own-property-symbols.js', + ); + var anObject = __webpack_require__( + /*! ../internals/an-object */ './node_modules/core-js/internals/an-object.js', + ); -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js"); -var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/core-js/internals/object-get-own-property-symbols.js"); -var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js"); + var Reflect = global.Reflect; -var Reflect = global.Reflect; + // all object keys, includes non-enumerable and symbols + module.exports = + (Reflect && Reflect.ownKeys) || + function ownKeys(it) { + var keys = getOwnPropertyNamesModule.f(anObject(it)); + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + return getOwnPropertySymbols + ? keys.concat(getOwnPropertySymbols(it)) + : keys; + }; -// all object keys, includes non-enumerable and symbols -module.exports = Reflect && Reflect.ownKeys || function ownKeys(it) { - var keys = getOwnPropertyNamesModule.f(anObject(it)); - var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; - return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys; -}; - - -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/path.js": -/*!************************************************!*\ + /***/ './node_modules/core-js/internals/path.js': + /*!************************************************!*\ !*** ./node_modules/core-js/internals/path.js ***! \************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + module.exports = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/redefine.js": -/*!****************************************************!*\ + /***/ './node_modules/core-js/internals/redefine.js': + /*!****************************************************!*\ !*** ./node_modules/core-js/internals/redefine.js ***! \****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js"); -var hide = __webpack_require__(/*! ../internals/hide */ "./node_modules/core-js/internals/hide.js"); -var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js"); -var nativeFunctionToString = __webpack_require__(/*! ../internals/function-to-string */ "./node_modules/core-js/internals/function-to-string.js"); -var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js"); - -var getInternalState = InternalStateModule.get; -var enforceInternalState = InternalStateModule.enforce; -var TEMPLATE = String(nativeFunctionToString).split('toString'); - -shared('inspectSource', function (it) { - return nativeFunctionToString.call(it); -}); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var shared = __webpack_require__( + /*! ../internals/shared */ './node_modules/core-js/internals/shared.js', + ); + var hide = __webpack_require__( + /*! ../internals/hide */ './node_modules/core-js/internals/hide.js', + ); + var has = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var setGlobal = __webpack_require__( + /*! ../internals/set-global */ './node_modules/core-js/internals/set-global.js', + ); + var nativeFunctionToString = __webpack_require__( + /*! ../internals/function-to-string */ './node_modules/core-js/internals/function-to-string.js', + ); + var InternalStateModule = __webpack_require__( + /*! ../internals/internal-state */ './node_modules/core-js/internals/internal-state.js', + ); -(module.exports = function (O, key, value, options) { - var unsafe = options ? !!options.unsafe : false; - var simple = options ? !!options.enumerable : false; - var noTargetGet = options ? !!options.noTargetGet : false; - if (typeof value == 'function') { - if (typeof key == 'string' && !has(value, 'name')) hide(value, 'name', key); - enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : ''); - } - if (O === global) { - if (simple) O[key] = value; - else setGlobal(key, value); - return; - } else if (!unsafe) { - delete O[key]; - } else if (!noTargetGet && O[key]) { - simple = true; - } - if (simple) O[key] = value; - else hide(O, key, value); -// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative -})(Function.prototype, 'toString', function toString() { - return typeof this == 'function' && getInternalState(this).source || nativeFunctionToString.call(this); -}); + var getInternalState = InternalStateModule.get; + var enforceInternalState = InternalStateModule.enforce; + var TEMPLATE = String(nativeFunctionToString).split('toString'); + + shared('inspectSource', function (it) { + return nativeFunctionToString.call(it); + }); + (module.exports = function (O, key, value, options) { + var unsafe = options ? !!options.unsafe : false; + var simple = options ? !!options.enumerable : false; + var noTargetGet = options ? !!options.noTargetGet : false; + if (typeof value == 'function') { + if (typeof key == 'string' && !has(value, 'name')) + hide(value, 'name', key); + enforceInternalState(value).source = TEMPLATE.join( + typeof key == 'string' ? key : '', + ); + } + if (O === global) { + if (simple) O[key] = value; + else setGlobal(key, value); + return; + } else if (!unsafe) { + delete O[key]; + } else if (!noTargetGet && O[key]) { + simple = true; + } + if (simple) O[key] = value; + else hide(O, key, value); + // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative + })(Function.prototype, 'toString', function toString() { + return ( + (typeof this == 'function' && getInternalState(this).source) || + nativeFunctionToString.call(this) + ); + }); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/require-object-coercible.js": -/*!********************************************************************!*\ + /***/ './node_modules/core-js/internals/require-object-coercible.js': + /*!********************************************************************!*\ !*** ./node_modules/core-js/internals/require-object-coercible.js ***! \********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -// `RequireObjectCoercible` abstract operation -// https://tc39.github.io/ecma262/#sec-requireobjectcoercible -module.exports = function (it) { - if (it == undefined) throw TypeError("Can't call method on " + it); - return it; -}; - - -/***/ }), + /*! no static exports found */ + /***/ function (module, exports) { + // `RequireObjectCoercible` abstract operation + // https://tc39.github.io/ecma262/#sec-requireobjectcoercible + module.exports = function (it) { + if (it == undefined) + throw TypeError("Can't call method on " + it); + return it; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/set-global.js": -/*!******************************************************!*\ + /***/ './node_modules/core-js/internals/set-global.js': + /*!******************************************************!*\ !*** ./node_modules/core-js/internals/set-global.js ***! \******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var hide = __webpack_require__(/*! ../internals/hide */ "./node_modules/core-js/internals/hide.js"); - -module.exports = function (key, value) { - try { - hide(global, key, value); - } catch (error) { - global[key] = value; - } return value; -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var hide = __webpack_require__( + /*! ../internals/hide */ './node_modules/core-js/internals/hide.js', + ); + module.exports = function (key, value) { + try { + hide(global, key, value); + } catch (error) { + global[key] = value; + } + return value; + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/set-to-string-tag.js": -/*!*************************************************************!*\ + /***/ './node_modules/core-js/internals/set-to-string-tag.js': + /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/set-to-string-tag.js ***! \*************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f; -var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js"); -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js"); - -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var defineProperty = __webpack_require__( + /*! ../internals/object-define-property */ './node_modules/core-js/internals/object-define-property.js', + ).f; + var has = __webpack_require__( + /*! ../internals/has */ './node_modules/core-js/internals/has.js', + ); + var wellKnownSymbol = __webpack_require__( + /*! ../internals/well-known-symbol */ './node_modules/core-js/internals/well-known-symbol.js', + ); -module.exports = function (it, TAG, STATIC) { - if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) { - defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG }); - } -}; + var TO_STRING_TAG = wellKnownSymbol('toStringTag'); + module.exports = function (it, TAG, STATIC) { + if ( + it && + !has((it = STATIC ? it : it.prototype), TO_STRING_TAG) + ) { + defineProperty(it, TO_STRING_TAG, { + configurable: true, + value: TAG, + }); + } + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/shared-key.js": -/*!******************************************************!*\ + /***/ './node_modules/core-js/internals/shared-key.js': + /*!******************************************************!*\ !*** ./node_modules/core-js/internals/shared-key.js ***! \******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js"); -var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js"); - -var keys = shared('keys'); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var shared = __webpack_require__( + /*! ../internals/shared */ './node_modules/core-js/internals/shared.js', + ); + var uid = __webpack_require__( + /*! ../internals/uid */ './node_modules/core-js/internals/uid.js', + ); -module.exports = function (key) { - return keys[key] || (keys[key] = uid(key)); -}; + var keys = shared('keys'); + module.exports = function (key) { + return keys[key] || (keys[key] = uid(key)); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/shared.js": -/*!**************************************************!*\ + /***/ './node_modules/core-js/internals/shared.js': + /*!**************************************************!*\ !*** ./node_modules/core-js/internals/shared.js ***! \**************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js"); -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js"); - -var SHARED = '__core-js_shared__'; -var store = global[SHARED] || setGlobal(SHARED, {}); - -(module.exports = function (key, value) { - return store[key] || (store[key] = value !== undefined ? value : {}); -})('versions', []).push({ - version: '3.1.3', - mode: IS_PURE ? 'pure' : 'global', - copyright: '© 2019 Denis Pushkarev (zloirock.ru)' -}); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var setGlobal = __webpack_require__( + /*! ../internals/set-global */ './node_modules/core-js/internals/set-global.js', + ); + var IS_PURE = __webpack_require__( + /*! ../internals/is-pure */ './node_modules/core-js/internals/is-pure.js', + ); + var SHARED = '__core-js_shared__'; + var store = global[SHARED] || setGlobal(SHARED, {}); + + (module.exports = function (key, value) { + return ( + store[key] || (store[key] = value !== undefined ? value : {}) + ); + })('versions', []).push({ + version: '3.1.3', + mode: IS_PURE ? 'pure' : 'global', + copyright: '© 2019 Denis Pushkarev (zloirock.ru)', + }); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/string-at.js": -/*!*****************************************************!*\ + /***/ './node_modules/core-js/internals/string-at.js': + /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/string-at.js ***! \*****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js"); -var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js"); - -// CONVERT_TO_STRING: true -> String#at -// CONVERT_TO_STRING: false -> String#codePointAt -module.exports = function (that, pos, CONVERT_TO_STRING) { - var S = String(requireObjectCoercible(that)); - var position = toInteger(pos); - var size = S.length; - var first, second; - if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; - first = S.charCodeAt(position); - return first < 0xD800 || first > 0xDBFF || position + 1 === size - || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF - ? CONVERT_TO_STRING ? S.charAt(position) : first - : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; -}; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var toInteger = __webpack_require__( + /*! ../internals/to-integer */ './node_modules/core-js/internals/to-integer.js', + ); + var requireObjectCoercible = __webpack_require__( + /*! ../internals/require-object-coercible */ './node_modules/core-js/internals/require-object-coercible.js', + ); -/***/ }), + // CONVERT_TO_STRING: true -> String#at + // CONVERT_TO_STRING: false -> String#codePointAt + module.exports = function (that, pos, CONVERT_TO_STRING) { + var S = String(requireObjectCoercible(that)); + var position = toInteger(pos); + var size = S.length; + var first, second; + if (position < 0 || position >= size) + return CONVERT_TO_STRING ? '' : undefined; + first = S.charCodeAt(position); + return first < 0xd800 || + first > 0xdbff || + position + 1 === size || + (second = S.charCodeAt(position + 1)) < 0xdc00 || + second > 0xdfff + ? CONVERT_TO_STRING + ? S.charAt(position) + : first + : CONVERT_TO_STRING + ? S.slice(position, position + 2) + : ((first - 0xd800) << 10) + (second - 0xdc00) + 0x10000; + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/to-absolute-index.js": -/*!*************************************************************!*\ + /***/ './node_modules/core-js/internals/to-absolute-index.js': + /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/to-absolute-index.js ***! \*************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js"); - -var max = Math.max; -var min = Math.min; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var toInteger = __webpack_require__( + /*! ../internals/to-integer */ './node_modules/core-js/internals/to-integer.js', + ); -// Helper for a popular repeating case of the spec: -// Let integer be ? ToInteger(index). -// If integer < 0, let result be max((length + integer), 0); else let result be min(length, length). -module.exports = function (index, length) { - var integer = toInteger(index); - return integer < 0 ? max(integer + length, 0) : min(integer, length); -}; + var max = Math.max; + var min = Math.min; + // Helper for a popular repeating case of the spec: + // Let integer be ? ToInteger(index). + // If integer < 0, let result be max((length + integer), 0); else let result be min(length, length). + module.exports = function (index, length) { + var integer = toInteger(index); + return integer < 0 + ? max(integer + length, 0) + : min(integer, length); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/to-indexed-object.js": -/*!*************************************************************!*\ + /***/ './node_modules/core-js/internals/to-indexed-object.js': + /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/to-indexed-object.js ***! \*************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -// toObject with fallback for non-array-like ES3 strings -var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/core-js/internals/indexed-object.js"); -var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js"); - -module.exports = function (it) { - return IndexedObject(requireObjectCoercible(it)); -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + // toObject with fallback for non-array-like ES3 strings + var IndexedObject = __webpack_require__( + /*! ../internals/indexed-object */ './node_modules/core-js/internals/indexed-object.js', + ); + var requireObjectCoercible = __webpack_require__( + /*! ../internals/require-object-coercible */ './node_modules/core-js/internals/require-object-coercible.js', + ); + module.exports = function (it) { + return IndexedObject(requireObjectCoercible(it)); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/to-integer.js": -/*!******************************************************!*\ + /***/ './node_modules/core-js/internals/to-integer.js': + /*!******************************************************!*\ !*** ./node_modules/core-js/internals/to-integer.js ***! \******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -var ceil = Math.ceil; -var floor = Math.floor; - -// `ToInteger` abstract operation -// https://tc39.github.io/ecma262/#sec-tointeger -module.exports = function (argument) { - return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument); -}; - - -/***/ }), + /*! no static exports found */ + /***/ function (module, exports) { + var ceil = Math.ceil; + var floor = Math.floor; + + // `ToInteger` abstract operation + // https://tc39.github.io/ecma262/#sec-tointeger + module.exports = function (argument) { + return isNaN((argument = +argument)) + ? 0 + : (argument > 0 ? floor : ceil)(argument); + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/to-length.js": -/*!*****************************************************!*\ + /***/ './node_modules/core-js/internals/to-length.js': + /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/to-length.js ***! \*****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js"); - -var min = Math.min; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var toInteger = __webpack_require__( + /*! ../internals/to-integer */ './node_modules/core-js/internals/to-integer.js', + ); -// `ToLength` abstract operation -// https://tc39.github.io/ecma262/#sec-tolength -module.exports = function (argument) { - return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 -}; + var min = Math.min; + // `ToLength` abstract operation + // https://tc39.github.io/ecma262/#sec-tolength + module.exports = function (argument) { + return argument > 0 + ? min(toInteger(argument), 0x1fffffffffffff) + : 0; // 2 ** 53 - 1 == 9007199254740991 + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/to-object.js": -/*!*****************************************************!*\ + /***/ './node_modules/core-js/internals/to-object.js': + /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/to-object.js ***! \*****************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js"); - -// `ToObject` abstract operation -// https://tc39.github.io/ecma262/#sec-toobject -module.exports = function (argument) { - return Object(requireObjectCoercible(argument)); -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var requireObjectCoercible = __webpack_require__( + /*! ../internals/require-object-coercible */ './node_modules/core-js/internals/require-object-coercible.js', + ); + // `ToObject` abstract operation + // https://tc39.github.io/ecma262/#sec-toobject + module.exports = function (argument) { + return Object(requireObjectCoercible(argument)); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/to-primitive.js": -/*!********************************************************!*\ + /***/ './node_modules/core-js/internals/to-primitive.js': + /*!********************************************************!*\ !*** ./node_modules/core-js/internals/to-primitive.js ***! \********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js"); - -// 7.1.1 ToPrimitive(input [, PreferredType]) -// instead of the ES6 spec version, we didn't implement @@toPrimitive case -// and the second argument - flag - preferred type is a string -module.exports = function (it, S) { - if (!isObject(it)) return it; - var fn, val; - if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; - if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val; - if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; - throw TypeError("Can't convert object to primitive value"); -}; - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var isObject = __webpack_require__( + /*! ../internals/is-object */ './node_modules/core-js/internals/is-object.js', + ); -/***/ }), + // 7.1.1 ToPrimitive(input [, PreferredType]) + // instead of the ES6 spec version, we didn't implement @@toPrimitive case + // and the second argument - flag - preferred type is a string + module.exports = function (it, S) { + if (!isObject(it)) return it; + var fn, val; + if ( + S && + typeof (fn = it.toString) == 'function' && + !isObject((val = fn.call(it))) + ) + return val; + if ( + typeof (fn = it.valueOf) == 'function' && + !isObject((val = fn.call(it))) + ) + return val; + if ( + !S && + typeof (fn = it.toString) == 'function' && + !isObject((val = fn.call(it))) + ) + return val; + throw TypeError("Can't convert object to primitive value"); + }; + + /***/ + }, -/***/ "./node_modules/core-js/internals/uid.js": -/*!***********************************************!*\ + /***/ './node_modules/core-js/internals/uid.js': + /*!***********************************************!*\ !*** ./node_modules/core-js/internals/uid.js ***! \***********************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -var id = 0; -var postfix = Math.random(); - -module.exports = function (key) { - return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + postfix).toString(36)); -}; - + /*! no static exports found */ + /***/ function (module, exports) { + var id = 0; + var postfix = Math.random(); + + module.exports = function (key) { + return 'Symbol('.concat( + key === undefined ? '' : key, + ')_', + (++id + postfix).toString(36), + ); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/validate-set-prototype-of-arguments.js": -/*!*******************************************************************************!*\ + /***/ './node_modules/core-js/internals/validate-set-prototype-of-arguments.js': + /*!*******************************************************************************!*\ !*** ./node_modules/core-js/internals/validate-set-prototype-of-arguments.js ***! \*******************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js"); -var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js"); - -module.exports = function (O, proto) { - anObject(O); - if (!isObject(proto) && proto !== null) { - throw TypeError("Can't set " + String(proto) + ' as a prototype'); - } -}; + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var isObject = __webpack_require__( + /*! ../internals/is-object */ './node_modules/core-js/internals/is-object.js', + ); + var anObject = __webpack_require__( + /*! ../internals/an-object */ './node_modules/core-js/internals/an-object.js', + ); + module.exports = function (O, proto) { + anObject(O); + if (!isObject(proto) && proto !== null) { + throw TypeError( + "Can't set " + String(proto) + ' as a prototype', + ); + } + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/internals/well-known-symbol.js": -/*!*************************************************************!*\ + /***/ './node_modules/core-js/internals/well-known-symbol.js': + /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/well-known-symbol.js ***! \*************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js"); -var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js"); -var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js"); -var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/core-js/internals/native-symbol.js"); - -var Symbol = global.Symbol; -var store = shared('wks'); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var global = __webpack_require__( + /*! ../internals/global */ './node_modules/core-js/internals/global.js', + ); + var shared = __webpack_require__( + /*! ../internals/shared */ './node_modules/core-js/internals/shared.js', + ); + var uid = __webpack_require__( + /*! ../internals/uid */ './node_modules/core-js/internals/uid.js', + ); + var NATIVE_SYMBOL = __webpack_require__( + /*! ../internals/native-symbol */ './node_modules/core-js/internals/native-symbol.js', + ); -module.exports = function (name) { - return store[name] || (store[name] = NATIVE_SYMBOL && Symbol[name] - || (NATIVE_SYMBOL ? Symbol : uid)('Symbol.' + name)); -}; + var Symbol = global.Symbol; + var store = shared('wks'); + module.exports = function (name) { + return ( + store[name] || + (store[name] = + (NATIVE_SYMBOL && Symbol[name]) || + (NATIVE_SYMBOL ? Symbol : uid)('Symbol.' + name)) + ); + }; -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/modules/es.array.from.js": -/*!*******************************************************!*\ + /***/ './node_modules/core-js/modules/es.array.from.js': + /*!*******************************************************!*\ !*** ./node_modules/core-js/modules/es.array.from.js ***! \*******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js"); -var from = __webpack_require__(/*! ../internals/array-from */ "./node_modules/core-js/internals/array-from.js"); -var checkCorrectnessOfIteration = __webpack_require__(/*! ../internals/check-correctness-of-iteration */ "./node_modules/core-js/internals/check-correctness-of-iteration.js"); - -var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) { - Array.from(iterable); -}); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var $ = __webpack_require__( + /*! ../internals/export */ './node_modules/core-js/internals/export.js', + ); + var from = __webpack_require__( + /*! ../internals/array-from */ './node_modules/core-js/internals/array-from.js', + ); + var checkCorrectnessOfIteration = __webpack_require__( + /*! ../internals/check-correctness-of-iteration */ './node_modules/core-js/internals/check-correctness-of-iteration.js', + ); -// `Array.from` method -// https://tc39.github.io/ecma262/#sec-array.from -$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, { - from: from -}); + var INCORRECT_ITERATION = !checkCorrectnessOfIteration( + function (iterable) { + Array.from(iterable); + }, + ); + // `Array.from` method + // https://tc39.github.io/ecma262/#sec-array.from + $( + { target: 'Array', stat: true, forced: INCORRECT_ITERATION }, + { + from: from, + }, + ); -/***/ }), + /***/ + }, -/***/ "./node_modules/core-js/modules/es.string.iterator.js": -/*!************************************************************!*\ + /***/ './node_modules/core-js/modules/es.string.iterator.js': + /*!************************************************************!*\ !*** ./node_modules/core-js/modules/es.string.iterator.js ***! \************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var codePointAt = __webpack_require__(/*! ../internals/string-at */ "./node_modules/core-js/internals/string-at.js"); -var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js"); -var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/core-js/internals/define-iterator.js"); - -var STRING_ITERATOR = 'String Iterator'; -var setInternalState = InternalStateModule.set; -var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR); - -// `String.prototype[@@iterator]` method -// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator -defineIterator(String, 'String', function (iterated) { - setInternalState(this, { - type: STRING_ITERATOR, - string: String(iterated), - index: 0 - }); -// `%StringIteratorPrototype%.next` method -// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next -}, function next() { - var state = getInternalState(this); - var string = state.string; - var index = state.index; - var point; - if (index >= string.length) return { value: undefined, done: true }; - point = codePointAt(string, index, true); - state.index += point.length; - return { value: point, done: false }; -}); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var codePointAt = __webpack_require__( + /*! ../internals/string-at */ './node_modules/core-js/internals/string-at.js', + ); + var InternalStateModule = __webpack_require__( + /*! ../internals/internal-state */ './node_modules/core-js/internals/internal-state.js', + ); + var defineIterator = __webpack_require__( + /*! ../internals/define-iterator */ './node_modules/core-js/internals/define-iterator.js', + ); + var STRING_ITERATOR = 'String Iterator'; + var setInternalState = InternalStateModule.set; + var getInternalState = + InternalStateModule.getterFor(STRING_ITERATOR); + + // `String.prototype[@@iterator]` method + // https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator + defineIterator( + String, + 'String', + function (iterated) { + setInternalState(this, { + type: STRING_ITERATOR, + string: String(iterated), + index: 0, + }); + // `%StringIteratorPrototype%.next` method + // https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next + }, + function next() { + var state = getInternalState(this); + var string = state.string; + var index = state.index; + var point; + if (index >= string.length) + return { value: undefined, done: true }; + point = codePointAt(string, index, true); + state.index += point.length; + return { value: point, done: false }; + }, + ); -/***/ }), + /***/ + }, -/***/ "./node_modules/webpack/buildin/global.js": -/*!***********************************!*\ + /***/ './node_modules/webpack/buildin/global.js': + /*!***********************************!*\ !*** (webpack)/buildin/global.js ***! \***********************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -var g; + /*! no static exports found */ + /***/ function (module, exports) { + var g; -// This works in non-strict mode -g = (function() { - return this; -})(); - -try { - // This works if eval is allowed (see CSP) - g = g || Function("return this")() || (1, eval)("this"); -} catch (e) { - // This works if the window reference is available - if (typeof window === "object") g = window; -} + // This works in non-strict mode + g = (function () { + return this; + })(); -// g can still be undefined, but nothing to do about it... -// We return undefined, instead of nothing here, so it's -// easier to handle this case. if(!global) { ...} + try { + // This works if eval is allowed (see CSP) + g = g || Function('return this')() || (1, eval)('this'); + } catch (e) { + // This works if the window reference is available + if (typeof window === 'object') g = window; + } -module.exports = g; + // g can still be undefined, but nothing to do about it... + // We return undefined, instead of nothing here, so it's + // easier to handle this case. if(!global) { ...} + module.exports = g; -/***/ }), + /***/ + }, -/***/ "./src/default-attrs.json": -/*!********************************!*\ + /***/ './src/default-attrs.json': + /*!********************************!*\ !*** ./src/default-attrs.json ***! \********************************/ -/*! exports provided: xmlns, width, height, viewBox, fill, stroke, stroke-width, stroke-linecap, stroke-linejoin, default */ -/***/ (function(module) { - -module.exports = {"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"}; - -/***/ }), + /*! exports provided: xmlns, width, height, viewBox, fill, stroke, stroke-width, stroke-linecap, stroke-linejoin, default */ + /***/ function (module) { + module.exports = { + xmlns: 'http://www.w3.org/2000/svg', + width: 24, + height: 24, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + 'stroke-width': 2, + 'stroke-linecap': 'round', + 'stroke-linejoin': 'round', + }; + + /***/ + }, -/***/ "./src/icon.js": -/*!*********************!*\ + /***/ './src/icon.js': + /*!*********************!*\ !*** ./src/icon.js ***! \*********************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - - -Object.defineProperty(exports, "__esModule", { - value: true -}); - -var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; - -var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); - -var _dedupe = __webpack_require__(/*! classnames/dedupe */ "./node_modules/classnames/dedupe.js"); - -var _dedupe2 = _interopRequireDefault(_dedupe); - -var _defaultAttrs = __webpack_require__(/*! ./default-attrs.json */ "./src/default-attrs.json"); - -var _defaultAttrs2 = _interopRequireDefault(_defaultAttrs); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -var Icon = function () { - function Icon(name, contents) { - var tags = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : []; - - _classCallCheck(this, Icon); - - this.name = name; - this.contents = contents; - this.tags = tags; - this.attrs = _extends({}, _defaultAttrs2.default, { class: 'feather feather-' + name }); - } + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + Object.defineProperty(exports, '__esModule', { + value: true, + }); - /** - * Create an SVG string. - * @param {Object} attrs - * @returns {string} - */ + var _extends = + Object.assign || + function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + return target; + }; + + var _createClass = (function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ('value' in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + return function (Constructor, protoProps, staticProps) { + if (protoProps) + defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; + })(); + + var _dedupe = __webpack_require__( + /*! classnames/dedupe */ './node_modules/classnames/dedupe.js', + ); + var _dedupe2 = _interopRequireDefault(_dedupe); - _createClass(Icon, [{ - key: 'toSvg', - value: function toSvg() { - var attrs = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _defaultAttrs = __webpack_require__( + /*! ./default-attrs.json */ './src/default-attrs.json', + ); - var combinedAttrs = _extends({}, this.attrs, attrs, { class: (0, _dedupe2.default)(this.attrs.class, attrs.class) }); + var _defaultAttrs2 = _interopRequireDefault(_defaultAttrs); - return '' + this.contents + ''; - } + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } - /** - * Return string representation of an `Icon`. - * - * Added for backward compatibility. If old code expects `feather.icons.` - * to be a string, `toString()` will get implicitly called. - * - * @returns {string} - */ + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError('Cannot call a class as a function'); + } + } - }, { - key: 'toString', - value: function toString() { - return this.contents; - } - }]); + var Icon = (function () { + function Icon(name, contents) { + var tags = + arguments.length > 2 && arguments[2] !== undefined + ? arguments[2] + : []; - return Icon; -}(); + _classCallCheck(this, Icon); -/** - * Convert attributes object to string of HTML attributes. - * @param {Object} attrs - * @returns {string} - */ + this.name = name; + this.contents = contents; + this.tags = tags; + this.attrs = _extends({}, _defaultAttrs2.default, { + class: 'feather feather-' + name, + }); + } + /** + * Create an SVG string. + * @param {Object} attrs + * @returns {string} + */ + + _createClass(Icon, [ + { + key: 'toSvg', + value: function toSvg() { + var attrs = + arguments.length > 0 && arguments[0] !== undefined + ? arguments[0] + : {}; + + var combinedAttrs = _extends({}, this.attrs, attrs, { + class: (0, _dedupe2.default)( + this.attrs.class, + attrs.class, + ), + }); -function attrsToString(attrs) { - return Object.keys(attrs).map(function (key) { - return key + '="' + attrs[key] + '"'; - }).join(' '); -} + return ( + '' + + this.contents + + '' + ); + }, + + /** + * Return string representation of an `Icon`. + * + * Added for backward compatibility. If old code expects `feather.icons.` + * to be a string, `toString()` will get implicitly called. + * + * @returns {string} + */ + }, + { + key: 'toString', + value: function toString() { + return this.contents; + }, + }, + ]); + + return Icon; + })(); + + /** + * Convert attributes object to string of HTML attributes. + * @param {Object} attrs + * @returns {string} + */ + + function attrsToString(attrs) { + return Object.keys(attrs) + .map(function (key) { + return key + '="' + attrs[key] + '"'; + }) + .join(' '); + } -exports.default = Icon; + exports.default = Icon; -/***/ }), + /***/ + }, -/***/ "./src/icons.js": -/*!**********************!*\ + /***/ './src/icons.js': + /*!**********************!*\ !*** ./src/icons.js ***! \**********************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - - -Object.defineProperty(exports, "__esModule", { - value: true -}); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + Object.defineProperty(exports, '__esModule', { + value: true, + }); -var _icon = __webpack_require__(/*! ./icon */ "./src/icon.js"); + var _icon = __webpack_require__(/*! ./icon */ './src/icon.js'); -var _icon2 = _interopRequireDefault(_icon); + var _icon2 = _interopRequireDefault(_icon); -var _icons = __webpack_require__(/*! ../dist/icons.json */ "./dist/icons.json"); + var _icons = __webpack_require__( + /*! ../dist/icons.json */ './dist/icons.json', + ); -var _icons2 = _interopRequireDefault(_icons); + var _icons2 = _interopRequireDefault(_icons); -var _tags = __webpack_require__(/*! ./tags.json */ "./src/tags.json"); + var _tags = __webpack_require__( + /*! ./tags.json */ './src/tags.json', + ); -var _tags2 = _interopRequireDefault(_tags); + var _tags2 = _interopRequireDefault(_tags); -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } -exports.default = Object.keys(_icons2.default).map(function (key) { - return new _icon2.default(key, _icons2.default[key], _tags2.default[key]); -}).reduce(function (object, icon) { - object[icon.name] = icon; - return object; -}, {}); + exports.default = Object.keys(_icons2.default) + .map(function (key) { + return new _icon2.default( + key, + _icons2.default[key], + _tags2.default[key], + ); + }) + .reduce(function (object, icon) { + object[icon.name] = icon; + return object; + }, {}); -/***/ }), + /***/ + }, -/***/ "./src/index.js": -/*!**********************!*\ + /***/ './src/index.js': + /*!**********************!*\ !*** ./src/index.js ***! \**********************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + var _icons = __webpack_require__(/*! ./icons */ './src/icons.js'); -var _icons = __webpack_require__(/*! ./icons */ "./src/icons.js"); + var _icons2 = _interopRequireDefault(_icons); -var _icons2 = _interopRequireDefault(_icons); + var _toSvg = __webpack_require__(/*! ./to-svg */ './src/to-svg.js'); -var _toSvg = __webpack_require__(/*! ./to-svg */ "./src/to-svg.js"); + var _toSvg2 = _interopRequireDefault(_toSvg); -var _toSvg2 = _interopRequireDefault(_toSvg); - -var _replace = __webpack_require__(/*! ./replace */ "./src/replace.js"); + var _replace = __webpack_require__( + /*! ./replace */ './src/replace.js', + ); -var _replace2 = _interopRequireDefault(_replace); + var _replace2 = _interopRequireDefault(_replace); -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } -module.exports = { icons: _icons2.default, toSvg: _toSvg2.default, replace: _replace2.default }; + module.exports = { + icons: _icons2.default, + toSvg: _toSvg2.default, + replace: _replace2.default, + }; -/***/ }), + /***/ + }, -/***/ "./src/replace.js": -/*!************************!*\ + /***/ './src/replace.js': + /*!************************!*\ !*** ./src/replace.js ***! \************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - - -Object.defineProperty(exports, "__esModule", { - value: true -}); - -var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; /* eslint-env browser */ - - -var _dedupe = __webpack_require__(/*! classnames/dedupe */ "./node_modules/classnames/dedupe.js"); - -var _dedupe2 = _interopRequireDefault(_dedupe); + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + Object.defineProperty(exports, '__esModule', { + value: true, + }); -var _icons = __webpack_require__(/*! ./icons */ "./src/icons.js"); + var _extends = + Object.assign || + function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + return target; + }; /* eslint-env browser */ -var _icons2 = _interopRequireDefault(_icons); + var _dedupe = __webpack_require__( + /*! classnames/dedupe */ './node_modules/classnames/dedupe.js', + ); -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + var _dedupe2 = _interopRequireDefault(_dedupe); -/** - * Replace all HTML elements that have a `data-feather` attribute with SVG markup - * corresponding to the element's `data-feather` attribute value. - * @param {Object} attrs - */ -function replace() { - var attrs = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _icons = __webpack_require__(/*! ./icons */ './src/icons.js'); - if (typeof document === 'undefined') { - throw new Error('`feather.replace()` only works in a browser environment.'); - } + var _icons2 = _interopRequireDefault(_icons); - var elementsToReplace = document.querySelectorAll('[data-feather]'); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } - Array.from(elementsToReplace).forEach(function (element) { - return replaceElement(element, attrs); - }); -} + /** + * Replace all HTML elements that have a `data-feather` attribute with SVG markup + * corresponding to the element's `data-feather` attribute value. + * @param {Object} attrs + */ + function replace() { + var attrs = + arguments.length > 0 && arguments[0] !== undefined + ? arguments[0] + : {}; + + if (typeof document === 'undefined') { + throw new Error( + '`feather.replace()` only works in a browser environment.', + ); + } -/** - * Replace a single HTML element with SVG markup - * corresponding to the element's `data-feather` attribute value. - * @param {HTMLElement} element - * @param {Object} attrs - */ -function replaceElement(element) { - var attrs = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var elementsToReplace = + document.querySelectorAll('[data-feather]'); - var elementAttrs = getAttrs(element); - var name = elementAttrs['data-feather']; - delete elementAttrs['data-feather']; + Array.from(elementsToReplace).forEach(function (element) { + return replaceElement(element, attrs); + }); + } - var svgString = _icons2.default[name].toSvg(_extends({}, attrs, elementAttrs, { class: (0, _dedupe2.default)(attrs.class, elementAttrs.class) })); - var svgDocument = new DOMParser().parseFromString(svgString, 'image/svg+xml'); - var svgElement = svgDocument.querySelector('svg'); + /** + * Replace a single HTML element with SVG markup + * corresponding to the element's `data-feather` attribute value. + * @param {HTMLElement} element + * @param {Object} attrs + */ + function replaceElement(element) { + var attrs = + arguments.length > 1 && arguments[1] !== undefined + ? arguments[1] + : {}; + + var elementAttrs = getAttrs(element); + var name = elementAttrs['data-feather']; + delete elementAttrs['data-feather']; + + var svgString = _icons2.default[name].toSvg( + _extends({}, attrs, elementAttrs, { + class: (0, _dedupe2.default)(attrs.class, elementAttrs.class), + }), + ); + var svgDocument = new DOMParser().parseFromString( + svgString, + 'image/svg+xml', + ); + var svgElement = svgDocument.querySelector('svg'); - element.parentNode.replaceChild(svgElement, element); -} + element.parentNode.replaceChild(svgElement, element); + } -/** - * Get the attributes of an HTML element. - * @param {HTMLElement} element - * @returns {Object} - */ -function getAttrs(element) { - return Array.from(element.attributes).reduce(function (attrs, attr) { - attrs[attr.name] = attr.value; - return attrs; - }, {}); -} + /** + * Get the attributes of an HTML element. + * @param {HTMLElement} element + * @returns {Object} + */ + function getAttrs(element) { + return Array.from(element.attributes).reduce(function ( + attrs, + attr, + ) { + attrs[attr.name] = attr.value; + return attrs; + }, {}); + } -exports.default = replace; + exports.default = replace; -/***/ }), + /***/ + }, -/***/ "./src/tags.json": -/*!***********************!*\ + /***/ './src/tags.json': + /*!***********************!*\ !*** ./src/tags.json ***! \***********************/ -/*! exports provided: activity, airplay, alert-circle, alert-octagon, alert-triangle, align-center, align-justify, align-left, align-right, anchor, archive, at-sign, award, aperture, bar-chart, bar-chart-2, battery, battery-charging, bell, bell-off, bluetooth, book-open, book, bookmark, box, briefcase, calendar, camera, cast, circle, clipboard, clock, cloud-drizzle, cloud-lightning, cloud-rain, cloud-snow, cloud, codepen, codesandbox, code, coffee, columns, command, compass, copy, corner-down-left, corner-down-right, corner-left-down, corner-left-up, corner-right-down, corner-right-up, corner-up-left, corner-up-right, cpu, credit-card, crop, crosshair, database, delete, disc, dollar-sign, droplet, edit, edit-2, edit-3, eye, eye-off, external-link, facebook, fast-forward, figma, file-minus, file-plus, file-text, film, filter, flag, folder-minus, folder-plus, folder, framer, frown, gift, git-branch, git-commit, git-merge, git-pull-request, github, gitlab, globe, hard-drive, hash, headphones, heart, help-circle, hexagon, home, image, inbox, instagram, key, layers, layout, life-bouy, link, link-2, linkedin, list, lock, log-in, log-out, mail, map-pin, map, maximize, maximize-2, meh, menu, message-circle, message-square, mic-off, mic, minimize, minimize-2, minus, monitor, moon, more-horizontal, more-vertical, mouse-pointer, move, music, navigation, navigation-2, octagon, package, paperclip, pause, pause-circle, pen-tool, percent, phone-call, phone-forwarded, phone-incoming, phone-missed, phone-off, phone-outgoing, phone, play, pie-chart, play-circle, plus, plus-circle, plus-square, pocket, power, printer, radio, refresh-cw, refresh-ccw, repeat, rewind, rotate-ccw, rotate-cw, rss, save, scissors, search, send, settings, share-2, shield, shield-off, shopping-bag, shopping-cart, shuffle, skip-back, skip-forward, slack, slash, sliders, smartphone, smile, speaker, star, stop-circle, sun, sunrise, sunset, tablet, tag, target, terminal, thermometer, thumbs-down, thumbs-up, toggle-left, toggle-right, tool, trash, trash-2, triangle, truck, tv, twitch, twitter, type, umbrella, unlock, user-check, user-minus, user-plus, user-x, user, users, video-off, video, voicemail, volume, volume-1, volume-2, volume-x, watch, wifi-off, wifi, wind, x-circle, x-octagon, x-square, x, youtube, zap-off, zap, zoom-in, zoom-out, default */ -/***/ (function(module) { - -module.exports = {"activity":["pulse","health","action","motion"],"airplay":["stream","cast","mirroring"],"alert-circle":["warning","alert","danger"],"alert-octagon":["warning","alert","danger"],"alert-triangle":["warning","alert","danger"],"align-center":["text alignment","center"],"align-justify":["text alignment","justified"],"align-left":["text alignment","left"],"align-right":["text alignment","right"],"anchor":[],"archive":["index","box"],"at-sign":["mention","at","email","message"],"award":["achievement","badge"],"aperture":["camera","photo"],"bar-chart":["statistics","diagram","graph"],"bar-chart-2":["statistics","diagram","graph"],"battery":["power","electricity"],"battery-charging":["power","electricity"],"bell":["alarm","notification","sound"],"bell-off":["alarm","notification","silent"],"bluetooth":["wireless"],"book-open":["read","library"],"book":["read","dictionary","booklet","magazine","library"],"bookmark":["read","clip","marker","tag"],"box":["cube"],"briefcase":["work","bag","baggage","folder"],"calendar":["date"],"camera":["photo"],"cast":["chromecast","airplay"],"circle":["off","zero","record"],"clipboard":["copy"],"clock":["time","watch","alarm"],"cloud-drizzle":["weather","shower"],"cloud-lightning":["weather","bolt"],"cloud-rain":["weather"],"cloud-snow":["weather","blizzard"],"cloud":["weather"],"codepen":["logo"],"codesandbox":["logo"],"code":["source","programming"],"coffee":["drink","cup","mug","tea","cafe","hot","beverage"],"columns":["layout"],"command":["keyboard","cmd","terminal","prompt"],"compass":["navigation","safari","travel","direction"],"copy":["clone","duplicate"],"corner-down-left":["arrow","return"],"corner-down-right":["arrow"],"corner-left-down":["arrow"],"corner-left-up":["arrow"],"corner-right-down":["arrow"],"corner-right-up":["arrow"],"corner-up-left":["arrow"],"corner-up-right":["arrow"],"cpu":["processor","technology"],"credit-card":["purchase","payment","cc"],"crop":["photo","image"],"crosshair":["aim","target"],"database":["storage","memory"],"delete":["remove"],"disc":["album","cd","dvd","music"],"dollar-sign":["currency","money","payment"],"droplet":["water"],"edit":["pencil","change"],"edit-2":["pencil","change"],"edit-3":["pencil","change"],"eye":["view","watch"],"eye-off":["view","watch","hide","hidden"],"external-link":["outbound"],"facebook":["logo","social"],"fast-forward":["music"],"figma":["logo","design","tool"],"file-minus":["delete","remove","erase"],"file-plus":["add","create","new"],"file-text":["data","txt","pdf"],"film":["movie","video"],"filter":["funnel","hopper"],"flag":["report"],"folder-minus":["directory"],"folder-plus":["directory"],"folder":["directory"],"framer":["logo","design","tool"],"frown":["emoji","face","bad","sad","emotion"],"gift":["present","box","birthday","party"],"git-branch":["code","version control"],"git-commit":["code","version control"],"git-merge":["code","version control"],"git-pull-request":["code","version control"],"github":["logo","version control"],"gitlab":["logo","version control"],"globe":["world","browser","language","translate"],"hard-drive":["computer","server","memory","data"],"hash":["hashtag","number","pound"],"headphones":["music","audio","sound"],"heart":["like","love","emotion"],"help-circle":["question mark"],"hexagon":["shape","node.js","logo"],"home":["house","living"],"image":["picture"],"inbox":["email"],"instagram":["logo","camera"],"key":["password","login","authentication","secure"],"layers":["stack"],"layout":["window","webpage"],"life-bouy":["help","life ring","support"],"link":["chain","url"],"link-2":["chain","url"],"linkedin":["logo","social media"],"list":["options"],"lock":["security","password","secure"],"log-in":["sign in","arrow","enter"],"log-out":["sign out","arrow","exit"],"mail":["email","message"],"map-pin":["location","navigation","travel","marker"],"map":["location","navigation","travel"],"maximize":["fullscreen"],"maximize-2":["fullscreen","arrows","expand"],"meh":["emoji","face","neutral","emotion"],"menu":["bars","navigation","hamburger"],"message-circle":["comment","chat"],"message-square":["comment","chat"],"mic-off":["record","sound","mute"],"mic":["record","sound","listen"],"minimize":["exit fullscreen","close"],"minimize-2":["exit fullscreen","arrows","close"],"minus":["subtract"],"monitor":["tv","screen","display"],"moon":["dark","night"],"more-horizontal":["ellipsis"],"more-vertical":["ellipsis"],"mouse-pointer":["arrow","cursor"],"move":["arrows"],"music":["note"],"navigation":["location","travel"],"navigation-2":["location","travel"],"octagon":["stop"],"package":["box","container"],"paperclip":["attachment"],"pause":["music","stop"],"pause-circle":["music","audio","stop"],"pen-tool":["vector","drawing"],"percent":["discount"],"phone-call":["ring"],"phone-forwarded":["call"],"phone-incoming":["call"],"phone-missed":["call"],"phone-off":["call","mute"],"phone-outgoing":["call"],"phone":["call"],"play":["music","start"],"pie-chart":["statistics","diagram"],"play-circle":["music","start"],"plus":["add","new"],"plus-circle":["add","new"],"plus-square":["add","new"],"pocket":["logo","save"],"power":["on","off"],"printer":["fax","office","device"],"radio":["signal"],"refresh-cw":["synchronise","arrows"],"refresh-ccw":["arrows"],"repeat":["loop","arrows"],"rewind":["music"],"rotate-ccw":["arrow"],"rotate-cw":["arrow"],"rss":["feed","subscribe"],"save":["floppy disk"],"scissors":["cut"],"search":["find","magnifier","magnifying glass"],"send":["message","mail","email","paper airplane","paper aeroplane"],"settings":["cog","edit","gear","preferences"],"share-2":["network","connections"],"shield":["security","secure"],"shield-off":["security","insecure"],"shopping-bag":["ecommerce","cart","purchase","store"],"shopping-cart":["ecommerce","cart","purchase","store"],"shuffle":["music"],"skip-back":["music"],"skip-forward":["music"],"slack":["logo"],"slash":["ban","no"],"sliders":["settings","controls"],"smartphone":["cellphone","device"],"smile":["emoji","face","happy","good","emotion"],"speaker":["audio","music"],"star":["bookmark","favorite","like"],"stop-circle":["media","music"],"sun":["brightness","weather","light"],"sunrise":["weather","time","morning","day"],"sunset":["weather","time","evening","night"],"tablet":["device"],"tag":["label"],"target":["logo","bullseye"],"terminal":["code","command line","prompt"],"thermometer":["temperature","celsius","fahrenheit","weather"],"thumbs-down":["dislike","bad","emotion"],"thumbs-up":["like","good","emotion"],"toggle-left":["on","off","switch"],"toggle-right":["on","off","switch"],"tool":["settings","spanner"],"trash":["garbage","delete","remove","bin"],"trash-2":["garbage","delete","remove","bin"],"triangle":["delta"],"truck":["delivery","van","shipping","transport","lorry"],"tv":["television","stream"],"twitch":["logo"],"twitter":["logo","social"],"type":["text"],"umbrella":["rain","weather"],"unlock":["security"],"user-check":["followed","subscribed"],"user-minus":["delete","remove","unfollow","unsubscribe"],"user-plus":["new","add","create","follow","subscribe"],"user-x":["delete","remove","unfollow","unsubscribe","unavailable"],"user":["person","account"],"users":["group"],"video-off":["camera","movie","film"],"video":["camera","movie","film"],"voicemail":["phone"],"volume":["music","sound","mute"],"volume-1":["music","sound"],"volume-2":["music","sound"],"volume-x":["music","sound","mute"],"watch":["clock","time"],"wifi-off":["disabled"],"wifi":["connection","signal","wireless"],"wind":["weather","air"],"x-circle":["cancel","close","delete","remove","times","clear"],"x-octagon":["delete","stop","alert","warning","times","clear"],"x-square":["cancel","close","delete","remove","times","clear"],"x":["cancel","close","delete","remove","times","clear"],"youtube":["logo","video","play"],"zap-off":["flash","camera","lightning"],"zap":["flash","camera","lightning"],"zoom-in":["magnifying glass"],"zoom-out":["magnifying glass"]}; - -/***/ }), + /*! exports provided: activity, airplay, alert-circle, alert-octagon, alert-triangle, align-center, align-justify, align-left, align-right, anchor, archive, at-sign, award, aperture, bar-chart, bar-chart-2, battery, battery-charging, bell, bell-off, bluetooth, book-open, book, bookmark, box, briefcase, calendar, camera, cast, circle, clipboard, clock, cloud-drizzle, cloud-lightning, cloud-rain, cloud-snow, cloud, codepen, codesandbox, code, coffee, columns, command, compass, copy, corner-down-left, corner-down-right, corner-left-down, corner-left-up, corner-right-down, corner-right-up, corner-up-left, corner-up-right, cpu, credit-card, crop, crosshair, database, delete, disc, dollar-sign, droplet, edit, edit-2, edit-3, eye, eye-off, external-link, facebook, fast-forward, figma, file-minus, file-plus, file-text, film, filter, flag, folder-minus, folder-plus, folder, framer, frown, gift, git-branch, git-commit, git-merge, git-pull-request, github, gitlab, globe, hard-drive, hash, headphones, heart, help-circle, hexagon, home, image, inbox, instagram, key, layers, layout, life-bouy, link, link-2, linkedin, list, lock, log-in, log-out, mail, map-pin, map, maximize, maximize-2, meh, menu, message-circle, message-square, mic-off, mic, minimize, minimize-2, minus, monitor, moon, more-horizontal, more-vertical, mouse-pointer, move, music, navigation, navigation-2, octagon, package, paperclip, pause, pause-circle, pen-tool, percent, phone-call, phone-forwarded, phone-incoming, phone-missed, phone-off, phone-outgoing, phone, play, pie-chart, play-circle, plus, plus-circle, plus-square, pocket, power, printer, radio, refresh-cw, refresh-ccw, repeat, rewind, rotate-ccw, rotate-cw, rss, save, scissors, search, send, settings, share-2, shield, shield-off, shopping-bag, shopping-cart, shuffle, skip-back, skip-forward, slack, slash, sliders, smartphone, smile, speaker, star, stop-circle, sun, sunrise, sunset, tablet, tag, target, terminal, thermometer, thumbs-down, thumbs-up, toggle-left, toggle-right, tool, trash, trash-2, triangle, truck, tv, twitch, twitter, type, umbrella, unlock, user-check, user-minus, user-plus, user-x, user, users, video-off, video, voicemail, volume, volume-1, volume-2, volume-x, watch, wifi-off, wifi, wind, x-circle, x-octagon, x-square, x, youtube, zap-off, zap, zoom-in, zoom-out, default */ + /***/ function (module) { + module.exports = { + activity: ['pulse', 'health', 'action', 'motion'], + airplay: ['stream', 'cast', 'mirroring'], + 'alert-circle': ['warning', 'alert', 'danger'], + 'alert-octagon': ['warning', 'alert', 'danger'], + 'alert-triangle': ['warning', 'alert', 'danger'], + 'align-center': ['text alignment', 'center'], + 'align-justify': ['text alignment', 'justified'], + 'align-left': ['text alignment', 'left'], + 'align-right': ['text alignment', 'right'], + anchor: [], + archive: ['index', 'box'], + 'at-sign': ['mention', 'at', 'email', 'message'], + award: ['achievement', 'badge'], + aperture: ['camera', 'photo'], + 'bar-chart': ['statistics', 'diagram', 'graph'], + 'bar-chart-2': ['statistics', 'diagram', 'graph'], + battery: ['power', 'electricity'], + 'battery-charging': ['power', 'electricity'], + bell: ['alarm', 'notification', 'sound'], + 'bell-off': ['alarm', 'notification', 'silent'], + bluetooth: ['wireless'], + 'book-open': ['read', 'library'], + book: ['read', 'dictionary', 'booklet', 'magazine', 'library'], + bookmark: ['read', 'clip', 'marker', 'tag'], + box: ['cube'], + briefcase: ['work', 'bag', 'baggage', 'folder'], + calendar: ['date'], + camera: ['photo'], + cast: ['chromecast', 'airplay'], + circle: ['off', 'zero', 'record'], + clipboard: ['copy'], + clock: ['time', 'watch', 'alarm'], + 'cloud-drizzle': ['weather', 'shower'], + 'cloud-lightning': ['weather', 'bolt'], + 'cloud-rain': ['weather'], + 'cloud-snow': ['weather', 'blizzard'], + cloud: ['weather'], + codepen: ['logo'], + codesandbox: ['logo'], + code: ['source', 'programming'], + coffee: ['drink', 'cup', 'mug', 'tea', 'cafe', 'hot', 'beverage'], + columns: ['layout'], + command: ['keyboard', 'cmd', 'terminal', 'prompt'], + compass: ['navigation', 'safari', 'travel', 'direction'], + copy: ['clone', 'duplicate'], + 'corner-down-left': ['arrow', 'return'], + 'corner-down-right': ['arrow'], + 'corner-left-down': ['arrow'], + 'corner-left-up': ['arrow'], + 'corner-right-down': ['arrow'], + 'corner-right-up': ['arrow'], + 'corner-up-left': ['arrow'], + 'corner-up-right': ['arrow'], + cpu: ['processor', 'technology'], + 'credit-card': ['purchase', 'payment', 'cc'], + crop: ['photo', 'image'], + crosshair: ['aim', 'target'], + database: ['storage', 'memory'], + delete: ['remove'], + disc: ['album', 'cd', 'dvd', 'music'], + 'dollar-sign': ['currency', 'money', 'payment'], + droplet: ['water'], + edit: ['pencil', 'change'], + 'edit-2': ['pencil', 'change'], + 'edit-3': ['pencil', 'change'], + eye: ['view', 'watch'], + 'eye-off': ['view', 'watch', 'hide', 'hidden'], + 'external-link': ['outbound'], + facebook: ['logo', 'social'], + 'fast-forward': ['music'], + figma: ['logo', 'design', 'tool'], + 'file-minus': ['delete', 'remove', 'erase'], + 'file-plus': ['add', 'create', 'new'], + 'file-text': ['data', 'txt', 'pdf'], + film: ['movie', 'video'], + filter: ['funnel', 'hopper'], + flag: ['report'], + 'folder-minus': ['directory'], + 'folder-plus': ['directory'], + folder: ['directory'], + framer: ['logo', 'design', 'tool'], + frown: ['emoji', 'face', 'bad', 'sad', 'emotion'], + gift: ['present', 'box', 'birthday', 'party'], + 'git-branch': ['code', 'version control'], + 'git-commit': ['code', 'version control'], + 'git-merge': ['code', 'version control'], + 'git-pull-request': ['code', 'version control'], + github: ['logo', 'version control'], + gitlab: ['logo', 'version control'], + globe: ['world', 'browser', 'language', 'translate'], + 'hard-drive': ['computer', 'server', 'memory', 'data'], + hash: ['hashtag', 'number', 'pound'], + headphones: ['music', 'audio', 'sound'], + heart: ['like', 'love', 'emotion'], + 'help-circle': ['question mark'], + hexagon: ['shape', 'node.js', 'logo'], + home: ['house', 'living'], + image: ['picture'], + inbox: ['email'], + instagram: ['logo', 'camera'], + key: ['password', 'login', 'authentication', 'secure'], + layers: ['stack'], + layout: ['window', 'webpage'], + 'life-bouy': ['help', 'life ring', 'support'], + link: ['chain', 'url'], + 'link-2': ['chain', 'url'], + linkedin: ['logo', 'social media'], + list: ['options'], + lock: ['security', 'password', 'secure'], + 'log-in': ['sign in', 'arrow', 'enter'], + 'log-out': ['sign out', 'arrow', 'exit'], + mail: ['email', 'message'], + 'map-pin': ['location', 'navigation', 'travel', 'marker'], + map: ['location', 'navigation', 'travel'], + maximize: ['fullscreen'], + 'maximize-2': ['fullscreen', 'arrows', 'expand'], + meh: ['emoji', 'face', 'neutral', 'emotion'], + menu: ['bars', 'navigation', 'hamburger'], + 'message-circle': ['comment', 'chat'], + 'message-square': ['comment', 'chat'], + 'mic-off': ['record', 'sound', 'mute'], + mic: ['record', 'sound', 'listen'], + minimize: ['exit fullscreen', 'close'], + 'minimize-2': ['exit fullscreen', 'arrows', 'close'], + minus: ['subtract'], + monitor: ['tv', 'screen', 'display'], + moon: ['dark', 'night'], + 'more-horizontal': ['ellipsis'], + 'more-vertical': ['ellipsis'], + 'mouse-pointer': ['arrow', 'cursor'], + move: ['arrows'], + music: ['note'], + navigation: ['location', 'travel'], + 'navigation-2': ['location', 'travel'], + octagon: ['stop'], + package: ['box', 'container'], + paperclip: ['attachment'], + pause: ['music', 'stop'], + 'pause-circle': ['music', 'audio', 'stop'], + 'pen-tool': ['vector', 'drawing'], + percent: ['discount'], + 'phone-call': ['ring'], + 'phone-forwarded': ['call'], + 'phone-incoming': ['call'], + 'phone-missed': ['call'], + 'phone-off': ['call', 'mute'], + 'phone-outgoing': ['call'], + phone: ['call'], + play: ['music', 'start'], + 'pie-chart': ['statistics', 'diagram'], + 'play-circle': ['music', 'start'], + plus: ['add', 'new'], + 'plus-circle': ['add', 'new'], + 'plus-square': ['add', 'new'], + pocket: ['logo', 'save'], + power: ['on', 'off'], + printer: ['fax', 'office', 'device'], + radio: ['signal'], + 'refresh-cw': ['synchronise', 'arrows'], + 'refresh-ccw': ['arrows'], + repeat: ['loop', 'arrows'], + rewind: ['music'], + 'rotate-ccw': ['arrow'], + 'rotate-cw': ['arrow'], + rss: ['feed', 'subscribe'], + save: ['floppy disk'], + scissors: ['cut'], + search: ['find', 'magnifier', 'magnifying glass'], + send: [ + 'message', + 'mail', + 'email', + 'paper airplane', + 'paper aeroplane', + ], + settings: ['cog', 'edit', 'gear', 'preferences'], + 'share-2': ['network', 'connections'], + shield: ['security', 'secure'], + 'shield-off': ['security', 'insecure'], + 'shopping-bag': ['ecommerce', 'cart', 'purchase', 'store'], + 'shopping-cart': ['ecommerce', 'cart', 'purchase', 'store'], + shuffle: ['music'], + 'skip-back': ['music'], + 'skip-forward': ['music'], + slack: ['logo'], + slash: ['ban', 'no'], + sliders: ['settings', 'controls'], + smartphone: ['cellphone', 'device'], + smile: ['emoji', 'face', 'happy', 'good', 'emotion'], + speaker: ['audio', 'music'], + star: ['bookmark', 'favorite', 'like'], + 'stop-circle': ['media', 'music'], + sun: ['brightness', 'weather', 'light'], + sunrise: ['weather', 'time', 'morning', 'day'], + sunset: ['weather', 'time', 'evening', 'night'], + tablet: ['device'], + tag: ['label'], + target: ['logo', 'bullseye'], + terminal: ['code', 'command line', 'prompt'], + thermometer: ['temperature', 'celsius', 'fahrenheit', 'weather'], + 'thumbs-down': ['dislike', 'bad', 'emotion'], + 'thumbs-up': ['like', 'good', 'emotion'], + 'toggle-left': ['on', 'off', 'switch'], + 'toggle-right': ['on', 'off', 'switch'], + tool: ['settings', 'spanner'], + trash: ['garbage', 'delete', 'remove', 'bin'], + 'trash-2': ['garbage', 'delete', 'remove', 'bin'], + triangle: ['delta'], + truck: ['delivery', 'van', 'shipping', 'transport', 'lorry'], + tv: ['television', 'stream'], + twitch: ['logo'], + twitter: ['logo', 'social'], + type: ['text'], + umbrella: ['rain', 'weather'], + unlock: ['security'], + 'user-check': ['followed', 'subscribed'], + 'user-minus': ['delete', 'remove', 'unfollow', 'unsubscribe'], + 'user-plus': ['new', 'add', 'create', 'follow', 'subscribe'], + 'user-x': [ + 'delete', + 'remove', + 'unfollow', + 'unsubscribe', + 'unavailable', + ], + user: ['person', 'account'], + users: ['group'], + 'video-off': ['camera', 'movie', 'film'], + video: ['camera', 'movie', 'film'], + voicemail: ['phone'], + volume: ['music', 'sound', 'mute'], + 'volume-1': ['music', 'sound'], + 'volume-2': ['music', 'sound'], + 'volume-x': ['music', 'sound', 'mute'], + watch: ['clock', 'time'], + 'wifi-off': ['disabled'], + wifi: ['connection', 'signal', 'wireless'], + wind: ['weather', 'air'], + 'x-circle': [ + 'cancel', + 'close', + 'delete', + 'remove', + 'times', + 'clear', + ], + 'x-octagon': [ + 'delete', + 'stop', + 'alert', + 'warning', + 'times', + 'clear', + ], + 'x-square': [ + 'cancel', + 'close', + 'delete', + 'remove', + 'times', + 'clear', + ], + x: ['cancel', 'close', 'delete', 'remove', 'times', 'clear'], + youtube: ['logo', 'video', 'play'], + 'zap-off': ['flash', 'camera', 'lightning'], + zap: ['flash', 'camera', 'lightning'], + 'zoom-in': ['magnifying glass'], + 'zoom-out': ['magnifying glass'], + }; + + /***/ + }, -/***/ "./src/to-svg.js": -/*!***********************!*\ + /***/ './src/to-svg.js': + /*!***********************!*\ !*** ./src/to-svg.js ***! \***********************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + Object.defineProperty(exports, '__esModule', { + value: true, + }); + var _icons = __webpack_require__(/*! ./icons */ './src/icons.js'); -Object.defineProperty(exports, "__esModule", { - value: true -}); + var _icons2 = _interopRequireDefault(_icons); -var _icons = __webpack_require__(/*! ./icons */ "./src/icons.js"); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } -var _icons2 = _interopRequireDefault(_icons); + /** + * Create an SVG string. + * @deprecated + * @param {string} name + * @param {Object} attrs + * @returns {string} + */ + function toSvg(name) { + var attrs = + arguments.length > 1 && arguments[1] !== undefined + ? arguments[1] + : {}; + + console.warn( + 'feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead.', + ); -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + if (!name) { + throw new Error( + 'The required `key` (icon name) parameter is missing.', + ); + } -/** - * Create an SVG string. - * @deprecated - * @param {string} name - * @param {Object} attrs - * @returns {string} - */ -function toSvg(name) { - var attrs = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + if (!_icons2.default[name]) { + throw new Error( + "No icon matching '" + + name + + "'. See the complete list of icons at https://feathericons.com", + ); + } - console.warn('feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead.'); + return _icons2.default[name].toSvg(attrs); + } - if (!name) { - throw new Error('The required `key` (icon name) parameter is missing.'); - } + exports.default = toSvg; - if (!_icons2.default[name]) { - throw new Error('No icon matching \'' + name + '\'. See the complete list of icons at https://feathericons.com'); - } + /***/ + }, - return _icons2.default[name].toSvg(attrs); -} - -exports.default = toSvg; - -/***/ }), - -/***/ 0: -/*!**************************************************!*\ + /***/ 0: + /*!**************************************************!*\ !*** multi core-js/es/array/from ./src/index.js ***! \**************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -__webpack_require__(/*! core-js/es/array/from */"./node_modules/core-js/es/array/from.js"); -module.exports = __webpack_require__(/*! /home/travis/build/feathericons/feather/src/index.js */"./src/index.js"); - - -/***/ }) + /*! no static exports found */ + /***/ function (module, exports, __webpack_require__) { + __webpack_require__( + /*! core-js/es/array/from */ './node_modules/core-js/es/array/from.js', + ); + module.exports = __webpack_require__( + /*! /home/travis/build/feathericons/feather/src/index.js */ './src/index.js', + ); -/******/ }); -}); + /***/ + }, + /******/ + }, + ); + }); }); /** @@ -2448,7 +4017,7 @@ module.exports = __webpack_require__(/*! /home/travis/build/feathericons/feather * @param delay The delay in ms */ async function wait(delay) { - return new Promise((resolve) => setTimeout(resolve, delay)); + return new Promise((resolve) => setTimeout(resolve, delay)); } /** * Copy `content` to the users clipboard. @@ -2457,11 +4026,15 @@ async function wait(delay) { * @param {() => any} success The callback to run when text is successfully copied. Default throws a new `Notice` * @param {(reason?) => any} failure The callback to run when text was not able to be copied. Default throws a new `Notice`, and console logs the error.` */ -async function copy$2(content, success = () => new obsidian.Notice("Copied to clipboard"), failure = (reason) => { - new obsidian.Notice("Could not copy to clipboard"); +async function copy$2( + content, + success = () => new obsidian.Notice('Copied to clipboard'), + failure = (reason) => { + new obsidian.Notice('Could not copy to clipboard'); console.log({ reason }); -}) { - await navigator.clipboard.writeText(content).then(success, failure); + }, +) { + await navigator.clipboard.writeText(content).then(success, failure); } /** * Check if `noteName` is the name of a note that exists in the vault. @@ -2470,7 +4043,8 @@ async function copy$2(content, success = () => new obsidian.Notice("Copied to cl * @param {string} [sourcePath=""] Optional file path to start searching from. Default is the current file. * @returns boolean */ -const isInVault = (app, noteName, sourcePath = "") => !!app.metadataCache.getFirstLinkpathDest(noteName, sourcePath); +const isInVault = (app, noteName, sourcePath = '') => + !!app.metadataCache.getFirstLinkpathDest(noteName, sourcePath); /** * When hovering a link going to `to`, show the Obsidian hover-preview of that note. * @@ -2482,14 +4056,14 @@ const isInVault = (app, noteName, sourcePath = "") => !!app.metadataCache.getFir * @returns void */ function hoverPreview$1(event, view, to) { - const targetEl = event.target; - view.app.workspace.trigger("hover-link", { - event, - source: view.getViewType(), - hoverParent: view, - targetEl, - linktext: to, - }); + const targetEl = event.target; + view.app.workspace.trigger('hover-link', { + event, + source: view.getViewType(), + hoverParent: view, + targetEl, + linktext: to, + }); } /** * Create a new markdown note named `newName` in the user's preffered new-note-folder. @@ -2498,10 +4072,12 @@ function hoverPreview$1(event, view, to) { * @param {string} [currFilePath=""] File path of the current note. Use an empty string if there is no active file. * @returns {Promise} new TFile */ -async function createNewMDNote(app, newName, currFilePath = "") { - const newFileFolder = app.fileManager.getNewFileParent(currFilePath).path; - const newFilePath = obsidian.normalizePath(`${newFileFolder}${newFileFolder === "/" ? "" : "/"}${addMD(newName)}`); - return await app.vault.create(newFilePath, ""); +async function createNewMDNote(app, newName, currFilePath = '') { + const newFileFolder = app.fileManager.getNewFileParent(currFilePath).path; + const newFilePath = obsidian.normalizePath( + `${newFileFolder}${newFileFolder === '/' ? '' : '/'}${addMD(newName)}`, + ); + return await app.vault.create(newFilePath, ''); } /** * Add '.md' to a `noteName` if it isn't already there. @@ -2509,11 +4085,11 @@ async function createNewMDNote(app, newName, currFilePath = "") { * @returns {string} noteName with '.md' on the end. */ const addMD = (noteName) => { - let withMD = noteName.slice(); - if (!withMD.endsWith(".md")) { - withMD += ".md"; - } - return withMD; + let withMD = noteName.slice(); + if (!withMD.endsWith('.md')) { + withMD += '.md'; + } + return withMD; }; /** * Given a list of resolved links from app.metadataCache, check if `from` has a link to `to` @@ -2523,20 +4099,24 @@ const addMD = (noteName) => { * @param {boolean} [directed=true] Only check if `from` has a link to `to`. If not directed, check in both directions */ function isLinked(resolvedLinks, from, to, directed = true) { - var _a, _b; - if (!from.endsWith(".md")) { - from += ".md"; - } - if (!to.endsWith(".md")) { - to += ".md"; - } - const fromTo = (_a = resolvedLinks[from]) === null || _a === void 0 ? void 0 : _a.hasOwnProperty(to); - if (!fromTo && !directed) { - const toFrom = (_b = resolvedLinks[to]) === null || _b === void 0 ? void 0 : _b.hasOwnProperty(from); - return toFrom; - } - else - return fromTo; + var _a, _b; + if (!from.endsWith('.md')) { + from += '.md'; + } + if (!to.endsWith('.md')) { + to += '.md'; + } + const fromTo = + (_a = resolvedLinks[from]) === null || _a === void 0 + ? void 0 + : _a.hasOwnProperty(to); + if (!fromTo && !directed) { + const toFrom = + (_b = resolvedLinks[to]) === null || _b === void 0 + ? void 0 + : _b.hasOwnProperty(from); + return toFrom; + } else return fromTo; } /** * Open your view on the chosen `side` if it isn't already open @@ -2546,45 +4126,44 @@ function isLinked(resolvedLinks, from, to, directed = true) { * @param {"left"|"right"} [side="right"] * @returns {Promise} The opened view */ -async function openView(app, viewType, viewClass, side = "right") { - let leaf = null; - for (leaf of app.workspace.getLeavesOfType(viewType)) { - if (leaf.view instanceof viewClass) { - return leaf.view; - } - await leaf.setViewState({ type: "empty" }); - break; - } - leaf = - (leaf !== null && leaf !== void 0 ? leaf : side === "right") - ? app.workspace.getRightLeaf(false) - : app.workspace.getLeftLeaf(false); - await leaf.setViewState({ - type: viewType, - active: true, - }); - return leaf.view; +async function openView(app, viewType, viewClass, side = 'right') { + let leaf = null; + for (leaf of app.workspace.getLeavesOfType(viewType)) { + if (leaf.view instanceof viewClass) { + return leaf.view; + } + await leaf.setViewState({ type: 'empty' }); + break; + } + leaf = (leaf !== null && leaf !== void 0 ? leaf : side === 'right') + ? app.workspace.getRightLeaf(false) + : app.workspace.getLeftLeaf(false); + await leaf.setViewState({ + type: viewType, + active: true, + }); + return leaf.view; } const DEFAULT_SETTINGS = { - noInfinity: true, - noZero: true, - allFileExtensions: true, - showImgThumbnails: true, - addUnresolved: true, - coTags: true, - defaultSubtypeType: 'Co-Citations', - debugMode: false, - superDebugMode: false, - exclusionRegex: '', - exclusionTags: [], - algsToShow: [ - 'Adamic Adar', - 'Jaccard', - 'Otsuka-Chiai', - 'Co-Citations', - 'Label Propagation', - ], + noInfinity: true, + noZero: true, + allFileExtensions: true, + showImgThumbnails: true, + addUnresolved: true, + coTags: true, + defaultSubtypeType: 'Co-Citations', + debugMode: false, + superDebugMode: false, + exclusionRegex: '', + exclusionTags: [], + algsToShow: [ + 'Adamic Adar', + 'Jaccard', + 'Otsuka-Chiai', + 'Co-Citations', + 'Label Propagation', + ], }; const DECIMALS = 4; const VIEW_TYPE_GRAPH_ANALYSIS = 'graph-analysis'; @@ -2594,97 +4173,97 @@ const MEASURE = 'GA-measure'; const NODE = 'GA-node'; const ICON = 'GA-icon'; const ANALYSIS_TYPES = [ - { - anl: 'Co-Citations', - subtype: 'Co-Citations', - desc: 'See which of your notes are referenced together most often.', - global: false, - nlp: false, - }, - { - anl: 'Centrality', - subtype: 'HITS', - desc: 'An authority has lots of links coming in\nA hub has lots of links going out.', - global: true, - nlp: false, - }, - { - anl: 'Link Prediction', - subtype: 'Adamic Adar', - desc: 'Based on the structure of your graph, this alg predicts which notes _should_ be linked to the current note.', - global: false, - nlp: false, - }, - // { - // anl: 'Link Prediction', - // subtype: 'Common Neighbours', - // desc: 'Tells you how many notes are linked to the current (active) note, and the note in the table.\nHover over a cell in the table to see a list of common neighbours', - // global: false, - // nlp: false, - // }, - { - anl: 'Similarity', - subtype: 'Jaccard', - desc: "Based on the structure of your graph, this alg predicts which notes are most similar to the current note.\n\nIt shows the ratio of the numbers of neighbours two notes have in common, to the total number of neighbours they each have.\n\n'🔗' means that this note is linked to the group name.", - global: false, - nlp: false, - }, - { - anl: 'Similarity', - subtype: 'Overlap', - desc: '', - global: false, - nlp: false, - }, - { - anl: 'Community Detection', - subtype: 'Label Propagation', - desc: "Start by giving each node a unique label (its own name). Then, look at each node's neighbours, and change it's label to the most common among it's neighbours. Repeat this process `iterations` number of times. Show the nodes grouped by the last label they had.\n\n'🔗' means that this note is linked to the group name.", - global: true, - nlp: false, - }, - { - anl: 'Community Detection', - subtype: 'Louvain', - desc: "Show the Louvain community that the current note is in.\n\n'🔗' means that this note is linked to the group name.", - global: false, - nlp: false, - }, - { - anl: 'Community Detection', - subtype: 'Clustering Coefficient', - desc: 'Gives the likelihood that a nodes _neighbours_ are connected to each other.', - global: true, - nlp: false, - }, - { - anl: 'NLP', - subtype: 'BoW', - desc: 'Split a note into its words, count how many times each word appears, and use that to compare similarity between notes.', - global: false, - nlp: true, - }, - // { - // anl: 'NLP', - // subtype: 'Tversky', - // desc: '', - // global: false, - // nlp: true, - // }, - { - anl: 'NLP', - subtype: 'Otsuka-Chiai', - desc: 'Returns the "Otsuka-Chiai" similarity between the current note and every other note.', - global: false, - nlp: true, - }, - { - anl: 'NLP', - subtype: 'Sentiment', - desc: 'Gives the sentiment of every note. Positive → higher sentiment.', - global: true, - nlp: true, - }, + { + anl: 'Co-Citations', + subtype: 'Co-Citations', + desc: 'See which of your notes are referenced together most often.', + global: false, + nlp: false, + }, + { + anl: 'Centrality', + subtype: 'HITS', + desc: 'An authority has lots of links coming in\nA hub has lots of links going out.', + global: true, + nlp: false, + }, + { + anl: 'Link Prediction', + subtype: 'Adamic Adar', + desc: 'Based on the structure of your graph, this alg predicts which notes _should_ be linked to the current note.', + global: false, + nlp: false, + }, + // { + // anl: 'Link Prediction', + // subtype: 'Common Neighbours', + // desc: 'Tells you how many notes are linked to the current (active) note, and the note in the table.\nHover over a cell in the table to see a list of common neighbours', + // global: false, + // nlp: false, + // }, + { + anl: 'Similarity', + subtype: 'Jaccard', + desc: "Based on the structure of your graph, this alg predicts which notes are most similar to the current note.\n\nIt shows the ratio of the numbers of neighbours two notes have in common, to the total number of neighbours they each have.\n\n'🔗' means that this note is linked to the group name.", + global: false, + nlp: false, + }, + { + anl: 'Similarity', + subtype: 'Overlap', + desc: '', + global: false, + nlp: false, + }, + { + anl: 'Community Detection', + subtype: 'Label Propagation', + desc: "Start by giving each node a unique label (its own name). Then, look at each node's neighbours, and change it's label to the most common among it's neighbours. Repeat this process `iterations` number of times. Show the nodes grouped by the last label they had.\n\n'🔗' means that this note is linked to the group name.", + global: true, + nlp: false, + }, + { + anl: 'Community Detection', + subtype: 'Louvain', + desc: "Show the Louvain community that the current note is in.\n\n'🔗' means that this note is linked to the group name.", + global: false, + nlp: false, + }, + { + anl: 'Community Detection', + subtype: 'Clustering Coefficient', + desc: 'Gives the likelihood that a nodes _neighbours_ are connected to each other.', + global: true, + nlp: false, + }, + { + anl: 'NLP', + subtype: 'BoW', + desc: 'Split a note into its words, count how many times each word appears, and use that to compare similarity between notes.', + global: false, + nlp: true, + }, + // { + // anl: 'NLP', + // subtype: 'Tversky', + // desc: '', + // global: false, + // nlp: true, + // }, + { + anl: 'NLP', + subtype: 'Otsuka-Chiai', + desc: 'Returns the "Otsuka-Chiai" similarity between the current note and every other note.', + global: false, + nlp: true, + }, + { + anl: 'NLP', + subtype: 'Sentiment', + desc: 'Gives the sentiment of every note. Positive → higher sentiment.', + global: true, + nlp: true, + }, ]; const IMG_EXTENSIONS = ['png', 'jpg', 'jpeg', 'svg', 'gif', 'webp']; const iconSVG = ``; -function noop() { } +function noop() {} function assign(tar, src) { - // @ts-ignore - for (const k in src) - tar[k] = src[k]; - return tar; + // @ts-ignore + for (const k in src) tar[k] = src[k]; + return tar; } function is_promise(value) { - return value && typeof value === 'object' && typeof value.then === 'function'; + return value && typeof value === 'object' && typeof value.then === 'function'; } function run(fn) { - return fn(); + return fn(); } function blank_object() { - return Object.create(null); + return Object.create(null); } function run_all(fns) { - fns.forEach(run); + fns.forEach(run); } function is_function(thing) { - return typeof thing === 'function'; + return typeof thing === 'function'; } function safe_not_equal(a, b) { - return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function'); + return a != a + ? b == b + : a !== b || (a && typeof a === 'object') || typeof a === 'function'; } function is_empty(obj) { - return Object.keys(obj).length === 0; + return Object.keys(obj).length === 0; } function create_slot(definition, ctx, $$scope, fn) { - if (definition) { - const slot_ctx = get_slot_context(definition, ctx, $$scope, fn); - return definition[0](slot_ctx); - } + if (definition) { + const slot_ctx = get_slot_context(definition, ctx, $$scope, fn); + return definition[0](slot_ctx); + } } function get_slot_context(definition, ctx, $$scope, fn) { - return definition[1] && fn - ? assign($$scope.ctx.slice(), definition[1](fn(ctx))) - : $$scope.ctx; + return definition[1] && fn + ? assign($$scope.ctx.slice(), definition[1](fn(ctx))) + : $$scope.ctx; } function get_slot_changes(definition, $$scope, dirty, fn) { - if (definition[2] && fn) { - const lets = definition[2](fn(dirty)); - if ($$scope.dirty === undefined) { - return lets; - } - if (typeof lets === 'object') { - const merged = []; - const len = Math.max($$scope.dirty.length, lets.length); - for (let i = 0; i < len; i += 1) { - merged[i] = $$scope.dirty[i] | lets[i]; - } - return merged; - } - return $$scope.dirty | lets; + if (definition[2] && fn) { + const lets = definition[2](fn(dirty)); + if ($$scope.dirty === undefined) { + return lets; + } + if (typeof lets === 'object') { + const merged = []; + const len = Math.max($$scope.dirty.length, lets.length); + for (let i = 0; i < len; i += 1) { + merged[i] = $$scope.dirty[i] | lets[i]; + } + return merged; } - return $$scope.dirty; + return $$scope.dirty | lets; + } + return $$scope.dirty; } -function update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) { - const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn); - if (slot_changes) { - const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn); - slot.p(slot_context, slot_changes); - } +function update_slot( + slot, + slot_definition, + ctx, + $$scope, + dirty, + get_slot_changes_fn, + get_slot_context_fn, +) { + const slot_changes = get_slot_changes( + slot_definition, + $$scope, + dirty, + get_slot_changes_fn, + ); + if (slot_changes) { + const slot_context = get_slot_context( + slot_definition, + ctx, + $$scope, + get_slot_context_fn, + ); + slot.p(slot_context, slot_changes); + } } function exclude_internal_props(props) { - const result = {}; - for (const k in props) - if (k[0] !== '$') - result[k] = props[k]; - return result; + const result = {}; + for (const k in props) if (k[0] !== '$') result[k] = props[k]; + return result; } function null_to_empty(value) { - return value == null ? '' : value; + return value == null ? '' : value; } function append(target, node) { - target.appendChild(node); + target.appendChild(node); } function insert(target, node, anchor) { - target.insertBefore(node, anchor || null); + target.insertBefore(node, anchor || null); } function detach(node) { - node.parentNode.removeChild(node); + node.parentNode.removeChild(node); } function destroy_each(iterations, detaching) { - for (let i = 0; i < iterations.length; i += 1) { - if (iterations[i]) - iterations[i].d(detaching); - } + for (let i = 0; i < iterations.length; i += 1) { + if (iterations[i]) iterations[i].d(detaching); + } } function element(name) { - return document.createElement(name); + return document.createElement(name); } function svg_element(name) { - return document.createElementNS('http://www.w3.org/2000/svg', name); + return document.createElementNS('http://www.w3.org/2000/svg', name); } function text(data) { - return document.createTextNode(data); + return document.createTextNode(data); } function space() { - return text(' '); + return text(' '); } function empty$1() { - return text(''); + return text(''); } function listen(node, event, handler, options) { - node.addEventListener(event, handler, options); - return () => node.removeEventListener(event, handler, options); + node.addEventListener(event, handler, options); + return () => node.removeEventListener(event, handler, options); } function attr(node, attribute, value) { - if (value == null) - node.removeAttribute(attribute); - else if (node.getAttribute(attribute) !== value) - node.setAttribute(attribute, value); + if (value == null) node.removeAttribute(attribute); + else if (node.getAttribute(attribute) !== value) + node.setAttribute(attribute, value); } function get_binding_group_value(group, __value, checked) { - const value = new Set(); - for (let i = 0; i < group.length; i += 1) { - if (group[i].checked) - value.add(group[i].__value); - } - if (!checked) { - value.delete(__value); - } - return Array.from(value); + const value = new Set(); + for (let i = 0; i < group.length; i += 1) { + if (group[i].checked) value.add(group[i].__value); + } + if (!checked) { + value.delete(__value); + } + return Array.from(value); } function children(element) { - return Array.from(element.childNodes); + return Array.from(element.childNodes); } function set_data(text, data) { - data = '' + data; - if (text.wholeText !== data) - text.data = data; + data = '' + data; + if (text.wholeText !== data) text.data = data; } function set_style(node, key, value, important) { - node.style.setProperty(key, value, important ? 'important' : ''); + node.style.setProperty(key, value, important ? 'important' : ''); } function custom_event(type, detail) { - const e = document.createEvent('CustomEvent'); - e.initCustomEvent(type, false, false, detail); - return e; + const e = document.createEvent('CustomEvent'); + e.initCustomEvent(type, false, false, detail); + return e; } let current_component; function set_current_component(component) { - current_component = component; + current_component = component; } function get_current_component() { - if (!current_component) - throw new Error('Function called outside component initialization'); - return current_component; + if (!current_component) + throw new Error('Function called outside component initialization'); + return current_component; } function onMount(fn) { - get_current_component().$$.on_mount.push(fn); + get_current_component().$$.on_mount.push(fn); } function onDestroy(fn) { - get_current_component().$$.on_destroy.push(fn); + get_current_component().$$.on_destroy.push(fn); } function createEventDispatcher() { - const component = get_current_component(); - return (type, detail) => { - const callbacks = component.$$.callbacks[type]; - if (callbacks) { - // TODO are there situations where events could be dispatched - // in a server (non-DOM) environment? - const event = custom_event(type, detail); - callbacks.slice().forEach(fn => { - fn.call(component, event); - }); - } - }; + const component = get_current_component(); + return (type, detail) => { + const callbacks = component.$$.callbacks[type]; + if (callbacks) { + // TODO are there situations where events could be dispatched + // in a server (non-DOM) environment? + const event = custom_event(type, detail); + callbacks.slice().forEach((fn) => { + fn.call(component, event); + }); + } + }; } const dirty_components = []; @@ -2876,389 +4468,402 @@ const flush_callbacks = []; const resolved_promise = Promise.resolve(); let update_scheduled = false; function schedule_update() { - if (!update_scheduled) { - update_scheduled = true; - resolved_promise.then(flush); - } + if (!update_scheduled) { + update_scheduled = true; + resolved_promise.then(flush); + } } function add_render_callback(fn) { - render_callbacks.push(fn); + render_callbacks.push(fn); } function add_flush_callback(fn) { - flush_callbacks.push(fn); + flush_callbacks.push(fn); } let flushing = false; const seen_callbacks = new Set(); function flush() { - if (flushing) - return; - flushing = true; - do { - // first, call beforeUpdate functions - // and update components - for (let i = 0; i < dirty_components.length; i += 1) { - const component = dirty_components[i]; - set_current_component(component); - update(component.$$); - } - set_current_component(null); - dirty_components.length = 0; - while (binding_callbacks.length) - binding_callbacks.pop()(); - // then, once components are updated, call - // afterUpdate functions. This may cause - // subsequent updates... - for (let i = 0; i < render_callbacks.length; i += 1) { - const callback = render_callbacks[i]; - if (!seen_callbacks.has(callback)) { - // ...so guard against infinite loops - seen_callbacks.add(callback); - callback(); - } - } - render_callbacks.length = 0; - } while (dirty_components.length); - while (flush_callbacks.length) { - flush_callbacks.pop()(); + if (flushing) return; + flushing = true; + do { + // first, call beforeUpdate functions + // and update components + for (let i = 0; i < dirty_components.length; i += 1) { + const component = dirty_components[i]; + set_current_component(component); + update(component.$$); + } + set_current_component(null); + dirty_components.length = 0; + while (binding_callbacks.length) binding_callbacks.pop()(); + // then, once components are updated, call + // afterUpdate functions. This may cause + // subsequent updates... + for (let i = 0; i < render_callbacks.length; i += 1) { + const callback = render_callbacks[i]; + if (!seen_callbacks.has(callback)) { + // ...so guard against infinite loops + seen_callbacks.add(callback); + callback(); + } } - update_scheduled = false; - flushing = false; - seen_callbacks.clear(); + render_callbacks.length = 0; + } while (dirty_components.length); + while (flush_callbacks.length) { + flush_callbacks.pop()(); + } + update_scheduled = false; + flushing = false; + seen_callbacks.clear(); } function update($$) { - if ($$.fragment !== null) { - $$.update(); - run_all($$.before_update); - const dirty = $$.dirty; - $$.dirty = [-1]; - $$.fragment && $$.fragment.p($$.ctx, dirty); - $$.after_update.forEach(add_render_callback); - } + if ($$.fragment !== null) { + $$.update(); + run_all($$.before_update); + const dirty = $$.dirty; + $$.dirty = [-1]; + $$.fragment && $$.fragment.p($$.ctx, dirty); + $$.after_update.forEach(add_render_callback); + } } const outroing = new Set(); let outros; function group_outros() { - outros = { - r: 0, - c: [], - p: outros // parent group - }; + outros = { + r: 0, + c: [], + p: outros, // parent group + }; } function check_outros() { - if (!outros.r) { - run_all(outros.c); - } - outros = outros.p; + if (!outros.r) { + run_all(outros.c); + } + outros = outros.p; } function transition_in(block, local) { - if (block && block.i) { - outroing.delete(block); - block.i(local); - } + if (block && block.i) { + outroing.delete(block); + block.i(local); + } } function transition_out(block, local, detach, callback) { - if (block && block.o) { - if (outroing.has(block)) - return; - outroing.add(block); - outros.c.push(() => { - outroing.delete(block); - if (callback) { - if (detach) - block.d(1); - callback(); - } - }); - block.o(local); - } + if (block && block.o) { + if (outroing.has(block)) return; + outroing.add(block); + outros.c.push(() => { + outroing.delete(block); + if (callback) { + if (detach) block.d(1); + callback(); + } + }); + block.o(local); + } } function handle_promise(promise, info) { - const token = info.token = {}; - function update(type, index, key, value) { - if (info.token !== token) - return; - info.resolved = value; - let child_ctx = info.ctx; - if (key !== undefined) { - child_ctx = child_ctx.slice(); - child_ctx[key] = value; - } - const block = type && (info.current = type)(child_ctx); - let needs_flush = false; - if (info.block) { - if (info.blocks) { - info.blocks.forEach((block, i) => { - if (i !== index && block) { - group_outros(); - transition_out(block, 1, 1, () => { - if (info.blocks[i] === block) { - info.blocks[i] = null; - } - }); - check_outros(); - } - }); - } - else { - info.block.d(1); - } - block.c(); - transition_in(block, 1); - block.m(info.mount(), info.anchor); - needs_flush = true; - } - info.block = block; - if (info.blocks) - info.blocks[index] = block; - if (needs_flush) { - flush(); - } - } - if (is_promise(promise)) { - const current_component = get_current_component(); - promise.then(value => { - set_current_component(current_component); - update(info.then, 1, info.value, value); - set_current_component(null); - }, error => { - set_current_component(current_component); - update(info.catch, 2, info.error, error); - set_current_component(null); - if (!info.hasCatch) { - throw error; - } + const token = (info.token = {}); + function update(type, index, key, value) { + if (info.token !== token) return; + info.resolved = value; + let child_ctx = info.ctx; + if (key !== undefined) { + child_ctx = child_ctx.slice(); + child_ctx[key] = value; + } + const block = type && (info.current = type)(child_ctx); + let needs_flush = false; + if (info.block) { + if (info.blocks) { + info.blocks.forEach((block, i) => { + if (i !== index && block) { + group_outros(); + transition_out(block, 1, 1, () => { + if (info.blocks[i] === block) { + info.blocks[i] = null; + } + }); + check_outros(); + } }); - // if we previously had a then/catch block, destroy it - if (info.current !== info.pending) { - update(info.pending, 0); - return true; + } else { + info.block.d(1); + } + block.c(); + transition_in(block, 1); + block.m(info.mount(), info.anchor); + needs_flush = true; + } + info.block = block; + if (info.blocks) info.blocks[index] = block; + if (needs_flush) { + flush(); + } + } + if (is_promise(promise)) { + const current_component = get_current_component(); + promise.then( + (value) => { + set_current_component(current_component); + update(info.then, 1, info.value, value); + set_current_component(null); + }, + (error) => { + set_current_component(current_component); + update(info.catch, 2, info.error, error); + set_current_component(null); + if (!info.hasCatch) { + throw error; } + }, + ); + // if we previously had a then/catch block, destroy it + if (info.current !== info.pending) { + update(info.pending, 0); + return true; } - else { - if (info.current !== info.then) { - update(info.then, 1, info.value, promise); - return true; - } - info.resolved = promise; + } else { + if (info.current !== info.then) { + update(info.then, 1, info.value, promise); + return true; } + info.resolved = promise; + } } function get_spread_update(levels, updates) { - const update = {}; - const to_null_out = {}; - const accounted_for = { $$scope: 1 }; - let i = levels.length; - while (i--) { - const o = levels[i]; - const n = updates[i]; - if (n) { - for (const key in o) { - if (!(key in n)) - to_null_out[key] = 1; - } - for (const key in n) { - if (!accounted_for[key]) { - update[key] = n[key]; - accounted_for[key] = 1; - } - } - levels[i] = n; - } - else { - for (const key in o) { - accounted_for[key] = 1; - } + const update = {}; + const to_null_out = {}; + const accounted_for = { $$scope: 1 }; + let i = levels.length; + while (i--) { + const o = levels[i]; + const n = updates[i]; + if (n) { + for (const key in o) { + if (!(key in n)) to_null_out[key] = 1; + } + for (const key in n) { + if (!accounted_for[key]) { + update[key] = n[key]; + accounted_for[key] = 1; } + } + levels[i] = n; + } else { + for (const key in o) { + accounted_for[key] = 1; + } } - for (const key in to_null_out) { - if (!(key in update)) - update[key] = undefined; - } - return update; + } + for (const key in to_null_out) { + if (!(key in update)) update[key] = undefined; + } + return update; } function get_spread_object(spread_props) { - return typeof spread_props === 'object' && spread_props !== null ? spread_props : {}; + return typeof spread_props === 'object' && spread_props !== null + ? spread_props + : {}; } function bind(component, name, callback) { - const index = component.$$.props[name]; - if (index !== undefined) { - component.$$.bound[index] = callback; - callback(component.$$.ctx[index]); - } + const index = component.$$.props[name]; + if (index !== undefined) { + component.$$.bound[index] = callback; + callback(component.$$.ctx[index]); + } } function create_component(block) { - block && block.c(); + block && block.c(); } function mount_component(component, target, anchor, customElement) { - const { fragment, on_mount, on_destroy, after_update } = component.$$; - fragment && fragment.m(target, anchor); - if (!customElement) { - // onMount happens before the initial afterUpdate - add_render_callback(() => { - const new_on_destroy = on_mount.map(run).filter(is_function); - if (on_destroy) { - on_destroy.push(...new_on_destroy); - } - else { - // Edge case - component was destroyed immediately, - // most likely as a result of a binding initialising - run_all(new_on_destroy); - } - component.$$.on_mount = []; - }); - } - after_update.forEach(add_render_callback); + const { fragment, on_mount, on_destroy, after_update } = component.$$; + fragment && fragment.m(target, anchor); + if (!customElement) { + // onMount happens before the initial afterUpdate + add_render_callback(() => { + const new_on_destroy = on_mount.map(run).filter(is_function); + if (on_destroy) { + on_destroy.push(...new_on_destroy); + } else { + // Edge case - component was destroyed immediately, + // most likely as a result of a binding initialising + run_all(new_on_destroy); + } + component.$$.on_mount = []; + }); + } + after_update.forEach(add_render_callback); } function destroy_component(component, detaching) { - const $$ = component.$$; - if ($$.fragment !== null) { - run_all($$.on_destroy); - $$.fragment && $$.fragment.d(detaching); - // TODO null out other refs, including component.$$ (but need to - // preserve final state?) - $$.on_destroy = $$.fragment = null; - $$.ctx = []; - } + const $$ = component.$$; + if ($$.fragment !== null) { + run_all($$.on_destroy); + $$.fragment && $$.fragment.d(detaching); + // TODO null out other refs, including component.$$ (but need to + // preserve final state?) + $$.on_destroy = $$.fragment = null; + $$.ctx = []; + } } function make_dirty(component, i) { - if (component.$$.dirty[0] === -1) { - dirty_components.push(component); - schedule_update(); - component.$$.dirty.fill(0); - } - component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31)); -} -function init(component, options, instance, create_fragment, not_equal, props, dirty = [-1]) { - const parent_component = current_component; - set_current_component(component); - const $$ = component.$$ = { - fragment: null, - ctx: null, - // state - props, - update: noop, - not_equal, - bound: blank_object(), - // lifecycle - on_mount: [], - on_destroy: [], - on_disconnect: [], - before_update: [], - after_update: [], - context: new Map(parent_component ? parent_component.$$.context : []), - // everything else - callbacks: blank_object(), - dirty, - skip_bound: false - }; - let ready = false; - $$.ctx = instance - ? instance(component, options.props || {}, (i, ret, ...rest) => { - const value = rest.length ? rest[0] : ret; - if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) { - if (!$$.skip_bound && $$.bound[i]) - $$.bound[i](value); - if (ready) - make_dirty(component, i); - } - return ret; - }) - : []; - $$.update(); - ready = true; - run_all($$.before_update); - // `false` as a special case of no DOM component - $$.fragment = create_fragment ? create_fragment($$.ctx) : false; - if (options.target) { - if (options.hydrate) { - const nodes = children(options.target); - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - $$.fragment && $$.fragment.l(nodes); - nodes.forEach(detach); - } - else { - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - $$.fragment && $$.fragment.c(); + if (component.$$.dirty[0] === -1) { + dirty_components.push(component); + schedule_update(); + component.$$.dirty.fill(0); + } + component.$$.dirty[(i / 31) | 0] |= 1 << i % 31; +} +function init( + component, + options, + instance, + create_fragment, + not_equal, + props, + dirty = [-1], +) { + const parent_component = current_component; + set_current_component(component); + const $$ = (component.$$ = { + fragment: null, + ctx: null, + // state + props, + update: noop, + not_equal, + bound: blank_object(), + // lifecycle + on_mount: [], + on_destroy: [], + on_disconnect: [], + before_update: [], + after_update: [], + context: new Map(parent_component ? parent_component.$$.context : []), + // everything else + callbacks: blank_object(), + dirty, + skip_bound: false, + }); + let ready = false; + $$.ctx = instance + ? instance(component, options.props || {}, (i, ret, ...rest) => { + const value = rest.length ? rest[0] : ret; + if ($$.ctx && not_equal($$.ctx[i], ($$.ctx[i] = value))) { + if (!$$.skip_bound && $$.bound[i]) $$.bound[i](value); + if (ready) make_dirty(component, i); } - if (options.intro) - transition_in(component.$$.fragment); - mount_component(component, options.target, options.anchor, options.customElement); - flush(); - } - set_current_component(parent_component); + return ret; + }) + : []; + $$.update(); + ready = true; + run_all($$.before_update); + // `false` as a special case of no DOM component + $$.fragment = create_fragment ? create_fragment($$.ctx) : false; + if (options.target) { + if (options.hydrate) { + const nodes = children(options.target); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + $$.fragment && $$.fragment.l(nodes); + nodes.forEach(detach); + } else { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + $$.fragment && $$.fragment.c(); + } + if (options.intro) transition_in(component.$$.fragment); + mount_component( + component, + options.target, + options.anchor, + options.customElement, + ); + flush(); + } + set_current_component(parent_component); } /** * Base class for Svelte components. Used when dev=false. */ class SvelteComponent { - $destroy() { - destroy_component(this, 1); - this.$destroy = noop; - } - $on(type, callback) { - const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = [])); - callbacks.push(callback); - return () => { - const index = callbacks.indexOf(callback); - if (index !== -1) - callbacks.splice(index, 1); - }; - } - $set($$props) { - if (this.$$set && !is_empty($$props)) { - this.$$.skip_bound = true; - this.$$set($$props); - this.$$.skip_bound = false; - } + $destroy() { + destroy_component(this, 1); + this.$destroy = noop; + } + $on(type, callback) { + const callbacks = this.$$.callbacks[type] || (this.$$.callbacks[type] = []); + callbacks.push(callback); + return () => { + const index = callbacks.indexOf(callback); + if (index !== -1) callbacks.splice(index, 1); + }; + } + $set($$props) { + if (this.$$set && !is_empty($$props)) { + this.$$.skip_bound = true; + this.$$set($$props); + this.$$.skip_bound = false; } + } } const sum$2 = (arr) => { - if (arr.length === 0) { - return 0; - } - return arr.reduce((a, b) => a + b); + if (arr.length === 0) { + return 0; + } + return arr.reduce((a, b) => a + b); }; function debug(settings, log) { - if (settings.debugMode) { - console.log(log); - } + if (settings.debugMode) { + console.log(log); + } } function roundNumber(num, dec = DECIMALS) { - return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec); + return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec); } const dropPath = (path) => { - return path.split('/').last(); + return path.split('/').last(); }; -const dropExt = (path) => path.split('.').length === 1 ? path : path.split('.').slice(0, -1).join('.'); +const dropExt = (path) => + path.split('.').length === 1 ? path : path.split('.').slice(0, -1).join('.'); const getExt = (path) => path.split('.').last(); const classExt = (path) => `GA-${getExt(path)}`; -const classResolved = (app, node) => node.endsWith('.md') && !isInVault(app, dropExt(node)) ? 'is-unresolved' : ''; -const classLinked = (resolvedLinks, from, to, directed = false) => (isLinked(resolvedLinks, from, to, directed) ? LINKED : NOT_LINKED); +const classResolved = (app, node) => + node.endsWith('.md') && !isInVault(app, dropExt(node)) ? 'is-unresolved' : ''; +const classLinked = (resolvedLinks, from, to, directed = false) => + isLinked(resolvedLinks, from, to, directed) ? LINKED : NOT_LINKED; const presentPath = (path) => dropExt(dropPath(path)); function hoverPreview(event, view, to) { - const targetEl = event.target; - view.app.workspace.trigger('hover-link', { - event, - source: view.getViewType(), - hoverParent: view, - targetEl, - linktext: to, - }); + const targetEl = event.target; + view.app.workspace.trigger('hover-link', { + event, + source: view.getViewType(), + hoverParent: view, + targetEl, + linktext: to, + }); } function looserIsLinked(app, from, to, directed = true) { - var _a, _b, _c, _d; - const { resolvedLinks, unresolvedLinks } = app.metadataCache; - const fromTo = ((_a = resolvedLinks[from]) === null || _a === void 0 ? void 0 : _a.hasOwnProperty(to)) || - ((_b = unresolvedLinks[from]) === null || _b === void 0 ? void 0 : _b.hasOwnProperty(dropExt(to))); - if (!fromTo && !directed) { - return (((_c = resolvedLinks[to]) === null || _c === void 0 ? void 0 : _c.hasOwnProperty(from)) || - ((_d = unresolvedLinks[to]) === null || _d === void 0 ? void 0 : _d.hasOwnProperty(dropExt(from)))); - } - else - return fromTo; + var _a, _b, _c, _d; + const { resolvedLinks, unresolvedLinks } = app.metadataCache; + const fromTo = + ((_a = resolvedLinks[from]) === null || _a === void 0 + ? void 0 + : _a.hasOwnProperty(to)) || + ((_b = unresolvedLinks[from]) === null || _b === void 0 + ? void 0 + : _b.hasOwnProperty(dropExt(to))); + if (!fromTo && !directed) { + return ( + ((_c = resolvedLinks[to]) === null || _c === void 0 + ? void 0 + : _c.hasOwnProperty(from)) || + ((_d = unresolvedLinks[to]) === null || _d === void 0 + ? void 0 + : _d.hasOwnProperty(dropExt(from))) + ); + } else return fromTo; } /** * Adds or updates the given yaml `key` to `value` in the given TFile @@ -3267,11202 +4872,16940 @@ function looserIsLinked(app, from, to, directed = true) { * @param {TFile} file * @param {App} app */ -const createOrUpdateYaml = (key, value, file, app) => __awaiter(void 0, void 0, void 0, function* () { +const createOrUpdateYaml = (key, value, file, app) => + __awaiter(void 0, void 0, void 0, function* () { var _a, _b; // @ts-ignore - const api = (_a = app.plugins.plugins.metaedit) === null || _a === void 0 ? void 0 : _a.api; + const api = + (_a = app.plugins.plugins.metaedit) === null || _a === void 0 + ? void 0 + : _a.api; if (!api) { - new obsidian.Notice('Metaedit must be enabled for this function to work'); - return; + new obsidian.Notice('Metaedit must be enabled for this function to work'); + return; } let valueStr = value.toString(); - const frontmatter = (_b = app.metadataCache.getFileCache(file)) === null || _b === void 0 ? void 0 : _b.frontmatter; + const frontmatter = + (_b = app.metadataCache.getFileCache(file)) === null || _b === void 0 + ? void 0 + : _b.frontmatter; if (!frontmatter || frontmatter[key] === undefined) { - yield api.createYamlProperty(key, `['${valueStr}']`, file); - } - else if ([...[frontmatter[key]]].flat(3).some((val) => val == valueStr)) { - return; - } - else { - const oldValueFlat = [...[frontmatter[key]]].flat(4); - const newValue = [...oldValueFlat, valueStr].map((val) => `'${val}'`); - yield api.update(key, `[${newValue.join(', ')}]`, file); + yield api.createYamlProperty(key, `['${valueStr}']`, file); + } else if ([...[frontmatter[key]]].flat(3).some((val) => val == valueStr)) { + return; + } else { + const oldValueFlat = [...[frontmatter[key]]].flat(4); + const newValue = [...oldValueFlat, valueStr].map((val) => `'${val}'`); + yield api.update(key, `[${newValue.join(', ')}]`, file); } -}); + }); function openMenu(event, app, copyObj = undefined) { - const tdEl = event.target; - const menu = new obsidian.Menu(app); - if (copyObj) { - menu.addItem((item) => item - .setTitle('Copy community') - .setIcon('graph') - .onClick(() => __awaiter(this, void 0, void 0, function* () { + const tdEl = event.target; + const menu = new obsidian.Menu(app); + if (copyObj) { + menu.addItem((item) => + item + .setTitle('Copy community') + .setIcon('graph') + .onClick(() => + __awaiter(this, void 0, void 0, function* () { yield copy$2(copyObj.toCopy); - }))); - } - else { - menu.addItem((item) => item - .setTitle('Create Link: Current') - .setIcon('documents') - .onClick((e) => { - try { - const currFile = app.workspace.getActiveFile(); - // @ts-ignore - const targetStr = tdEl.innerText; - createOrUpdateYaml('key', targetStr, currFile, app); - new obsidian.Notice('Write Successful'); - } - catch (error) { - new obsidian.Notice('Write failed'); - } - })); - menu.addItem((item) => item - .setTitle('Create Link: Target') - .setIcon('documents') - .onClick((e) => { - const currStr = app.workspace.getActiveFile().basename; - const { target } = event; + }), + ), + ); + } else { + menu.addItem((item) => + item + .setTitle('Create Link: Current') + .setIcon('documents') + .onClick((e) => { + try { + const currFile = app.workspace.getActiveFile(); // @ts-ignore - const targetStr = target.innerText; - const targetFile = app.metadataCache.getFirstLinkpathDest(targetStr, ''); - if (!targetFile) { - new obsidian.Notice(`${targetStr} does not exist in your vault yet`); - return; - } - else { - createOrUpdateYaml('key', currStr, targetFile, app); - } - })); - } - menu.showAtMouseEvent(event); + const targetStr = tdEl.innerText; + createOrUpdateYaml('key', targetStr, currFile, app); + new obsidian.Notice('Write Successful'); + } catch (error) { + new obsidian.Notice('Write failed'); + } + }), + ); + menu.addItem((item) => + item + .setTitle('Create Link: Target') + .setIcon('documents') + .onClick((e) => { + const currStr = app.workspace.getActiveFile().basename; + const { target } = event; + // @ts-ignore + const targetStr = target.innerText; + const targetFile = app.metadataCache.getFirstLinkpathDest( + targetStr, + '', + ); + if (!targetFile) { + new obsidian.Notice( + `${targetStr} does not exist in your vault yet`, + ); + return; + } else { + createOrUpdateYaml('key', currStr, targetFile, app); + } + }), + ); + } + menu.showAtMouseEvent(event); } function jumpToSelection(app, line, sentence) { - const view = app.workspace.getActiveViewOfType(obsidian.MarkdownView); - // Make sure the user is editing a Markdown file. - if (view && view.getMode() === 'source') { - const { editor } = view; - // Creat sel - const lineStartPos = { ch: 0, line }; - const markStart = editor.posToOffset(lineStartPos); - // const lineStr = editor.getLine(line) - // let startOfSentenceInLine = 0 - // if (lineStr !== sentence) { - // startOfSentenceInLine = lineStr.indexOf(sentence) - // } - // if (startOfSentenceInLine === -1) { - // console.log('sentence not in lineStr') - // return - // } - const markEnd = markStart + sentence.length; - const markSel = { - from: editor.offsetToPos(markStart), - to: editor.offsetToPos(markEnd), - }; - editor.setSelection(markSel.from, markSel.to); - editor.scrollIntoView(markSel); - const doc = editor.cm.getDoc(); - const marker = doc.markText(markSel.from, markSel.to, { - className: 'GA-highlight-sentence', - }); - setTimeout(() => { - marker.clear(); - }, 1000); - } - else if (view && view.getMode() === 'preview') ; + const view = app.workspace.getActiveViewOfType(obsidian.MarkdownView); + // Make sure the user is editing a Markdown file. + if (view && view.getMode() === 'source') { + const { editor } = view; + // Creat sel + const lineStartPos = { ch: 0, line }; + const markStart = editor.posToOffset(lineStartPos); + // const lineStr = editor.getLine(line) + // let startOfSentenceInLine = 0 + // if (lineStr !== sentence) { + // startOfSentenceInLine = lineStr.indexOf(sentence) + // } + // if (startOfSentenceInLine === -1) { + // console.log('sentence not in lineStr') + // return + // } + const markEnd = markStart + sentence.length; + const markSel = { + from: editor.offsetToPos(markStart), + to: editor.offsetToPos(markEnd), + }; + editor.setSelection(markSel.from, markSel.to); + editor.scrollIntoView(markSel); + const doc = editor.cm.getDoc(); + const marker = doc.markText(markSel.from, markSel.to, { + className: 'GA-highlight-sentence', + }); + setTimeout(() => { + marker.clear(); + }, 1000); + } else if (view && view.getMode() === 'preview'); } function getImgBufferPromise(app, fileName) { - const file = app.metadataCache.getFirstLinkpathDest(fileName, ''); - return file ? app.vault.readBinary(file) : null; + const file = app.metadataCache.getFirstLinkpathDest(fileName, ''); + return file ? app.vault.readBinary(file) : null; } function getCounts(arr) { - const counts = {}; - for (const num of arr) { - counts[num] = counts[num] ? counts[num] + 1 : 1; - } - return counts; + const counts = {}; + for (const num of arr) { + counts[num] = counts[num] ? counts[num] + 1 : 1; + } + return counts; } function getMaxKey(obj) { - // Using random resolving of equality - return Object.keys(obj).reduce((a, b) => obj[a] === obj[b] ? (Math.random() < 0.5 ? a : b) : obj[a] > obj[b] ? a : b); + // Using random resolving of equality + return Object.keys(obj).reduce((a, b) => + obj[a] === obj[b] ? (Math.random() < 0.5 ? a : b) : obj[a] > obj[b] ? a : b, + ); } const isImg = (path) => IMG_EXTENSIONS.includes(path.split('.').last()); function openOrSwitch(app, dest, event, options = { createNewFile: true }) { - return __awaiter(this, void 0, void 0, function* () { - const { workspace } = app; - let destFile = app.metadataCache.getFirstLinkpathDest(dest, ''); - // If dest doesn't exist, make it - if (!destFile && options.createNewFile) { - destFile = yield createNewMDNote(app, dest); - } - else if (!destFile && !options.createNewFile) - return; - // Check if it's already open - const leavesWithDestAlreadyOpen = []; - workspace.iterateAllLeaves((leaf) => { - var _a, _b; - if (leaf.view instanceof obsidian.MarkdownView) { - if (((_b = (_a = leaf.view) === null || _a === void 0 ? void 0 : _a.file) === null || _b === void 0 ? void 0 : _b.basename) === dropExt(dest)) { - leavesWithDestAlreadyOpen.push(leaf); - } - } - }); - // Rather switch to it if it is open - if (leavesWithDestAlreadyOpen.length > 0) { - workspace.setActiveLeaf(leavesWithDestAlreadyOpen[0]); - } - else { - // @ts-ignore - const mode = app.vault.getConfig('defaultViewMode'); - const leaf = event.ctrlKey || event.getModifierState('Meta') - ? workspace.splitActiveLeaf() - : workspace.getUnpinnedLeaf(); - yield leaf.openFile(destFile, { active: true, mode }); + return __awaiter(this, void 0, void 0, function* () { + const { workspace } = app; + let destFile = app.metadataCache.getFirstLinkpathDest(dest, ''); + // If dest doesn't exist, make it + if (!destFile && options.createNewFile) { + destFile = yield createNewMDNote(app, dest); + } else if (!destFile && !options.createNewFile) return; + // Check if it's already open + const leavesWithDestAlreadyOpen = []; + workspace.iterateAllLeaves((leaf) => { + var _a, _b; + if (leaf.view instanceof obsidian.MarkdownView) { + if ( + ((_b = + (_a = leaf.view) === null || _a === void 0 ? void 0 : _a.file) === + null || _b === void 0 + ? void 0 + : _b.basename) === dropExt(dest) + ) { + leavesWithDestAlreadyOpen.push(leaf); } + } }); + // Rather switch to it if it is open + if (leavesWithDestAlreadyOpen.length > 0) { + workspace.setActiveLeaf(leavesWithDestAlreadyOpen[0]); + } else { + // @ts-ignore + const mode = app.vault.getConfig('defaultViewMode'); + const leaf = + event.ctrlKey || event.getModifierState('Meta') + ? workspace.splitActiveLeaf() + : workspace.getUnpinnedLeaf(); + yield leaf.openFile(destFile, { active: true, mode }); + } + }); } function findSentence(sentences, link) { - let aggrSentenceLength = 0; - let count = 0; - for (const sentence of sentences) { - const nextLength = aggrSentenceLength + sentence.length; - // Edge case that does not work: If alias has end of sentences. - if (link.position.end.col <= nextLength) { - return [count, aggrSentenceLength, nextLength]; - } - aggrSentenceLength = nextLength; - count += 1; - } - return [-1, 0, aggrSentenceLength]; -} -function addPreCocitation(preCocitations, linkPath, measure, sentence, source, line) { - preCocitations[linkPath][0] = Math.max(preCocitations[linkPath][0], measure); - preCocitations[linkPath][1].push({ - sentence, - measure, - source, - line, - }); + let aggrSentenceLength = 0; + let count = 0; + for (const sentence of sentences) { + const nextLength = aggrSentenceLength + sentence.length; + // Edge case that does not work: If alias has end of sentences. + if (link.position.end.col <= nextLength) { + return [count, aggrSentenceLength, nextLength]; + } + aggrSentenceLength = nextLength; + count += 1; + } + return [-1, 0, aggrSentenceLength]; +} +function addPreCocitation( + preCocitations, + linkPath, + measure, + sentence, + source, + line, +) { + preCocitations[linkPath][0] = Math.max(preCocitations[linkPath][0], measure); + preCocitations[linkPath][1].push({ + sentence, + measure, + source, + line, + }); } /* node_modules/svelte-icons/components/IconBase.svelte generated by Svelte v3.35.0 */ function add_css$b() { - var style = element("style"); - style.id = "svelte-c8tyih-style"; - style.textContent = "svg.svelte-c8tyih{stroke:currentColor;fill:currentColor;stroke-width:0;width:100%;height:auto;max-height:100%}"; - append(document.head, style); + var style = element('style'); + style.id = 'svelte-c8tyih-style'; + style.textContent = + 'svg.svelte-c8tyih{stroke:currentColor;fill:currentColor;stroke-width:0;width:100%;height:auto;max-height:100%}'; + append(document.head, style); } // (18:2) {#if title} function create_if_block$a(ctx) { - let title_1; - let t; - - return { - c() { - title_1 = svg_element("title"); - t = text(/*title*/ ctx[0]); - }, - m(target, anchor) { - insert(target, title_1, anchor); - append(title_1, t); - }, - p(ctx, dirty) { - if (dirty & /*title*/ 1) set_data(t, /*title*/ ctx[0]); - }, - d(detaching) { - if (detaching) detach(title_1); - } - }; + let title_1; + let t; + + return { + c() { + title_1 = svg_element('title'); + t = text(/*title*/ ctx[0]); + }, + m(target, anchor) { + insert(target, title_1, anchor); + append(title_1, t); + }, + p(ctx, dirty) { + if (dirty & /*title*/ 1) set_data(t, /*title*/ ctx[0]); + }, + d(detaching) { + if (detaching) detach(title_1); + }, + }; } function create_fragment$D(ctx) { - let svg; - let if_block_anchor; - let current; - let if_block = /*title*/ ctx[0] && create_if_block$a(ctx); - const default_slot_template = /*#slots*/ ctx[3].default; - const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[2], null); - - return { - c() { - svg = svg_element("svg"); - if (if_block) if_block.c(); - if_block_anchor = empty$1(); - if (default_slot) default_slot.c(); - attr(svg, "xmlns", "http://www.w3.org/2000/svg"); - attr(svg, "viewBox", /*viewBox*/ ctx[1]); - attr(svg, "class", "svelte-c8tyih"); - }, - m(target, anchor) { - insert(target, svg, anchor); - if (if_block) if_block.m(svg, null); - append(svg, if_block_anchor); - - if (default_slot) { - default_slot.m(svg, null); - } - - current = true; - }, - p(ctx, [dirty]) { - if (/*title*/ ctx[0]) { - if (if_block) { - if_block.p(ctx, dirty); - } else { - if_block = create_if_block$a(ctx); - if_block.c(); - if_block.m(svg, if_block_anchor); - } - } else if (if_block) { - if_block.d(1); - if_block = null; - } - - if (default_slot) { - if (default_slot.p && dirty & /*$$scope*/ 4) { - update_slot(default_slot, default_slot_template, ctx, /*$$scope*/ ctx[2], dirty, null, null); - } - } - - if (!current || dirty & /*viewBox*/ 2) { - attr(svg, "viewBox", /*viewBox*/ ctx[1]); - } - }, - i(local) { - if (current) return; - transition_in(default_slot, local); - current = true; - }, - o(local) { - transition_out(default_slot, local); - current = false; - }, - d(detaching) { - if (detaching) detach(svg); - if (if_block) if_block.d(); - if (default_slot) default_slot.d(detaching); - } - }; + let svg; + let if_block_anchor; + let current; + let if_block = /*title*/ ctx[0] && create_if_block$a(ctx); + const default_slot_template = /*#slots*/ ctx[3].default; + const default_slot = create_slot( + default_slot_template, + ctx, + /*$$scope*/ ctx[2], + null, + ); + + return { + c() { + svg = svg_element('svg'); + if (if_block) if_block.c(); + if_block_anchor = empty$1(); + if (default_slot) default_slot.c(); + attr(svg, 'xmlns', 'http://www.w3.org/2000/svg'); + attr(svg, 'viewBox', /*viewBox*/ ctx[1]); + attr(svg, 'class', 'svelte-c8tyih'); + }, + m(target, anchor) { + insert(target, svg, anchor); + if (if_block) if_block.m(svg, null); + append(svg, if_block_anchor); + + if (default_slot) { + default_slot.m(svg, null); + } + + current = true; + }, + p(ctx, [dirty]) { + if (/*title*/ ctx[0]) { + if (if_block) { + if_block.p(ctx, dirty); + } else { + if_block = create_if_block$a(ctx); + if_block.c(); + if_block.m(svg, if_block_anchor); + } + } else if (if_block) { + if_block.d(1); + if_block = null; + } + + if (default_slot) { + if (default_slot.p && dirty & /*$$scope*/ 4) { + update_slot( + default_slot, + default_slot_template, + ctx, + /*$$scope*/ ctx[2], + dirty, + null, + null, + ); + } + } + + if (!current || dirty & /*viewBox*/ 2) { + attr(svg, 'viewBox', /*viewBox*/ ctx[1]); + } + }, + i(local) { + if (current) return; + transition_in(default_slot, local); + current = true; + }, + o(local) { + transition_out(default_slot, local); + current = false; + }, + d(detaching) { + if (detaching) detach(svg); + if (if_block) if_block.d(); + if (default_slot) default_slot.d(detaching); + }, + }; } function instance$D($$self, $$props, $$invalidate) { - let { $$slots: slots = {}, $$scope } = $$props; - let { title = null } = $$props; - let { viewBox } = $$props; - - $$self.$$set = $$props => { - if ("title" in $$props) $$invalidate(0, title = $$props.title); - if ("viewBox" in $$props) $$invalidate(1, viewBox = $$props.viewBox); - if ("$$scope" in $$props) $$invalidate(2, $$scope = $$props.$$scope); - }; + let { $$slots: slots = {}, $$scope } = $$props; + let { title = null } = $$props; + let { viewBox } = $$props; + + $$self.$$set = ($$props) => { + if ('title' in $$props) $$invalidate(0, (title = $$props.title)); + if ('viewBox' in $$props) $$invalidate(1, (viewBox = $$props.viewBox)); + if ('$$scope' in $$props) $$invalidate(2, ($$scope = $$props.$$scope)); + }; - return [title, viewBox, $$scope, slots]; + return [title, viewBox, $$scope, slots]; } class IconBase extends SvelteComponent { - constructor(options) { - super(); - if (!document.getElementById("svelte-c8tyih-style")) add_css$b(); - init(this, options, instance$D, create_fragment$D, safe_not_equal, { title: 0, viewBox: 1 }); - } + constructor(options) { + super(); + if (!document.getElementById('svelte-c8tyih-style')) add_css$b(); + init(this, options, instance$D, create_fragment$D, safe_not_equal, { + title: 0, + viewBox: 1, + }); + } } /* node_modules/svelte-icons/fa/FaLink.svelte generated by Svelte v3.35.0 */ function create_default_slot$o(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$C(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 512 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$o] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 512 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$o] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$C($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaLink extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$C, create_fragment$C, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$C, create_fragment$C, safe_not_equal, {}); + } } /* node_modules/svelte-infinite-scroll/dist/InfiniteScroll.svelte generated by Svelte v3.35.0 */ function create_if_block$9(ctx) { - let div; - - return { - c() { - div = element("div"); - attr(div, "id", "svelte-infinite-scroll"); - set_style(div, "width", "0"); - }, - m(target, anchor) { - insert(target, div, anchor); - /*div_binding*/ ctx[11](div); - }, - p: noop, - d(detaching) { - if (detaching) detach(div); - /*div_binding*/ ctx[11](null); - } - }; + let div; + + return { + c() { + div = element('div'); + attr(div, 'id', 'svelte-infinite-scroll'); + set_style(div, 'width', '0'); + }, + m(target, anchor) { + insert(target, div, anchor); + /*div_binding*/ ctx[11](div); + }, + p: noop, + d(detaching) { + if (detaching) detach(div); + /*div_binding*/ ctx[11](null); + }, + }; } function create_fragment$B(ctx) { - let if_block_anchor; - let if_block = !/*window*/ ctx[1] && !/*elementScroll*/ ctx[0] && create_if_block$9(ctx); - - return { - c() { - if (if_block) if_block.c(); - if_block_anchor = empty$1(); - }, - m(target, anchor) { - if (if_block) if_block.m(target, anchor); - insert(target, if_block_anchor, anchor); - }, - p(ctx, [dirty]) { - if (!/*window*/ ctx[1] && !/*elementScroll*/ ctx[0]) { - if (if_block) { - if_block.p(ctx, dirty); - } else { - if_block = create_if_block$9(ctx); - if_block.c(); - if_block.m(if_block_anchor.parentNode, if_block_anchor); - } - } else if (if_block) { - if_block.d(1); - if_block = null; - } - }, - i: noop, - o: noop, - d(detaching) { - if (if_block) if_block.d(detaching); - if (detaching) detach(if_block_anchor); - } - }; + let if_block_anchor; + let if_block = + !(/*window*/ ctx[1]) && + !(/*elementScroll*/ ctx[0]) && + create_if_block$9(ctx); + + return { + c() { + if (if_block) if_block.c(); + if_block_anchor = empty$1(); + }, + m(target, anchor) { + if (if_block) if_block.m(target, anchor); + insert(target, if_block_anchor, anchor); + }, + p(ctx, [dirty]) { + if (!(/*window*/ ctx[1]) && !(/*elementScroll*/ ctx[0])) { + if (if_block) { + if_block.p(ctx, dirty); + } else { + if_block = create_if_block$9(ctx); + if_block.c(); + if_block.m(if_block_anchor.parentNode, if_block_anchor); + } + } else if (if_block) { + if_block.d(1); + if_block = null; + } + }, + i: noop, + o: noop, + d(detaching) { + if (if_block) if_block.d(detaching); + if (detaching) detach(if_block_anchor); + }, + }; } function instance$B($$self, $$props, $$invalidate) { - let { threshold = 0 } = $$props; - let { horizontal = false } = $$props; - let { elementScroll = null } = $$props; - let { hasMore = true } = $$props; - let { reverse = false } = $$props; - let { window = false } = $$props; - const dispatch = createEventDispatcher(); - let isLoadMore = false; - let component; - let beforeScrollHeight; - let beforeScrollTop; - let element; - - const onScroll = e => { - if (!hasMore) return; - const target = e.target; - const offset = calcOffset(target, reverse, horizontal); - - if (offset <= threshold) { - if (!isLoadMore && hasMore) { - dispatch("loadMore"); - $$invalidate(8, beforeScrollHeight = target.scrollHeight); - $$invalidate(9, beforeScrollTop = target.scrollTop); - } - - $$invalidate(7, isLoadMore = true); - } else { - $$invalidate(7, isLoadMore = false); - } - }; - - const calcOffset = (target, reverse, horizontal) => { - const element = target.documentElement ? target.documentElement : target; - - if (reverse) { - return horizontal ? element.scrollLeft : element.scrollTop; - } - - return horizontal - ? element.scrollWidth - element.clientWidth - element.scrollLeft - : element.scrollHeight - element.clientHeight - element.scrollTop; - }; - - onMount(() => { - if (window) { - $$invalidate(10, element = document); - } else if (elementScroll) { - $$invalidate(10, element = elementScroll); - } else { - $$invalidate(10, element = component.parentNode); - } - }); - - onDestroy(() => { - if (element) { - element.removeEventListener("scroll", onScroll); - element.removeEventListener("resize", onScroll); - } - }); - - function div_binding($$value) { - binding_callbacks[$$value ? "unshift" : "push"](() => { - component = $$value; - $$invalidate(2, component); - }); - } - - $$self.$$set = $$props => { - if ("threshold" in $$props) $$invalidate(3, threshold = $$props.threshold); - if ("horizontal" in $$props) $$invalidate(4, horizontal = $$props.horizontal); - if ("elementScroll" in $$props) $$invalidate(0, elementScroll = $$props.elementScroll); - if ("hasMore" in $$props) $$invalidate(5, hasMore = $$props.hasMore); - if ("reverse" in $$props) $$invalidate(6, reverse = $$props.reverse); - if ("window" in $$props) $$invalidate(1, window = $$props.window); - }; - - $$self.$$.update = () => { - if ($$self.$$.dirty & /*element, reverse*/ 1088) { - if (element) { - if (reverse) { - $$invalidate(10, element.scrollTop = element.scrollHeight, element); - } - - element.addEventListener("scroll", onScroll); - element.addEventListener("resize", onScroll); - } - } - - if ($$self.$$.dirty & /*isLoadMore, reverse, element, beforeScrollHeight, beforeScrollTop*/ 1984) { - if (isLoadMore && reverse) { - $$invalidate(10, element.scrollTop = element.scrollHeight - beforeScrollHeight + beforeScrollTop, element); - } - } - }; - - return [ - elementScroll, - window, - component, - threshold, - horizontal, - hasMore, - reverse, - isLoadMore, - beforeScrollHeight, - beforeScrollTop, - element, - div_binding - ]; + let { threshold = 0 } = $$props; + let { horizontal = false } = $$props; + let { elementScroll = null } = $$props; + let { hasMore = true } = $$props; + let { reverse = false } = $$props; + let { window = false } = $$props; + const dispatch = createEventDispatcher(); + let isLoadMore = false; + let component; + let beforeScrollHeight; + let beforeScrollTop; + let element; + + const onScroll = (e) => { + if (!hasMore) return; + const target = e.target; + const offset = calcOffset(target, reverse, horizontal); + + if (offset <= threshold) { + if (!isLoadMore && hasMore) { + dispatch('loadMore'); + $$invalidate(8, (beforeScrollHeight = target.scrollHeight)); + $$invalidate(9, (beforeScrollTop = target.scrollTop)); + } + + $$invalidate(7, (isLoadMore = true)); + } else { + $$invalidate(7, (isLoadMore = false)); + } + }; + + const calcOffset = (target, reverse, horizontal) => { + const element = target.documentElement ? target.documentElement : target; + + if (reverse) { + return horizontal ? element.scrollLeft : element.scrollTop; + } + + return horizontal + ? element.scrollWidth - element.clientWidth - element.scrollLeft + : element.scrollHeight - element.clientHeight - element.scrollTop; + }; + + onMount(() => { + if (window) { + $$invalidate(10, (element = document)); + } else if (elementScroll) { + $$invalidate(10, (element = elementScroll)); + } else { + $$invalidate(10, (element = component.parentNode)); + } + }); + + onDestroy(() => { + if (element) { + element.removeEventListener('scroll', onScroll); + element.removeEventListener('resize', onScroll); + } + }); + + function div_binding($$value) { + binding_callbacks[$$value ? 'unshift' : 'push'](() => { + component = $$value; + $$invalidate(2, component); + }); + } + + $$self.$$set = ($$props) => { + if ('threshold' in $$props) + $$invalidate(3, (threshold = $$props.threshold)); + if ('horizontal' in $$props) + $$invalidate(4, (horizontal = $$props.horizontal)); + if ('elementScroll' in $$props) + $$invalidate(0, (elementScroll = $$props.elementScroll)); + if ('hasMore' in $$props) $$invalidate(5, (hasMore = $$props.hasMore)); + if ('reverse' in $$props) $$invalidate(6, (reverse = $$props.reverse)); + if ('window' in $$props) $$invalidate(1, (window = $$props.window)); + }; + + $$self.$$.update = () => { + if ($$self.$$.dirty & /*element, reverse*/ 1088) { + if (element) { + if (reverse) { + $$invalidate(10, (element.scrollTop = element.scrollHeight), element); + } + + element.addEventListener('scroll', onScroll); + element.addEventListener('resize', onScroll); + } + } + + if ( + $$self.$$.dirty & + /*isLoadMore, reverse, element, beforeScrollHeight, beforeScrollTop*/ 1984 + ) { + if (isLoadMore && reverse) { + $$invalidate( + 10, + (element.scrollTop = + element.scrollHeight - beforeScrollHeight + beforeScrollTop), + element, + ); + } + } + }; + + return [ + elementScroll, + window, + component, + threshold, + horizontal, + hasMore, + reverse, + isLoadMore, + beforeScrollHeight, + beforeScrollTop, + element, + div_binding, + ]; } class InfiniteScroll extends SvelteComponent { - constructor(options) { - super(); - - init(this, options, instance$B, create_fragment$B, safe_not_equal, { - threshold: 3, - horizontal: 4, - elementScroll: 0, - hasMore: 5, - reverse: 6, - window: 1 - }); - } + constructor(options) { + super(); + + init(this, options, instance$B, create_fragment$B, safe_not_equal, { + threshold: 3, + horizontal: 4, + elementScroll: 0, + hasMore: 5, + reverse: 6, + window: 1, + }); + } } /* node_modules/svelte-icons/di/DiHtml5.svelte generated by Svelte v3.35.0 */ function create_default_slot$n(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M4.665 3.411l2.063 23.176 9.258 2.574 9.284-2.578 2.065-23.172h-22.671zM8.951 8.911l-0.068-0.763h7.107v2.842h-4.005l0.259 2.911h3.746v2.842h-6.341l-0.698-7.833zM22.518 14.665l-0.667 7.483-0.043 0.48-5.822 1.616-5.814-1.616-0.398-4.463h2.849l0.202 2.267 3.163 0.854 3.165-0.856 0.329-3.686h-3.485v-2.842h6.587l-0.069 0.763zM23.032 8.911l-0.129 1.441-0.057 0.639h-6.846v-2.842h7.1l-0.068 0.762z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M4.665 3.411l2.063 23.176 9.258 2.574 9.284-2.578 2.065-23.172h-22.671zM8.951 8.911l-0.068-0.763h7.107v2.842h-4.005l0.259 2.911h3.746v2.842h-6.341l-0.698-7.833zM22.518 14.665l-0.667 7.483-0.043 0.48-5.822 1.616-5.814-1.616-0.398-4.463h2.849l0.202 2.267 3.163 0.854 3.165-0.856 0.329-3.686h-3.485v-2.842h6.587l-0.069 0.763zM23.032 8.911l-0.129 1.441-0.057 0.639h-6.846v-2.842h7.1l-0.068 0.762z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$A(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 32 32" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$n] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [{ viewBox: '0 0 32 32' }, /*$$props*/ ctx[0]]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$n] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$A($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class DiHtml5 extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$A, create_fragment$A, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$A, create_fragment$A, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFile.svelte generated by Svelte v3.35.0 */ function create_default_slot$m(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$z(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$m] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$m] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$z($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFile extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$z, create_fragment$z, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$z, create_fragment$z, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFileAudio.svelte generated by Svelte v3.35.0 */ function create_default_slot$l(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$y(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$l] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$l] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$y($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFileAudio extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$y, create_fragment$y, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$y, create_fragment$y, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFileCode.svelte generated by Svelte v3.35.0 */ function create_default_slot$k(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$x(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$k] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$k] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$x($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFileCode extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$x, create_fragment$x, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$x, create_fragment$x, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFileCsv.svelte generated by Svelte v3.35.0 */ function create_default_slot$j(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$w(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$j] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$j] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$w($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFileCsv extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$w, create_fragment$w, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$w, create_fragment$w, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFileExcel.svelte generated by Svelte v3.35.0 */ function create_default_slot$i(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; -} + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; +} function create_fragment$v(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$i] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$i] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$v($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFileExcel extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$v, create_fragment$v, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$v, create_fragment$v, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFileImage.svelte generated by Svelte v3.35.0 */ function create_default_slot$h(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$u(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$h] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$h] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$u($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFileImage extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$u, create_fragment$u, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$u, create_fragment$u, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFilePdf.svelte generated by Svelte v3.35.0 */ function create_default_slot$g(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$t(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$g] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$g] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$t($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFilePdf extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$t, create_fragment$t, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$t, create_fragment$t, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFilePowerpoint.svelte generated by Svelte v3.35.0 */ function create_default_slot$f(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$s(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$f] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$f] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$s($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFilePowerpoint extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$s, create_fragment$s, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$s, create_fragment$s, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFileVideo.svelte generated by Svelte v3.35.0 */ function create_default_slot$e(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$r(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$e] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$e] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$r($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFileVideo extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$r, create_fragment$r, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$r, create_fragment$r, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaFileWord.svelte generated by Svelte v3.35.0 */ function create_default_slot$d(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$q(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 384 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$d] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 384 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$d] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$q($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaFileWord extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$q, create_fragment$q, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$q, create_fragment$q, safe_not_equal, {}); + } } /* node_modules/svelte-icons/fa/FaStickyNote.svelte generated by Svelte v3.35.0 */ function create_default_slot$c(ctx) { - let path; - - return { - c() { - path = svg_element("path"); - attr(path, "d", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"); - }, - m(target, anchor) { - insert(target, path, anchor); - }, - d(detaching) { - if (detaching) detach(path); - } - }; + let path; + + return { + c() { + path = svg_element('path'); + attr( + path, + 'd', + 'M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z', + ); + }, + m(target, anchor) { + insert(target, path, anchor); + }, + d(detaching) { + if (detaching) detach(path); + }, + }; } function create_fragment$p(ctx) { - let iconbase; - let current; - const iconbase_spread_levels = [{ viewBox: "0 0 448 512" }, /*$$props*/ ctx[0]]; - - let iconbase_props = { - $$slots: { default: [create_default_slot$c] }, - $$scope: { ctx } - }; - - for (let i = 0; i < iconbase_spread_levels.length; i += 1) { - iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); - } - - iconbase = new IconBase({ props: iconbase_props }); - - return { - c() { - create_component(iconbase.$$.fragment); - }, - m(target, anchor) { - mount_component(iconbase, target, anchor); - current = true; - }, - p(ctx, [dirty]) { - const iconbase_changes = (dirty & /*$$props*/ 1) - ? get_spread_update(iconbase_spread_levels, [iconbase_spread_levels[0], get_spread_object(/*$$props*/ ctx[0])]) - : {}; - - if (dirty & /*$$scope*/ 2) { - iconbase_changes.$$scope = { dirty, ctx }; - } - - iconbase.$set(iconbase_changes); - }, - i(local) { - if (current) return; - transition_in(iconbase.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(iconbase.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(iconbase, detaching); - } - }; + let iconbase; + let current; + const iconbase_spread_levels = [ + { viewBox: '0 0 448 512' }, + /*$$props*/ ctx[0], + ]; + + let iconbase_props = { + $$slots: { default: [create_default_slot$c] }, + $$scope: { ctx }, + }; + + for (let i = 0; i < iconbase_spread_levels.length; i += 1) { + iconbase_props = assign(iconbase_props, iconbase_spread_levels[i]); + } + + iconbase = new IconBase({ props: iconbase_props }); + + return { + c() { + create_component(iconbase.$$.fragment); + }, + m(target, anchor) { + mount_component(iconbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const iconbase_changes = + dirty & /*$$props*/ 1 + ? get_spread_update(iconbase_spread_levels, [ + iconbase_spread_levels[0], + get_spread_object(/*$$props*/ ctx[0]), + ]) + : {}; + + if (dirty & /*$$scope*/ 2) { + iconbase_changes.$$scope = { dirty, ctx }; + } + + iconbase.$set(iconbase_changes); + }, + i(local) { + if (current) return; + transition_in(iconbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(iconbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(iconbase, detaching); + }, + }; } function instance$p($$self, $$props, $$invalidate) { - $$self.$$set = $$new_props => { - $$invalidate(0, $$props = assign(assign({}, $$props), exclude_internal_props($$new_props))); - }; + $$self.$$set = ($$new_props) => { + $$invalidate( + 0, + ($$props = assign( + assign({}, $$props), + exclude_internal_props($$new_props), + )), + ); + }; - $$props = exclude_internal_props($$props); - return [$$props]; + $$props = exclude_internal_props($$props); + return [$$props]; } class FaStickyNote extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$p, create_fragment$p, safe_not_equal, {}); - } + constructor(options) { + super(); + init(this, options, instance$p, create_fragment$p, safe_not_equal, {}); + } } /* src/Components/ExtensionIcon.svelte generated by Svelte v3.35.0 */ function create_if_block$8(ctx) { - let span; - let show_if; - let show_if_1; - let show_if_2; - let show_if_3; - let show_if_4; - let show_if_5; - let show_if_6; - let show_if_7; - let show_if_8; - let show_if_9; - let show_if_10; - let current_block_type_index; - let if_block; - let current; - - const if_block_creators = [ - create_if_block_1$8, - create_if_block_2$8, - create_if_block_3$6, - create_if_block_4$3, - create_if_block_5$2, - create_if_block_6$2, - create_if_block_7$2, - create_if_block_8$1, - create_if_block_9$1, - create_if_block_10$1, - create_if_block_11, - create_else_block$2 - ]; - - const if_blocks = []; - - function select_block_type(ctx, dirty) { - if (dirty & /*path*/ 1) show_if = !!isImg(/*path*/ ctx[0]); - if (show_if) return 0; - if (dirty & /*path*/ 1) show_if_1 = !!/*path*/ ctx[0].endsWith(".html"); - if (show_if_1) return 1; - if (dirty & /*path*/ 1) show_if_2 = !!(/*path*/ ctx[0].endsWith(".xls") || /*path*/ ctx[0].endsWith(".xlsx")); - if (show_if_2) return 2; - if (dirty & /*path*/ 1) show_if_3 = !!/*path*/ ctx[0].endsWith(".csv"); - if (show_if_3) return 3; - if (dirty & /*path*/ 1) show_if_4 = !!/*path*/ ctx[0].endsWith(".pdf"); - if (show_if_4) return 4; - if (dirty & /*path*/ 1) show_if_5 = !!/*path*/ ctx[0].endsWith(".txt"); - if (show_if_5) return 5; - if (dirty & /*path*/ 1) show_if_6 = !!(/*path*/ ctx[0].endsWith(".mp3") || /*path*/ ctx[0].endsWith("opus")); - if (show_if_6) return 6; - if (dirty & /*path*/ 1) show_if_7 = !!(/*path*/ ctx[0].endsWith(".mp4") || /*path*/ ctx[0].endsWith(".webm")); - if (show_if_7) return 7; - if (dirty & /*path*/ 1) show_if_8 = !!(/*path*/ ctx[0].endsWith(".docx") || /*path*/ ctx[0].endsWith(".doc")); - if (show_if_8) return 8; - if (dirty & /*path*/ 1) show_if_9 = !!(/*path*/ ctx[0].endsWith(".ppt") || /*path*/ ctx[0].endsWith(".pptx")); - if (show_if_9) return 9; - if (dirty & /*path*/ 1) show_if_10 = !!(/*path*/ ctx[0].endsWith(".js") || /*path*/ ctx[0].endsWith(".ts") || /*path*/ ctx[0].endsWith(".c") || /*path*/ ctx[0].endsWith(".py")); - if (show_if_10) return 10; - return 11; - } - - current_block_type_index = select_block_type(ctx, -1); - if_block = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx); - - return { - c() { - span = element("span"); - if_block.c(); - attr(span, "class", ICON); - }, - m(target, anchor) { - insert(target, span, anchor); - if_blocks[current_block_type_index].m(span, null); - current = true; - }, - p(ctx, dirty) { - let previous_block_index = current_block_type_index; - current_block_type_index = select_block_type(ctx, dirty); - - if (current_block_type_index !== previous_block_index) { - group_outros(); - - transition_out(if_blocks[previous_block_index], 1, 1, () => { - if_blocks[previous_block_index] = null; - }); - - check_outros(); - if_block = if_blocks[current_block_type_index]; - - if (!if_block) { - if_block = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx); - if_block.c(); - } - - transition_in(if_block, 1); - if_block.m(span, null); - } - }, - i(local) { - if (current) return; - transition_in(if_block); - current = true; - }, - o(local) { - transition_out(if_block); - current = false; - }, - d(detaching) { - if (detaching) detach(span); - if_blocks[current_block_type_index].d(); - } - }; -} - -// (42:4) {:else} -function create_else_block$2(ctx) { - let fafile; - let current; - fafile = new FaFile({}); - - return { - c() { - create_component(fafile.$$.fragment); - }, - m(target, anchor) { - mount_component(fafile, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafile.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafile.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafile, detaching); - } - }; -} - -// (40:106) -function create_if_block_11(ctx) { - let fafilecode; - let current; - fafilecode = new FaFileCode({}); - - return { - c() { - create_component(fafilecode.$$.fragment); - }, - m(target, anchor) { - mount_component(fafilecode, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafilecode.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafilecode.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafilecode, detaching); - } - }; -} - -// (38:62) -function create_if_block_10$1(ctx) { - let fafilepowerpoint; - let current; - fafilepowerpoint = new FaFilePowerpoint({}); - - return { - c() { - create_component(fafilepowerpoint.$$.fragment); - }, - m(target, anchor) { - mount_component(fafilepowerpoint, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafilepowerpoint.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafilepowerpoint.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafilepowerpoint, detaching); - } - }; -} - -// (36:62) -function create_if_block_9$1(ctx) { - let fafileword; - let current; - fafileword = new FaFileWord({}); - - return { - c() { - create_component(fafileword.$$.fragment); - }, - m(target, anchor) { - mount_component(fafileword, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafileword.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafileword.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafileword, detaching); - } - }; -} - -// (34:62) -function create_if_block_8$1(ctx) { - let fafilevideo; - let current; - fafilevideo = new FaFileVideo({}); - - return { - c() { - create_component(fafilevideo.$$.fragment); - }, - m(target, anchor) { - mount_component(fafilevideo, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafilevideo.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafilevideo.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafilevideo, detaching); - } - }; -} - -// (32:61) -function create_if_block_7$2(ctx) { - let fafileaudio; - let current; - fafileaudio = new FaFileAudio({}); - - return { - c() { - create_component(fafileaudio.$$.fragment); - }, - m(target, anchor) { - mount_component(fafileaudio, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafileaudio.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafileaudio.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafileaudio, detaching); - } - }; -} - -// (30:36) -function create_if_block_6$2(ctx) { - let fastickynote; - let current; - fastickynote = new FaStickyNote({}); - - return { - c() { - create_component(fastickynote.$$.fragment); - }, - m(target, anchor) { - mount_component(fastickynote, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fastickynote.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fastickynote.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fastickynote, detaching); - } - }; -} - -// (28:36) -function create_if_block_5$2(ctx) { - let fafilepdf; - let current; - fafilepdf = new FaFilePdf({}); - - return { - c() { - create_component(fafilepdf.$$.fragment); - }, - m(target, anchor) { - mount_component(fafilepdf, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafilepdf.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafilepdf.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafilepdf, detaching); - } - }; -} - -// (26:36) -function create_if_block_4$3(ctx) { - let fafilecsv; - let current; - fafilecsv = new FaFileCsv({}); - - return { - c() { - create_component(fafilecsv.$$.fragment); - }, - m(target, anchor) { - mount_component(fafilecsv, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafilecsv.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafilecsv.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafilecsv, detaching); - } - }; -} - -// (24:62) -function create_if_block_3$6(ctx) { - let fafileexcel; - let current; - fafileexcel = new FaFileExcel({}); - - return { - c() { - create_component(fafileexcel.$$.fragment); - }, - m(target, anchor) { - mount_component(fafileexcel, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafileexcel.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafileexcel.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafileexcel, detaching); - } - }; -} - -// (22:37) -function create_if_block_2$8(ctx) { - let dihtml5; - let current; - dihtml5 = new DiHtml5({}); - - return { - c() { - create_component(dihtml5.$$.fragment); - }, - m(target, anchor) { - mount_component(dihtml5, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(dihtml5.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(dihtml5.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(dihtml5, detaching); - } - }; -} + let span; + let show_if; + let show_if_1; + let show_if_2; + let show_if_3; + let show_if_4; + let show_if_5; + let show_if_6; + let show_if_7; + let show_if_8; + let show_if_9; + let show_if_10; + let current_block_type_index; + let if_block; + let current; + + const if_block_creators = [ + create_if_block_1$8, + create_if_block_2$8, + create_if_block_3$6, + create_if_block_4$3, + create_if_block_5$2, + create_if_block_6$2, + create_if_block_7$2, + create_if_block_8$1, + create_if_block_9$1, + create_if_block_10$1, + create_if_block_11, + create_else_block$2, + ]; -// (20:4) {#if isImg(path)} -function create_if_block_1$8(ctx) { - let fafileimage; - let current; - fafileimage = new FaFileImage({}); - - return { - c() { - create_component(fafileimage.$$.fragment); - }, - m(target, anchor) { - mount_component(fafileimage, target, anchor); - current = true; - }, - i(local) { - if (current) return; - transition_in(fafileimage.$$.fragment, local); - current = true; - }, - o(local) { - transition_out(fafileimage.$$.fragment, local); - current = false; - }, - d(detaching) { - destroy_component(fafileimage, detaching); - } - }; -} + const if_blocks = []; -function create_fragment$o(ctx) { - let show_if = !/*path*/ ctx[0].endsWith(".md"); - let if_block_anchor; - let current; - let if_block = show_if && create_if_block$8(ctx); - - return { - c() { - if (if_block) if_block.c(); - if_block_anchor = empty$1(); - }, - m(target, anchor) { - if (if_block) if_block.m(target, anchor); - insert(target, if_block_anchor, anchor); - current = true; - }, - p(ctx, [dirty]) { - if (dirty & /*path*/ 1) show_if = !/*path*/ ctx[0].endsWith(".md"); - - if (show_if) { - if (if_block) { - if_block.p(ctx, dirty); - - if (dirty & /*path*/ 1) { - transition_in(if_block, 1); - } - } else { - if_block = create_if_block$8(ctx); - if_block.c(); - transition_in(if_block, 1); - if_block.m(if_block_anchor.parentNode, if_block_anchor); - } - } else if (if_block) { - group_outros(); - - transition_out(if_block, 1, 1, () => { - if_block = null; - }); - - check_outros(); - } - }, - i(local) { - if (current) return; - transition_in(if_block); - current = true; - }, - o(local) { - transition_out(if_block); - current = false; - }, - d(detaching) { - if (if_block) if_block.d(detaching); - if (detaching) detach(if_block_anchor); - } - }; -} + function select_block_type(ctx, dirty) { + if (dirty & /*path*/ 1) show_if = !!isImg(/*path*/ ctx[0]); + if (show_if) return 0; + if (dirty & /*path*/ 1) show_if_1 = !!(/*path*/ ctx[0].endsWith('.html')); + if (show_if_1) return 1; + if (dirty & /*path*/ 1) + show_if_2 = !!( + /*path*/ (ctx[0].endsWith('.xls') || /*path*/ ctx[0].endsWith('.xlsx')) + ); + if (show_if_2) return 2; + if (dirty & /*path*/ 1) show_if_3 = !!(/*path*/ ctx[0].endsWith('.csv')); + if (show_if_3) return 3; + if (dirty & /*path*/ 1) show_if_4 = !!(/*path*/ ctx[0].endsWith('.pdf')); + if (show_if_4) return 4; + if (dirty & /*path*/ 1) show_if_5 = !!(/*path*/ ctx[0].endsWith('.txt')); + if (show_if_5) return 5; + if (dirty & /*path*/ 1) + show_if_6 = !!( + /*path*/ (ctx[0].endsWith('.mp3') || /*path*/ ctx[0].endsWith('opus')) + ); + if (show_if_6) return 6; + if (dirty & /*path*/ 1) + show_if_7 = !!( + /*path*/ (ctx[0].endsWith('.mp4') || /*path*/ ctx[0].endsWith('.webm')) + ); + if (show_if_7) return 7; + if (dirty & /*path*/ 1) + show_if_8 = !!( + /*path*/ (ctx[0].endsWith('.docx') || /*path*/ ctx[0].endsWith('.doc')) + ); + if (show_if_8) return 8; + if (dirty & /*path*/ 1) + show_if_9 = !!( + /*path*/ (ctx[0].endsWith('.ppt') || /*path*/ ctx[0].endsWith('.pptx')) + ); + if (show_if_9) return 9; + if (dirty & /*path*/ 1) + show_if_10 = !!( + /*path*/ ( + ctx[0].endsWith('.js') || + /*path*/ ctx[0].endsWith('.ts') || + /*path*/ ctx[0].endsWith('.c') || + /*path*/ ctx[0].endsWith('.py') + ) + ); + if (show_if_10) return 10; + return 11; + } -function instance$o($$self, $$props, $$invalidate) { - let { path } = $$props; + current_block_type_index = select_block_type(ctx, -1); + if_block = if_blocks[current_block_type_index] = + if_block_creators[current_block_type_index](ctx); - $$self.$$set = $$props => { - if ("path" in $$props) $$invalidate(0, path = $$props.path); - }; + return { + c() { + span = element('span'); + if_block.c(); + attr(span, 'class', ICON); + }, + m(target, anchor) { + insert(target, span, anchor); + if_blocks[current_block_type_index].m(span, null); + current = true; + }, + p(ctx, dirty) { + let previous_block_index = current_block_type_index; + current_block_type_index = select_block_type(ctx, dirty); - return [path]; -} + if (current_block_type_index !== previous_block_index) { + group_outros(); -class ExtensionIcon extends SvelteComponent { - constructor(options) { - super(); - init(this, options, instance$o, create_fragment$o, safe_not_equal, { path: 0 }); - } -} + transition_out(if_blocks[previous_block_index], 1, 1, () => { + if_blocks[previous_block_index] = null; + }); -/* src/Components/ImgThumbnail.svelte generated by Svelte v3.35.0 */ + check_outros(); + if_block = if_blocks[current_block_type_index]; -function add_css$a() { - var style = element("style"); - style.id = "svelte-ck1pnn-style"; - style.textContent = ".GA-img.svelte-ck1pnn img.svelte-ck1pnn{max-width:25%;max-height:25%}.GA-img.svelte-ck1pnn img.svelte-ck1pnn:hover{max-width:100%;max-height:100%}"; - append(document.head, style); -} + if (!if_block) { + if_block = if_blocks[current_block_type_index] = + if_block_creators[current_block_type_index](ctx); + if_block.c(); + } -// (1:0)