diff options
Diffstat (limited to 'apps/twofactor_backupcodes')
210 files changed, 2183 insertions, 2136 deletions
diff --git a/apps/twofactor_backupcodes/.l10nignore b/apps/twofactor_backupcodes/.l10nignore index 6a63c9d5138..cceeb774628 100644 --- a/apps/twofactor_backupcodes/.l10nignore +++ b/apps/twofactor_backupcodes/.l10nignore @@ -1 +1,3 @@ +# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors +# SPDX-License-Identifier: AGPL-3.0-or-later js/ diff --git a/apps/twofactor_backupcodes/.noopenapi b/apps/twofactor_backupcodes/.noopenapi new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/apps/twofactor_backupcodes/.noopenapi diff --git a/apps/twofactor_backupcodes/appinfo/info.xml b/apps/twofactor_backupcodes/appinfo/info.xml index 0d50a66ea6a..48a96e3fa15 100644 --- a/apps/twofactor_backupcodes/appinfo/info.xml +++ b/apps/twofactor_backupcodes/appinfo/info.xml @@ -1,11 +1,15 @@ <?xml version="1.0"?> +<!-- + - SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + - SPDX-License-Identifier: AGPL-3.0-or-later +--> <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> <id>twofactor_backupcodes</id> <name>Two factor backup codes</name> <summary>A two-factor auth backup codes provider</summary> <description>A two-factor auth backup codes provider</description> - <version>1.10.0</version> + <version>1.21.0</version> <licence>agpl</licence> <author>Christoph Wurst</author> <namespace>TwoFactorBackupCodes</namespace> @@ -13,7 +17,7 @@ <category>security</category> <bugs>https://github.com/nextcloud/server/issues</bugs> <dependencies> - <nextcloud min-version="22" max-version="22"/> + <nextcloud min-version="32" max-version="32"/> </dependencies> <repair-steps> @@ -22,10 +26,6 @@ </post-migration> </repair-steps> - <two-factor-providers> - <provider>OCA\TwoFactorBackupCodes\Provider\BackupCodesProvider</provider> - </two-factor-providers> - <activity> <providers> <provider>OCA\TwoFactorBackupCodes\Activity\Provider</provider> diff --git a/apps/twofactor_backupcodes/appinfo/routes.php b/apps/twofactor_backupcodes/appinfo/routes.php index 8adc9c3901e..958e319c49d 100644 --- a/apps/twofactor_backupcodes/appinfo/routes.php +++ b/apps/twofactor_backupcodes/appinfo/routes.php @@ -1,24 +1,10 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ // @codeCoverageIgnoreStart return [ diff --git a/apps/twofactor_backupcodes/composer/autoload.php b/apps/twofactor_backupcodes/composer/autoload.php index 03a8800c318..fee47fcf513 100644 --- a/apps/twofactor_backupcodes/composer/autoload.php +++ b/apps/twofactor_backupcodes/composer/autoload.php @@ -2,6 +2,24 @@ // autoload.php @generated by Composer +if (PHP_VERSION_ID < 50600) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, $err); + } elseif (!headers_sent()) { + echo $err; + } + } + trigger_error( + $err, + E_USER_ERROR + ); +} + require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInitTwoFactorBackupCodes::getLoader(); diff --git a/apps/twofactor_backupcodes/composer/composer.lock b/apps/twofactor_backupcodes/composer/composer.lock new file mode 100644 index 00000000000..fd0bcbcb753 --- /dev/null +++ b/apps/twofactor_backupcodes/composer/composer.lock @@ -0,0 +1,18 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "d751713988987e9331980363e24189ce", + "packages": [], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "plugin-api-version": "2.1.0" +} diff --git a/apps/twofactor_backupcodes/composer/composer/ClassLoader.php b/apps/twofactor_backupcodes/composer/composer/ClassLoader.php index 4d989a212c9..7824d8f7eaf 100644 --- a/apps/twofactor_backupcodes/composer/composer/ClassLoader.php +++ b/apps/twofactor_backupcodes/composer/composer/ClassLoader.php @@ -42,30 +42,76 @@ namespace Composer\Autoload; */ class ClassLoader { + /** @var \Closure(string):void */ + private static $includeFile; + + /** @var string|null */ private $vendorDir; // PSR-4 + /** + * @var array<string, array<string, int>> + */ private $prefixLengthsPsr4 = array(); + /** + * @var array<string, list<string>> + */ private $prefixDirsPsr4 = array(); + /** + * @var list<string> + */ private $fallbackDirsPsr4 = array(); // PSR-0 + /** + * List of PSR-0 prefixes + * + * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) + * + * @var array<string, array<string, list<string>>> + */ private $prefixesPsr0 = array(); + /** + * @var list<string> + */ private $fallbackDirsPsr0 = array(); + /** @var bool */ private $useIncludePath = false; + + /** + * @var array<string, string> + */ private $classMap = array(); + + /** @var bool */ private $classMapAuthoritative = false; + + /** + * @var array<string, bool> + */ private $missingClasses = array(); + + /** @var string|null */ private $apcuPrefix; + /** + * @var array<string, self> + */ private static $registeredLoaders = array(); + /** + * @param string|null $vendorDir + */ public function __construct($vendorDir = null) { $this->vendorDir = $vendorDir; + self::initializeIncludeClosure(); } + /** + * @return array<string, list<string>> + */ public function getPrefixes() { if (!empty($this->prefixesPsr0)) { @@ -75,28 +121,42 @@ class ClassLoader return array(); } + /** + * @return array<string, list<string>> + */ public function getPrefixesPsr4() { return $this->prefixDirsPsr4; } + /** + * @return list<string> + */ public function getFallbackDirs() { return $this->fallbackDirsPsr0; } + /** + * @return list<string> + */ public function getFallbackDirsPsr4() { return $this->fallbackDirsPsr4; } + /** + * @return array<string, string> Array of classname => path + */ public function getClassMap() { return $this->classMap; } /** - * @param array $classMap Class to filename map + * @param array<string, string> $classMap Class to filename map + * + * @return void */ public function addClassMap(array $classMap) { @@ -111,22 +171,25 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix + * @param list<string>|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + * + * @return void */ public function add($prefix, $paths, $prepend = false) { + $paths = (array) $paths; if (!$prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( - (array) $paths, + $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, - (array) $paths + $paths ); } @@ -135,19 +198,19 @@ class ClassLoader $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = (array) $paths; + $this->prefixesPsr0[$first][$prefix] = $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( - (array) $paths, + $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], - (array) $paths + $paths ); } } @@ -156,25 +219,28 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param list<string>|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException + * + * @return void */ public function addPsr4($prefix, $paths, $prepend = false) { + $paths = (array) $paths; if (!$prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( - (array) $paths, + $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, - (array) $paths + $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { @@ -184,18 +250,18 @@ class ClassLoader throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; + $this->prefixDirsPsr4[$prefix] = $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( - (array) $paths, + $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], - (array) $paths + $paths ); } } @@ -204,8 +270,10 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 base directories + * @param string $prefix The prefix + * @param list<string>|string $paths The PSR-0 base directories + * + * @return void */ public function set($prefix, $paths) { @@ -220,10 +288,12 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param list<string>|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException + * + * @return void */ public function setPsr4($prefix, $paths) { @@ -243,6 +313,8 @@ class ClassLoader * Turns on searching the include path for class files. * * @param bool $useIncludePath + * + * @return void */ public function setUseIncludePath($useIncludePath) { @@ -265,6 +337,8 @@ class ClassLoader * that have not been registered with the class map. * * @param bool $classMapAuthoritative + * + * @return void */ public function setClassMapAuthoritative($classMapAuthoritative) { @@ -285,6 +359,8 @@ class ClassLoader * APCu prefix to use to cache found/not-found classes, if the extension is enabled. * * @param string|null $apcuPrefix + * + * @return void */ public function setApcuPrefix($apcuPrefix) { @@ -305,14 +381,18 @@ class ClassLoader * Registers this instance as an autoloader. * * @param bool $prepend Whether to prepend the autoloader or not + * + * @return void */ public function register($prepend = false) { spl_autoload_register(array($this, 'loadClass'), true, $prepend); if (null === $this->vendorDir) { - //no-op - } elseif ($prepend) { + return; + } + + if ($prepend) { self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; } else { unset(self::$registeredLoaders[$this->vendorDir]); @@ -322,6 +402,8 @@ class ClassLoader /** * Unregisters this instance as an autoloader. + * + * @return void */ public function unregister() { @@ -336,15 +418,18 @@ class ClassLoader * Loads the given class or interface. * * @param string $class The name of the class - * @return bool|null True if loaded, null otherwise + * @return true|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { - includeFile($file); + $includeFile = self::$includeFile; + $includeFile($file); return true; } + + return null; } /** @@ -390,15 +475,20 @@ class ClassLoader } /** - * Returns the currently registered loaders indexed by their corresponding vendor directories. + * Returns the currently registered loaders keyed by their corresponding vendor directories. * - * @return self[] + * @return array<string, self> */ public static function getRegisteredLoaders() { return self::$registeredLoaders; } + /** + * @param string $class + * @param string $ext + * @return string|false + */ private function findFileWithExtension($class, $ext) { // PSR-4 lookup @@ -464,14 +554,26 @@ class ClassLoader return false; } -} -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - */ -function includeFile($file) -{ - include $file; + /** + * @return void + */ + private static function initializeIncludeClosure() + { + if (self::$includeFile !== null) { + return; + } + + /** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + * + * @param string $file + * @return void + */ + self::$includeFile = \Closure::bind(static function($file) { + include $file; + }, null, null); + } } diff --git a/apps/twofactor_backupcodes/composer/composer/InstalledVersions.php b/apps/twofactor_backupcodes/composer/composer/InstalledVersions.php new file mode 100644 index 00000000000..51e734a774b --- /dev/null +++ b/apps/twofactor_backupcodes/composer/composer/InstalledVersions.php @@ -0,0 +1,359 @@ +<?php + +/* + * This file is part of Composer. + * + * (c) Nils Adermann <naderman@naderman.de> + * Jordi Boggiano <j.boggiano@seld.be> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer; + +use Composer\Autoload\ClassLoader; +use Composer\Semver\VersionParser; + +/** + * This class is copied in every Composer installed project and available to all + * + * See also https://getcomposer.org/doc/07-runtime.md#installed-versions + * + * To require its presence, you can require `composer-runtime-api ^2.0` + * + * @final + */ +class InstalledVersions +{ + /** + * @var mixed[]|null + * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null + */ + private static $installed; + + /** + * @var bool|null + */ + private static $canGetVendors; + + /** + * @var array[] + * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> + */ + private static $installedByVendor = array(); + + /** + * Returns a list of all package names which are present, either by being installed, replaced or provided + * + * @return string[] + * @psalm-return list<string> + */ + public static function getInstalledPackages() + { + $packages = array(); + foreach (self::getInstalled() as $installed) { + $packages[] = array_keys($installed['versions']); + } + + if (1 === \count($packages)) { + return $packages[0]; + } + + return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); + } + + /** + * Returns a list of all package names with a specific type e.g. 'library' + * + * @param string $type + * @return string[] + * @psalm-return list<string> + */ + public static function getInstalledPackagesByType($type) + { + $packagesByType = array(); + + foreach (self::getInstalled() as $installed) { + foreach ($installed['versions'] as $name => $package) { + if (isset($package['type']) && $package['type'] === $type) { + $packagesByType[] = $name; + } + } + } + + return $packagesByType; + } + + /** + * Checks whether the given package is installed + * + * This also returns true if the package name is provided or replaced by another package + * + * @param string $packageName + * @param bool $includeDevRequirements + * @return bool + */ + public static function isInstalled($packageName, $includeDevRequirements = true) + { + foreach (self::getInstalled() as $installed) { + if (isset($installed['versions'][$packageName])) { + return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false; + } + } + + return false; + } + + /** + * Checks whether the given package satisfies a version constraint + * + * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: + * + * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') + * + * @param VersionParser $parser Install composer/semver to have access to this class and functionality + * @param string $packageName + * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package + * @return bool + */ + public static function satisfies(VersionParser $parser, $packageName, $constraint) + { + $constraint = $parser->parseConstraints((string) $constraint); + $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); + + return $provided->matches($constraint); + } + + /** + * Returns a version constraint representing all the range(s) which are installed for a given package + * + * It is easier to use this via isInstalled() with the $constraint argument if you need to check + * whether a given version of a package is installed, and not just whether it exists + * + * @param string $packageName + * @return string Version constraint usable with composer/semver + */ + public static function getVersionRanges($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + $ranges = array(); + if (isset($installed['versions'][$packageName]['pretty_version'])) { + $ranges[] = $installed['versions'][$packageName]['pretty_version']; + } + if (array_key_exists('aliases', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); + } + if (array_key_exists('replaced', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); + } + if (array_key_exists('provided', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); + } + + return implode(' || ', $ranges); + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['version'])) { + return null; + } + + return $installed['versions'][$packageName]['version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getPrettyVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['pretty_version'])) { + return null; + } + + return $installed['versions'][$packageName]['pretty_version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference + */ + public static function getReference($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['reference'])) { + return null; + } + + return $installed['versions'][$packageName]['reference']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. + */ + public static function getInstallPath($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @return array + * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} + */ + public static function getRootPackage() + { + $installed = self::getInstalled(); + + return $installed[0]['root']; + } + + /** + * Returns the raw installed.php data for custom implementations + * + * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. + * @return array[] + * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} + */ + public static function getRawData() + { + @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + self::$installed = include __DIR__ . '/installed.php'; + } else { + self::$installed = array(); + } + } + + return self::$installed; + } + + /** + * Returns the raw data of all installed.php which are currently loaded for custom implementations + * + * @return array[] + * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> + */ + public static function getAllRawData() + { + return self::getInstalled(); + } + + /** + * Lets you reload the static array from another file + * + * This is only useful for complex integrations in which a project needs to use + * this class but then also needs to execute another project's autoloader in process, + * and wants to ensure both projects have access to their version of installed.php. + * + * A typical case would be PHPUnit, where it would need to make sure it reads all + * the data it needs from this class, then call reload() with + * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure + * the project in which it runs can then also use this class safely, without + * interference between PHPUnit's dependencies and the project's dependencies. + * + * @param array[] $data A vendor/composer/installed.php data set + * @return void + * + * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data + */ + public static function reload($data) + { + self::$installed = $data; + self::$installedByVendor = array(); + } + + /** + * @return array[] + * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> + */ + private static function getInstalled() + { + if (null === self::$canGetVendors) { + self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); + } + + $installed = array(); + + if (self::$canGetVendors) { + foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { + if (isset(self::$installedByVendor[$vendorDir])) { + $installed[] = self::$installedByVendor[$vendorDir]; + } elseif (is_file($vendorDir.'/composer/installed.php')) { + /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ + $required = require $vendorDir.'/composer/installed.php'; + $installed[] = self::$installedByVendor[$vendorDir] = $required; + if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { + self::$installed = $installed[count($installed) - 1]; + } + } + } + } + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ + $required = require __DIR__ . '/installed.php'; + self::$installed = $required; + } else { + self::$installed = array(); + } + } + + if (self::$installed !== array()) { + $installed[] = self::$installed; + } + + return $installed; + } +} diff --git a/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php b/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php index d59a06a1ab8..16dda3f615a 100644 --- a/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php +++ b/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php @@ -2,7 +2,7 @@ // autoload_classmap.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = $vendorDir; return array( @@ -20,6 +20,7 @@ return array( 'OCA\\TwoFactorBackupCodes\\Listener\\ProviderDisabled' => $baseDir . '/../lib/Listener/ProviderDisabled.php', 'OCA\\TwoFactorBackupCodes\\Listener\\ProviderEnabled' => $baseDir . '/../lib/Listener/ProviderEnabled.php', 'OCA\\TwoFactorBackupCodes\\Listener\\RegistryUpdater' => $baseDir . '/../lib/Listener/RegistryUpdater.php', + 'OCA\\TwoFactorBackupCodes\\Listener\\UserDeleted' => $baseDir . '/../lib/Listener/UserDeleted.php', 'OCA\\TwoFactorBackupCodes\\Migration\\CheckBackupCodes' => $baseDir . '/../lib/Migration/CheckBackupCodes.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170607104347' => $baseDir . '/../lib/Migration/Version1002Date20170607104347.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170607113030' => $baseDir . '/../lib/Migration/Version1002Date20170607113030.php', diff --git a/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php b/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php index 71c9e91858d..3f5c9296251 100644 --- a/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php +++ b/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php @@ -2,7 +2,7 @@ // autoload_namespaces.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = $vendorDir; return array( diff --git a/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php b/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php index c54d4c9819c..873cc7acf2f 100644 --- a/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php +++ b/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php @@ -2,7 +2,7 @@ // autoload_psr4.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = $vendorDir; return array( diff --git a/apps/twofactor_backupcodes/composer/composer/autoload_real.php b/apps/twofactor_backupcodes/composer/composer/autoload_real.php index 54580be4664..b063e83100f 100644 --- a/apps/twofactor_backupcodes/composer/composer/autoload_real.php +++ b/apps/twofactor_backupcodes/composer/composer/autoload_real.php @@ -23,20 +23,11 @@ class ComposerAutoloaderInitTwoFactorBackupCodes } spl_autoload_register(array('ComposerAutoloaderInitTwoFactorBackupCodes', 'loadClassLoader'), true, true); - self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); spl_autoload_unregister(array('ComposerAutoloaderInitTwoFactorBackupCodes', 'loadClassLoader')); - $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); - if ($useStaticLoader) { - require __DIR__ . '/autoload_static.php'; - - call_user_func(\Composer\Autoload\ComposerStaticInitTwoFactorBackupCodes::getInitializer($loader)); - } else { - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); - } - } + require __DIR__ . '/autoload_static.php'; + call_user_func(\Composer\Autoload\ComposerStaticInitTwoFactorBackupCodes::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); diff --git a/apps/twofactor_backupcodes/composer/composer/autoload_static.php b/apps/twofactor_backupcodes/composer/composer/autoload_static.php index 5c7091a937b..e72fad72f5f 100644 --- a/apps/twofactor_backupcodes/composer/composer/autoload_static.php +++ b/apps/twofactor_backupcodes/composer/composer/autoload_static.php @@ -35,6 +35,7 @@ class ComposerStaticInitTwoFactorBackupCodes 'OCA\\TwoFactorBackupCodes\\Listener\\ProviderDisabled' => __DIR__ . '/..' . '/../lib/Listener/ProviderDisabled.php', 'OCA\\TwoFactorBackupCodes\\Listener\\ProviderEnabled' => __DIR__ . '/..' . '/../lib/Listener/ProviderEnabled.php', 'OCA\\TwoFactorBackupCodes\\Listener\\RegistryUpdater' => __DIR__ . '/..' . '/../lib/Listener/RegistryUpdater.php', + 'OCA\\TwoFactorBackupCodes\\Listener\\UserDeleted' => __DIR__ . '/..' . '/../lib/Listener/UserDeleted.php', 'OCA\\TwoFactorBackupCodes\\Migration\\CheckBackupCodes' => __DIR__ . '/..' . '/../lib/Migration/CheckBackupCodes.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170607104347' => __DIR__ . '/..' . '/../lib/Migration/Version1002Date20170607104347.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170607113030' => __DIR__ . '/..' . '/../lib/Migration/Version1002Date20170607113030.php', diff --git a/apps/twofactor_backupcodes/composer/composer/installed.json b/apps/twofactor_backupcodes/composer/composer/installed.json new file mode 100644 index 00000000000..f20a6c47c6d --- /dev/null +++ b/apps/twofactor_backupcodes/composer/composer/installed.json @@ -0,0 +1,5 @@ +{ + "packages": [], + "dev": false, + "dev-package-names": [] +} diff --git a/apps/twofactor_backupcodes/composer/composer/installed.php b/apps/twofactor_backupcodes/composer/composer/installed.php new file mode 100644 index 00000000000..1a66c7f2416 --- /dev/null +++ b/apps/twofactor_backupcodes/composer/composer/installed.php @@ -0,0 +1,23 @@ +<?php return array( + 'root' => array( + 'name' => '__root__', + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => 'b1797842784b250fb01ed5e3bf130705eb94751b', + 'type' => 'library', + 'install_path' => __DIR__ . '/../', + 'aliases' => array(), + 'dev' => false, + ), + 'versions' => array( + '__root__' => array( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => 'b1797842784b250fb01ed5e3bf130705eb94751b', + 'type' => 'library', + 'install_path' => __DIR__ . '/../', + 'aliases' => array(), + 'dev_requirement' => false, + ), + ), +); diff --git a/apps/twofactor_backupcodes/css/style.css b/apps/twofactor_backupcodes/css/style.css index 33b7e85e11c..8df541fe3dc 100644 --- a/apps/twofactor_backupcodes/css/style.css +++ b/apps/twofactor_backupcodes/css/style.css @@ -1,20 +1,24 @@ +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ .challenge-form { margin: 16px auto 1px !important; } .challenge { margin-top: 0 !important; - margin-left: 0 !important; + margin-inline-start: 0 !important; box-sizing: border-box !important; width: 100% !important; } .confirm-inline { position: absolute; - right: 0; + inset-inline-end: 0; top: 0; margin: 0 !important; - padding-right: 25px !important; + padding-inline-end: 25px !important; background-color: transparent !important; border: none !important; opacity: .5; diff --git a/apps/twofactor_backupcodes/js/settings.js b/apps/twofactor_backupcodes/js/settings.js deleted file mode 100644 index ab984300a8b..00000000000 --- a/apps/twofactor_backupcodes/js/settings.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/js",n(n.s=168)}([function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(2),o=n(50),i=n(4),a=n(31),s=n(57),c=n(104),u=o("wks"),f=r.Symbol,l=c?f:f&&f.withoutSetter||a;t.exports=function(t){return i(u,t)||(s&&i(f,t)?u[t]=f[t]:u[t]=l("Symbol."+t)),u[t]}},function(t,e,n){(function(e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e&&e)||function(){return this}()||Function("return this")()}).call(this,n(13))},function(t,e,n){"use strict";var r=n(62),o=Object.prototype.toString;function i(t){return"[object Array]"===o.call(t)}function a(t){return void 0===t}function s(t){return null!==t&&"object"==typeof t}function c(t){if("[object Object]"!==o.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function u(t){return"[object Function]"===o.call(t)}function f(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),i(t))for(var n=0,r=t.length;n<r;n++)e.call(null,t[n],n,t);else for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e.call(null,t[o],o,t)}t.exports={isArray:i,isArrayBuffer:function(t){return"[object ArrayBuffer]"===o.call(t)},isBuffer:function(t){return null!==t&&!a(t)&&null!==t.constructor&&!a(t.constructor)&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)},isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:s,isPlainObject:c,isUndefined:a,isDate:function(t){return"[object Date]"===o.call(t)},isFile:function(t){return"[object File]"===o.call(t)},isBlob:function(t){return"[object Blob]"===o.call(t)},isFunction:u,isStream:function(t){return s(t)&&u(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:f,merge:function t(){var e={};function n(n,r){c(e[r])&&c(n)?e[r]=t(e[r],n):c(n)?e[r]=t({},n):i(n)?e[r]=n.slice():e[r]=n}for(var r=0,o=arguments.length;r<o;r++)f(arguments[r],n);return e},extend:function(t,e,n){return f(e,(function(e,o){t[o]=n&&"function"==typeof e?r(e,n):e})),t},trim:function(t){return t.replace(/^\s*/,"").replace(/\s*$/,"")},stripBOM:function(t){return 65279===t.charCodeAt(0)&&(t=t.slice(1)),t}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(5);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,e,n){var r=n(0);t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,e,n){var r=n(7),o=n(9),i=n(17);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(7),o=n(47),i=n(6),a=n(26),s=Object.defineProperty;e.f=r?s:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){"use strict";(function(t,n){var r=Object.freeze({});function o(t){return null==t}function i(t){return null!=t}function a(t){return!0===t}function s(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function c(t){return null!==t&&"object"==typeof t}var u=Object.prototype.toString;function f(t){return"[object Object]"===u.call(t)}function l(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function v(t){return null==t?"":Array.isArray(t)||f(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function h(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o<r.length;o++)n[r[o]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}m("slot,component",!0);var y=m("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function E(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var w=/-(\w)/g,x=E((function(t){return t.replace(w,(function(t,e){return e?e.toUpperCase():""}))})),O=E((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),A=/\B([A-Z])/g,C=E((function(t){return t.replace(A,"-$1").toLowerCase()}));var S=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function k(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function I(t,e){for(var n in e)t[n]=e[n];return t}function T(t){for(var e={},n=0;n<t.length;n++)t[n]&&I(e,t[n]);return e}function R(t,e,n){}var N=function(t,e,n){return!1},j=function(t){return t};function $(t,e){if(t===e)return!0;var n=c(t),r=c(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var o=Array.isArray(t),i=Array.isArray(e);if(o&&i)return t.length===e.length&&t.every((function(t,n){return $(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(o||i)return!1;var a=Object.keys(t),s=Object.keys(e);return a.length===s.length&&a.every((function(n){return $(t[n],e[n])}))}catch(t){return!1}}function L(t,e){for(var n=0;n<t.length;n++)if($(t[n],e))return n;return-1}function P(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var M=["component","directive","filter"],D=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],U={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:N,isReservedAttr:N,isUnknownElement:N,getTagNamespace:R,parsePlatformTagName:j,mustUseProp:N,async:!0,_lifecycleHooks:D},F=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function B(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var G=new RegExp("[^"+F.source+".$_\\d]");var V,H="__proto__"in{},z="undefined"!=typeof window,q="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,X=q&&WXEnvironment.platform.toLowerCase(),W=z&&window.navigator.userAgent.toLowerCase(),K=W&&/msie|trident/.test(W),J=W&&W.indexOf("msie 9.0")>0,Y=W&&W.indexOf("edge/")>0,Z=(W&&W.indexOf("android"),W&&/iphone|ipad|ipod|ios/.test(W)||"ios"===X),Q=(W&&/chrome\/\d+/.test(W),W&&/phantomjs/.test(W),W&&W.match(/firefox\/(\d+)/)),tt={}.watch,et=!1;if(z)try{var nt={};Object.defineProperty(nt,"passive",{get:function(){et=!0}}),window.addEventListener("test-passive",null,nt)}catch(t){}var rt=function(){return void 0===V&&(V=!z&&!q&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),V},ot=z&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var at,st="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);at="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ct=R,ut=0,ft=function(){this.id=ut++,this.subs=[]};ft.prototype.addSub=function(t){this.subs.push(t)},ft.prototype.removeSub=function(t){g(this.subs,t)},ft.prototype.depend=function(){ft.target&&ft.target.addDep(this)},ft.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e<n;e++)t[e].update()},ft.target=null;var lt=[];function pt(t){lt.push(t),ft.target=t}function dt(){lt.pop(),ft.target=lt[lt.length-1]}var vt=function(t,e,n,r,o,i,a,s){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ht={child:{configurable:!0}};ht.child.get=function(){return this.componentInstance},Object.defineProperties(vt.prototype,ht);var mt=function(t){void 0===t&&(t="");var e=new vt;return e.text=t,e.isComment=!0,e};function yt(t){return new vt(void 0,void 0,void 0,String(t))}function gt(t){var e=new vt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var bt=Array.prototype,_t=Object.create(bt);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=bt[t];B(_t,t,(function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];var o,i=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":o=n;break;case"splice":o=n.slice(2)}return o&&a.observeArray(o),a.dep.notify(),i}))}));var Et=Object.getOwnPropertyNames(_t),wt=!0;function xt(t){wt=t}var Ot=function(t){this.value=t,this.dep=new ft,this.vmCount=0,B(t,"__ob__",this),Array.isArray(t)?(H?function(t,e){t.__proto__=e}(t,_t):function(t,e,n){for(var r=0,o=n.length;r<o;r++){var i=n[r];B(t,i,e[i])}}(t,_t,Et),this.observeArray(t)):this.walk(t)};function At(t,e){var n;if(c(t)&&!(t instanceof vt))return _(t,"__ob__")&&t.__ob__ instanceof Ot?n=t.__ob__:wt&&!rt()&&(Array.isArray(t)||f(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new Ot(t)),e&&n&&n.vmCount++,n}function Ct(t,e,n,r,o){var i=new ft,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var s=a&&a.get,c=a&&a.set;s&&!c||2!==arguments.length||(n=t[e]);var u=!o&&At(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):n;return ft.target&&(i.depend(),u&&(u.dep.depend(),Array.isArray(e)&&It(e))),e},set:function(e){var r=s?s.call(t):n;e===r||e!=e&&r!=r||s&&!c||(c?c.call(t,e):n=e,u=!o&&At(e),i.notify())}})}}function St(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(Ct(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function kt(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||_(t,e)&&(delete t[e],n&&n.dep.notify())}}function It(t){for(var e=void 0,n=0,r=t.length;n<r;n++)(e=t[n])&&e.__ob__&&e.__ob__.dep.depend(),Array.isArray(e)&&It(e)}Ot.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)Ct(t,e[n])},Ot.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)At(t[e])};var Tt=U.optionMergeStrategies;function Rt(t,e){if(!e)return t;for(var n,r,o,i=st?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)"__ob__"!==(n=i[a])&&(r=t[n],o=e[n],_(t,n)?r!==o&&f(r)&&f(o)&&Rt(r,o):St(t,n,o));return t}function Nt(t,e,n){return n?function(){var r="function"==typeof e?e.call(n,n):e,o="function"==typeof t?t.call(n,n):t;return r?Rt(r,o):o}:e?t?function(){return Rt("function"==typeof e?e.call(this,this):e,"function"==typeof t?t.call(this,this):t)}:e:t}function jt(t,e){var n=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function $t(t,e,n,r){var o=Object.create(t||null);return e?I(o,e):o}Tt.data=function(t,e,n){return n?Nt(t,e,n):e&&"function"!=typeof e?t:Nt(t,e)},D.forEach((function(t){Tt[t]=jt})),M.forEach((function(t){Tt[t+"s"]=$t})),Tt.watch=function(t,e,n,r){if(t===tt&&(t=void 0),e===tt&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var i in I(o,t),e){var a=o[i],s=e[i];a&&!Array.isArray(a)&&(a=[a]),o[i]=a?a.concat(s):Array.isArray(s)?s:[s]}return o},Tt.props=Tt.methods=Tt.inject=Tt.computed=function(t,e,n,r){if(!t)return e;var o=Object.create(null);return I(o,t),e&&I(o,e),o},Tt.provide=Nt;var Lt=function(t,e){return void 0===e?t:e};function Pt(t,e,n){if("function"==typeof e&&(e=e.options),function(t,e){var n=t.props;if(n){var r,o,i={};if(Array.isArray(n))for(r=n.length;r--;)"string"==typeof(o=n[r])&&(i[x(o)]={type:null});else if(f(n))for(var a in n)o=n[a],i[x(a)]=f(o)?o:{type:o};else 0;t.props=i}}(e),function(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(f(n))for(var i in n){var a=n[i];r[i]=f(a)?I({from:i},a):{from:a}}else 0}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];"function"==typeof r&&(e[n]={bind:r,update:r})}}(e),!e._base&&(e.extends&&(t=Pt(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Pt(t,e.mixins[r],n);var i,a={};for(i in t)s(i);for(i in e)_(t,i)||s(i);function s(r){var o=Tt[r]||Lt;a[r]=o(t[r],e[r],n,r)}return a}function Mt(t,e,n,r){if("string"==typeof n){var o=t[e];if(_(o,n))return o[n];var i=x(n);if(_(o,i))return o[i];var a=O(i);return _(o,a)?o[a]:o[n]||o[i]||o[a]}}function Dt(t,e,n,r){var o=e[t],i=!_(n,t),a=n[t],s=Bt(Boolean,o.type);if(s>-1)if(i&&!_(o,"default"))a=!1;else if(""===a||a===C(t)){var c=Bt(String,o.type);(c<0||s<c)&&(a=!0)}if(void 0===a){a=function(t,e,n){if(!_(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return"function"==typeof r&&"Function"!==Ut(e.type)?r.call(t):r}(r,o,t);var u=wt;xt(!0),At(a),xt(u)}return a}function Ut(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Ft(t,e){return Ut(t)===Ut(e)}function Bt(t,e){if(!Array.isArray(e))return Ft(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Ft(e[n],t))return n;return-1}function Gt(t,e,n){pt();try{if(e)for(var r=e;r=r.$parent;){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{if(!1===o[i].call(r,t,e,n))return}catch(t){Ht(t,r,"errorCaptured hook")}}Ht(t,e,n)}finally{dt()}}function Vt(t,e,n,r,o){var i;try{(i=n?t.apply(e,n):t.call(e))&&!i._isVue&&d(i)&&!i._handled&&(i.catch((function(t){return Gt(t,r,o+" (Promise/async)")})),i._handled=!0)}catch(t){Gt(t,r,o)}return i}function Ht(t,e,n){if(U.errorHandler)try{return U.errorHandler.call(null,t,e,n)}catch(e){e!==t&&zt(e,null,"config.errorHandler")}zt(t,e,n)}function zt(t,e,n){if(!z&&!q||"undefined"==typeof console)throw t;console.error(t)}var qt,Xt=!1,Wt=[],Kt=!1;function Jt(){Kt=!1;var t=Wt.slice(0);Wt.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&it(Promise)){var Yt=Promise.resolve();qt=function(){Yt.then(Jt),Z&&setTimeout(R)},Xt=!0}else if(K||"undefined"==typeof MutationObserver||!it(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())qt=void 0!==n&&it(n)?function(){n(Jt)}:function(){setTimeout(Jt,0)};else{var Zt=1,Qt=new MutationObserver(Jt),te=document.createTextNode(String(Zt));Qt.observe(te,{characterData:!0}),qt=function(){Zt=(Zt+1)%2,te.data=String(Zt)},Xt=!0}function ee(t,e){var n;if(Wt.push((function(){if(t)try{t.call(e)}catch(t){Gt(t,e,"nextTick")}else n&&n(e)})),Kt||(Kt=!0,qt()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){n=t}))}var ne=new at;function re(t){!function t(e,n){var r,o,i=Array.isArray(e);if(!i&&!c(e)||Object.isFrozen(e)||e instanceof vt)return;if(e.__ob__){var a=e.__ob__.dep.id;if(n.has(a))return;n.add(a)}if(i)for(r=e.length;r--;)t(e[r],n);else for(o=Object.keys(e),r=o.length;r--;)t(e[o[r]],n)}(t,ne),ne.clear()}var oe=E((function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}}));function ie(t,e){function n(){var t=arguments,r=n.fns;if(!Array.isArray(r))return Vt(r,null,arguments,e,"v-on handler");for(var o=r.slice(),i=0;i<o.length;i++)Vt(o[i],null,t,e,"v-on handler")}return n.fns=t,n}function ae(t,e,n,r,i,s){var c,u,f,l;for(c in t)u=t[c],f=e[c],l=oe(c),o(u)||(o(f)?(o(u.fns)&&(u=t[c]=ie(u,s)),a(l.once)&&(u=t[c]=i(l.name,u,l.capture)),n(l.name,u,l.capture,l.passive,l.params)):u!==f&&(f.fns=u,t[c]=f));for(c in e)o(t[c])&&r((l=oe(c)).name,e[c],l.capture)}function se(t,e,n){var r;t instanceof vt&&(t=t.data.hook||(t.data.hook={}));var s=t[e];function c(){n.apply(this,arguments),g(r.fns,c)}o(s)?r=ie([c]):i(s.fns)&&a(s.merged)?(r=s).fns.push(c):r=ie([s,c]),r.merged=!0,t[e]=r}function ce(t,e,n,r,o){if(i(e)){if(_(e,n))return t[n]=e[n],o||delete e[n],!0;if(_(e,r))return t[n]=e[r],o||delete e[r],!0}return!1}function ue(t){return s(t)?[yt(t)]:Array.isArray(t)?function t(e,n){var r,c,u,f,l=[];for(r=0;r<e.length;r++)o(c=e[r])||"boolean"==typeof c||(u=l.length-1,f=l[u],Array.isArray(c)?c.length>0&&(fe((c=t(c,(n||"")+"_"+r))[0])&&fe(f)&&(l[u]=yt(f.text+c[0].text),c.shift()),l.push.apply(l,c)):s(c)?fe(f)?l[u]=yt(f.text+c):""!==c&&l.push(yt(c)):fe(c)&&fe(f)?l[u]=yt(f.text+c.text):(a(e._isVList)&&i(c.tag)&&o(c.key)&&i(n)&&(c.key="__vlist"+n+"_"+r+"__"),l.push(c)));return l}(t):void 0}function fe(t){return i(t)&&i(t.text)&&!1===t.isComment}function le(t,e){if(t){for(var n=Object.create(null),r=st?Reflect.ownKeys(t):Object.keys(t),o=0;o<r.length;o++){var i=r[o];if("__ob__"!==i){for(var a=t[i].from,s=e;s;){if(s._provided&&_(s._provided,a)){n[i]=s._provided[a];break}s=s.$parent}if(!s)if("default"in t[i]){var c=t[i].default;n[i]="function"==typeof c?c.call(e):c}else 0}}return n}}function pe(t,e){if(!t||!t.length)return{};for(var n={},r=0,o=t.length;r<o;r++){var i=t[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var s=a.slot,c=n[s]||(n[s]=[]);"template"===i.tag?c.push.apply(c,i.children||[]):c.push(i)}}for(var u in n)n[u].every(de)&&delete n[u];return n}function de(t){return t.isComment&&!t.asyncFactory||" "===t.text}function ve(t,e,n){var o,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var c in o={},t)t[c]&&"$"!==c[0]&&(o[c]=he(e,c,t[c]))}else o={};for(var u in e)u in o||(o[u]=me(e,u));return t&&Object.isExtensible(t)&&(t._normalized=o),B(o,"$stable",a),B(o,"$key",s),B(o,"$hasNormal",i),o}function he(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ue(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ye(t,e){var n,r,o,a,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,o=t.length;r<o;r++)n[r]=e(t[r],r);else if("number"==typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(c(t))if(st&&t[Symbol.iterator]){n=[];for(var u=t[Symbol.iterator](),f=u.next();!f.done;)n.push(e(f.value,n.length)),f=u.next()}else for(a=Object.keys(t),n=new Array(a.length),r=0,o=a.length;r<o;r++)s=a[r],n[r]=e(t[s],s,r);return i(n)||(n=[]),n._isVList=!0,n}function ge(t,e,n,r){var o,i=this.$scopedSlots[t];i?(n=n||{},r&&(n=I(I({},r),n)),o=i(n)||e):o=this.$slots[t]||e;var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function be(t){return Mt(this.$options,"filters",t)||j}function _e(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function Ee(t,e,n,r,o){var i=U.keyCodes[e]||n;return o&&r&&!U.keyCodes[e]?_e(o,r):i?_e(i,t):r?C(r)!==e:void 0}function we(t,e,n,r,o){if(n)if(c(n)){var i;Array.isArray(n)&&(n=T(n));var a=function(a){if("class"===a||"style"===a||y(a))i=t;else{var s=t.attrs&&t.attrs.type;i=r||U.mustUseProp(e,s,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var c=x(a),u=C(a);c in i||u in i||(i[a]=n[a],o&&((t.on||(t.on={}))["update:"+a]=function(t){n[a]=t}))};for(var s in n)a(s)}else;return t}function xe(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e||Ae(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),"__static__"+t,!1),r}function Oe(t,e,n){return Ae(t,"__once__"+e+(n?"_"+n:""),!0),t}function Ae(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&"string"!=typeof t[r]&&Ce(t[r],e+"_"+r,n);else Ce(t,e,n)}function Ce(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Se(t,e){if(e)if(f(e)){var n=t.on=t.on?I({},t.on):{};for(var r in e){var o=n[r],i=e[r];n[r]=o?[].concat(o,i):i}}else;return t}function ke(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var i=t[o];Array.isArray(i)?ke(i,e,n):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return r&&(e.$key=r),e}function Ie(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"==typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Te(t,e){return"string"==typeof t?e+t:t}function Re(t){t._o=Oe,t._n=h,t._s=v,t._l=ye,t._t=ge,t._q=$,t._i=L,t._m=xe,t._f=be,t._k=Ee,t._b=we,t._v=yt,t._e=mt,t._u=ke,t._g=Se,t._d=Ie,t._p=Te}function Ne(t,e,n,o,i){var s,c=this,u=i.options;_(o,"_uid")?(s=Object.create(o))._original=o:(s=o,o=o._original);var f=a(u._compiled),l=!f;this.data=t,this.props=e,this.children=n,this.parent=o,this.listeners=t.on||r,this.injections=le(u.inject,o),this.slots=function(){return c.$slots||ve(t.scopedSlots,c.$slots=pe(n,o)),c.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return ve(t.scopedSlots,this.slots())}}),f&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=ve(t.scopedSlots,this.$slots)),u._scopeId?this._c=function(t,e,n,r){var i=Ue(s,t,e,n,r,l);return i&&!Array.isArray(i)&&(i.fnScopeId=u._scopeId,i.fnContext=o),i}:this._c=function(t,e,n,r){return Ue(s,t,e,n,r,l)}}function je(t,e,n,r,o){var i=gt(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function $e(t,e){for(var n in e)t[x(n)]=e[n]}Re(Ne.prototype);var Le={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;Le.prepatch(n,n)}else{(t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;i(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,Ke)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,o,i){0;var a=o.data.scopedSlots,s=t.$scopedSlots,c=!!(a&&!a.$stable||s!==r&&!s.$stable||a&&t.$scopedSlots.$key!==a.$key),u=!!(i||t.$options._renderChildren||c);t.$options._parentVnode=o,t.$vnode=o,t._vnode&&(t._vnode.parent=o);if(t.$options._renderChildren=i,t.$attrs=o.data.attrs||r,t.$listeners=n||r,e&&t.$options.props){xt(!1);for(var f=t._props,l=t.$options._propKeys||[],p=0;p<l.length;p++){var d=l[p],v=t.$options.props;f[d]=Dt(d,v,e,t)}xt(!0),t.$options.propsData=e}n=n||r;var h=t.$options._parentListeners;t.$options._parentListeners=n,We(t,n,h),u&&(t.$slots=pe(i,o.context),t.$forceUpdate());0}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e,n=t.context,r=t.componentInstance;r._isMounted||(r._isMounted=!0,Qe(r,"mounted")),t.data.keepAlive&&(n._isMounted?((e=r)._inactive=!1,en.push(e)):Ze(r,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?function t(e,n){if(n&&(e._directInactive=!0,Ye(e)))return;if(!e._inactive){e._inactive=!0;for(var r=0;r<e.$children.length;r++)t(e.$children[r]);Qe(e,"deactivated")}}(e,!0):e.$destroy())}},Pe=Object.keys(Le);function Me(t,e,n,s,u){if(!o(t)){var f=n.$options._base;if(c(t)&&(t=f.extend(t)),"function"==typeof t){var l;if(o(t.cid)&&void 0===(t=function(t,e){if(a(t.error)&&i(t.errorComp))return t.errorComp;if(i(t.resolved))return t.resolved;var n=Be;n&&i(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n);if(a(t.loading)&&i(t.loadingComp))return t.loadingComp;if(n&&!i(t.owners)){var r=t.owners=[n],s=!0,u=null,f=null;n.$on("hook:destroyed",(function(){return g(r,n)}));var l=function(t){for(var e=0,n=r.length;e<n;e++)r[e].$forceUpdate();t&&(r.length=0,null!==u&&(clearTimeout(u),u=null),null!==f&&(clearTimeout(f),f=null))},p=P((function(n){t.resolved=Ge(n,e),s?r.length=0:l(!0)})),v=P((function(e){i(t.errorComp)&&(t.error=!0,l(!0))})),h=t(p,v);return c(h)&&(d(h)?o(t.resolved)&&h.then(p,v):d(h.component)&&(h.component.then(p,v),i(h.error)&&(t.errorComp=Ge(h.error,e)),i(h.loading)&&(t.loadingComp=Ge(h.loading,e),0===h.delay?t.loading=!0:u=setTimeout((function(){u=null,o(t.resolved)&&o(t.error)&&(t.loading=!0,l(!1))}),h.delay||200)),i(h.timeout)&&(f=setTimeout((function(){f=null,o(t.resolved)&&v(null)}),h.timeout)))),s=!1,t.loading?t.loadingComp:t.resolved}}(l=t,f)))return function(t,e,n,r,o){var i=mt();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}(l,e,n,s,u);e=e||{},wn(t),i(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var o=e.on||(e.on={}),a=o[r],s=e.model.callback;i(a)?(Array.isArray(a)?-1===a.indexOf(s):a!==s)&&(o[r]=[s].concat(a)):o[r]=s}(t.options,e);var p=function(t,e,n){var r=e.options.props;if(!o(r)){var a={},s=t.attrs,c=t.props;if(i(s)||i(c))for(var u in r){var f=C(u);ce(a,c,u,f,!0)||ce(a,s,u,f,!1)}return a}}(e,t);if(a(t.options.functional))return function(t,e,n,o,a){var s=t.options,c={},u=s.props;if(i(u))for(var f in u)c[f]=Dt(f,u,e||r);else i(n.attrs)&&$e(c,n.attrs),i(n.props)&&$e(c,n.props);var l=new Ne(n,c,a,o,t),p=s.render.call(null,l._c,l);if(p instanceof vt)return je(p,n,l.parent,s,l);if(Array.isArray(p)){for(var d=ue(p)||[],v=new Array(d.length),h=0;h<d.length;h++)v[h]=je(d[h],n,l.parent,s,l);return v}}(t,p,e,n,s);var v=e.on;if(e.on=e.nativeOn,a(t.options.abstract)){var h=e.slot;e={},h&&(e.slot=h)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<Pe.length;n++){var r=Pe[n],o=e[r],i=Le[r];o===i||o&&o._merged||(e[r]=o?De(i,o):i)}}(e);var m=t.options.name||u;return new vt("vue-component-"+t.cid+(m?"-"+m:""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:p,listeners:v,tag:u,children:s},l)}}}function De(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}function Ue(t,e,n,r,u,f){return(Array.isArray(n)||s(n))&&(u=r,r=n,n=void 0),a(f)&&(u=2),function(t,e,n,r,s){if(i(n)&&i(n.__ob__))return mt();i(n)&&i(n.is)&&(e=n.is);if(!e)return mt();0;Array.isArray(r)&&"function"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);2===s?r=ue(r):1===s&&(r=function(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}(r));var u,f;if("string"==typeof e){var l;f=t.$vnode&&t.$vnode.ns||U.getTagNamespace(e),u=U.isReservedTag(e)?new vt(U.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!i(l=Mt(t.$options,"components",e))?new vt(e,n,r,void 0,void 0,t):Me(l,n,t,r,e)}else u=Me(e,n,t,r);return Array.isArray(u)?u:i(u)?(i(f)&&function t(e,n,r){e.ns=n,"foreignObject"===e.tag&&(n=void 0,r=!0);if(i(e.children))for(var s=0,c=e.children.length;s<c;s++){var u=e.children[s];i(u.tag)&&(o(u.ns)||a(r)&&"svg"!==u.tag)&&t(u,n,r)}}(u,f),i(n)&&function(t){c(t.style)&&re(t.style);c(t.class)&&re(t.class)}(n),u):mt()}(t,e,n,r,u)}var Fe,Be=null;function Ge(t,e){return(t.__esModule||st&&"Module"===t[Symbol.toStringTag])&&(t=t.default),c(t)?e.extend(t):t}function Ve(t){return t.isComment&&t.asyncFactory}function He(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(i(n)&&(i(n.componentOptions)||Ve(n)))return n}}function ze(t,e){Fe.$on(t,e)}function qe(t,e){Fe.$off(t,e)}function Xe(t,e){var n=Fe;return function r(){var o=e.apply(null,arguments);null!==o&&n.$off(t,r)}}function We(t,e,n){Fe=t,ae(e,n||{},ze,qe,Xe,t),Fe=void 0}var Ke=null;function Je(t){var e=Ke;return Ke=t,function(){Ke=e}}function Ye(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function Ze(t,e){if(e){if(t._directInactive=!1,Ye(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)Ze(t.$children[n]);Qe(t,"activated")}}function Qe(t,e){pt();var n=t.$options[e],r=e+" hook";if(n)for(var o=0,i=n.length;o<i;o++)Vt(n[o],t,null,t,r);t._hasHookEvent&&t.$emit("hook:"+e),dt()}var tn=[],en=[],nn={},rn=!1,on=!1,an=0;var sn=0,cn=Date.now;if(z&&!K){var un=window.performance;un&&"function"==typeof un.now&&cn()>document.createEvent("Event").timeStamp&&(cn=function(){return un.now()})}function fn(){var t,e;for(sn=cn(),on=!0,tn.sort((function(t,e){return t.id-e.id})),an=0;an<tn.length;an++)(t=tn[an]).before&&t.before(),e=t.id,nn[e]=null,t.run();var n=en.slice(),r=tn.slice();an=tn.length=en.length=0,nn={},rn=on=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Ze(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&!r._isDestroyed&&Qe(r,"updated")}}(r),ot&&U.devtools&&ot.emit("flush")}var ln=0,pn=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++ln,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new at,this.newDepIds=new at,this.expression="","function"==typeof e?this.getter=e:(this.getter=function(t){if(!G.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=R)),this.value=this.lazy?void 0:this.get()};pn.prototype.get=function(){var t;pt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Gt(t,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&re(t),dt(),this.cleanupDeps()}return t},pn.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},pn.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},pn.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(t){var e=t.id;if(null==nn[e]){if(nn[e]=!0,on){for(var n=tn.length-1;n>an&&tn[n].id>t.id;)n--;tn.splice(n+1,0,t)}else tn.push(t);rn||(rn=!0,ee(fn))}}(this)},pn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Gt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},pn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},pn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},pn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var dn={enumerable:!0,configurable:!0,get:R,set:R};function vn(t,e,n){dn.get=function(){return this[e][n]},dn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,dn)}function hn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[];t.$parent&&xt(!1);var i=function(i){o.push(i);var a=Dt(i,e,n,t);Ct(r,i,a),i in t||vn(t,"_props",i)};for(var a in e)i(a);xt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?R:S(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;f(e=t._data="function"==typeof e?function(t,e){pt();try{return t.call(e,e)}catch(t){return Gt(t,e,"data()"),{}}finally{dt()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);for(;o--;){var i=n[o];0,r&&_(r,i)||(a=void 0,36!==(a=(i+"").charCodeAt(0))&&95!==a&&vn(t,"_data",i))}var a;At(e,!0)}(t):At(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=rt();for(var o in e){var i=e[o],a="function"==typeof i?i:i.get;0,r||(n[o]=new pn(t,a||R,R,mn)),o in t||yn(t,o,i)}}(t,e.computed),e.watch&&e.watch!==tt&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o<r.length;o++)_n(t,n,r[o]);else _n(t,n,r)}}(t,e.watch)}var mn={lazy:!0};function yn(t,e,n){var r=!rt();"function"==typeof n?(dn.get=r?gn(e):bn(n),dn.set=R):(dn.get=n.get?r&&!1!==n.cache?gn(e):bn(n.get):R,dn.set=n.set||R),Object.defineProperty(t,e,dn)}function gn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ft.target&&e.depend(),e.value}}function bn(t){return function(){return t.call(this,this)}}function _n(t,e,n,r){return f(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}var En=0;function wn(t){var e=t.options;if(t.super){var n=wn(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.sealedOptions;for(var o in n)n[o]!==r[o]&&(e||(e={}),e[o]=n[o]);return e}(t);r&&I(t.extendOptions,r),(e=t.options=Pt(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function xn(t){this._init(t)}function On(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=Pt(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)vn(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)yn(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,M.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=I({},a.options),o[r]=a,a}}function An(t){return t&&(t.Ctor.options.name||t.tag)}function Cn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!l(t)&&t.test(e)}function Sn(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var s=An(a.componentOptions);s&&!e(s)&&kn(n,i,r,o)}}}function kn(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=En++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Pt(wn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&We(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,o=n&&n.context;t.$slots=pe(e._renderChildren,o),t.$scopedSlots=r,t._c=function(e,n,r,o){return Ue(t,e,n,r,o,!1)},t.$createElement=function(e,n,r,o){return Ue(t,e,n,r,o,!0)};var i=n&&n.data;Ct(t,"$attrs",i&&i.attrs||r,null,!0),Ct(t,"$listeners",e._parentListeners||r,null,!0)}(e),Qe(e,"beforeCreate"),function(t){var e=le(t.$options.inject,t);e&&(xt(!1),Object.keys(e).forEach((function(n){Ct(t,n,e[n])})),xt(!0))}(e),hn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),Qe(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(xn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=St,t.prototype.$delete=kt,t.prototype.$watch=function(t,e,n){if(f(e))return _n(this,t,e,n);(n=n||{}).user=!0;var r=new pn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Gt(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(xn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var o=0,i=t.length;o<i;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var i,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;for(var s=a.length;s--;)if((i=a[s])===e||i.fn===e){a.splice(s,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?k(n):n;for(var r=k(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;i<a;i++)Vt(n[i],e,r,e,o)}return e}}(xn),function(t){t.prototype._update=function(t,e){var n=this,r=n.$el,o=n._vnode,i=Je(n);n._vnode=t,n.$el=o?n.__patch__(o,t):n.__patch__(n.$el,t,e,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Qe(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();for(var n=t._watchers.length;n--;)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Qe(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(xn),function(t){Re(t.prototype),t.prototype.$nextTick=function(t){return ee(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&(e.$scopedSlots=ve(o.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=o;try{Be=e,t=r.call(e._renderProxy,e.$createElement)}catch(n){Gt(n,e,"render"),t=e._vnode}finally{Be=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof vt||(t=mt()),t.parent=o,t}}(xn);var In=[String,RegExp,Array],Tn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:In,exclude:In,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)kn(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",(function(e){Sn(t,(function(t){return Cn(e,t)}))})),this.$watch("exclude",(function(e){Sn(t,(function(t){return!Cn(e,t)}))}))},render:function(){var t=this.$slots.default,e=He(t),n=e&&e.componentOptions;if(n){var r=An(n),o=this.include,i=this.exclude;if(o&&(!r||!Cn(o,r))||i&&r&&Cn(i,r))return e;var a=this.cache,s=this.keys,c=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;a[c]?(e.componentInstance=a[c].componentInstance,g(s,c),s.push(c)):(a[c]=e,s.push(c),this.max&&s.length>parseInt(this.max)&&kn(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return U}};Object.defineProperty(t,"config",e),t.util={warn:ct,extend:I,mergeOptions:Pt,defineReactive:Ct},t.set=St,t.delete=kt,t.nextTick=ee,t.observable=function(t){return At(t),t},t.options=Object.create(null),M.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,I(t.options.components,Tn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=k(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Pt(this.options,t),this}}(t),On(t),function(t){M.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(xn),Object.defineProperty(xn.prototype,"$isServer",{get:rt}),Object.defineProperty(xn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(xn,"FunctionalRenderContext",{value:Ne}),xn.version="2.6.12";var Rn=m("style,class"),Nn=m("input,textarea,option,select,progress"),jn=m("contenteditable,draggable,spellcheck"),$n=m("events,caret,typing,plaintext-only"),Ln=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Pn="http://www.w3.org/1999/xlink",Mn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Dn=function(t){return Mn(t)?t.slice(6,t.length):""},Un=function(t){return null==t||!1===t};function Fn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Bn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=Bn(e,n.data));return function(t,e){if(i(t)||i(e))return Gn(t,Vn(e));return""}(e.staticClass,e.class)}function Bn(t,e){return{staticClass:Gn(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Gn(t,e){return t?e?t+" "+e:t:e||""}function Vn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,o=t.length;r<o;r++)i(e=Vn(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):c(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Hn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},zn=m("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),qn=m("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Xn=function(t){return zn(t)||qn(t)};var Wn=Object.create(null);var Kn=m("text,number,password,search,email,tel,url");var Jn=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(t,e){return document.createElementNS(Hn[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Yn={create:function(t,e){Zn(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Zn(t,!0),Zn(e))},destroy:function(t){Zn(t,!0)}};function Zn(t,e){var n=t.data.ref;if(i(n)){var r=t.context,o=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],o):a[n]===o&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var Qn=new vt("",{},[]),tr=["create","activate","update","remove","destroy"];function er(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&i(t.data)===i(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=i(n=t.data)&&i(n=n.attrs)&&n.type,o=i(n=e.data)&&i(n=n.attrs)&&n.type;return r===o||Kn(r)&&Kn(o)}(t,e)||a(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&o(e.asyncFactory.error))}function nr(t,e,n){var r,o,a={};for(r=e;r<=n;++r)i(o=t[r].key)&&(a[o]=r);return a}var rr={create:or,update:or,destroy:function(t){or(t,Qn)}};function or(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,o,i=t===Qn,a=e===Qn,s=ar(t.data.directives,t.context),c=ar(e.data.directives,e.context),u=[],f=[];for(n in c)r=s[n],o=c[n],r?(o.oldValue=r.value,o.oldArg=r.arg,cr(o,"update",e,t),o.def&&o.def.componentUpdated&&f.push(o)):(cr(o,"bind",e,t),o.def&&o.def.inserted&&u.push(o));if(u.length){var l=function(){for(var n=0;n<u.length;n++)cr(u[n],"inserted",e,t)};i?se(e,"insert",l):l()}f.length&&se(e,"postpatch",(function(){for(var n=0;n<f.length;n++)cr(f[n],"componentUpdated",e,t)}));if(!i)for(n in s)c[n]||cr(s[n],"unbind",t,t,a)}(t,e)}var ir=Object.create(null);function ar(t,e){var n,r,o=Object.create(null);if(!t)return o;for(n=0;n<t.length;n++)(r=t[n]).modifiers||(r.modifiers=ir),o[sr(r)]=r,r.def=Mt(e.$options,"directives",r.name);return o}function sr(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function cr(t,e,n,r,o){var i=t.def&&t.def[e];if(i)try{i(n.elm,t,n,r,o)}catch(r){Gt(r,n.context,"directive "+t.name+" "+e+" hook")}}var ur=[Yn,rr];function fr(t,e){var n=e.componentOptions;if(!(i(n)&&!1===n.Ctor.options.inheritAttrs||o(t.data.attrs)&&o(e.data.attrs))){var r,a,s=e.elm,c=t.data.attrs||{},u=e.data.attrs||{};for(r in i(u.__ob__)&&(u=e.data.attrs=I({},u)),u)a=u[r],c[r]!==a&&lr(s,r,a);for(r in(K||Y)&&u.value!==c.value&&lr(s,"value",u.value),c)o(u[r])&&(Mn(r)?s.removeAttributeNS(Pn,Dn(r)):jn(r)||s.removeAttribute(r))}}function lr(t,e,n){t.tagName.indexOf("-")>-1?pr(t,e,n):Ln(e)?Un(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):jn(e)?t.setAttribute(e,function(t,e){return Un(e)||"false"===e?"false":"contenteditable"===t&&$n(e)?e:"true"}(e,n)):Mn(e)?Un(n)?t.removeAttributeNS(Pn,Dn(e)):t.setAttributeNS(Pn,e,n):pr(t,e,n)}function pr(t,e,n){if(Un(n))t.removeAttribute(e);else{if(K&&!J&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var dr={create:fr,update:fr};function vr(t,e){var n=e.elm,r=e.data,a=t.data;if(!(o(r.staticClass)&&o(r.class)&&(o(a)||o(a.staticClass)&&o(a.class)))){var s=Fn(e),c=n._transitionClasses;i(c)&&(s=Gn(s,Vn(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var hr,mr={create:vr,update:vr};function yr(t,e,n){var r=hr;return function o(){var i=e.apply(null,arguments);null!==i&&_r(t,o,n,r)}}var gr=Xt&&!(Q&&Number(Q[1])<=53);function br(t,e,n,r){if(gr){var o=sn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}hr.addEventListener(t,e,et?{capture:n,passive:r}:n)}function _r(t,e,n,r){(r||hr).removeEventListener(t,e._wrapper||e,n)}function Er(t,e){if(!o(t.data.on)||!o(e.data.on)){var n=e.data.on||{},r=t.data.on||{};hr=e.elm,function(t){if(i(t.__r)){var e=K?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}i(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(n),ae(n,r,br,_r,yr,e.context),hr=void 0}}var wr,xr={create:Er,update:Er};function Or(t,e){if(!o(t.data.domProps)||!o(e.data.domProps)){var n,r,a=e.elm,s=t.data.domProps||{},c=e.data.domProps||{};for(n in i(c.__ob__)&&(c=e.data.domProps=I({},c)),s)n in c||(a[n]="");for(n in c){if(r=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var u=o(r)?"":String(r);Ar(a,u)&&(a.value=u)}else if("innerHTML"===n&&qn(a.tagName)&&o(a.innerHTML)){(wr=wr||document.createElement("div")).innerHTML="<svg>"+r+"</svg>";for(var f=wr.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;f.firstChild;)a.appendChild(f.firstChild)}else if(r!==s[n])try{a[n]=r}catch(t){}}}}function Ar(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return h(n)!==h(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Cr={create:Or,update:Or},Sr=E((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function kr(t){var e=Ir(t.style);return t.staticStyle?I(t.staticStyle,e):e}function Ir(t){return Array.isArray(t)?T(t):"string"==typeof t?Sr(t):t}var Tr,Rr=/^--/,Nr=/\s*!important$/,jr=function(t,e,n){if(Rr.test(e))t.style.setProperty(e,n);else if(Nr.test(n))t.style.setProperty(C(e),n.replace(Nr,""),"important");else{var r=Lr(e);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)t.style[r]=n[o];else t.style[r]=n}},$r=["Webkit","Moz","ms"],Lr=E((function(t){if(Tr=Tr||document.createElement("div").style,"filter"!==(t=x(t))&&t in Tr)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<$r.length;n++){var r=$r[n]+e;if(r in Tr)return r}}));function Pr(t,e){var n=e.data,r=t.data;if(!(o(n.staticStyle)&&o(n.style)&&o(r.staticStyle)&&o(r.style))){var a,s,c=e.elm,u=r.staticStyle,f=r.normalizedStyle||r.style||{},l=u||f,p=Ir(e.data.style)||{};e.data.normalizedStyle=i(p.__ob__)?I({},p):p;var d=function(t,e){var n,r={};if(e)for(var o=t;o.componentInstance;)(o=o.componentInstance._vnode)&&o.data&&(n=kr(o.data))&&I(r,n);(n=kr(t.data))&&I(r,n);for(var i=t;i=i.parent;)i.data&&(n=kr(i.data))&&I(r,n);return r}(e,!0);for(s in l)o(d[s])&&jr(c,s,"");for(s in d)(a=d[s])!==l[s]&&jr(c,s,null==a?"":a)}}var Mr={create:Pr,update:Pr},Dr=/\s+/;function Ur(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Dr).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Fr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Dr).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Br(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&I(e,Gr(t.name||"v")),I(e,t),e}return"string"==typeof t?Gr(t):void 0}}var Gr=E((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Vr=z&&!J,Hr="transition",zr="transitionend",qr="animation",Xr="animationend";Vr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Hr="WebkitTransition",zr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(qr="WebkitAnimation",Xr="webkitAnimationEnd"));var Wr=z?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Kr(t){Wr((function(){Wr(t)}))}function Jr(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Ur(t,e))}function Yr(t,e){t._transitionClasses&&g(t._transitionClasses,e),Fr(t,e)}function Zr(t,e,n){var r=to(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s="transition"===o?zr:Xr,c=0,u=function(){t.removeEventListener(s,f),n()},f=function(e){e.target===t&&++c>=a&&u()};setTimeout((function(){c<a&&u()}),i+1),t.addEventListener(s,f)}var Qr=/\b(transform|all)(,|$)/;function to(t,e){var n,r=window.getComputedStyle(t),o=(r[Hr+"Delay"]||"").split(", "),i=(r[Hr+"Duration"]||"").split(", "),a=eo(o,i),s=(r[qr+"Delay"]||"").split(", "),c=(r[qr+"Duration"]||"").split(", "),u=eo(s,c),f=0,l=0;return"transition"===e?a>0&&(n="transition",f=a,l=i.length):"animation"===e?u>0&&(n="animation",f=u,l=c.length):l=(n=(f=Math.max(a,u))>0?a>u?"transition":"animation":null)?"transition"===n?i.length:c.length:0,{type:n,timeout:f,propCount:l,hasTransform:"transition"===n&&Qr.test(r[Hr+"Property"])}}function eo(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return no(e)+no(t[n])})))}function no(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function ro(t,e){var n=t.elm;i(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=Br(t.data.transition);if(!o(r)&&!i(n._enterCb)&&1===n.nodeType){for(var a=r.css,s=r.type,u=r.enterClass,f=r.enterToClass,l=r.enterActiveClass,p=r.appearClass,d=r.appearToClass,v=r.appearActiveClass,m=r.beforeEnter,y=r.enter,g=r.afterEnter,b=r.enterCancelled,_=r.beforeAppear,E=r.appear,w=r.afterAppear,x=r.appearCancelled,O=r.duration,A=Ke,C=Ke.$vnode;C&&C.parent;)A=C.context,C=C.parent;var S=!A._isMounted||!t.isRootInsert;if(!S||E||""===E){var k=S&&p?p:u,I=S&&v?v:l,T=S&&d?d:f,R=S&&_||m,N=S&&"function"==typeof E?E:y,j=S&&w||g,$=S&&x||b,L=h(c(O)?O.enter:O);0;var M=!1!==a&&!J,D=ao(N),U=n._enterCb=P((function(){M&&(Yr(n,T),Yr(n,I)),U.cancelled?(M&&Yr(n,k),$&&$(n)):j&&j(n),n._enterCb=null}));t.data.show||se(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),N&&N(n,U)})),R&&R(n),M&&(Jr(n,k),Jr(n,I),Kr((function(){Yr(n,k),U.cancelled||(Jr(n,T),D||(io(L)?setTimeout(U,L):Zr(n,s,U)))}))),t.data.show&&(e&&e(),N&&N(n,U)),M||D||U()}}}function oo(t,e){var n=t.elm;i(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=Br(t.data.transition);if(o(r)||1!==n.nodeType)return e();if(!i(n._leaveCb)){var a=r.css,s=r.type,u=r.leaveClass,f=r.leaveToClass,l=r.leaveActiveClass,p=r.beforeLeave,d=r.leave,v=r.afterLeave,m=r.leaveCancelled,y=r.delayLeave,g=r.duration,b=!1!==a&&!J,_=ao(d),E=h(c(g)?g.leave:g);0;var w=n._leaveCb=P((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),b&&(Yr(n,f),Yr(n,l)),w.cancelled?(b&&Yr(n,u),m&&m(n)):(e(),v&&v(n)),n._leaveCb=null}));y?y(x):x()}function x(){w.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),b&&(Jr(n,u),Jr(n,l),Kr((function(){Yr(n,u),w.cancelled||(Jr(n,f),_||(io(E)?setTimeout(w,E):Zr(n,s,w)))}))),d&&d(n,w),b||_||w())}}function io(t){return"number"==typeof t&&!isNaN(t)}function ao(t){if(o(t))return!1;var e=t.fns;return i(e)?ao(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function so(t,e){!0!==e.data.show&&ro(e)}var co=function(t){var e,n,r={},c=t.modules,u=t.nodeOps;for(e=0;e<tr.length;++e)for(r[tr[e]]=[],n=0;n<c.length;++n)i(c[n][tr[e]])&&r[tr[e]].push(c[n][tr[e]]);function f(t){var e=u.parentNode(t);i(e)&&u.removeChild(e,t)}function l(t,e,n,o,s,c,f){if(i(t.elm)&&i(c)&&(t=c[f]=gt(t)),t.isRootInsert=!s,!function(t,e,n,o){var s=t.data;if(i(s)){var c=i(t.componentInstance)&&s.keepAlive;if(i(s=s.hook)&&i(s=s.init)&&s(t,!1),i(t.componentInstance))return p(t,e),d(n,t.elm,o),a(c)&&function(t,e,n,o){var a,s=t;for(;s.componentInstance;)if(s=s.componentInstance._vnode,i(a=s.data)&&i(a=a.transition)){for(a=0;a<r.activate.length;++a)r.activate[a](Qn,s);e.push(s);break}d(n,t.elm,o)}(t,e,n,o),!0}}(t,e,n,o)){var l=t.data,h=t.children,m=t.tag;i(m)?(t.elm=t.ns?u.createElementNS(t.ns,m):u.createElement(m,t),g(t),v(t,h,e),i(l)&&y(t,e),d(n,t.elm,o)):a(t.isComment)?(t.elm=u.createComment(t.text),d(n,t.elm,o)):(t.elm=u.createTextNode(t.text),d(n,t.elm,o))}}function p(t,e){i(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,h(t)?(y(t,e),g(t)):(Zn(t),e.push(t))}function d(t,e,n){i(t)&&(i(n)?u.parentNode(n)===t&&u.insertBefore(t,e,n):u.appendChild(t,e))}function v(t,e,n){if(Array.isArray(e)){0;for(var r=0;r<e.length;++r)l(e[r],n,t.elm,null,!0,e,r)}else s(t.text)&&u.appendChild(t.elm,u.createTextNode(String(t.text)))}function h(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return i(t.tag)}function y(t,n){for(var o=0;o<r.create.length;++o)r.create[o](Qn,t);i(e=t.data.hook)&&(i(e.create)&&e.create(Qn,t),i(e.insert)&&n.push(t))}function g(t){var e;if(i(e=t.fnScopeId))u.setStyleScope(t.elm,e);else for(var n=t;n;)i(e=n.context)&&i(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e),n=n.parent;i(e=Ke)&&e!==t.context&&e!==t.fnContext&&i(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e)}function b(t,e,n,r,o,i){for(;r<=o;++r)l(n[r],i,t,e,!1,n,r)}function _(t){var e,n,o=t.data;if(i(o))for(i(e=o.hook)&&i(e=e.destroy)&&e(t),e=0;e<r.destroy.length;++e)r.destroy[e](t);if(i(e=t.children))for(n=0;n<t.children.length;++n)_(t.children[n])}function E(t,e,n){for(;e<=n;++e){var r=t[e];i(r)&&(i(r.tag)?(w(r),_(r)):f(r.elm))}}function w(t,e){if(i(e)||i(t.data)){var n,o=r.remove.length+1;for(i(e)?e.listeners+=o:e=function(t,e){function n(){0==--n.listeners&&f(t)}return n.listeners=e,n}(t.elm,o),i(n=t.componentInstance)&&i(n=n._vnode)&&i(n.data)&&w(n,e),n=0;n<r.remove.length;++n)r.remove[n](t,e);i(n=t.data.hook)&&i(n=n.remove)?n(t,e):e()}else f(t.elm)}function x(t,e,n,r){for(var o=n;o<r;o++){var a=e[o];if(i(a)&&er(t,a))return o}}function O(t,e,n,s,c,f){if(t!==e){i(e.elm)&&i(s)&&(e=s[c]=gt(e));var p=e.elm=t.elm;if(a(t.isAsyncPlaceholder))i(e.asyncFactory.resolved)?S(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(a(e.isStatic)&&a(t.isStatic)&&e.key===t.key&&(a(e.isCloned)||a(e.isOnce)))e.componentInstance=t.componentInstance;else{var d,v=e.data;i(v)&&i(d=v.hook)&&i(d=d.prepatch)&&d(t,e);var m=t.children,y=e.children;if(i(v)&&h(e)){for(d=0;d<r.update.length;++d)r.update[d](t,e);i(d=v.hook)&&i(d=d.update)&&d(t,e)}o(e.text)?i(m)&&i(y)?m!==y&&function(t,e,n,r,a){var s,c,f,p=0,d=0,v=e.length-1,h=e[0],m=e[v],y=n.length-1,g=n[0],_=n[y],w=!a;for(0;p<=v&&d<=y;)o(h)?h=e[++p]:o(m)?m=e[--v]:er(h,g)?(O(h,g,r,n,d),h=e[++p],g=n[++d]):er(m,_)?(O(m,_,r,n,y),m=e[--v],_=n[--y]):er(h,_)?(O(h,_,r,n,y),w&&u.insertBefore(t,h.elm,u.nextSibling(m.elm)),h=e[++p],_=n[--y]):er(m,g)?(O(m,g,r,n,d),w&&u.insertBefore(t,m.elm,h.elm),m=e[--v],g=n[++d]):(o(s)&&(s=nr(e,p,v)),o(c=i(g.key)?s[g.key]:x(g,e,p,v))?l(g,r,t,h.elm,!1,n,d):er(f=e[c],g)?(O(f,g,r,n,d),e[c]=void 0,w&&u.insertBefore(t,f.elm,h.elm)):l(g,r,t,h.elm,!1,n,d),g=n[++d]);p>v?b(t,o(n[y+1])?null:n[y+1].elm,n,d,y,r):d>y&&E(e,p,v)}(p,m,y,n,f):i(y)?(i(t.text)&&u.setTextContent(p,""),b(p,null,y,0,y.length-1,n)):i(m)?E(m,0,m.length-1):i(t.text)&&u.setTextContent(p,""):t.text!==e.text&&u.setTextContent(p,e.text),i(v)&&i(d=v.hook)&&i(d=d.postpatch)&&d(t,e)}}}function A(t,e,n){if(a(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var C=m("attrs,class,staticClass,staticStyle,key");function S(t,e,n,r){var o,s=e.tag,c=e.data,u=e.children;if(r=r||c&&c.pre,e.elm=t,a(e.isComment)&&i(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(i(c)&&(i(o=c.hook)&&i(o=o.init)&&o(e,!0),i(o=e.componentInstance)))return p(e,n),!0;if(i(s)){if(i(u))if(t.hasChildNodes())if(i(o=c)&&i(o=o.domProps)&&i(o=o.innerHTML)){if(o!==t.innerHTML)return!1}else{for(var f=!0,l=t.firstChild,d=0;d<u.length;d++){if(!l||!S(l,u[d],n,r)){f=!1;break}l=l.nextSibling}if(!f||l)return!1}else v(e,u,n);if(i(c)){var h=!1;for(var m in c)if(!C(m)){h=!0,y(e,n);break}!h&&c.class&&re(c.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,s){if(!o(e)){var c,f=!1,p=[];if(o(t))f=!0,l(e,p);else{var d=i(t.nodeType);if(!d&&er(t,e))O(t,e,p,null,null,s);else{if(d){if(1===t.nodeType&&t.hasAttribute("data-server-rendered")&&(t.removeAttribute("data-server-rendered"),n=!0),a(n)&&S(t,e,p))return A(e,p,!0),t;c=t,t=new vt(u.tagName(c).toLowerCase(),{},[],void 0,c)}var v=t.elm,m=u.parentNode(v);if(l(e,p,v._leaveCb?null:m,u.nextSibling(v)),i(e.parent))for(var y=e.parent,g=h(e);y;){for(var b=0;b<r.destroy.length;++b)r.destroy[b](y);if(y.elm=e.elm,g){for(var w=0;w<r.create.length;++w)r.create[w](Qn,y);var x=y.data.hook.insert;if(x.merged)for(var C=1;C<x.fns.length;C++)x.fns[C]()}else Zn(y);y=y.parent}i(m)?E([t],0,0):i(t.tag)&&_(t)}}return A(e,p,f),e.elm}i(t)&&_(t)}}({nodeOps:Jn,modules:[dr,mr,xr,Cr,Mr,z?{create:so,activate:so,remove:function(t,e){!0!==t.data.show?oo(t,e):e()}}:{}].concat(ur)});J&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&yo(t,"input")}));var uo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?se(n,"postpatch",(function(){uo.componentUpdated(t,e,n)})):fo(t,e,n.context),t._vOptions=[].map.call(t.options,vo)):("textarea"===n.tag||Kn(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ho),t.addEventListener("compositionend",mo),t.addEventListener("change",mo),J&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){fo(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,vo);if(o.some((function(t,e){return!$(t,r[e])})))(t.multiple?e.value.some((function(t){return po(t,o)})):e.value!==e.oldValue&&po(e.value,o))&&yo(t,"change")}}};function fo(t,e,n){lo(t,e,n),(K||Y)&&setTimeout((function(){lo(t,e,n)}),0)}function lo(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,c=t.options.length;s<c;s++)if(a=t.options[s],o)i=L(r,vo(a))>-1,a.selected!==i&&(a.selected=i);else if($(vo(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));o||(t.selectedIndex=-1)}}function po(t,e){return e.every((function(e){return!$(e,t)}))}function vo(t){return"_value"in t?t._value:t.value}function ho(t){t.target.composing=!0}function mo(t){t.target.composing&&(t.target.composing=!1,yo(t.target,"input"))}function yo(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function go(t){return!t.componentInstance||t.data&&t.data.transition?t:go(t.componentInstance._vnode)}var bo={model:uo,show:{bind:function(t,e,n){var r=e.value,o=(n=go(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,ro(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=go(n)).data&&n.data.transition?(n.data.show=!0,r?ro(n,(function(){t.style.display=t.__vOriginalDisplay})):oo(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}}},_o={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Eo(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Eo(He(e.children)):t}function wo(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[x(i)]=o[i];return e}function xo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Oo=function(t){return t.tag||Ve(t)},Ao=function(t){return"show"===t.name},Co={name:"transition",props:_o,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Oo)).length){0;var r=this.mode;0;var o=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return o;var i=Eo(o);if(!i)return o;if(this._leaving)return xo(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:s(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var c=(i.data||(i.data={})).transition=wo(this),u=this._vnode,f=Eo(u);if(i.data.directives&&i.data.directives.some(Ao)&&(i.data.show=!0),f&&f.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,f)&&!Ve(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=I({},c);if("out-in"===r)return this._leaving=!0,se(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),xo(t,o);if("in-out"===r){if(Ve(i))return u;var p,d=function(){p()};se(c,"afterEnter",d),se(c,"enterCancelled",d),se(l,"delayLeave",(function(t){p=t}))}}return o}}},So=I({tag:String,moveClass:String},_o);function ko(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Io(t){t.data.newPos=t.elm.getBoundingClientRect()}function To(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,o=e.top-n.top;if(r||o){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+o+"px)",i.transitionDuration="0s"}}delete So.mode;var Ro={Transition:Co,TransitionGroup:{props:So,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Je(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=wo(this),s=0;s<o.length;s++){var c=o[s];if(c.tag)if(null!=c.key&&0!==String(c.key).indexOf("__vlist"))i.push(c),n[c.key]=c,(c.data||(c.data={})).transition=a;else;}if(r){for(var u=[],f=[],l=0;l<r.length;l++){var p=r[l];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?u.push(p):f.push(p)}this.kept=t(e,null,u),this.removed=f}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(ko),t.forEach(Io),t.forEach(To),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;Jr(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(zr,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(zr,t),n._moveCb=null,Yr(n,e))})}})))},methods:{hasMove:function(t,e){if(!Vr)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){Fr(n,t)})),Ur(n,e),n.style.display="none",this.$el.appendChild(n);var r=to(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}}};xn.config.mustUseProp=function(t,e,n){return"value"===n&&Nn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},xn.config.isReservedTag=Xn,xn.config.isReservedAttr=Rn,xn.config.getTagNamespace=function(t){return qn(t)?"svg":"math"===t?"math":void 0},xn.config.isUnknownElement=function(t){if(!z)return!0;if(Xn(t))return!1;if(t=t.toLowerCase(),null!=Wn[t])return Wn[t];var e=document.createElement(t);return t.indexOf("-")>-1?Wn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Wn[t]=/HTMLUnknownElement/.test(e.toString())},I(xn.options.directives,bo),I(xn.options.components,Ro),xn.prototype.__patch__=z?co:R,xn.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=mt),Qe(t,"beforeMount"),r=function(){t._update(t._render(),n)},new pn(t,r,R,{before:function(){t._isMounted&&!t._isDestroyed&&Qe(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Qe(t,"mounted")),t}(this,t=t&&z?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},z&&setTimeout((function(){U.devtools&&ot&&ot.emit("init",xn)}),0),e.a=xn}).call(this,n(13),n(166).setImmediate)},function(t,e,n){var r=n(2),o=n(45).f,i=n(8),a=n(12),s=n(27),c=n(98),u=n(54);t.exports=function(t,e){var n,f,l,p,d,v=t.target,h=t.global,m=t.stat;if(n=h?r:m?r[v]||s(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(d=o(n,f))&&d.value:n[f],!u(h?f:v+(m?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;c(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(n,f,p,t)}}},function(t,e,n){var r=n(2),o=n(8),i=n(4),a=n(27),s=n(49),c=n(21),u=c.get,f=c.enforce,l=String(String).split("String");(t.exports=function(t,e,n,s){var c,u=!!s&&!!s.unsafe,p=!!s&&!!s.enumerable,d=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),(c=f(n)).source||(c.source=l.join("string"==typeof e?e:""))),t!==r?(u?!d&&t[e]&&(p=!0):delete t[e],p?t[e]=n:o(t,e,n)):p?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&u(this).source||s(this)}))},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){var r=n(24),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e,n){var r=n(20);t.exports=function(t){return Object(r(t))}},function(t,e){t.exports={}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(25),o=n(20);t.exports=function(t){return r(o(t))}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){var r,o,i,a=n(97),s=n(2),c=n(5),u=n(8),f=n(4),l=n(28),p=n(29),d=n(22),v=s.WeakMap;if(a){var h=l.state||(l.state=new v),m=h.get,y=h.has,g=h.set;r=function(t,e){return e.facade=t,g.call(h,t,e),e},o=function(t){return m.call(h,t)||{}},i=function(t){return y.call(h,t)}}else{var b=p("state");d[b]=!0,r=function(t,e){return e.facade=t,u(t,b,e),e},o=function(t){return f(t,b)?t[b]:{}},i=function(t){return f(t,b)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!c(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e){t.exports={}},function(t,e,n){var r=n(100),o=n(2),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][e]||o[t]&&o[t][e]}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){var r=n(0),o=n(19),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e,n){var r=n(5);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(2),o=n(8);t.exports=function(t,e){try{o(r,t,e)}catch(n){r[t]=e}return e}},function(t,e,n){var r=n(2),o=n(27),i=r["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,e,n){var r=n(50),o=n(31),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e){t.exports=!1},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){var n,r,o=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(t){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(t){r=a}}();var c,u=[],f=!1,l=-1;function p(){f&&c&&(f=!1,c.length?u=c.concat(u):l=-1,u.length&&d())}function d(){if(!f){var t=s(p);f=!0;for(var e=u.length;e;){for(c=u,u=[];++l<e;)c&&c[l].run();l=-1,e=u.length}c=null,f=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function v(t,e){this.fun=t,this.array=e}function h(){}o.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];u.push(new v(t,e)),1!==u.length||f||s(d)},v.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=h,o.addListener=h,o.once=h,o.off=h,o.removeListener=h,o.removeAllListeners=h,o.emit=h,o.prependListener=h,o.prependOnceListener=h,o.listeners=function(t){return[]},o.binding=function(t){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(t){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(t,e,n){var r=n(127);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var r=n(7),o=n(0),i=n(4),a=Object.defineProperty,s={},c=function(t){throw t};t.exports=function(t,e){if(i(s,t))return s[t];e||(e={});var n=[][t],u=!!i(e,"ACCESSORS")&&e.ACCESSORS,f=i(e,0)?e[0]:c,l=i(e,1)?e[1]:void 0;return s[t]=!!n&&!o((function(){if(u&&!r)return!0;var t={length:-1};u?a(t,1,{enumerable:!0,get:c}):t[1]=1,n.call(t,f,l)}))}},function(t,e){var n=Number.MAX_SAFE_INTEGER||9007199254740991;t.exports={SEMVER_SPEC_VERSION:"2.0.0",MAX_LENGTH:256,MAX_SAFE_INTEGER:n,MAX_SAFE_COMPONENT_LENGTH:16}},function(t,e,n){var r,o=n(6),i=n(137),a=n(32),s=n(22),c=n(138),u=n(48),f=n(29),l=f("IE_PROTO"),p=function(){},d=function(t){return"<script>"+t+"<\/script>"},v=function(){try{r=document.domain&&new ActiveXObject("htmlfile")}catch(t){}var t,e;v=r?function(t){t.write(d("")),t.close();var e=t.parentWindow.Object;return t=null,e}(r):((e=u("iframe")).style.display="none",c.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(d("document.F=Object")),t.close(),t.F);for(var n=a.length;n--;)delete v.prototype[a[n]];return v()};s[l]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(p.prototype=o(t),n=new p,p.prototype=null,n[l]=t):n=v(),void 0===e?n:i(n,e)}},function(t,e,n){"use strict";var r=n(11),o=n(139),i=n(79),a=n(80),s=n(39),c=n(8),u=n(12),f=n(1),l=n(30),p=n(16),d=n(78),v=d.IteratorPrototype,h=d.BUGGY_SAFARI_ITERATORS,m=f("iterator"),y=function(){return this};t.exports=function(t,e,n,f,d,g,b){o(n,e,f);var _,E,w,x=function(t){if(t===d&&k)return k;if(!h&&t in C)return C[t];switch(t){case"keys":case"values":case"entries":return function(){return new n(this,t)}}return function(){return new n(this)}},O=e+" Iterator",A=!1,C=t.prototype,S=C[m]||C["@@iterator"]||d&&C[d],k=!h&&S||x(d),I="Array"==e&&C.entries||S;if(I&&(_=i(I.call(new t)),v!==Object.prototype&&_.next&&(l||i(_)===v||(a?a(_,v):"function"!=typeof _[m]&&c(_,m,y)),s(_,O,!0,!0),l&&(p[O]=y))),"values"==d&&S&&"values"!==S.name&&(A=!0,k=function(){return S.call(this)}),l&&!b||C[m]===k||c(C,m,k),p[e]=k,d)if(E={values:x("values"),keys:g?k:x("keys"),entries:x("entries")},b)for(w in E)(h||A||!(w in C))&&u(C,w,E[w]);else r({target:e,proto:!0,forced:h||A},E);return E}},function(t,e,n){var r=n(9).f,o=n(4),i=n(1)("toStringTag");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,i)&&r(t,i,{configurable:!0,value:e})}},function(t,e,n){var r={};r[n(1)("toStringTag")]="z",t.exports="[object z]"===String(r)},function(t,e,n){"use strict";var r,o,i=n(89),a=n(159),s=RegExp.prototype.exec,c=String.prototype.replace,u=s,f=(r=/a/,o=/b*/g,s.call(r,"a"),s.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),l=a.UNSUPPORTED_Y||a.BROKEN_CARET,p=void 0!==/()??/.exec("")[1];(f||p||l)&&(u=function(t){var e,n,r,o,a=this,u=l&&a.sticky,d=i.call(a),v=a.source,h=0,m=t;return u&&(-1===(d=d.replace("y","")).indexOf("g")&&(d+="g"),m=String(t).slice(a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==t[a.lastIndex-1])&&(v="(?: "+v+")",m=" "+m,h++),n=new RegExp("^(?:"+v+")",d)),p&&(n=new RegExp("^"+v+"$(?!\\s)",d)),f&&(e=a.lastIndex),r=s.call(u?n:a,m),u?r?(r.input=r.input.slice(h),r[0]=r[0].slice(h),r.index=a.lastIndex,a.lastIndex+=r[0].length):a.lastIndex=0:f&&r&&(a.lastIndex=a.global?r.index+r[0].length:e),p&&r&&r.length>1&&c.call(r[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r}),t.exports=u},function(t,e,n){"use strict";var r=n(93),o=n.n(r),i=n(94),a=n.n(i)()(o.a);a.push([t.i,"\n.backup-code[data-v-00d0b868] {\n\tfont-family: monospace;\n\tletter-spacing: 0.02em;\n\tfont-size: 1.2em;\n}\n.button[data-v-00d0b868] {\n\tdisplay: inline-block;\n}\n","",{"version":3,"sources":["webpack://./apps/twofactor_backupcodes/src/views/PersonalSettings.vue"],"names":[],"mappings":";AAyHA;CACA,sBAAA;CACA,sBAAA;CACA,gBAAA;AACA;AACA;CACA,qBAAA;AACA","sourcesContent":["<template>\n\t<div>\n\t\t<button v-if=\"!enabled\"\n\t\t\tid=\"generate-backup-codes\"\n\t\t\t:disabled=\"generatingCodes\"\n\t\t\t@click=\"generateBackupCodes\">\n\t\t\t{{ t('twofactor_backupcodes', 'Generate backup codes') }}\n\t\t\t<span :class=\"{'icon-loading-small': generatingCodes}\" />\n\t\t</button>\n\t\t<template v-else>\n\t\t\t<p>\n\t\t\t\t<template v-if=\"!haveCodes\">\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'Backup codes have been generated. {used} of {total} codes have been used.', {used, total}) }}\n\t\t\t\t</template>\n\t\t\t\t<template v-else>\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'These are your backup codes. Please save and/or print them as you will not be able to read the codes again later') }}\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li v-for=\"code in codes\" :key=\"code\" class=\"backup-code\">\n\t\t\t\t\t\t\t{{ code }}\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a :href=\"downloadUrl\"\n\t\t\t\t\t\tclass=\"button primary\"\n\t\t\t\t\t\t:download=\"downloadFilename\">{{ t('twofactor_backupcodes', 'Save backup codes') }}</a>\n\t\t\t\t\t<button class=\"button\"\n\t\t\t\t\t\t@click=\"printCodes\">\n\t\t\t\t\t\t{{ t('twofactor_backupcodes', 'Print backup codes') }}\n\t\t\t\t\t</button>\n\t\t\t\t</template>\n\t\t\t</p>\n\t\t\t<p>\n\t\t\t\t<button id=\"generate-backup-codes\"\n\t\t\t\t\t@click=\"generateBackupCodes\">\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'Regenerate backup codes') }}\n\t\t\t\t</button>\n\t\t\t</p>\n\t\t\t<p>\n\t\t\t\t<em>\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'If you regenerate backup codes, you automatically invalidate old codes.') }}\n\t\t\t\t</em>\n\t\t\t</p>\n\t\t</template>\n\t</div>\n</template>\n\n<script>\nimport confirmPassword from '@nextcloud/password-confirmation'\nimport { print } from '../service/PrintService'\n\nexport default {\n\tname: 'PersonalSettings',\n\tdata() {\n\t\treturn {\n\t\t\tgeneratingCodes: false,\n\t\t}\n\t},\n\tcomputed: {\n\t\tdownloadUrl() {\n\t\t\tif (!this.codes) {\n\t\t\t\treturn ''\n\t\t\t}\n\t\t\treturn 'data:text/plain,' + encodeURIComponent(this.codes.reduce((prev, code) => {\n\t\t\t\treturn prev + code + '\\r\\n'\n\t\t\t}, ''))\n\t\t},\n\t\tdownloadFilename() {\n\t\t\tconst name = OC.theme.name || 'Nextcloud'\n\t\t\treturn name + '-backup-codes.txt'\n\t\t},\n\t\tenabled() {\n\t\t\treturn this.$store.state.enabled\n\t\t},\n\t\ttotal() {\n\t\t\treturn this.$store.state.total\n\t\t},\n\t\tused() {\n\t\t\treturn this.$store.state.used\n\t\t},\n\t\tcodes() {\n\t\t\treturn this.$store.state.codes\n\t\t},\n\t\tname() {\n\t\t\treturn OC.theme.name || 'Nextcloud'\n\t\t},\n\t\thaveCodes() {\n\t\t\treturn this.codes && this.codes.length > 0\n\t\t},\n\t},\n\tmethods: {\n\t\tgenerateBackupCodes() {\n\t\t\tconfirmPassword().then(() => {\n\t\t\t\t// Hide old codes\n\t\t\t\tthis.generatingCodes = true\n\n\t\t\t\tthis.$store.dispatch('generate').then(data => {\n\t\t\t\t\tthis.generatingCodes = false\n\t\t\t\t}).catch(err => {\n\t\t\t\t\tOC.Notification.showTemporary(t('twofactor_backupcodes', 'An error occurred while generating your backup codes'))\n\t\t\t\t\tthis.generatingCodes = false\n\t\t\t\t\tthrow err\n\t\t\t\t})\n\t\t\t}).catch(console.error.bind(this))\n\t\t},\n\n\t\tgetPrintData(codes) {\n\t\t\tif (!codes) {\n\t\t\t\treturn ''\n\t\t\t}\n\t\t\treturn codes.reduce((prev, code) => {\n\t\t\t\treturn prev + code + '<br>'\n\t\t\t}, '')\n\t\t},\n\n\t\tprintCodes() {\n\t\t\tprint(this.getPrintData(this.codes))\n\t\t},\n\t},\n}\n<\/script>\n\n<style scoped>\n\t.backup-code {\n\t\tfont-family: monospace;\n\t\tletter-spacing: 0.02em;\n\t\tfont-size: 1.2em;\n\t}\n\t.button {\n\t\tdisplay: inline-block;\n\t}\n</style>\n"],"sourceRoot":""}]),e.a=a},function(t,e,n){"use strict";(function(t){var n=("undefined"!=typeof window?window:void 0!==t?t:{}).__VUE_DEVTOOLS_GLOBAL_HOOK__;function r(t,e){if(void 0===e&&(e=[]),null===t||"object"!=typeof t)return t;var n,o=(n=function(e){return e.original===t},e.filter(n)[0]);if(o)return o.copy;var i=Array.isArray(t)?[]:{};return e.push({original:t,copy:i}),Object.keys(t).forEach((function(n){i[n]=r(t[n],e)})),i}function o(t,e){Object.keys(t).forEach((function(n){return e(t[n],n)}))}function i(t){return null!==t&&"object"==typeof t}var a=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"==typeof n?n():n)||{}},s={namespaced:{configurable:!0}};s.namespaced.get=function(){return!!this._rawModule.namespaced},a.prototype.addChild=function(t,e){this._children[t]=e},a.prototype.removeChild=function(t){delete this._children[t]},a.prototype.getChild=function(t){return this._children[t]},a.prototype.hasChild=function(t){return t in this._children},a.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},a.prototype.forEachChild=function(t){o(this._children,t)},a.prototype.forEachGetter=function(t){this._rawModule.getters&&o(this._rawModule.getters,t)},a.prototype.forEachAction=function(t){this._rawModule.actions&&o(this._rawModule.actions,t)},a.prototype.forEachMutation=function(t){this._rawModule.mutations&&o(this._rawModule.mutations,t)},Object.defineProperties(a.prototype,s);var c=function(t){this.register([],t,!1)};c.prototype.get=function(t){return t.reduce((function(t,e){return t.getChild(e)}),this.root)},c.prototype.getNamespace=function(t){var e=this.root;return t.reduce((function(t,n){return t+((e=e.getChild(n)).namespaced?n+"/":"")}),"")},c.prototype.update=function(t){!function t(e,n,r){0;if(n.update(r),r.modules)for(var o in r.modules){if(!n.getChild(o))return void 0;t(e.concat(o),n.getChild(o),r.modules[o])}}([],this.root,t)},c.prototype.register=function(t,e,n){var r=this;void 0===n&&(n=!0);var i=new a(e,n);0===t.length?this.root=i:this.get(t.slice(0,-1)).addChild(t[t.length-1],i);e.modules&&o(e.modules,(function(e,o){r.register(t.concat(o),e,n)}))},c.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1],r=e.getChild(n);r&&r.runtime&&e.removeChild(n)},c.prototype.isRegistered=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];return!!e&&e.hasChild(n)};var u;var f=function(t){var e=this;void 0===t&&(t={}),!u&&"undefined"!=typeof window&&window.Vue&&g(window.Vue);var r=t.plugins;void 0===r&&(r=[]);var o=t.strict;void 0===o&&(o=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new c(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new u,this._makeLocalGettersCache=Object.create(null);var i=this,a=this.dispatch,s=this.commit;this.dispatch=function(t,e){return a.call(i,t,e)},this.commit=function(t,e,n){return s.call(i,t,e,n)},this.strict=o;var f=this._modules.root.state;h(this,f,[],this._modules.root),v(this,f),r.forEach((function(t){return t(e)})),(void 0!==t.devtools?t.devtools:u.config.devtools)&&function(t){n&&(t._devtoolHook=n,n.emit("vuex:init",t),n.on("vuex:travel-to-state",(function(e){t.replaceState(e)})),t.subscribe((function(t,e){n.emit("vuex:mutation",t,e)}),{prepend:!0}),t.subscribeAction((function(t,e){n.emit("vuex:action",t,e)}),{prepend:!0}))}(this)},l={state:{configurable:!0}};function p(t,e,n){return e.indexOf(t)<0&&(n&&n.prepend?e.unshift(t):e.push(t)),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function d(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;h(t,n,[],t._modules.root,!0),v(t,n,e)}function v(t,e,n){var r=t._vm;t.getters={},t._makeLocalGettersCache=Object.create(null);var i=t._wrappedGetters,a={};o(i,(function(e,n){a[n]=function(t,e){return function(){return t(e)}}(e,t),Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})}));var s=u.config.silent;u.config.silent=!0,t._vm=new u({data:{$$state:e},computed:a}),u.config.silent=s,t.strict&&function(t){t._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}(t),r&&(n&&t._withCommit((function(){r._data.$$state=null})),u.nextTick((function(){return r.$destroy()})))}function h(t,e,n,r,o){var i=!n.length,a=t._modules.getNamespace(n);if(r.namespaced&&(t._modulesNamespaceMap[a],t._modulesNamespaceMap[a]=r),!i&&!o){var s=m(e,n.slice(0,-1)),c=n[n.length-1];t._withCommit((function(){u.set(s,c,r.state)}))}var f=r.context=function(t,e,n){var r=""===e,o={dispatch:r?t.dispatch:function(n,r,o){var i=y(n,r,o),a=i.payload,s=i.options,c=i.type;return s&&s.root||(c=e+c),t.dispatch(c,a)},commit:r?t.commit:function(n,r,o){var i=y(n,r,o),a=i.payload,s=i.options,c=i.type;s&&s.root||(c=e+c),t.commit(c,a,s)}};return Object.defineProperties(o,{getters:{get:r?function(){return t.getters}:function(){return function(t,e){if(!t._makeLocalGettersCache[e]){var n={},r=e.length;Object.keys(t.getters).forEach((function(o){if(o.slice(0,r)===e){var i=o.slice(r);Object.defineProperty(n,i,{get:function(){return t.getters[o]},enumerable:!0})}})),t._makeLocalGettersCache[e]=n}return t._makeLocalGettersCache[e]}(t,e)}},state:{get:function(){return m(t.state,n)}}}),o}(t,a,n);r.forEachMutation((function(e,n){!function(t,e,n,r){(t._mutations[e]||(t._mutations[e]=[])).push((function(e){n.call(t,r.state,e)}))}(t,a+n,e,f)})),r.forEachAction((function(e,n){var r=e.root?n:a+n,o=e.handler||e;!function(t,e,n,r){(t._actions[e]||(t._actions[e]=[])).push((function(e){var o,i=n.call(t,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:t.getters,rootState:t.state},e);return(o=i)&&"function"==typeof o.then||(i=Promise.resolve(i)),t._devtoolHook?i.catch((function(e){throw t._devtoolHook.emit("vuex:error",e),e})):i}))}(t,r,o,f)})),r.forEachGetter((function(e,n){!function(t,e,n,r){if(t._wrappedGetters[e])return void 0;t._wrappedGetters[e]=function(t){return n(r.state,r.getters,t.state,t.getters)}}(t,a+n,e,f)})),r.forEachChild((function(r,i){h(t,e,n.concat(i),r,o)}))}function m(t,e){return e.reduce((function(t,e){return t[e]}),t)}function y(t,e,n){return i(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function g(t){u&&t===u||function(t){if(Number(t.version.split(".")[0])>=2)t.mixin({beforeCreate:n});else{var e=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[n].concat(t.init):n,e.call(this,t)}}function n(){var t=this.$options;t.store?this.$store="function"==typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}(u=t)}l.state.get=function(){return this._vm._data.$$state},l.state.set=function(t){0},f.prototype.commit=function(t,e,n){var r=this,o=y(t,e,n),i=o.type,a=o.payload,s=(o.options,{type:i,payload:a}),c=this._mutations[i];c&&(this._withCommit((function(){c.forEach((function(t){t(a)}))})),this._subscribers.slice().forEach((function(t){return t(s,r.state)})))},f.prototype.dispatch=function(t,e){var n=this,r=y(t,e),o=r.type,i=r.payload,a={type:o,payload:i},s=this._actions[o];if(s){try{this._actionSubscribers.slice().filter((function(t){return t.before})).forEach((function(t){return t.before(a,n.state)}))}catch(t){0}var c=s.length>1?Promise.all(s.map((function(t){return t(i)}))):s[0](i);return new Promise((function(t,e){c.then((function(e){try{n._actionSubscribers.filter((function(t){return t.after})).forEach((function(t){return t.after(a,n.state)}))}catch(t){0}t(e)}),(function(t){try{n._actionSubscribers.filter((function(t){return t.error})).forEach((function(e){return e.error(a,n.state,t)}))}catch(t){0}e(t)}))}))}},f.prototype.subscribe=function(t,e){return p(t,this._subscribers,e)},f.prototype.subscribeAction=function(t,e){return p("function"==typeof t?{before:t}:t,this._actionSubscribers,e)},f.prototype.watch=function(t,e,n){var r=this;return this._watcherVM.$watch((function(){return t(r.state,r.getters)}),e,n)},f.prototype.replaceState=function(t){var e=this;this._withCommit((function(){e._vm._data.$$state=t}))},f.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"==typeof t&&(t=[t]),this._modules.register(t,e),h(this,this.state,t,this._modules.get(t),n.preserveState),v(this,this.state)},f.prototype.unregisterModule=function(t){var e=this;"string"==typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit((function(){var n=m(e.state,t.slice(0,-1));u.delete(n,t[t.length-1])})),d(this)},f.prototype.hasModule=function(t){return"string"==typeof t&&(t=[t]),this._modules.isRegistered(t)},f.prototype.hotUpdate=function(t){this._modules.update(t),d(this,!0)},f.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(f.prototype,l);var b=O((function(t,e){var n={};return x(e).forEach((function(e){var r=e.key,o=e.val;n[r]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var r=A(this.$store,"mapState",t);if(!r)return;e=r.context.state,n=r.context.getters}return"function"==typeof o?o.call(this,e,n):e[o]},n[r].vuex=!0})),n})),_=O((function(t,e){var n={};return x(e).forEach((function(e){var r=e.key,o=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.commit;if(t){var i=A(this.$store,"mapMutations",t);if(!i)return;r=i.context.commit}return"function"==typeof o?o.apply(this,[r].concat(e)):r.apply(this.$store,[o].concat(e))}})),n})),E=O((function(t,e){var n={};return x(e).forEach((function(e){var r=e.key,o=e.val;o=t+o,n[r]=function(){if(!t||A(this.$store,"mapGetters",t))return this.$store.getters[o]},n[r].vuex=!0})),n})),w=O((function(t,e){var n={};return x(e).forEach((function(e){var r=e.key,o=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.dispatch;if(t){var i=A(this.$store,"mapActions",t);if(!i)return;r=i.context.dispatch}return"function"==typeof o?o.apply(this,[r].concat(e)):r.apply(this.$store,[o].concat(e))}})),n}));function x(t){return function(t){return Array.isArray(t)||i(t)}(t)?Array.isArray(t)?t.map((function(t){return{key:t,val:t}})):Object.keys(t).map((function(e){return{key:e,val:t[e]}})):[]}function O(t){return function(e,n){return"string"!=typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function A(t,e,n){return t._modulesNamespaceMap[n]}function C(t,e,n){var r=n?t.groupCollapsed:t.group;try{r.call(t,e)}catch(n){t.log(e)}}function S(t){try{t.groupEnd()}catch(e){t.log("—— log end ——")}}function k(){var t=new Date;return" @ "+I(t.getHours(),2)+":"+I(t.getMinutes(),2)+":"+I(t.getSeconds(),2)+"."+I(t.getMilliseconds(),3)}function I(t,e){return n="0",r=e-t.toString().length,new Array(r+1).join(n)+t;var n,r}var T={Store:f,install:g,version:"3.6.2",mapState:b,mapMutations:_,mapGetters:E,mapActions:w,createNamespacedHelpers:function(t){return{mapState:b.bind(null,t),mapGetters:E.bind(null,t),mapMutations:_.bind(null,t),mapActions:w.bind(null,t)}},createLogger:function(t){void 0===t&&(t={});var e=t.collapsed;void 0===e&&(e=!0);var n=t.filter;void 0===n&&(n=function(t,e,n){return!0});var o=t.transformer;void 0===o&&(o=function(t){return t});var i=t.mutationTransformer;void 0===i&&(i=function(t){return t});var a=t.actionFilter;void 0===a&&(a=function(t,e){return!0});var s=t.actionTransformer;void 0===s&&(s=function(t){return t});var c=t.logMutations;void 0===c&&(c=!0);var u=t.logActions;void 0===u&&(u=!0);var f=t.logger;return void 0===f&&(f=console),function(t){var l=r(t.state);void 0!==f&&(c&&t.subscribe((function(t,a){var s=r(a);if(n(t,l,s)){var c=k(),u=i(t),p="mutation "+t.type+c;C(f,p,e),f.log("%c prev state","color: #9E9E9E; font-weight: bold",o(l)),f.log("%c mutation","color: #03A9F4; font-weight: bold",u),f.log("%c next state","color: #4CAF50; font-weight: bold",o(s)),S(f)}l=s})),u&&t.subscribeAction((function(t,n){if(a(t,n)){var r=k(),o=s(t),i="action "+t.type+r;C(f,i,e),f.log("%c action","color: #03A9F4; font-weight: bold",o),S(f)}})))}}};e.a=T}).call(this,n(13))},function(t,e,n){"use strict";var r=n(11),o=n(0),i=n(55),a=n(5),s=n(15),c=n(14),u=n(103),f=n(56),l=n(58),p=n(1),d=n(59),v=p("isConcatSpreadable"),h=d>=51||!o((function(){var t=[];return t[v]=!1,t.concat()[0]!==t})),m=l("concat"),y=function(t){if(!a(t))return!1;var e=t[v];return void 0!==e?!!e:i(t)};r({target:"Array",proto:!0,forced:!h||!m},{concat:function(t){var e,n,r,o,i,a=s(this),l=f(a,0),p=0;for(e=-1,r=arguments.length;e<r;e++)if(y(i=-1===e?a:arguments[e])){if(p+(o=c(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,p++)n in i&&u(l,p,i[n])}else{if(p>=9007199254740991)throw TypeError("Maximum allowed index exceeded");u(l,p++,i)}return l.length=p,l}})},function(t,e,n){var r=n(7),o=n(46),i=n(17),a=n(18),s=n(26),c=n(4),u=n(47),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=s(e,!0),u)try{return f(t,e)}catch(t){}if(c(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e,n){var r=n(7),o=n(0),i=n(48);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(2),o=n(5),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r=n(28),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},function(t,e,n){var r=n(30),o=n(28);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.8.3",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){var r=n(4),o=n(18),i=n(52).indexOf,a=n(22);t.exports=function(t,e){var n,s=o(t),c=0,u=[];for(n in s)!r(a,n)&&r(s,n)&&u.push(n);for(;e.length>c;)r(s,n=e[c++])&&(~i(u,n)||u.push(n));return u}},function(t,e,n){var r=n(18),o=n(14),i=n(102),a=function(t){return function(e,n,a){var s,c=r(e),u=o(c.length),f=i(a,u);if(t&&n!=n){for(;u>f;)if((s=c[f++])!=s)return!0}else for(;u>f;f++)if((t||f in c)&&c[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(0),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==u||n!=c&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},c=i.NATIVE="N",u=i.POLYFILL="P";t.exports=i},function(t,e,n){var r=n(19);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){var r=n(5),o=n(55),i=n(1)("species");t.exports=function(t,e){var n;return o(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!o(n.prototype)?r(n)&&null===(n=n[i])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},function(t,e,n){var r=n(0);t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,e,n){var r=n(0),o=n(1),i=n(59),a=o("species");t.exports=function(t){return i>=51||!r((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},function(t,e,n){var r,o,i=n(2),a=n(105),s=i.process,c=s&&s.versions,u=c&&c.v8;u?o=(r=u.split("."))[0]+r[1]:a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=r[1]),t.exports=o&&+o},function(t,e,n){var r=n(11),o=n(106);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){var r=n(51),o=n(32);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return t.apply(e,n)}}},function(t,e,n){"use strict";var r=n(3);function o(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var i;if(n)i=n(e);else if(r.isURLSearchParams(e))i=e.toString();else{var a=[];r.forEach(e,(function(t,e){null!=t&&(r.isArray(t)?e+="[]":t=[t],r.forEach(t,(function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(o(e)+"="+o(t))})))})),i=a.join("&")}if(i){var s=t.indexOf("#");-1!==s&&(t=t.slice(0,s)),t+=(-1===t.indexOf("?")?"?":"&")+i}return t}},function(t,e,n){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e,n){"use strict";(function(e){var r=n(3),o=n(113),i={"Content-Type":"application/x-www-form-urlencoded"};function a(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var s,c={adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==e&&"[object process]"===Object.prototype.toString.call(e))&&(s=n(66)),s),transformRequest:[function(t,e){return o(e,"Accept"),o(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(a(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)?(a(e,"application/json;charset=utf-8"),JSON.stringify(t)):t}],transformResponse:[function(t){if("string"==typeof t)try{t=JSON.parse(t)}catch(t){}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300}};c.headers={common:{"Accept":"application/json, text/plain, */*"}},r.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){c.headers[t]=r.merge(i)})),t.exports=c}).call(this,n(33))},function(t,e,n){"use strict";var r=n(3),o=n(114),i=n(116),a=n(63),s=n(117),c=n(120),u=n(121),f=n(67);t.exports=function(t){return new Promise((function(e,n){var l=t.data,p=t.headers;r.isFormData(l)&&delete p["Content-Type"];var d=new XMLHttpRequest;if(t.auth){var v=t.auth.username||"",h=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";p.Authorization="Basic "+btoa(v+":"+h)}var m=s(t.baseURL,t.url);if(d.open(t.method.toUpperCase(),a(m,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d.onreadystatechange=function(){if(d&&4===d.readyState&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var r="getAllResponseHeaders"in d?c(d.getAllResponseHeaders()):null,i={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:d.status,statusText:d.statusText,headers:r,config:t,request:d};o(e,n,i),d=null}},d.onabort=function(){d&&(n(f("Request aborted",t,"ECONNABORTED",d)),d=null)},d.onerror=function(){n(f("Network Error",t,null,d)),d=null},d.ontimeout=function(){var e="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(f(e,t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=(t.withCredentials||u(m))&&t.xsrfCookieName?i.read(t.xsrfCookieName):void 0;y&&(p[t.xsrfHeaderName]=y)}if("setRequestHeader"in d&&r.forEach(p,(function(t,e){void 0===l&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)})),r.isUndefined(t.withCredentials)||(d.withCredentials=!!t.withCredentials),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then((function(t){d&&(d.abort(),n(t),d=null)})),l||(l=null),d.send(l)}))}},function(t,e,n){"use strict";var r=n(115);t.exports=function(t,e,n,o,i){var a=new Error(t);return r(a,e,n,o,i)}},function(t,e,n){"use strict";var r=n(3);t.exports=function(t,e){e=e||{};var n={},o=["url","method","data"],i=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function c(t,e){return r.isPlainObject(t)&&r.isPlainObject(e)?r.merge(t,e):r.isPlainObject(e)?r.merge({},e):r.isArray(e)?e.slice():e}function u(o){r.isUndefined(e[o])?r.isUndefined(t[o])||(n[o]=c(void 0,t[o])):n[o]=c(t[o],e[o])}r.forEach(o,(function(t){r.isUndefined(e[t])||(n[t]=c(void 0,e[t]))})),r.forEach(i,u),r.forEach(a,(function(o){r.isUndefined(e[o])?r.isUndefined(t[o])||(n[o]=c(void 0,t[o])):n[o]=c(void 0,e[o])})),r.forEach(s,(function(r){r in e?n[r]=c(t[r],e[r]):r in t&&(n[r]=c(void 0,t[r]))}));var f=o.concat(i).concat(a).concat(s),l=Object.keys(t).concat(Object.keys(e)).filter((function(t){return-1===f.indexOf(t)}));return r.forEach(l,u),n}},function(t,e,n){"use strict";function r(t){this.message=t}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,t.exports=r},function(t,e,n){"use strict";var r=n(11),o=n(71);r({target:"Array",proto:!0,forced:[].forEach!=o},{forEach:o})},function(t,e,n){"use strict";var r=n(72).forEach,o=n(73),i=n(35),a=o("forEach"),s=i("forEach");t.exports=a&&s?[].forEach:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}},function(t,e,n){var r=n(34),o=n(25),i=n(15),a=n(14),s=n(56),c=[].push,u=function(t){var e=1==t,n=2==t,u=3==t,f=4==t,l=6==t,p=7==t,d=5==t||l;return function(v,h,m,y){for(var g,b,_=i(v),E=o(_),w=r(h,m,3),x=a(E.length),O=0,A=y||s,C=e?A(v,x):n||p?A(v,0):void 0;x>O;O++)if((d||O in E)&&(b=w(g=E[O],O,_),t))if(e)C[O]=b;else if(b)switch(t){case 3:return!0;case 5:return g;case 6:return O;case 2:c.call(C,g)}else switch(t){case 4:return!1;case 7:c.call(C,g)}return l?-1:u||f?f:C}};t.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterOut:u(7)}},function(t,e,n){"use strict";var r=n(0);t.exports=function(t,e){var n=[][t];return!!n&&r((function(){n.call(null,e||function(){throw 1},1)}))}},function(t,e,n){var r=n(36).MAX_SAFE_COMPONENT_LENGTH,o=n(75),i=(e=t.exports={}).re=[],a=e.src=[],s=e.t={},c=0,u=function(t,e,n){var r=c++;o(r,e),s[t]=r,a[r]=e,i[r]=new RegExp(e,n?"g":void 0)};u("NUMERICIDENTIFIER","0|[1-9]\\d*"),u("NUMERICIDENTIFIERLOOSE","[0-9]+"),u("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-][a-zA-Z0-9-]*"),u("MAINVERSION","(".concat(a[s.NUMERICIDENTIFIER],")\\.")+"(".concat(a[s.NUMERICIDENTIFIER],")\\.")+"(".concat(a[s.NUMERICIDENTIFIER],")")),u("MAINVERSIONLOOSE","(".concat(a[s.NUMERICIDENTIFIERLOOSE],")\\.")+"(".concat(a[s.NUMERICIDENTIFIERLOOSE],")\\.")+"(".concat(a[s.NUMERICIDENTIFIERLOOSE],")")),u("PRERELEASEIDENTIFIER","(?:".concat(a[s.NUMERICIDENTIFIER],"|").concat(a[s.NONNUMERICIDENTIFIER],")")),u("PRERELEASEIDENTIFIERLOOSE","(?:".concat(a[s.NUMERICIDENTIFIERLOOSE],"|").concat(a[s.NONNUMERICIDENTIFIER],")")),u("PRERELEASE","(?:-(".concat(a[s.PRERELEASEIDENTIFIER],"(?:\\.").concat(a[s.PRERELEASEIDENTIFIER],")*))")),u("PRERELEASELOOSE","(?:-?(".concat(a[s.PRERELEASEIDENTIFIERLOOSE],"(?:\\.").concat(a[s.PRERELEASEIDENTIFIERLOOSE],")*))")),u("BUILDIDENTIFIER","[0-9A-Za-z-]+"),u("BUILD","(?:\\+(".concat(a[s.BUILDIDENTIFIER],"(?:\\.").concat(a[s.BUILDIDENTIFIER],")*))")),u("FULLPLAIN","v?".concat(a[s.MAINVERSION]).concat(a[s.PRERELEASE],"?").concat(a[s.BUILD],"?")),u("FULL","^".concat(a[s.FULLPLAIN],"$")),u("LOOSEPLAIN","[v=\\s]*".concat(a[s.MAINVERSIONLOOSE]).concat(a[s.PRERELEASELOOSE],"?").concat(a[s.BUILD],"?")),u("LOOSE","^".concat(a[s.LOOSEPLAIN],"$")),u("GTLT","((?:<|>)?=?)"),u("XRANGEIDENTIFIERLOOSE","".concat(a[s.NUMERICIDENTIFIERLOOSE],"|x|X|\\*")),u("XRANGEIDENTIFIER","".concat(a[s.NUMERICIDENTIFIER],"|x|X|\\*")),u("XRANGEPLAIN","[v=\\s]*(".concat(a[s.XRANGEIDENTIFIER],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIER],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIER],")")+"(?:".concat(a[s.PRERELEASE],")?").concat(a[s.BUILD],"?")+")?)?"),u("XRANGEPLAINLOOSE","[v=\\s]*(".concat(a[s.XRANGEIDENTIFIERLOOSE],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIERLOOSE],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIERLOOSE],")")+"(?:".concat(a[s.PRERELEASELOOSE],")?").concat(a[s.BUILD],"?")+")?)?"),u("XRANGE","^".concat(a[s.GTLT],"\\s*").concat(a[s.XRANGEPLAIN],"$")),u("XRANGELOOSE","^".concat(a[s.GTLT],"\\s*").concat(a[s.XRANGEPLAINLOOSE],"$")),u("COERCE","".concat("(^|[^\\d])(\\d{1,").concat(r,"})")+"(?:\\.(\\d{1,".concat(r,"}))?")+"(?:\\.(\\d{1,".concat(r,"}))?")+"(?:$|[^\\d])"),u("COERCERTL",a[s.COERCE],!0),u("LONETILDE","(?:~>?)"),u("TILDETRIM","(\\s*)".concat(a[s.LONETILDE],"\\s+"),!0),e.tildeTrimReplace="$1~",u("TILDE","^".concat(a[s.LONETILDE]).concat(a[s.XRANGEPLAIN],"$")),u("TILDELOOSE","^".concat(a[s.LONETILDE]).concat(a[s.XRANGEPLAINLOOSE],"$")),u("LONECARET","(?:\\^)"),u("CARETTRIM","(\\s*)".concat(a[s.LONECARET],"\\s+"),!0),e.caretTrimReplace="$1^",u("CARET","^".concat(a[s.LONECARET]).concat(a[s.XRANGEPLAIN],"$")),u("CARETLOOSE","^".concat(a[s.LONECARET]).concat(a[s.XRANGEPLAINLOOSE],"$")),u("COMPARATORLOOSE","^".concat(a[s.GTLT],"\\s*(").concat(a[s.LOOSEPLAIN],")$|^$")),u("COMPARATOR","^".concat(a[s.GTLT],"\\s*(").concat(a[s.FULLPLAIN],")$|^$")),u("COMPARATORTRIM","(\\s*)".concat(a[s.GTLT],"\\s*(").concat(a[s.LOOSEPLAIN],"|").concat(a[s.XRANGEPLAIN],")"),!0),e.comparatorTrimReplace="$1$2$3",u("HYPHENRANGE","^\\s*(".concat(a[s.XRANGEPLAIN],")")+"\\s+-\\s+"+"(".concat(a[s.XRANGEPLAIN],")")+"\\s*$"),u("HYPHENRANGELOOSE","^\\s*(".concat(a[s.XRANGEPLAINLOOSE],")")+"\\s+-\\s+"+"(".concat(a[s.XRANGEPLAINLOOSE],")")+"\\s*$"),u("STAR","(<|>)?=?\\s*\\*"),u("GTE0","^\\s*>=\\s*0.0.0\\s*$"),u("GTE0PRE","^\\s*>=\\s*0.0.0-0\\s*$")},function(t,e,n){(function(e){function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var r="object"===(void 0===e?"undefined":n(e))&&e.env&&e.env.NODE_DEBUG&&/\bsemver\b/i.test(e.env.NODE_DEBUG)?function(){for(var t,e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return(t=console).error.apply(t,["SEMVER"].concat(n))}:function(){};t.exports=r}).call(this,n(33))},function(t,e,n){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var i=n(75),a=n(36),s=a.MAX_LENGTH,c=a.MAX_SAFE_INTEGER,u=n(74),f=u.re,l=u.t,p=n(132).compareIdentifiers,d=function(){function t(e,n){if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),n&&"object"===r(n)||(n={loose:!!n,includePrerelease:!1}),e instanceof t){if(e.loose===!!n.loose&&e.includePrerelease===!!n.includePrerelease)return e;e=e.version}else if("string"!=typeof e)throw new TypeError("Invalid Version: ".concat(e));if(e.length>s)throw new TypeError("version is longer than ".concat(s," characters"));i("SemVer",e,n),this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease;var o=e.trim().match(n.loose?f[l.LOOSE]:f[l.FULL]);if(!o)throw new TypeError("Invalid Version: ".concat(e));if(this.raw=e,this.major=+o[1],this.minor=+o[2],this.patch=+o[3],this.major>c||this.major<0)throw new TypeError("Invalid major version");if(this.minor>c||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>c||this.patch<0)throw new TypeError("Invalid patch version");o[4]?this.prerelease=o[4].split(".").map((function(t){if(/^[0-9]+$/.test(t)){var e=+t;if(e>=0&&e<c)return e}return t})):this.prerelease=[],this.build=o[5]?o[5].split("."):[],this.format()}var e,n,a;return e=t,(n=[{key:"format",value:function(){return this.version="".concat(this.major,".").concat(this.minor,".").concat(this.patch),this.prerelease.length&&(this.version+="-".concat(this.prerelease.join("."))),this.version}},{key:"toString",value:function(){return this.version}},{key:"compare",value:function(e){if(i("SemVer.compare",this.version,this.options,e),!(e instanceof t)){if("string"==typeof e&&e===this.version)return 0;e=new t(e,this.options)}return e.version===this.version?0:this.compareMain(e)||this.comparePre(e)}},{key:"compareMain",value:function(e){return e instanceof t||(e=new t(e,this.options)),p(this.major,e.major)||p(this.minor,e.minor)||p(this.patch,e.patch)}},{key:"comparePre",value:function(e){if(e instanceof t||(e=new t(e,this.options)),this.prerelease.length&&!e.prerelease.length)return-1;if(!this.prerelease.length&&e.prerelease.length)return 1;if(!this.prerelease.length&&!e.prerelease.length)return 0;var n=0;do{var r=this.prerelease[n],o=e.prerelease[n];if(i("prerelease compare",n,r,o),void 0===r&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===r)return-1;if(r!==o)return p(r,o)}while(++n)}},{key:"compareBuild",value:function(e){e instanceof t||(e=new t(e,this.options));var n=0;do{var r=this.build[n],o=e.build[n];if(i("prerelease compare",n,r,o),void 0===r&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===r)return-1;if(r!==o)return p(r,o)}while(++n)}},{key:"inc",value:function(t,e){switch(t){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",e);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",e);break;case"prepatch":this.prerelease.length=0,this.inc("patch",e),this.inc("pre",e);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",e),this.inc("pre",e);break;case"major":0===this.minor&&0===this.patch&&0!==this.prerelease.length||this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":0===this.patch&&0!==this.prerelease.length||this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":if(0===this.prerelease.length)this.prerelease=[0];else{for(var n=this.prerelease.length;--n>=0;)"number"==typeof this.prerelease[n]&&(this.prerelease[n]++,n=-2);-1===n&&this.prerelease.push(0)}e&&(this.prerelease[0]===e?isNaN(this.prerelease[1])&&(this.prerelease=[e,0]):this.prerelease=[e,0]);break;default:throw new Error("invalid increment argument: ".concat(t))}return this.format(),this.raw=this.version,this}}])&&o(e.prototype,n),a&&o(e,a),t}();t.exports=d},function(t,e,n){"use strict";var r=n(18),o=n(136),i=n(16),a=n(21),s=n(38),c=a.set,u=a.getterFor("Array Iterator");t.exports=s(Array,"Array",(function(t,e){c(this,{type:"Array Iterator",target:r(t),index:0,kind:e})}),(function(){var t=u(this),e=t.target,n=t.kind,r=t.index++;return!e||r>=e.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:r,done:!1}:"values"==n?{value:e[r],done:!1}:{value:[r,e[r]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},function(t,e,n){"use strict";var r,o,i,a=n(0),s=n(79),c=n(8),u=n(4),f=n(1),l=n(30),p=f("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=s(s(i)))!==Object.prototype&&(r=o):d=!0);var v=null==r||a((function(){var t={};return r[p].call(t)!==t}));v&&(r={}),l&&!v||u(r,p)||c(r,p,(function(){return this})),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:d}},function(t,e,n){var r=n(4),o=n(15),i=n(29),a=n(140),s=i("IE_PROTO"),c=Object.prototype;t.exports=a?Object.getPrototypeOf:function(t){return t=o(t),r(t,s)?t[s]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?c:null}},function(t,e,n){var r=n(6),o=n(141);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(n,[]),e=n instanceof Array}catch(t){}return function(n,i){return r(n),o(i),e?t.call(n,i):n.__proto__=i,n}}():void 0)},function(t,e,n){var r=n(22),o=n(5),i=n(4),a=n(9).f,s=n(31),c=n(144),u=s("meta"),f=0,l=Object.isExtensible||function(){return!0},p=function(t){a(t,u,{value:{objectID:"O"+ ++f,weakData:{}}})},d=t.exports={REQUIRED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,u)){if(!l(t))return"F";if(!e)return"E";p(t)}return t[u].objectID},getWeakData:function(t,e){if(!i(t,u)){if(!l(t))return!0;if(!e)return!1;p(t)}return t[u].weakData},onFreeze:function(t){return c&&d.REQUIRED&&l(t)&&!i(t,u)&&p(t),t}};r[u]=!0},function(t,e,n){var r=n(6),o=n(145),i=n(14),a=n(34),s=n(146),c=n(147),u=function(t,e){this.stopped=t,this.result=e};t.exports=function(t,e,n){var f,l,p,d,v,h,m,y=n&&n.that,g=!(!n||!n.AS_ENTRIES),b=!(!n||!n.IS_ITERATOR),_=!(!n||!n.INTERRUPTED),E=a(e,y,1+g+_),w=function(t){return f&&c(f),new u(!0,t)},x=function(t){return g?(r(t),_?E(t[0],t[1],w):E(t[0],t[1])):_?E(t,w):E(t)};if(b)f=t;else{if("function"!=typeof(l=s(t)))throw TypeError("Target is not iterable");if(o(l)){for(p=0,d=i(t.length);d>p;p++)if((v=x(t[p]))&&v instanceof u)return v;return new u(!1)}f=l.call(t)}for(h=f.next;!(m=h.call(f)).done;){try{v=x(m.value)}catch(t){throw c(f),t}if("object"==typeof v&&v&&v instanceof u)return v}return new u(!1)}},function(t,e,n){var r=n(40),o=n(19),i=n(1)("toStringTag"),a="Arguments"==o(function(){return arguments}());t.exports=r?o:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:a?o(e):"Object"==(r=o(e))&&"function"==typeof e.callee?"Arguments":r}},function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return t}},function(t,e,n){var r=n(40),o=n(12),i=n(153);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,e,n){var r=n(24),o=n(20),i=function(t){return function(e,n){var i,a,s=String(o(e)),c=r(n),u=s.length;return c<0||c>=u?t?"":void 0:(i=s.charCodeAt(c))<55296||i>56319||c+1===u||(a=s.charCodeAt(c+1))<56320||a>57343?t?s.charAt(c):i:t?s.slice(c,c+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,e){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},function(t,e,n){"use strict";var r=n(11),o=n(41);r({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},function(t,e,n){"use strict";var r=n(6);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){"use strict";n(44),Object.defineProperty(e,"__esModule",{value:!0}),e.loadState=function(t,e,n){var r=document.querySelector("#initial-state-".concat(t,"-").concat(e));if(null===r){if(void 0!==n)return n;throw new Error("Could not find initial state ".concat(e," of ").concat(t))}try{return JSON.parse(atob(r.value))}catch(n){throw new Error("Could not parse initial state ".concat(e," of ").concat(t))}}},function(t,e,n){window,t.exports=function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=0)}([function(t,e,n){"use strict";function r(){return"undefined"==typeof OC?Promise.reject(new Error("OC not defined")):void 0===OC.PasswordConfirmation?Promise.reject(new Error("OC.PasswordConfirmation not defined")):OC.PasswordConfirmation.requiresPasswordConfirmation()?new Promise((function(t,e){OC.PasswordConfirmation.requirePasswordConfirmation(t,{},e)})):Promise.resolve()}n.r(e),n.d(e,"default",(function(){return r}))}])},function(t,e,n){"use strict";var r,o=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},i=function(){var t={};return function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}t[e]=n}return t[e]}}(),a=[];function s(t){for(var e=-1,n=0;n<a.length;n++)if(a[n].identifier===t){e=n;break}return e}function c(t,e){for(var n={},r=[],o=0;o<t.length;o++){var i=t[o],c=e.base?i[0]+e.base:i[0],u=n[c]||0,f="".concat(c," ").concat(u);n[c]=u+1;var l=s(f),p={css:i[1],media:i[2],sourceMap:i[3]};-1!==l?(a[l].references++,a[l].updater(p)):a.push({identifier:f,updater:m(p,e),references:1}),r.push(f)}return r}function u(t){var e=document.createElement("style"),r=t.attributes||{};if(void 0===r.nonce){var o=n.nc;o&&(r.nonce=o)}if(Object.keys(r).forEach((function(t){e.setAttribute(t,r[t])})),"function"==typeof t.insert)t.insert(e);else{var a=i(t.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(e)}return e}var f,l=(f=[],function(t,e){return f[t]=e,f.filter(Boolean).join("\n")});function p(t,e,n,r){var o=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(t.styleSheet)t.styleSheet.cssText=l(e,o);else{var i=document.createTextNode(o),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(i,a[e]):t.appendChild(i)}}function d(t,e,n){var r=n.css,o=n.media,i=n.sourceMap;if(o?t.setAttribute("media",o):t.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleSheet)t.styleSheet.cssText=r;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(r))}}var v=null,h=0;function m(t,e){var n,r,o;if(e.singleton){var i=h++;n=v||(v=u(e)),r=p.bind(null,n,i,!1),o=p.bind(null,n,i,!0)}else n=u(e),r=d.bind(null,n,e),o=function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(n)};return r(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;r(t=e)}else o()}}t.exports=function(t,e){(e=e||{}).singleton||"boolean"==typeof e.singleton||(e.singleton=o());var n=c(t=t||[],e);return function(t){if(t=t||[],"[object Array]"===Object.prototype.toString.call(t)){for(var r=0;r<n.length;r++){var o=s(n[r]);a[o].references--}for(var i=c(t,e),u=0;u<n.length;u++){var f=s(n[u]);0===a[f].references&&(a[f].updater(),a.splice(f,1))}n=i}}}},function(t,e,n){"use strict";function r(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}(t,e)||function(t,e){if(!t)return;if("string"==typeof t)return o(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return o(t,e)}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}t.exports=function(t){var e=r(t,4),n=e[1],o=e[3];if("function"==typeof btoa){var i=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),a="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(i),s="/*# ".concat(a," */"),c=o.sources.map((function(t){return"/*# sourceURL=".concat(o.sourceRoot||"").concat(t," */")}));return[n].concat(c).concat([s]).join("\n")}return[n].join("\n")}},function(t,e,n){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,r){"string"==typeof t&&(t=[[null,t,""]]);var o={};if(r)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var s=0;s<t.length;s++){var c=[].concat(t[s]);r&&o[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),e.push(c))}},e}},function(t,e,n){"use strict";n(60),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r,o=(r=n(107))&&r.__esModule?r:{default:r},i=n(125);var a=o.default.create({headers:{requesttoken:(0,i.getRequestToken)()}}),s=Object.assign(a,{CancelToken:o.default.CancelToken,isCancel:o.default.isCancel});(0,i.onRequestTokenUpdate)((function(t){return a.defaults.headers.requesttoken=t}));var c=s;e.default=c},function(t,e,n){"use strict";n(158),n(60),n(85),n(88),n(160),n(161),Object.defineProperty(e,"__esModule",{value:!0}),e.getRootUrl=e.generateFilePath=e.imagePath=e.generateUrl=e.generateOcsUrl=e.generateRemoteUrl=e.linkTo=void 0;e.linkTo=function(t,e){return r(t,"",e)};e.generateRemoteUrl=function(t){return window.location.protocol+"//"+window.location.host+function(t){return o()+"/remote.php/"+t}(t)};e.generateOcsUrl=function(t,e){return e=2!==e?1:2,window.location.protocol+"//"+window.location.host+o()+"/ocs/v"+e+".php/"+t+"/"};e.generateUrl=function(t,e,n){var r=Object.assign({escape:!0,noRewrite:!1},n||{}),i=function(t,e){return e=e||{},t.replace(/{([^{}]*)}/g,(function(t,n){var o=e[n];return r.escape?"string"==typeof o||"number"==typeof o?encodeURIComponent(o.toString()):encodeURIComponent(t):"string"==typeof o||"number"==typeof o?o.toString():t}))};return"/"!==t.charAt(0)&&(t="/"+t),!0!==OC.config.modRewriteWorking||r.noRewrite?o()+"/index.php"+i(t,e||{}):o()+i(t,e||{})};e.imagePath=function(t,e){return-1===e.indexOf(".")?r(t,"img",e+".svg"):r(t,"img",e)};var r=function(t,e,n){var r=-1!==OC.coreApps.indexOf(t),i=o();return"php"!==n.substring(n.length-3)||r?"php"===n.substring(n.length-3)||r?(i+="settings"!==t&&"core"!==t&&"search"!==t||"ajax"!==e?"/":"/index.php/",r||(i+="apps/"),""!==t&&(i+=t+="/"),e&&(i+=e+"/"),i+=n):(i=OC.appswebroots[t],e&&(i+="/"+e+"/"),"/"!==i.substring(i.length-1)&&(i+="/"),i+=n):(i+="/index.php/apps/"+t,"index.php"!==n&&(i+="/",e&&(i+=encodeURI(e+"/")),i+=n)),i};e.generateFilePath=r;var o=function(){return OC.webroot};e.getRootUrl=o},function(t,e,n){var r=n(2),o=n(49),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(4),o=n(99),i=n(45),a=n(9);t.exports=function(t,e){for(var n=o(e),s=a.f,c=i.f,u=0;u<n.length;u++){var f=n[u];r(t,f)||s(t,f,c(e,f))}}},function(t,e,n){var r=n(23),o=n(101),i=n(53),a=n(6);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(2);t.exports=r},function(t,e,n){var r=n(51),o=n(32).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(24),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){"use strict";var r=n(26),o=n(9),i=n(17);t.exports=function(t,e,n){var a=r(e);a in t?o.f(t,a,i(0,n)):t[a]=n}},function(t,e,n){var r=n(57);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){var r=n(23);t.exports=r("navigator","userAgent")||""},function(t,e,n){"use strict";var r=n(7),o=n(0),i=n(61),a=n(53),s=n(46),c=n(15),u=n(25),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||"abcdefghijklmnopqrst"!=i(f({},e)).join("")}))?function(t,e){for(var n=c(t),o=arguments.length,f=1,l=a.f,p=s.f;o>f;)for(var d,v=u(arguments[f++]),h=l?i(v).concat(l(v)):i(v),m=h.length,y=0;m>y;)d=h[y++],r&&!p.call(v,d)||(n[d]=v[d]);return n}:f},function(t,e,n){t.exports=n(108)},function(t,e,n){"use strict";var r=n(3),o=n(62),i=n(109),a=n(68);function s(t){var e=new i(t),n=o(i.prototype.request,e);return r.extend(n,i.prototype,e),r.extend(n,e),n}var c=s(n(65));c.Axios=i,c.create=function(t){return s(a(c.defaults,t))},c.Cancel=n(69),c.CancelToken=n(122),c.isCancel=n(64),c.all=function(t){return Promise.all(t)},c.spread=n(123),c.isAxiosError=n(124),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";var r=n(3),o=n(63),i=n(110),a=n(111),s=n(68);function c(t){this.defaults=t,this.interceptors={request:new i,response:new i}}c.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=[a,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));e.length;)n=n.then(e.shift(),e.shift());return n},c.prototype.getUri=function(t){return t=s(this.defaults,t),o(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){c.prototype[t]=function(e,n){return this.request(s(n||{},{method:t,url:e,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(t){c.prototype[t]=function(e,n,r){return this.request(s(r||{},{method:t,url:e,data:n}))}})),t.exports=c},function(t,e,n){"use strict";var r=n(3);function o(){this.handlers=[]}o.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},o.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},o.prototype.forEach=function(t){r.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=o},function(t,e,n){"use strict";var r=n(3),o=n(112),i=n(64),a=n(65);function s(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return s(t),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return s(t),e.data=o(e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(s(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},function(t,e,n){"use strict";var r=n(3);t.exports=function(t,e,n){return r.forEach(n,(function(n){t=n(t,e)})),t}},function(t,e,n){"use strict";var r=n(3);t.exports=function(t,e){r.forEach(t,(function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])}))}},function(t,e,n){"use strict";var r=n(67);t.exports=function(t,e,n){var o=n.config.validateStatus;n.status&&o&&!o(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";t.exports=function(t,e,n,r,o){return t.config=e,n&&(t.code=n),t.request=r,t.response=o,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},function(t,e,n){"use strict";var r=n(3);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,o,i,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(o)&&s.push("path="+o),r.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";var r=n(118),o=n(119);t.exports=function(t,e){return t&&!r(e)?o(t,e):e}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var r=n(3),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,i,a={};return t?(r.forEach(t.split("\n"),(function(t){if(i=t.indexOf(":"),e=r.trim(t.substr(0,i)).toLowerCase(),n=r.trim(t.substr(i+1)),e){if(a[e]&&o.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}})),a):a}},function(t,e,n){"use strict";var r=n(3);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function o(t){var r=t;return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=o(window.location.href),function(e){var n=r.isString(e)?o(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},function(t,e,n){"use strict";var r=n(69);function o(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new r(t),e(n.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var t;return{token:new o((function(e){t=e})),cancel:t}},t.exports=o},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e,n){"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getRequestToken",{enumerable:!0,get:function(){return r.getRequestToken}}),Object.defineProperty(e,"onRequestTokenUpdate",{enumerable:!0,get:function(){return r.onRequestTokenUpdate}}),Object.defineProperty(e,"getCurrentUser",{enumerable:!0,get:function(){return o.getCurrentUser}});var r=n(126),o=n(157)},function(t,e,n){"use strict";n(70),Object.defineProperty(e,"__esModule",{value:!0}),e.getRequestToken=function(){return i},e.onRequestTokenUpdate=function(t){a.push(t)};var r=n(128),o=document.getElementsByTagName("head")[0],i=o?o.getAttribute("data-requesttoken"):null,a=[];(0,r.subscribe)("csrf-token-update",(function(t){i=t.token,a.forEach((function(e){try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}))},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.subscribe=function(t,e){i.subscribe(t,e)},e.unsubscribe=function(t,e){i.unsubscribe(t,e)},e.emit=function(t,e){i.emit(t,e)};var r=n(129),o=n(134);var i=(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),void 0!==window._nc_event_bus?new r.ProxyBus(window._nc_event_bus):window._nc_event_bus=new o.SimpleBus)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ProxyBus=void 0;var r=i(n(130)),o=i(n(133));function i(t){return t&&t.__esModule?t:{default:t}}function a(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var s="1.2.0",c=function(){function t(e){var n,i,a;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),a=void 0,(i="bus")in(n=this)?Object.defineProperty(n,i,{value:a,enumerable:!0,configurable:!0,writable:!0}):n[i]=a,"function"==typeof e.getVersion&&(0,r.default)(e.getVersion())?(0,o.default)(e.getVersion())!==(0,o.default)(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=e}var e,n,i;return e=t,(n=[{key:"getVersion",value:function(){return s}},{key:"subscribe",value:function(t,e){this.bus.subscribe(t,e)}},{key:"unsubscribe",value:function(t,e){this.bus.unsubscribe(t,e)}},{key:"emit",value:function(t,e){this.bus.emit(t,e)}}])&&a(e.prototype,n),i&&a(e,i),t}();e.ProxyBus=c},function(t,e,n){var r=n(131);t.exports=function(t,e){var n=r(t,e);return n?n.version:null}},function(t,e,n){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var o=n(36).MAX_LENGTH,i=n(74),a=i.re,s=i.t,c=n(76);t.exports=function(t,e){if(e&&"object"===r(e)||(e={loose:!!e,includePrerelease:!1}),t instanceof c)return t;if("string"!=typeof t)return null;if(t.length>o)return null;if(!(e.loose?a[s.LOOSE]:a[s.FULL]).test(t))return null;try{return new c(t,e)}catch(t){return null}}},function(t,e){var n=/^[0-9]+$/,r=function(t,e){var r=n.test(t),o=n.test(e);return r&&o&&(t=+t,e=+e),t===e?0:r&&!o?-1:o&&!r?1:t<e?-1:1};t.exports={compareIdentifiers:r,rcompareIdentifiers:function(t,e){return r(e,t)}}},function(t,e,n){var r=n(76);t.exports=function(t,e){return new r(t,e).major}},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n(44),n(135),n(70),n(77),n(142),n(85),n(154),n(155),n(156),Object.defineProperty(e,"__esModule",{value:!0}),e.SimpleBus=void 0;var o="1.2.0",i=function(){function t(){var e,n,r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),e=this,n="handlers",r=new Map,n in e?Object.defineProperty(e,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[n]=r}var e,n,i;return e=t,(n=[{key:"getVersion",value:function(){return o}},{key:"subscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).concat(e))}},{key:"unsubscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).filter((function(t){return t!=e})))}},{key:"emit",value:function(t,e){(this.handlers.get(t)||[]).forEach((function(t){try{t(e)}catch(t){console.error("could not invoke event listener",t)}}))}}])&&r(e.prototype,n),i&&r(e,i),t}();e.SimpleBus=i},function(t,e,n){"use strict";var r=n(11),o=n(72).filter,i=n(58),a=n(35),s=i("filter"),c=a("filter");r({target:"Array",proto:!0,forced:!s||!c},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){var r=n(1),o=n(37),i=n(9),a=r("unscopables"),s=Array.prototype;null==s[a]&&i.f(s,a,{configurable:!0,value:o(null)}),t.exports=function(t){s[a][t]=!0}},function(t,e,n){var r=n(7),o=n(9),i=n(6),a=n(61);t.exports=r?Object.defineProperties:function(t,e){i(t);for(var n,r=a(e),s=r.length,c=0;s>c;)o.f(t,n=r[c++],e[n]);return t}},function(t,e,n){var r=n(23);t.exports=r("document","documentElement")},function(t,e,n){"use strict";var r=n(78).IteratorPrototype,o=n(37),i=n(17),a=n(39),s=n(16),c=function(){return this};t.exports=function(t,e,n){var u=e+" Iterator";return t.prototype=o(r,{next:i(1,n)}),a(t,u,!1,!0),s[u]=c,t}},function(t,e,n){var r=n(0);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},function(t,e,n){var r=n(5);t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},function(t,e,n){"use strict";var r=n(143),o=n(150);t.exports=r("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},function(t,e,n){"use strict";var r=n(11),o=n(2),i=n(54),a=n(12),s=n(81),c=n(82),u=n(84),f=n(5),l=n(0),p=n(148),d=n(39),v=n(149);t.exports=function(t,e,n){var h=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),y=h?"set":"add",g=o[t],b=g&&g.prototype,_=g,E={},w=function(t){var e=b[t];a(b,t,"add"==t?function(t){return e.call(this,0===t?0:t),this}:"delete"==t?function(t){return!(m&&!f(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return m&&!f(t)?void 0:e.call(this,0===t?0:t)}:"has"==t?function(t){return!(m&&!f(t))&&e.call(this,0===t?0:t)}:function(t,n){return e.call(this,0===t?0:t,n),this})};if(i(t,"function"!=typeof g||!(m||b.forEach&&!l((function(){(new g).entries().next()})))))_=n.getConstructor(e,t,h,y),s.REQUIRED=!0;else if(i(t,!0)){var x=new _,O=x[y](m?{}:-0,1)!=x,A=l((function(){x.has(1)})),C=p((function(t){new g(t)})),S=!m&&l((function(){for(var t=new g,e=5;e--;)t[y](e,e);return!t.has(-0)}));C||((_=e((function(e,n){u(e,_,t);var r=v(new g,e,_);return null!=n&&c(n,r[y],{that:r,AS_ENTRIES:h}),r}))).prototype=b,b.constructor=_),(A||S)&&(w("delete"),w("has"),h&&w("get")),(S||O)&&w(y),m&&b.clear&&delete b.clear}return E[t]=_,r({global:!0,forced:_!=g},E),d(_,t),m||n.setStrong(_,t,h),_}},function(t,e,n){var r=n(0);t.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},function(t,e,n){var r=n(1),o=n(16),i=r("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},function(t,e,n){var r=n(83),o=n(16),i=n(1)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,e,n){var r=n(6);t.exports=function(t){var e=t.return;if(void 0!==e)return r(e.call(t)).value}},function(t,e,n){var r=n(1)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},"return":function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(t){}return n}},function(t,e,n){var r=n(5),o=n(80);t.exports=function(t,e,n){var i,a;return o&&"function"==typeof(i=e.constructor)&&i!==n&&r(a=i.prototype)&&a!==n.prototype&&o(t,a),t}},function(t,e,n){"use strict";var r=n(9).f,o=n(37),i=n(151),a=n(34),s=n(84),c=n(82),u=n(38),f=n(152),l=n(7),p=n(81).fastKey,d=n(21),v=d.set,h=d.getterFor;t.exports={getConstructor:function(t,e,n,u){var f=t((function(t,r){s(t,f,e),v(t,{type:e,index:o(null),first:void 0,last:void 0,size:0}),l||(t.size=0),null!=r&&c(r,t[u],{that:t,AS_ENTRIES:n})})),d=h(e),m=function(t,e,n){var r,o,i=d(t),a=y(t,e);return a?a.value=n:(i.last=a={index:o=p(e,!0),key:e,value:n,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),l?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},y=function(t,e){var n,r=d(t),o=p(e);if("F"!==o)return r.index[o];for(n=r.first;n;n=n.next)if(n.key==e)return n};return i(f.prototype,{clear:function(){for(var t=d(this),e=t.index,n=t.first;n;)n.removed=!0,n.previous&&(n.previous=n.previous.next=void 0),delete e[n.index],n=n.next;t.first=t.last=void 0,l?t.size=0:this.size=0},"delete":function(t){var e=d(this),n=y(this,t);if(n){var r=n.next,o=n.previous;delete e.index[n.index],n.removed=!0,o&&(o.next=r),r&&(r.previous=o),e.first==n&&(e.first=r),e.last==n&&(e.last=o),l?e.size--:this.size--}return!!n},forEach:function(t){for(var e,n=d(this),r=a(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.next:n.first;)for(r(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!y(this,t)}}),i(f.prototype,n?{get:function(t){var e=y(this,t);return e&&e.value},set:function(t,e){return m(this,0===t?0:t,e)}}:{add:function(t){return m(this,t=0===t?0:t,t)}}),l&&r(f.prototype,"size",{get:function(){return d(this).size}}),f},setStrong:function(t,e,n){var r=e+" Iterator",o=h(e),i=h(r);u(t,e,(function(t,e){v(this,{type:r,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,n=t.last;n&&n.removed;)n=n.previous;return t.target&&(t.last=n=n?n.next:t.state.first)?"keys"==e?{value:n.key,done:!1}:"values"==e?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})}),n?"entries":"values",!n,!0),f(e)}}},function(t,e,n){var r=n(12);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){"use strict";var r=n(23),o=n(9),i=n(1),a=n(7),s=i("species");t.exports=function(t){var e=r(t),n=o.f;a&&e&&!e[s]&&n(e,s,{configurable:!0,get:function(){return this}})}},function(t,e,n){"use strict";var r=n(40),o=n(83);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},function(t,e,n){"use strict";var r=n(86).charAt,o=n(21),i=n(38),a=o.set,s=o.getterFor("String Iterator");i(String,"String",(function(t){a(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,e=s(this),n=e.string,o=e.index;return o>=n.length?{value:void 0,done:!0}:(t=r(n,o),e.index+=t.length,{value:t,done:!1})}))},function(t,e,n){var r=n(2),o=n(87),i=n(71),a=n(8);for(var s in o){var c=r[s],u=c&&c.prototype;if(u&&u.forEach!==i)try{a(u,"forEach",i)}catch(t){u.forEach=i}}},function(t,e,n){var r=n(2),o=n(87),i=n(77),a=n(8),s=n(1),c=s("iterator"),u=s("toStringTag"),f=i.values;for(var l in o){var p=r[l],d=p&&p.prototype;if(d){if(d[c]!==f)try{a(d,c,f)}catch(t){d[c]=f}if(d[u]||a(d,u,l),o[l])for(var v in i)if(d[v]!==i[v])try{a(d,v,i[v])}catch(t){d[v]=i[v]}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getCurrentUser=function(){if(null===o)return null;return{uid:o,displayName:a,isAdmin:s}};var r=document.getElementsByTagName("head")[0],o=r?r.getAttribute("data-user"):null,i=document.getElementsByTagName("head")[0],a=i?i.getAttribute("data-user-displayname"):null,s="undefined"!=typeof OC&&OC.isUserAdmin()},function(t,e,n){"use strict";var r=n(11),o=n(52).indexOf,i=n(73),a=n(35),s=[].indexOf,c=!!s&&1/[1].indexOf(1,-0)<0,u=i("indexOf"),f=a("indexOf",{ACCESSORS:!0,1:0});r({target:"Array",proto:!0,forced:c||!u||!f},{indexOf:function(t){return c?s.apply(this,arguments)||0:o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0);function o(t,e){return RegExp(t,e)}e.UNSUPPORTED_Y=r((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),e.BROKEN_CARET=r((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},function(t,e,n){"use strict";var r=n(12),o=n(6),i=n(0),a=n(89),s=RegExp.prototype,c=s.toString,u=i((function(){return"/a/b"!=c.call({source:"a",flags:"b"})})),f="toString"!=c.name;(u||f)&&r(RegExp.prototype,"toString",(function(){var t=o(this),e=String(t.source),n=t.flags;return"/"+e+"/"+String(void 0===n&&t instanceof RegExp&&!("flags"in s)?a.call(t):n)}),{unsafe:!0})},function(t,e,n){"use strict";var r=n(162),o=n(6),i=n(14),a=n(24),s=n(20),c=n(163),u=n(164),f=n(165),l=Math.max,p=Math.min;r("replace",2,(function(t,e,n,r){var d=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,v=r.REPLACE_KEEPS_$0,h=d?"$":"$0";return[function(n,r){var o=s(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,r){if(!d&&v||"string"==typeof r&&-1===r.indexOf(h)){var s=n(e,t,this,r);if(s.done)return s.value}var m=o(t),y=String(this),g="function"==typeof r;g||(r=String(r));var b=m.global;if(b){var _=m.unicode;m.lastIndex=0}for(var E=[];;){var w=f(m,y);if(null===w)break;if(E.push(w),!b)break;""===String(w[0])&&(m.lastIndex=c(y,i(m.lastIndex),_))}for(var x,O="",A=0,C=0;C<E.length;C++){w=E[C];for(var S=String(w[0]),k=l(p(a(w.index),y.length),0),I=[],T=1;T<w.length;T++)I.push(void 0===(x=w[T])?x:String(x));var R=w.groups;if(g){var N=[S].concat(I,k,y);void 0!==R&&N.push(R);var j=String(r.apply(void 0,N))}else j=u(S,y,k,I,R,r);k>=A&&(O+=y.slice(A,k)+j,A=k+S.length)}return O+y.slice(A)}]}))},function(t,e,n){"use strict";n(88);var r=n(12),o=n(0),i=n(1),a=n(41),s=n(8),c=i("species"),u=!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),f="$0"==="a".replace(/./,"$0"),l=i("replace"),p=!!/./[l]&&""===/./[l]("a","$0"),d=!o((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));t.exports=function(t,e,n,l){var v=i(t),h=!o((function(){var e={};return e[v]=function(){return 7},7!=""[t](e)})),m=h&&!o((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[c]=function(){return n},n.flags="",n[v]=/./[v]),n.exec=function(){return e=!0,null},n[v](""),!e}));if(!h||!m||"replace"===t&&(!u||!f||p)||"split"===t&&!d){var y=/./[v],g=n(v,""[t],(function(t,e,n,r,o){return e.exec===a?h&&!o?{done:!0,value:y.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}}),{REPLACE_KEEPS_$0:f,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:p}),b=g[0],_=g[1];r(String.prototype,t,b),r(RegExp.prototype,v,2==e?function(t,e){return _.call(t,this,e)}:function(t){return _.call(t,this)})}l&&s(RegExp.prototype[v],"sham",!0)}},function(t,e,n){"use strict";var r=n(86).charAt;t.exports=function(t,e,n){return e+(n?r(t,e).length:1)}},function(t,e,n){var r=n(15),o=Math.floor,i="".replace,a=/\$([$&'`]|\d\d?|<[^>]*>)/g,s=/\$([$&'`]|\d\d?)/g;t.exports=function(t,e,n,c,u,f){var l=n+t.length,p=c.length,d=s;return void 0!==u&&(u=r(u),d=a),i.call(f,d,(function(r,i){var a;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,n);case"'":return e.slice(l);case"<":a=u[i.slice(1,-1)];break;default:var s=+i;if(0===s)return r;if(s>p){var f=o(s/10);return 0===f?r:f<=p?void 0===c[f-1]?i.charAt(1):c[f-1]+i.charAt(1):r}a=c[s-1]}return void 0===a?"":a}))}},function(t,e,n){var r=n(19),o=n(41);t.exports=function(t,e){var n=t.exec;if("function"==typeof n){var i=n.call(t,e);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,o=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(o.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(o.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(167),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(13))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,o,i,a,s,c=1,u={},f=!1,l=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick((function(){v(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){v(t.data)},r=function(t){i.port2.postMessage(t)}):l&&"onreadystatechange"in l.createElement("script")?(o=l.documentElement,r=function(t){var e=l.createElement("script");e.onreadystatechange=function(){v(t),e.onreadystatechange=null,o.removeChild(e),e=null},o.appendChild(e)}):r=function(t){setTimeout(v,0,t)}:(a="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(a)&&v(+e.data.slice(a.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(a+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var o={callback:t,args:e};return u[c]=o,r(c),c++},p.clearImmediate=d}function d(t){delete u[t]}function v(t){if(f)setTimeout(v,0,t);else{var e=u[t];if(e){f=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(void 0,n)}}(e)}finally{d(t),f=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(13),n(33))},function(e,n,r){"use strict";r.r(n);var o=r(90),i=r(10),a=r(91),s=r.n(a);var c={name:"PersonalSettings",data:function(){return{generatingCodes:!1}},computed:{downloadUrl:function(){return this.codes?"data:text/plain,"+encodeURIComponent(this.codes.reduce((function(t,e){return t+e+"\r\n"}),"")):""},downloadFilename:function(){return(OC.theme.name||"Nextcloud")+"-backup-codes.txt"},enabled:function(){return this.$store.state.enabled},total:function(){return this.$store.state.total},used:function(){return this.$store.state.used},codes:function(){return this.$store.state.codes},name:function(){return OC.theme.name||"Nextcloud"},haveCodes:function(){return this.codes&&this.codes.length>0}},methods:{generateBackupCodes:function(){var e=this;s()().then((function(){e.generatingCodes=!0,e.$store.dispatch("generate").then((function(t){e.generatingCodes=!1})).catch((function(n){throw OC.Notification.showTemporary(t("twofactor_backupcodes","An error occurred while generating your backup codes")),e.generatingCodes=!1,n}))})).catch(console.error.bind(this))},getPrintData:function(t){return t?t.reduce((function(t,e){return t+e+"<br>"}),""):""},printCodes:function(){var e,n,r;e=this.getPrintData(this.codes),n=OC.theme.name||"Nextcloud",(r=window.open("",t("twofactor_backupcodes","{name} backup codes",{name:n}))).document.write("<h1>"+t("twofactor_backupcodes","{name} backup codes",{name:n})+"</h1>"),r.document.write("<pre>"+e+"</pre>"),r.print(),r.close()}}},u=r(92),f=r.n(u),l=r(42),p={insert:"head",singleton:!1};f()(l.a,p),l.a.locals;var d=function(t,e,n,r,o,i,a,s){var c,u="function"==typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i),a?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):o&&(c=s?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(u.functional){u._injectStyles=c;var f=u.render;u.render=function(t,e){return c.call(e),f(t,e)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,c):[c]}return{exports:t,options:u}}(c,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.enabled?[n("p",[t.haveCodes?[t._v("\n\t\t\t\t"+t._s(t.t("twofactor_backupcodes","These are your backup codes. Please save and/or print them as you will not be able to read the codes again later"))+"\n\t\t\t\t"),n("ul",t._l(t.codes,(function(e){return n("li",{key:e,staticClass:"backup-code"},[t._v("\n\t\t\t\t\t\t"+t._s(e)+"\n\t\t\t\t\t")])})),0),t._v(" "),n("a",{staticClass:"button primary",attrs:{"href":t.downloadUrl,"download":t.downloadFilename}},[t._v(t._s(t.t("twofactor_backupcodes","Save backup codes")))]),t._v(" "),n("button",{staticClass:"button",on:{"click":t.printCodes}},[t._v("\n\t\t\t\t\t"+t._s(t.t("twofactor_backupcodes","Print backup codes"))+"\n\t\t\t\t")])]:[t._v("\n\t\t\t\t"+t._s(t.t("twofactor_backupcodes","Backup codes have been generated. {used} of {total} codes have been used.",{used:t.used,total:t.total}))+"\n\t\t\t")]],2),t._v(" "),n("p",[n("button",{attrs:{"id":"generate-backup-codes"},on:{"click":t.generateBackupCodes}},[t._v("\n\t\t\t\t"+t._s(t.t("twofactor_backupcodes","Regenerate backup codes"))+"\n\t\t\t")])]),t._v(" "),n("p",[n("em",[t._v("\n\t\t\t\t"+t._s(t.t("twofactor_backupcodes","If you regenerate backup codes, you automatically invalidate old codes."))+"\n\t\t\t")])])]:n("button",{attrs:{"id":"generate-backup-codes","disabled":t.generatingCodes},on:{"click":t.generateBackupCodes}},[t._v("\n\t\t"+t._s(t.t("twofactor_backupcodes","Generate backup codes"))+"\n\t\t"),n("span",{class:{"icon-loading-small":t.generatingCodes}})])],2)}),[],!1,null,"00d0b868",null).exports,v=r(43),h=r(95),m=r.n(h),y=r(96);i.a.use(v.a);var g={setEnabled:function(t,e){i.a.set(t,"enabled",e)},setTotal:function(t,e){i.a.set(t,"total",e)},setUsed:function(t,e){i.a.set(t,"used",e)},setCodes:function(t,e){i.a.set(t,"codes",e)}},b={generate:function(t){var e,n=t.commit;return n("setEnabled",!1),(e=Object(y.generateUrl)("/apps/twofactor_backupcodes/settings/create"),m.a.post(e,{}).then((function(t){return t.data}))).then((function(t){var e=t.codes,r=t.state;return n("setEnabled",r.enabled),n("setTotal",r.total),n("setUsed",r.used),n("setCodes",e),!0}))}},_=new v.a.Store({strict:!1,state:{enabled:!1,total:0,used:0,codes:[]},mutations:g,actions:b});i.a.prototype.t=t;var E=Object(o.loadState)("twofactor_backupcodes","state");_.replaceState(E),new(i.a.extend(d))({store:_}).$mount("#twofactor-backupcodes-settings")}]); -//# sourceMappingURL=settings.js.map
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/js/settings.js.map b/apps/twofactor_backupcodes/js/settings.js.map deleted file mode 100644 index 2674ad728ee..00000000000 --- a/apps/twofactor_backupcodes/js/settings.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/core-js/internals/fails.js","webpack:///./node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/utils.js","webpack:///./node_modules/core-js/internals/has.js","webpack:///./node_modules/core-js/internals/is-object.js","webpack:///./node_modules/core-js/internals/an-object.js","webpack:///./node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/vue/dist/vue.runtime.esm.js","webpack:///./node_modules/core-js/internals/export.js","webpack:///./node_modules/core-js/internals/redefine.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/core-js/internals/to-length.js","webpack:///./node_modules/core-js/internals/to-object.js","webpack:///./node_modules/core-js/internals/iterators.js","webpack:///./node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/core-js/internals/set-global.js","webpack:///./node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/core-js/internals/uid.js","webpack:///./node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/process/browser.js","webpack:///./node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/semver/internal/constants.js","webpack:///./node_modules/core-js/internals/object-create.js","webpack:///./node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/core-js/internals/regexp-exec.js","webpack:///./apps/twofactor_backupcodes/src/views/PersonalSettings.vue?1d28","webpack:///./node_modules/vuex/dist/vuex.esm.js","webpack:///./node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/core-js/internals/shared.js","webpack:///./node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/core-js/internals/is-array.js","webpack:///./node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/bind.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/buildURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/isCancel.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/defaults.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/adapters/xhr.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/createError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/mergeConfig.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/Cancel.js","webpack:///./node_modules/core-js/modules/es.array.for-each.js","webpack:///./node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/semver/internal/re.js","webpack:///./node_modules/semver/internal/debug.js","webpack:///./node_modules/semver/classes/semver.js","webpack:///./node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/core-js/internals/iterate.js","webpack:///./node_modules/core-js/internals/classof.js","webpack:///./node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/core-js/modules/es.regexp.exec.js","webpack:///./node_modules/core-js/internals/regexp-flags.js","webpack:///./node_modules/@nextcloud/initial-state/dist/index.js","webpack:///./node_modules/@nextcloud/password-confirmation/dist/main.js","webpack:///./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","webpack:///./node_modules/css-loader/dist/runtime/cssWithMappingToString.js","webpack:///./node_modules/css-loader/dist/runtime/api.js","webpack:///./node_modules/@nextcloud/axios/dist/index.js","webpack:///./node_modules/@nextcloud/router/dist/index.js","webpack:///./node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/core-js/internals/path.js","webpack:///./node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/core-js/internals/create-property.js","webpack:///./node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/Axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/InterceptorManager.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/dispatchRequest.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/transformData.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/settle.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/enhanceError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/cookies.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/buildFullPath.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/combineURLs.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/parseHeaders.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/CancelToken.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/spread.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isAxiosError.js","webpack:///./node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/core-js/internals/a-function.js","webpack:///../lib/index.ts","webpack:///../lib/ProxyBus.ts","webpack:///./node_modules/semver/functions/valid.js","webpack:///./node_modules/semver/functions/parse.js","webpack:///./node_modules/semver/internal/identifiers.js","webpack:///./node_modules/semver/functions/major.js","webpack:///../lib/SimpleBus.ts","webpack:///./node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/core-js/internals/html.js","webpack:///./node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/core-js/modules/es.map.js","webpack:///./node_modules/core-js/internals/collection.js","webpack:///./node_modules/core-js/internals/freezing.js","webpack:///./node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/core-js/internals/iterator-close.js","webpack:///./node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/core-js/internals/set-species.js","webpack:///./node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/core-js/modules/es.array.index-of.js","webpack:///./node_modules/core-js/internals/regexp-sticky-helpers.js","webpack:///./node_modules/core-js/modules/es.regexp.to-string.js","webpack:///./node_modules/core-js/modules/es.string.replace.js","webpack:///./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js","webpack:///./node_modules/core-js/internals/advance-string-index.js","webpack:///./node_modules/core-js/internals/get-substitution.js","webpack:///./node_modules/core-js/internals/regexp-exec-abstract.js","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///apps/twofactor_backupcodes/src/views/PersonalSettings.vue","webpack:///./apps/twofactor_backupcodes/src/views/PersonalSettings.vue?3dc7","webpack:///./apps/twofactor_backupcodes/src/service/PrintService.js","webpack:///./apps/twofactor_backupcodes/src/views/PersonalSettings.vue?5139","webpack:///./apps/twofactor_backupcodes/src/views/PersonalSettings.vue","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./apps/twofactor_backupcodes/src/views/PersonalSettings.vue?0636","webpack:///./apps/twofactor_backupcodes/src/store.js","webpack:///./apps/twofactor_backupcodes/src/service/BackupCodesService.js","webpack:///./apps/twofactor_backupcodes/src/settings.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","exec","error","global","shared","has","uid","NATIVE_SYMBOL","USE_SYMBOL_AS_UID","WellKnownSymbolsStore","createWellKnownSymbol","withoutSetter","it","Math","check","globalThis","window","self","this","Function","toString","isArray","val","isUndefined","isObject","isPlainObject","getPrototypeOf","isFunction","forEach","obj","fn","length","isArrayBuffer","isBuffer","constructor","isFormData","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isString","isNumber","isDate","isFile","isBlob","isStream","pipe","isURLSearchParams","URLSearchParams","isStandardBrowserEnv","navigator","product","document","merge","result","assignValue","slice","arguments","extend","a","b","thisArg","trim","str","replace","stripBOM","content","charCodeAt","TypeError","String","fails","DESCRIPTORS","definePropertyModule","createPropertyDescriptor","f","IE8_DOM_DEFINE","anObject","toPrimitive","nativeDefineProperty","O","P","Attributes","emptyObject","freeze","isUndef","v","isDef","isTrue","isPrimitive","_toString","isRegExp","isValidArrayIndex","parseFloat","floor","isFinite","isPromise","then","catch","Array","JSON","stringify","toNumber","isNaN","makeMap","expectsLowerCase","map","list","split","toLowerCase","isReservedAttribute","remove","arr","item","index","indexOf","splice","hasOwn","cached","cache","camelizeRE","camelize","_","toUpperCase","capitalize","charAt","hyphenateRE","hyphenate","ctx","boundFn","apply","_length","toArray","start","ret","to","_from","toObject","res","noop","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArrayB","every","e","Date","getTime","keysA","keys","keysB","looseIndexOf","once","called","ASSET_TYPES","LIFECYCLE_HOOKS","config","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","async","_lifecycleHooks","unicodeRegExp","def","writable","configurable","bailRE","RegExp","_isServer","hasProto","inBrowser","inWeex","WXEnvironment","platform","weexPlatform","UA","userAgent","isIE","test","isIE9","isEdge","isIOS","isFF","match","nativeWatch","watch","supportsPassive","opts","addEventListener","isServerRendering","undefined","env","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","ownKeys","Set","set","add","clear","warn","Dep","id","subs","addSub","sub","push","removeSub","depend","target","addDep","notify","update","targetStack","pushTarget","popTarget","pop","VNode","tag","data","children","text","elm","context","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","parent","raw","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","defineProperties","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","method","original","args","len","inserted","ob","__ob__","observeArray","dep","arrayKeys","getOwnPropertyNames","shouldObserve","toggleObserving","Observer","vmCount","src","__proto__","protoAugment","copyAugment","walk","observe","asRootData","isExtensible","_isVue","defineReactive$$1","customSetter","shallow","getOwnPropertyDescriptor","setter","childOb","dependArray","newVal","max","del","items","strats","mergeData","from","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","concat","hooks","dedupeHooks","mergeAssets","hook","type","key$1","props","methods","inject","computed","provide","defaultStrat","mergeOptions","options","normalizeProps","normalized","normalizeInject","dirs","directives","def$$1","normalizeDirectives","_base","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","prop","absent","booleanIndex","getTypeIndex","Boolean","stringIndex","default","$options","_props","getType","getPropDefaultValue","prevShouldObserve","isSameType","expectedTypes","handleError","err","info","cur","$parent","errorCaptured","globalHandleError","invokeWithErrorHandling","handler","_handled","logError","console","timerFunc","isUsingMicroTask","callbacks","pending","flushCallbacks","copies","Promise","resolve","setTimeout","MutationObserver","setImmediate","counter","observer","textNode","createTextNode","characterData","nextTick","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","on","oldOn","remove$$1","createOnceHandler","old","event","params","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","lastIndex","last","isTextNode","shift","_isVList","resolveInject","provideKey","source","_provided","provideDefault","resolveSlots","slots","attrs","slot","name$1","isWhitespace","normalizeScopedSlots","normalSlots","prevSlots","hasNormalSlots","isStable","$stable","$key","_normalized","$hasNormal","normalizeScopedSlot","key$2","proxyNormalSlot","proxy","renderList","render","iterator","next","done","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","$slots","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","loop","domProps","camelizedKey","hyphenatedKey","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","staticRenderFns","_renderProxy","markOnce","markStaticNode","bindObjectListeners","existing","ours","resolveScopedSlots","hasDynamicKeys","contentHashKey","bindDynamicKeys","baseObj","values","prependModifier","symbol","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","_d","_p","FunctionalRenderContext","contextVm","this$1","_original","isCompiled","_compiled","needNormalization","listeners","injections","scopedSlots","_scopeId","_c","createElement","cloneAndMarkFunctionalResult","renderContext","clone","mergeProps","componentVNodeHooks","init","hydrating","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","inlineTemplate","createComponentInstanceForVnode","activeInstance","$mount","oldVnode","parentVnode","renderChildren","newScopedSlots","oldScopedSlots","hasDynamicScopedSlot","needsForceUpdate","_renderChildren","$vnode","_vnode","$attrs","$listeners","propKeys","_propKeys","oldListeners","_parentListeners","updateComponentListeners","$forceUpdate","updateChildComponent","insert","_isMounted","callHook","_inactive","activatedChildren","activateChildComponent","destroy","deactivateChildComponent","direct","_directInactive","isInInactiveTree","$children","$destroy","hooksToMerge","createComponent","baseCtor","cid","factory","errorComp","resolved","owner","currentRenderingInstance","owners","loading","loadingComp","sync","timerLoading","timerTimeout","$on","forceRender","renderCompleted","clearTimeout","ensureCtor","reject","reason","component","delay","timeout","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","functional","vnodes","createFunctionalComponent","nativeOn","abstract","toMerge","_merged","mergeHook$1","installComponentHooks","f1","f2","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","pre","applyNS","force","style","class","registerDeepBindings","_createElement","comp","base","getFirstComponentChild","remove$1","$off","_target","onceHandler","setActiveInstance","prevActiveInstance","handlers","j","_hasHookEvent","$emit","queue","waiting","flushing","currentFlushTimestamp","getNow","now","createEvent","timeStamp","flushSchedulerQueue","watcher","sort","before","run","activatedQueue","updatedQueue","callActivatedHooks","_watcher","callUpdatedHooks","emit","uid$2","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","active","dirty","deps","newDeps","depIds","newDepIds","expression","path","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","sourceKey","initState","propsOptions","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","createWatcher","initWatch","shouldCache","createComputedGetter","createGetterInvoker","$watch","uid$3","super","superOptions","modifiedOptions","modified","latest","sealed","sealedOptions","resolveModifiedOptions","extendOptions","components","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","filter","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$root","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","el","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","$once","i$1","cbs","eventsMixin","_update","prevEl","$el","prevVnode","restoreActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","builtInComponents","KeepAlive","include","exclude","Number","created","destroyed","mounted","parseInt","configDef","util","defineReactive","delete","observable","plugin","installedPlugins","_installedPlugins","unshift","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","ssrContext","version","acceptValue","isEnumeratedAttr","isValidContentEditableValue","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","isFalsyAttrValue","genClassForVnode","parentNode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","nodeOps","tagName","multiple","setAttribute","createElementNS","namespace","createComment","insertBefore","newNode","referenceNode","removeChild","appendChild","nextSibling","setTextContent","textContent","setStyleScope","scopeId","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","dir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","oldArg","arg","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","join","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","removeAttribute","baseSetAttr","convertEnumeratedValue","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","target$1","klass","createOnceHandler$1","remove$2","useMicrotaskFix","add$1","attachedTimestamp","_wrapper","currentTarget","ownerDocument","updateDOMListeners","change","normalizeEvents","svgContainer","events","updateDOMProps","oldProps","childNodes","_value","strCur","shouldUpdateValue","innerHTML","firstChild","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","number","isDirtyWithModifiers","parseStyleText","cssText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","normalize","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","whitespaceRE","addClass","classList","getAttribute","removeClass","tar","resolveTransition","css","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","patch","backend","removeNode","createElm","insertedVnodeQueue","parentElm","refElm","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","hasChildNodes","childrenMatch","fullInvoke","isInitialPatch","isRealElement","hasAttribute","oldElm","patchable","i$2","createPatchFunction","vmodel","trigger","directive","binding","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","some","hasNoMatchingOption","actuallySetSelected","isMultiple","selected","option","selectedIndex","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","display","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","h","rawChild","isNotTextNode","isVShowDirective","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","pos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","beforeMount","kept","prevChildren","rawChildren","transitionData","removed","c$1","updated","hasMove","_reflow","body","offsetHeight","propertyName","_hasMove","cloneNode","attr","HTMLUnknownElement","HTMLElement","updateComponent","mountComponent","querySelector","query","createNonEnumerableProperty","redefine","setGlobal","copyConstructorProperties","isForced","targetProperty","sourceProperty","descriptor","TARGET","GLOBAL","STATIC","stat","noTargetGet","forced","sham","inspectSource","InternalStateModule","getInternalState","enforceInternalState","enforce","TEMPLATE","state","unsafe","simple","g","toInteger","min","argument","requireObjectCoercible","bitmap","IndexedObject","NATIVE_WEAK_MAP","objectHas","sharedKey","hiddenKeys","WeakMap","store","wmget","wmhas","wmset","metadata","facade","STATE","getterFor","TYPE","aFunction","variable","ceil","classof","propertyIsEnumerable","input","PREFERRED_STRING","valueOf","postfix","random","cachedSetTimeout","cachedClearTimeout","process","defaultSetTimout","Error","defaultClearTimeout","runTimeout","fun","currentQueue","draining","queueIndex","cleanUpNextTick","drainQueue","marker","runClearTimeout","Item","array","title","browser","argv","versions","addListener","off","removeListener","removeAllListeners","prependListener","prependOnceListener","cwd","chdir","umask","that","thrower","METHOD_NAME","ACCESSORS","argument0","argument1","MAX_SAFE_INTEGER","SEMVER_SPEC_VERSION","MAX_LENGTH","MAX_SAFE_COMPONENT_LENGTH","activeXDocument","enumBugKeys","html","documentCreateElement","IE_PROTO","EmptyConstructor","scriptTag","LT","NullProtoObject","domain","ActiveXObject","iframeDocument","iframe","write","close","temp","parentWindow","NullProtoObjectViaActiveX","contentWindow","open","F","Properties","$","createIteratorConstructor","setPrototypeOf","setToStringTag","wellKnownSymbol","IS_PURE","Iterators","IteratorsCore","IteratorPrototype","BUGGY_SAFARI_ITERATORS","ITERATOR","returnThis","Iterable","NAME","IteratorConstructor","DEFAULT","IS_SET","FORCED","CurrentIteratorPrototype","KEY","getIterationMethod","KIND","defaultIterator","IterablePrototype","TO_STRING_TAG","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","entries","proto","TAG","re1","re2","regexpFlags","stickyHelpers","nativeExec","nativeReplace","patchedExec","UPDATES_LAST_INDEX_WRONG","UNSUPPORTED_Y","BROKEN_CARET","NPCG_INCLUDED","reCopy","re","sticky","flags","charsAdded","strCopy","multiline","___CSS_LOADER_EXPORT___","devtoolHook","deepCopy","hit","copy","forEachValue","Module","rawModule","runtime","_children","_rawModule","rawState","namespaced","addChild","getChild","hasChild","actions","mutations","getters","forEachChild","forEachGetter","forEachAction","forEachMutation","ModuleCollection","rawRootModule","register","reduce","root","getNamespace","targetModule","newModule","rawChildModule","unregister","isRegistered","Store","plugins","strict","_committing","_actions","_actionSubscribers","_mutations","_wrappedGetters","_modules","_modulesNamespaceMap","_subscribers","_watcherVM","_makeLocalGettersCache","dispatch","commit","payload","installModule","resetStoreVM","_devtoolHook","targetState","replaceState","subscribe","mutation","prepend","subscribeAction","action","devtoolPlugin","prototypeAccessors$1","genericSubscribe","resetStore","hot","oldVm","_vm","wrappedGetters","partial","$$state","enableStrictMode","_withCommit","rootState","isRoot","parentState","getNestedState","moduleName","local","noNamespace","_type","_payload","_options","unifyObjectStyle","gettersProxy","splitPos","localType","makeLocalGetters","makeLocalContext","registerMutation","rootGetters","registerAction","rawGetter","registerGetter","_Vue","beforeCreate","vuexInit","$store","applyMixin","entry","all","after","registerModule","preserveState","unregisterModule","hasModule","hotUpdate","newOptions","committing","mapState","normalizeNamespace","states","normalizeMap","getModuleByNamespace","vuex","mapMutations","mapGetters","mapActions","isValidMap","helper","startMessage","logger","message","collapsed","groupCollapsed","group","log","endMessage","groupEnd","getFormattedTime","time","pad","getHours","getMinutes","getSeconds","getMilliseconds","num","maxLength","times","createNamespacedHelpers","createLogger","stateBefore","stateAfter","transformer","mutationTransformer","mut","actionFilter","actionTransformer","act","logMutations","logActions","prevState","nextState","formattedTime","formattedMutation","formattedAction","toLength","createProperty","arraySpeciesCreate","arrayMethodHasSpeciesSupport","V8_VERSION","IS_CONCAT_SPREADABLE","IS_CONCAT_SPREADABLE_SUPPORT","SPECIES_SUPPORT","isConcatSpreadable","spreadable","k","E","A","propertyIsEnumerableModule","toIndexedObject","nativeGetOwnPropertyDescriptor","nativePropertyIsEnumerable","NASHORN_BUG","1","V","EXISTS","functionToString","copyright","names","toAbsoluteIndex","createMethod","IS_INCLUDES","$this","fromIndex","includes","getOwnPropertySymbols","replacement","feature","detection","POLYFILL","NATIVE","string","SPECIES","originalArray","C","foo","v8","assign","internalObjectKeys","utils","encode","encodeURIComponent","url","paramsSerializer","serializedParams","parts","toISOString","hashmarkIndex","__CANCEL__","normalizeHeaderName","DEFAULT_CONTENT_TYPE","setContentTypeIfUnset","headers","adapter","defaults","XMLHttpRequest","transformRequest","transformResponse","parse","xsrfCookieName","xsrfHeaderName","maxContentLength","maxBodyLength","validateStatus","status","common","settle","cookies","buildURL","buildFullPath","parseHeaders","isURLSameOrigin","createError","requestData","requestHeaders","request","auth","username","password","unescape","Authorization","btoa","fullPath","baseURL","onreadystatechange","readyState","responseURL","responseHeaders","getAllResponseHeaders","response","responseType","responseText","statusText","onabort","onerror","ontimeout","timeoutErrorMessage","xsrfValue","withCredentials","read","setRequestHeader","onDownloadProgress","onUploadProgress","upload","cancelToken","promise","cancel","abort","send","enhanceError","code","config1","config2","valueFromConfig2Keys","mergeDeepPropertiesKeys","defaultToConfig2Keys","directMergeKeys","getMergedValue","mergeDeepProperties","axiosKeys","otherKeys","Cancel","$forEach","arrayMethodIsStrict","arrayMethodUsesToLength","STRICT_METHOD","USES_TO_LENGTH","callbackfn","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","IS_FILTER_OUT","NO_HOLES","specificCreate","boundFunction","find","findIndex","filterOut","require","debug","R","createToken","isGlobal","NUMERICIDENTIFIER","NUMERICIDENTIFIERLOOSE","NONNUMERICIDENTIFIER","PRERELEASEIDENTIFIER","PRERELEASEIDENTIFIERLOOSE","BUILDIDENTIFIER","MAINVERSION","PRERELEASE","BUILD","FULLPLAIN","MAINVERSIONLOOSE","PRERELEASELOOSE","LOOSEPLAIN","XRANGEIDENTIFIER","XRANGEIDENTIFIERLOOSE","GTLT","XRANGEPLAIN","XRANGEPLAINLOOSE","COERCE","LONETILDE","tildeTrimReplace","LONECARET","caretTrimReplace","comparatorTrimReplace","NODE_DEBUG","compareIdentifiers","SemVer","loose","includePrerelease","LOOSE","FULL","major","minor","prerelease","build","format","other","compareMain","comparePre","release","identifier","inc","addToUnscopables","defineIterator","setInternalState","iterated","kind","Arguments","PrototypeOfArrayIteratorPrototype","arrayIterator","NEW_ITERATOR_PROTOTYPE","CORRECT_PROTOTYPE_GETTER","ObjectPrototype","aPossiblePrototype","CORRECT_SETTER","FREEZING","METADATA","setMetadata","objectID","weakData","meta","REQUIRED","fastKey","getWeakData","onFreeze","isArrayIteratorMethod","getIteratorMethod","iteratorClose","Result","stopped","iterable","unboundFunction","iterFn","step","AS_ENTRIES","IS_ITERATOR","INTERRUPTED","stop","condition","callFn","TO_STRING_TAG_SUPPORT","classofRaw","CORRECT_ARGUMENTS","tryGet","callee","Constructor","CONVERT_TO_STRING","first","second","S","position","size","codeAt","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","ignoreCase","dotAll","unicode","loadState","app","elem","atob","OC","PasswordConfirmation","requiresPasswordConfirmation","requirePasswordConfirmation","memo","isOldIE","getTarget","styleTarget","HTMLIFrameElement","contentDocument","head","stylesInDom","getIndexByIdentifier","modulesToDom","idCountMap","identifiers","count","media","sourceMap","references","updater","addStyle","insertStyleElement","attributes","nonce","textStore","replaceText","applyToSingletonTag","styleSheet","cssNode","applyToTag","singleton","singletonCounter","styleIndex","removeStyleElement","newObj","lastIdentifiers","newList","newLastIdentifiers","_index","_slicedToArray","_arrayWithHoles","_arr","_iterableToArrayLimit","minLen","_arrayLikeToArray","_unsupportedIterableToArray","_nonIterableRest","arr2","_item","cssMapping","base64","sourceMapping","sourceURLs","sources","sourceRoot","cssWithMappingToString","mediaQuery","dedupe","alreadyImportedModules","_axios","_auth","client","requesttoken","getRequestToken","cancelableClient","CancelToken","isCancel","onRequestTokenUpdate","token","_default","getRootUrl","generateFilePath","imagePath","generateUrl","generateOcsUrl","generateRemoteUrl","linkTo","file","service","location","protocol","host","linkToRemoteBase","allOptions","escape","noRewrite","_build","vars","modRewriteWorking","isCore","coreApps","link","substring","appswebroots","encodeURI","webroot","getOwnPropertyDescriptorModule","getBuiltIn","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","integer","propertyKey","objectKeys","nativeAssign","B","chr","T","argumentsLength","Axios","mergeConfig","createInstance","defaultConfig","instance","axios","instanceConfig","promises","spread","isAxiosError","InterceptorManager","dispatchRequest","interceptors","chain","interceptor","fulfilled","rejected","getUri","eject","transformData","throwIfCancellationRequested","throwIfRequested","toJSON","description","fileName","lineNumber","columnNumber","stack","expires","secure","cookie","toGMTString","decodeURIComponent","isAbsoluteURL","combineURLs","requestedURL","relativeURL","ignoreDuplicateOf","parsed","line","substr","originURL","msie","urlParsingNode","resolveURL","href","search","hostname","port","pathname","requestURL","executor","resolvePromise","_requesttoken","_user","getCurrentUser","observers","_eventBus","tokenElement","getElementsByTagName","bus","ProxyBus","SimpleBus","packageJson","er","numeric","anum","bnum","rcompareIdentifiers","Map","$filter","HAS_SPECIES_SUPPORT","UNSCOPABLES","ArrayPrototype","collection","collectionStrong","InternalMetadataModule","iterate","anInstance","checkCorrectnessOfIteration","inheritIfRequired","CONSTRUCTOR_NAME","wrapper","IS_WEAK","ADDER","NativeConstructor","NativePrototype","exported","fixMethod","nativeMethod","getConstructor","HASNT_CHAINING","THROWS_ON_PRIMITIVES","ACCEPT_ITERABLES","BUGGY_ZERO","$instance","dummy","setStrong","preventExtensions","returnMethod","SAFE_CLOSING","iteratorWithReturn","SKIP_CLOSING","ITERATION_SUPPORT","Wrapper","NewTarget","NewTargetPrototype","redefineAll","setSpecies","internalStateGetterFor","define","previous","getEntry","prev","ITERATOR_NAME","getInternalCollectionState","getInternalIteratorState","point","DOMIterables","COLLECTION_NAME","Collection","CollectionPrototype","ArrayIteratorMethods","ArrayValues","displayName","isAdmin","uidElement","displayNameElement","isUserAdmin","$indexOf","nativeIndexOf","NEGATIVE_ZERO","searchElement","RE","RegExpPrototype","nativeToString","NOT_GENERIC","INCORRECT_NAME","rf","fixRegExpWellKnownSymbolLogic","advanceStringIndex","getSubstitution","regExpExec","REPLACE","maybeCallNative","REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE","REPLACE_KEEPS_$0","UNSAFE_SUBSTITUTE","searchValue","replaceValue","replacer","regexp","rx","functionalReplace","fullUnicode","results","accumulatedResult","nextSourcePosition","matched","captures","namedCaptures","groups","replacerArgs","regexpExec","REPLACE_SUPPORTS_NAMED_GROUPS","SPLIT_WORKS_WITH_OVERWRITTEN_EXEC","originalExec","SYMBOL","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","nativeRegExpMethod","arg2","forceStringMethod","stringMethod","regexMethod","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","tailPos","symbols","Timeout","clearFn","_id","_clearFn","scope","setInterval","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","clearImmediate","registerImmediate","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","MessageChannel","port1","port2","documentElement","script","attachEvent","task","newTab","theme","print","locals","scriptExports","functionalTemplate","injectStyles","moduleIdentifier","shadowMode","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","shadowRoot","_injectStyles","originalRender","_h","enabled","haveCodes","downloadUrl","downloadFilename","printCodes","used","total","generateBackupCodes","generatingCodes","Vuex","setEnabled","setTotal","setUsed","setCodes","codes","generate","post","resp","initialState","PersonalSettings"],"mappings":"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","file":"settings.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/js\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 168);\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n (function () { return this; })() || Function('return this')();\n","'use strict';\n\nvar bind = require('./helpers/bind');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {Object} val The value to test\n * @return {boolean} True if value is a plain Object, otherwise false\n */\nfunction isPlainObject(val) {\n if (toString.call(val) !== '[object Object]') {\n return false;\n }\n\n var prototype = Object.getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||\n navigator.product === 'NativeScript' ||\n navigator.product === 'NS')) {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n * @return {string} content value without BOM\n */\nfunction stripBOM(content) {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isPlainObject: isPlainObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim,\n stripBOM: stripBOM\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var fails = require('../internals/fails');\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","/*!\n * Vue.js v2.6.12\n * (c) 2014-2020 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// These helpers produce better VM code in JS engines due to their\n// explicitness and function inlining.\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive.\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value, e.g., [object Object].\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\nfunction isPromise (val) {\n return (\n isDef(val) &&\n typeof val.then === 'function' &&\n typeof val.catch === 'function'\n )\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if an attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array.\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether an object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it,\n * e.g., PhantomJS 1.x. Technically, we don't need this anymore\n * since native bind is now performant enough in most browsers.\n * But removing it would mean breaking code that was able to run in\n * PhantomJS 1.x, so this must be kept for backward compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/* eslint-disable no-unused-vars */\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/* eslint-enable no-unused-vars */\n\n/**\n * Return the same value.\n */\nvar identity = function (_) { return _; };\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (a instanceof Date && b instanceof Date) {\n return a.getTime() === b.getTime()\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\n/**\n * Return the first index at which a loosely equal value can be\n * found in the array (if value is a plain object, the array must\n * contain an object of the same shape), or -1 if it is not present.\n */\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured',\n 'serverPrefetch'\n];\n\n/* */\n\n\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Perform updates asynchronously. Intended to be used by Vue Test Utils\n * This will significantly reduce performance if set to false.\n */\n async: true,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n});\n\n/* */\n\n/**\n * unicode letters used for parsing html tags, component names and property paths.\n * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname\n * skipping \\u10000-\\uEFFFF due to it freezing up PhantomJS\n */\nvar unicodeRegExp = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = new RegExp((\"[^\" + (unicodeRegExp.source) + \".$_\\\\d]\"));\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\nvar isPhantomJS = UA && /phantomjs/.test(UA);\nvar isFF = UA && UA.match(/firefox\\/(\\d+)/);\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'] && global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = /*@__PURE__*/(function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm;\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n // subs aren't sorted in scheduler if not running async\n // we need to sort them now to make sure they fire in correct\n // order\n subs.sort(function (a, b) { return a.id - b.id; });\n }\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// The current target watcher being evaluated.\n// This is globally unique because only one watcher\n// can be evaluated at a time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (target) {\n targetStack.push(target);\n Dep.target = target;\n}\n\nfunction popTarget () {\n targetStack.pop();\n Dep.target = targetStack[targetStack.length - 1];\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n // #7975\n // clone children array to avoid mutating original in case of cloning\n // a child.\n vnode.children && vnode.children.slice(),\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.asyncMeta = vnode.asyncMeta;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n if (hasProto) {\n protoAugment(value, arrayMethods);\n } else {\n copyAugment(value, arrayMethods, arrayKeys);\n }\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through all properties and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive$$1(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment a target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment a target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive$$1 (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n var setter = property && property.set;\n if ((!getter || setter) && arguments.length === 2) {\n val = obj[key];\n }\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n // #7981: for accessor properties without setter\n if (getter && !setter) { return }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive$$1(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n\n var keys = hasSymbol\n ? Reflect.ownKeys(from)\n : Object.keys(from);\n\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n // in case the object is already observed...\n if (key === '__ob__') { continue }\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (\n toVal !== fromVal &&\n isPlainObject(toVal) &&\n isPlainObject(fromVal)\n ) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n var res = childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal;\n return res\n ? dedupeHooks(res)\n : res\n}\n\nfunction dedupeHooks (hooks) {\n var res = [];\n for (var i = 0; i < hooks.length; i++) {\n if (res.indexOf(hooks[i]) === -1) {\n res.push(hooks[i]);\n }\n }\n return res\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!new RegExp((\"^[a-zA-Z][\\\\-\\\\.0-9_\" + (unicodeRegExp.source) + \"]*$\")).test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'should conform to valid custom element name in html5 specification.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def$$1 = dirs[key];\n if (typeof def$$1 === 'function') {\n dirs[key] = { bind: def$$1, update: def$$1 };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n\n // Apply extends and mixins on the child options,\n // but only if it is a raw options object that isn't\n // the result of another mergeOptions call.\n // Only merged options has the _base property.\n if (!child._base) {\n if (child.extends) {\n parent = mergeOptions(parent, child.extends, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n }\n\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\n\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false)\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n\n if (!valid) {\n warn(\n getInvalidTypeMessage(name, value, expectedTypes),\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\nfunction getInvalidTypeMessage (name, value, expectedTypes) {\n var message = \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', '));\n var expectedType = expectedTypes[0];\n var receivedType = toRawType(value);\n var expectedValue = styleValue(value, expectedType);\n var receivedValue = styleValue(value, receivedType);\n // check if we need to specify expected value\n if (expectedTypes.length === 1 &&\n isExplicable(expectedType) &&\n !isBoolean(expectedType, receivedType)) {\n message += \" with value \" + expectedValue;\n }\n message += \", got \" + receivedType + \" \";\n // check if we need to specify received value\n if (isExplicable(receivedType)) {\n message += \"with value \" + receivedValue + \".\";\n }\n return message\n}\n\nfunction styleValue (value, type) {\n if (type === 'String') {\n return (\"\\\"\" + value + \"\\\"\")\n } else if (type === 'Number') {\n return (\"\" + (Number(value)))\n } else {\n return (\"\" + value)\n }\n}\n\nfunction isExplicable (value) {\n var explicitTypes = ['string', 'number', 'boolean'];\n return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })\n}\n\nfunction isBoolean () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n // Deactivate deps tracking while processing error handler to avoid possible infinite rendering.\n // See: https://github.com/vuejs/vuex/issues/1505\n pushTarget();\n try {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n } finally {\n popTarget();\n }\n}\n\nfunction invokeWithErrorHandling (\n handler,\n context,\n args,\n vm,\n info\n) {\n var res;\n try {\n res = args ? handler.apply(context, args) : handler.call(context);\n if (res && !res._isVue && isPromise(res) && !res._handled) {\n res.catch(function (e) { return handleError(e, vm, info + \" (Promise/async)\"); });\n // issue #9511\n // avoid catch triggering multiple times when nested calls\n res._handled = true;\n }\n } catch (e) {\n handleError(e, vm, info);\n }\n return res\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n // if the user intentionally throws the original error in the handler,\n // do not log it twice\n if (e !== err) {\n logError(e, null, 'config.errorHandler');\n }\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n\nvar isUsingMicroTask = false;\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using microtasks.\n// In 2.5 we used (macro) tasks (in combination with microtasks).\n// However, it has subtle problems when state is changed right before repaint\n// (e.g. #6813, out-in transitions).\n// Also, using (macro) tasks in event handler would cause some weird behaviors\n// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).\n// So we now use microtasks everywhere, again.\n// A major drawback of this tradeoff is that there are some scenarios\n// where microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690, which have workarounds)\n// or even between bubbling of the same event (#6566).\nvar timerFunc;\n\n// The nextTick behavior leverages the microtask queue, which can be accessed\n// via either native Promise.then or MutationObserver.\n// MutationObserver has wider support, however it is seriously bugged in\n// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It\n// completely stops working after triggering a few times... so, if native\n// Promise is available, we will use it:\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n timerFunc = function () {\n p.then(flushCallbacks);\n // In problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n isUsingMicroTask = true;\n} else if (!isIE && typeof MutationObserver !== 'undefined' && (\n isNative(MutationObserver) ||\n // PhantomJS and iOS 7.x\n MutationObserver.toString() === '[object MutationObserverConstructor]'\n)) {\n // Use MutationObserver where native Promise is not available,\n // e.g. PhantomJS, iOS7, Android 4.4\n // (#6466 MutationObserver is unreliable in IE11)\n var counter = 1;\n var observer = new MutationObserver(flushCallbacks);\n var textNode = document.createTextNode(String(counter));\n observer.observe(textNode, {\n characterData: true\n });\n timerFunc = function () {\n counter = (counter + 1) % 2;\n textNode.data = String(counter);\n };\n isUsingMicroTask = true;\n} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n // Fallback to setImmediate.\n // Technically it leverages the (macro) task queue,\n // but it is still a better choice than setTimeout.\n timerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else {\n // Fallback to setTimeout.\n timerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n timerFunc();\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var warnReservedPrefix = function (target, key) {\n warn(\n \"Property \\\"\" + key + \"\\\" must be accessed with \\\"$data.\" + key + \"\\\" because \" +\n 'properties starting with \"$\" or \"_\" are not proxied in the Vue instance to ' +\n 'prevent conflicts with Vue internals. ' +\n 'See: https://vuejs.org/v2/api/#data',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) ||\n (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));\n if (!has && !isAllowed) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n // perf.clearMeasures(name)\n };\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns, vm) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n invokeWithErrorHandling(cloned[i], null, arguments$1, vm, \"v-on handler\");\n }\n } else {\n // return handler return value for single handlers\n return invokeWithErrorHandling(fns, null, arguments, vm, \"v-on handler\")\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n createOnceHandler,\n vm\n) {\n var name, def$$1, cur, old, event;\n for (name in on) {\n def$$1 = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur, vm);\n }\n if (isTrue(event.once)) {\n cur = on[name] = createOnceHandler(event.name, cur, event.capture);\n }\n add(event.name, cur, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive$$1(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject)\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n // #6574 in case the inject object is observed...\n if (key === '__ob__') { continue }\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n if (!children || !children.length) {\n return {}\n }\n var slots = {};\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\n/* */\n\nfunction normalizeScopedSlots (\n slots,\n normalSlots,\n prevSlots\n) {\n var res;\n var hasNormalSlots = Object.keys(normalSlots).length > 0;\n var isStable = slots ? !!slots.$stable : !hasNormalSlots;\n var key = slots && slots.$key;\n if (!slots) {\n res = {};\n } else if (slots._normalized) {\n // fast path 1: child component re-render only, parent did not change\n return slots._normalized\n } else if (\n isStable &&\n prevSlots &&\n prevSlots !== emptyObject &&\n key === prevSlots.$key &&\n !hasNormalSlots &&\n !prevSlots.$hasNormal\n ) {\n // fast path 2: stable scoped slots w/ no normal slots to proxy,\n // only need to normalize once\n return prevSlots\n } else {\n res = {};\n for (var key$1 in slots) {\n if (slots[key$1] && key$1[0] !== '$') {\n res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]);\n }\n }\n }\n // expose normal slots on scopedSlots\n for (var key$2 in normalSlots) {\n if (!(key$2 in res)) {\n res[key$2] = proxyNormalSlot(normalSlots, key$2);\n }\n }\n // avoriaz seems to mock a non-extensible $scopedSlots object\n // and when that is passed down this would cause an error\n if (slots && Object.isExtensible(slots)) {\n (slots)._normalized = res;\n }\n def(res, '$stable', isStable);\n def(res, '$key', key);\n def(res, '$hasNormal', hasNormalSlots);\n return res\n}\n\nfunction normalizeScopedSlot(normalSlots, key, fn) {\n var normalized = function () {\n var res = arguments.length ? fn.apply(null, arguments) : fn({});\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res);\n return res && (\n res.length === 0 ||\n (res.length === 1 && res[0].isComment) // #9658\n ) ? undefined\n : res\n };\n // this is a slot using the new v-slot syntax without scope. although it is\n // compiled as a scoped slot, render fn users would expect it to be present\n // on this.$slots because the usage is semantically a normal slot.\n if (fn.proxy) {\n Object.defineProperty(normalSlots, key, {\n get: normalized,\n enumerable: true,\n configurable: true\n });\n }\n return normalized\n}\n\nfunction proxyNormalSlot(slots, key) {\n return function () { return slots[key]; }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n if (hasSymbol && val[Symbol.iterator]) {\n ret = [];\n var iterator = val[Symbol.iterator]();\n var result = iterator.next();\n while (!result.done) {\n ret.push(render(result.value, ret.length));\n result = iterator.next();\n }\n } else {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n }\n if (!isDef(ret)) {\n ret = [];\n }\n (ret)._isVList = true;\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n nodes = this.$slots[name] || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n var camelizedKey = camelize(key);\n var hyphenatedKey = hyphenate(key);\n if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res,\n // the following are added in 2.6\n hasDynamicKeys,\n contentHashKey\n) {\n res = res || { $stable: !hasDynamicKeys };\n for (var i = 0; i < fns.length; i++) {\n var slot = fns[i];\n if (Array.isArray(slot)) {\n resolveScopedSlots(slot, res, hasDynamicKeys);\n } else if (slot) {\n // marker for reverse proxying v-slot without scope on this.$slots\n if (slot.proxy) {\n slot.fn.proxy = true;\n }\n res[slot.key] = slot.fn;\n }\n }\n if (contentHashKey) {\n (res).$key = contentHashKey;\n }\n return res\n}\n\n/* */\n\nfunction bindDynamicKeys (baseObj, values) {\n for (var i = 0; i < values.length; i += 2) {\n var key = values[i];\n if (typeof key === 'string' && key) {\n baseObj[values[i]] = values[i + 1];\n } else if (process.env.NODE_ENV !== 'production' && key !== '' && key !== null) {\n // null is a special value for explicitly removing a binding\n warn(\n (\"Invalid value for dynamic directive argument (expected string or null): \" + key),\n this\n );\n }\n }\n return baseObj\n}\n\n// helper to dynamically append modifier runtime markers to event names.\n// ensure only append when value is already string, otherwise it will be cast\n// to string and cause the type check to miss.\nfunction prependModifier (value, symbol) {\n return typeof value === 'string' ? symbol + value : value\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n target._d = bindDynamicKeys;\n target._p = prependModifier;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var this$1 = this;\n\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () {\n if (!this$1.$slots) {\n normalizeScopedSlots(\n data.scopedSlots,\n this$1.$slots = resolveSlots(children, parent)\n );\n }\n return this$1.$slots\n };\n\n Object.defineProperty(this, 'scopedSlots', ({\n enumerable: true,\n get: function get () {\n return normalizeScopedSlots(data.scopedSlots, this.slots())\n }\n }));\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots);\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (process.env.NODE_ENV !== 'production') {\n (clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext;\n }\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (vnode, hydrating) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent // activeInstance in lifecycle state\n) {\n var options = {\n _isComponent: true,\n _parentVnode: vnode,\n parent: parent\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n var existing = hooks[key];\n var toMerge = componentVNodeHooks[key];\n if (existing !== toMerge && !(existing && existing._merged)) {\n hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge;\n }\n }\n}\n\nfunction mergeHook$1 (f1, f2) {\n var merged = function (a, b) {\n // flow complains about extra args which is why we use any\n f1(a, b);\n f2(a, b);\n };\n merged._merged = true;\n return merged\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input'\n ;(data.attrs || (data.attrs = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n var existing = on[event];\n var callback = data.model.callback;\n if (isDef(existing)) {\n if (\n Array.isArray(existing)\n ? existing.indexOf(callback) === -1\n : existing !== callback\n ) {\n on[event] = [callback].concat(existing);\n }\n } else {\n on[event] = callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n if (process.env.NODE_ENV !== 'production' && isDef(data) && isDef(data.nativeOn)) {\n warn(\n (\"The .native modifier for v-on is only valid on components but it was used on <\" + tag + \">.\"),\n context\n );\n }\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nvar currentRenderingInstance = null;\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n if (_parentVnode) {\n vm.$scopedSlots = normalizeScopedSlots(\n _parentVnode.data.scopedSlots,\n vm.$slots,\n vm.$scopedSlots\n );\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n // There's no need to maintain a stack because all render fns are called\n // separately from one another. Nested component's render fns are called\n // when parent component is patched.\n currentRenderingInstance = vm;\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production' && vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } finally {\n currentRenderingInstance = null;\n }\n // if the returned array contains only a single node, allow it\n if (Array.isArray(vnode) && vnode.length === 1) {\n vnode = vnode[0];\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n var owner = currentRenderingInstance;\n if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n // already pending\n factory.owners.push(owner);\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (owner && !isDef(factory.owners)) {\n var owners = factory.owners = [owner];\n var sync = true;\n var timerLoading = null;\n var timerTimeout = null\n\n ;(owner).$on('hook:destroyed', function () { return remove(owners, owner); });\n\n var forceRender = function (renderCompleted) {\n for (var i = 0, l = owners.length; i < l; i++) {\n (owners[i]).$forceUpdate();\n }\n\n if (renderCompleted) {\n owners.length = 0;\n if (timerLoading !== null) {\n clearTimeout(timerLoading);\n timerLoading = null;\n }\n if (timerTimeout !== null) {\n clearTimeout(timerTimeout);\n timerTimeout = null;\n }\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender(true);\n } else {\n owners.length = 0;\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender(true);\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (isPromise(res)) {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isPromise(res.component)) {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n timerLoading = setTimeout(function () {\n timerLoading = null;\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender(false);\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n timerTimeout = setTimeout(function () {\n timerTimeout = null;\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn) {\n target.$on(event, fn);\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction createOnceHandler (event, fn) {\n var _target = target;\n return function onceHandler () {\n var res = fn.apply(null, arguments);\n if (res !== null) {\n _target.$off(event, onceHandler);\n }\n }\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n vm.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i$1 = 0, l = event.length; i$1 < l; i$1++) {\n vm.$off(event[i$1], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n // specific handler\n var cb;\n var i = cbs.length;\n while (i--) {\n cb = cbs[i];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i, 1);\n break\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n var info = \"event handler for \\\"\" + event + \"\\\"\";\n for (var i = 0, l = cbs.length; i < l; i++) {\n invokeWithErrorHandling(cbs[i], vm, args, vm, info);\n }\n }\n return vm\n };\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction setActiveInstance(vm) {\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n return function () {\n activeInstance = prevActiveInstance;\n }\n}\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var restoreActiveInstance = setActiveInstance(vm);\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */);\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n restoreActiveInstance();\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, {\n before: function before () {\n if (vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'beforeUpdate');\n }\n }\n }, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren.\n\n // check if there are dynamic scopedSlots (hand-written or compiled but with\n // dynamic slot names). Static scoped slots compiled from template has the\n // \"$stable\" marker.\n var newScopedSlots = parentVnode.data.scopedSlots;\n var oldScopedSlots = vm.$scopedSlots;\n var hasDynamicScopedSlot = !!(\n (newScopedSlots && !newScopedSlots.$stable) ||\n (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||\n (newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key)\n );\n\n // Any static slot children from the parent may have changed during parent's\n // update. Dynamic scoped slots may also have changed. In such cases, a forced\n // update is necessary to ensure correctness.\n var needsForceUpdate = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n hasDynamicScopedSlot\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (needsForceUpdate) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n var info = hook + \" hook\";\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n invokeWithErrorHandling(handlers[i], vm, null, vm, info);\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n// Async edge case #6566 requires saving the timestamp when event listeners are\n// attached. However, calling performance.now() has a perf overhead especially\n// if the page has thousands of event listeners. Instead, we take a timestamp\n// every time the scheduler flushes and use that for all event listeners\n// attached during that flush.\nvar currentFlushTimestamp = 0;\n\n// Async edge case fix requires storing an event listener's attach timestamp.\nvar getNow = Date.now;\n\n// Determine what event timestamp the browser is using. Annoyingly, the\n// timestamp can either be hi-res (relative to page load) or low-res\n// (relative to UNIX epoch), so in order to compare time we have to use the\n// same timestamp type when saving the flush timestamp.\n// All IE versions use low-res event timestamps, and have problematic clock\n// implementations (#9632)\nif (inBrowser && !isIE) {\n var performance = window.performance;\n if (\n performance &&\n typeof performance.now === 'function' &&\n getNow() > document.createEvent('Event').timeStamp\n ) {\n // if the event timestamp, although evaluated AFTER the Date.now(), is\n // smaller than it, it means the event is using a hi-res timestamp,\n // and we need to use the hi-res version for event listener timestamps as\n // well.\n getNow = function () { return performance.now(); };\n }\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n currentFlushTimestamp = getNow();\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n if (watcher.before) {\n watcher.before();\n }\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n flushSchedulerQueue();\n return\n }\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\n\n\nvar uid$2 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n this.before = options.before;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$2; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = noop;\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var i = this.deps.length;\n while (i--) {\n var dep = this.deps[i];\n if (!this.newDepIds.has(dep.id)) {\n dep.removeSub(this);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var i = this.deps.length;\n while (i--) {\n this.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this.deps[i].removeSub(this);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive$$1(props, key, value, function () {\n if (!isRoot && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive$$1(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : createGetterInvoker(userDef);\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : createGetterInvoker(userDef.get)\n : noop;\n sharedPropertyDefinition.set = userDef.set || noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction createGetterInvoker(fn) {\n return function computedGetter () {\n return fn.call(this, this)\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (typeof methods[key] !== 'function') {\n warn(\n \"Method \\\"\" + key + \"\\\" has type \\\"\" + (typeof methods[key]) + \"\\\" in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function () {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n try {\n cb.call(vm, watcher.value);\n } catch (error) {\n handleError(error, vm, (\"callback for immediate watcher \\\"\" + (watcher.expression) + \"\\\"\"));\n }\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = latest[key];\n }\n }\n return modified\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\n\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n for (var key in this.cache) {\n pruneCacheEntry(this.cache, key, this.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n};\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n};\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive$$1\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n // 2.6 explicit observable API\n Vue.observable = function (obj) {\n observe(obj);\n return obj\n };\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.6.12';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isValidContentEditableValue = makeMap('events,caret,typing,plaintext-only');\n\nvar convertEnumeratedValue = function (key, value) {\n return isFalsyAttrValue(value) || value === 'false'\n ? 'false'\n // allow arbitrary string value for contenteditable\n : key === 'contenteditable' && isValidContentEditableValue(value)\n ? value\n : 'true'\n};\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\nvar nodeOps = /*#__PURE__*/Object.freeze({\n createElement: createElement$1,\n createElementNS: createElementNS,\n createTextNode: createTextNode,\n createComment: createComment,\n insertBefore: insertBefore,\n removeChild: removeChild,\n appendChild: appendChild,\n parentNode: parentNode,\n nextSibling: nextSibling,\n tagName: tagName,\n setTextContent: setTextContent,\n setStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n};\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove$$1 () {\n if (--remove$$1.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove$$1.listeners = listeners;\n return remove$$1\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n insert(parentElm, vnode.elm, refElm);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (nodeOps.parentNode(ref$$1) === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (\n oldVnode,\n vnode,\n insertedVnodeQueue,\n ownerArray,\n index,\n removeOnly\n ) {\n if (oldVnode === vnode) {\n return\n }\n\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // clone reused vnode\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(ch);\n }\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, null, null, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm)) {\n removeVnodes([oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n};\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n dir.oldArg = oldDir.arg;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n];\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, convertEnumeratedValue(key, value));\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && value !== '' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n};\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n};\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler$1 (event, handler, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\n// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp\n// implementation and does not fire microtasks in between event propagation, so\n// safe to exclude.\nvar useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);\n\nfunction add$1 (\n name,\n handler,\n capture,\n passive\n) {\n // async edge case #6566: inner click event triggers patch, event handler\n // attached to outer element during patch, and triggered again. This\n // happens because browsers fire microtask ticks between event propagation.\n // the solution is simple: we save the timestamp when a handler is attached,\n // and the handler would only fire if the event passed to it was fired\n // AFTER it was attached.\n if (useMicrotaskFix) {\n var attachedTimestamp = currentFlushTimestamp;\n var original = handler;\n handler = original._wrapper = function (e) {\n if (\n // no bubbling, should always fire.\n // this is just a safety net in case event.timeStamp is unreliable in\n // certain weird environments...\n e.target === e.currentTarget ||\n // event is fired after handler attachment\n e.timeStamp >= attachedTimestamp ||\n // bail for environments that have buggy event.timeStamp implementations\n // #9462 iOS 9 bug: event.timeStamp is 0 after history.pushState\n // #9681 QtWebEngine event.timeStamp is negative value\n e.timeStamp <= 0 ||\n // #9448 bail if event is fired in another document in a multi-page\n // electron/nw.js app, since event.timeStamp will be using a different\n // starting reference\n e.target.ownerDocument !== document\n ) {\n return original.apply(this, arguments)\n }\n };\n }\n target$1.addEventListener(\n name,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n name,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n name,\n handler._wrapper || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, createOnceHandler$1, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n};\n\n/* */\n\nvar svgContainer;\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (!(key in props)) {\n elm[key] = '';\n }\n }\n\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value' && elm.tagName !== 'PROGRESS') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else if (key === 'innerHTML' && isSVG(elm.tagName) && isUndef(elm.innerHTML)) {\n // IE doesn't support innerHTML for SVG elements\n svgContainer = svgContainer || document.createElement('div');\n svgContainer.innerHTML = \"<svg>\" + cur + \"</svg>\";\n var svg = svgContainer.firstChild;\n while (elm.firstChild) {\n elm.removeChild(elm.firstChild);\n }\n while (svg.firstChild) {\n elm.appendChild(svg.firstChild);\n }\n } else if (\n // skip the update if old and new VDOM state is the same.\n // `value` is handled separately because the DOM value may be temporarily\n // out of sync with VDOM state due to focus, composition and modifiers.\n // This #4521 by skipping the unnecessary `checked` update.\n cur !== oldProps[key]\n ) {\n // some property updates can throw\n // e.g. `value` on <progress> w/ non-finite value\n try {\n elm[key] = cur;\n } catch (e) {}\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n};\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(hyphenate(name), val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n};\n\n/* */\n\nvar whitespaceRE = /\\s+/;\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def$$1) {\n if (!def$$1) {\n return\n }\n /* istanbul ignore else */\n if (typeof def$$1 === 'object') {\n var res = {};\n if (def$$1.css !== false) {\n extend(res, autoCssTransition(def$$1.name || 'v'));\n }\n extend(res, def$$1);\n return res\n } else if (typeof def$$1 === 'string') {\n return autoCssTransition(def$$1)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n // JSDOM may return undefined for transition properties\n var transitionDelays = (styles[transitionProp + 'Delay'] || '').split(', ');\n var transitionDurations = (styles[transitionProp + 'Duration'] || '').split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = (styles[animationProp + 'Delay'] || '').split(', ');\n var animationDurations = (styles[animationProp + 'Duration'] || '').split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\n// Old versions of Chromium (below 61.0.3163.100) formats floating pointer numbers\n// in a locale-dependent way, using a comma instead of a dot.\n// If comma is not replaced with a dot, the input will be rounded down (i.e. acting\n// as a floor function) causing unexpected behaviors\nfunction toMs (s) {\n return Number(s.slice(0, -1).replace(',', '.')) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n context = transitionNode.context;\n transitionNode = transitionNode.parent;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show && el.parentNode) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {};\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n];\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n};\n\nvar platformDirectives = {\n model: directive,\n show: show\n};\n\n/* */\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar isNotTextNode = function (c) { return c.tag || isAsyncPlaceholder(c); };\n\nvar isVShowDirective = function (d) { return d.name === 'show'; };\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(isNotTextNode);\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(isVShowDirective)) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n};\n\n/* */\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n beforeMount: function beforeMount () {\n var this$1 = this;\n\n var update = this._update;\n this._update = function (vnode, hydrating) {\n var restoreActiveInstance = setActiveInstance(this$1);\n // force removing pass\n this$1.__patch__(\n this$1._vnode,\n this$1.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this$1._vnode = this$1.kept;\n restoreActiveInstance();\n update.call(this$1, vnode, hydrating);\n };\n },\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (e && e.target !== el) {\n return\n }\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n};\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n};\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test'\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nexport default Vue;\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n var state;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) {\n createNonEnumerableProperty(value, 'name', key);\n }\n state = enforceInternalState(value);\n if (!state.source) {\n state.source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.es/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.es/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","module.exports = {};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar shared = require('../internals/shared-store');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = shared.state || (shared.state = new WeakMap());\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n metadata.facade = it;\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n metadata.facade = it;\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.es/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","// Note: this is the semver.org version of the spec that it implements\n// Not necessarily the package version of this code.\nconst SEMVER_SPEC_VERSION = '2.0.0'\n\nconst MAX_LENGTH = 256\nconst MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n /* istanbul ignore next */ 9007199254740991\n\n// Max safe segment length for coercion.\nconst MAX_SAFE_COMPONENT_LENGTH = 16\n\nmodule.exports = {\n SEMVER_SPEC_VERSION,\n MAX_LENGTH,\n MAX_SAFE_INTEGER,\n MAX_SAFE_COMPONENT_LENGTH\n}\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.es/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","'use strict';\nvar regexpFlags = require('./regexp-flags');\nvar stickyHelpers = require('./regexp-sticky-helpers');\n\nvar nativeExec = RegExp.prototype.exec;\n// This always refers to the native implementation, because the\n// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,\n// which loads this file before patching the method.\nvar nativeReplace = String.prototype.replace;\n\nvar patchedExec = nativeExec;\n\nvar UPDATES_LAST_INDEX_WRONG = (function () {\n var re1 = /a/;\n var re2 = /b*/g;\n nativeExec.call(re1, 'a');\n nativeExec.call(re2, 'a');\n return re1.lastIndex !== 0 || re2.lastIndex !== 0;\n})();\n\nvar UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET;\n\n// nonparticipating capturing group, copied from es5-shim's String#split patch.\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\n\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y;\n\nif (PATCH) {\n patchedExec = function exec(str) {\n var re = this;\n var lastIndex, reCopy, match, i;\n var sticky = UNSUPPORTED_Y && re.sticky;\n var flags = regexpFlags.call(re);\n var source = re.source;\n var charsAdded = 0;\n var strCopy = str;\n\n if (sticky) {\n flags = flags.replace('y', '');\n if (flags.indexOf('g') === -1) {\n flags += 'g';\n }\n\n strCopy = String(str).slice(re.lastIndex);\n // Support anchored sticky behavior.\n if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\\n')) {\n source = '(?: ' + source + ')';\n strCopy = ' ' + strCopy;\n charsAdded++;\n }\n // ^(? + rx + ) is needed, in combination with some str slicing, to\n // simulate the 'y' flag.\n reCopy = new RegExp('^(?:' + source + ')', flags);\n }\n\n if (NPCG_INCLUDED) {\n reCopy = new RegExp('^' + source + '$(?!\\\\s)', flags);\n }\n if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;\n\n match = nativeExec.call(sticky ? reCopy : re, strCopy);\n\n if (sticky) {\n if (match) {\n match.input = match.input.slice(charsAdded);\n match[0] = match[0].slice(charsAdded);\n match.index = re.lastIndex;\n re.lastIndex += match[0].length;\n } else re.lastIndex = 0;\n } else if (UPDATES_LAST_INDEX_WRONG && match) {\n re.lastIndex = re.global ? match.index + match[0].length : lastIndex;\n }\n if (NPCG_INCLUDED && match && match.length > 1) {\n // Fix browsers whose `exec` methods don't consistently return `undefined`\n // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/\n nativeReplace.call(match[0], reCopy, function () {\n for (i = 1; i < arguments.length - 2; i++) {\n if (arguments[i] === undefined) match[i] = undefined;\n }\n });\n }\n\n return match;\n };\n}\n\nmodule.exports = patchedExec;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/cssWithMappingToString.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"\\n.backup-code[data-v-00d0b868] {\\n\\tfont-family: monospace;\\n\\tletter-spacing: 0.02em;\\n\\tfont-size: 1.2em;\\n}\\n.button[data-v-00d0b868] {\\n\\tdisplay: inline-block;\\n}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/twofactor_backupcodes/src/views/PersonalSettings.vue\"],\"names\":[],\"mappings\":\";AAyHA;CACA,sBAAA;CACA,sBAAA;CACA,gBAAA;AACA;AACA;CACA,qBAAA;AACA\",\"sourcesContent\":[\"<template>\\n\\t<div>\\n\\t\\t<button v-if=\\\"!enabled\\\"\\n\\t\\t\\tid=\\\"generate-backup-codes\\\"\\n\\t\\t\\t:disabled=\\\"generatingCodes\\\"\\n\\t\\t\\t@click=\\\"generateBackupCodes\\\">\\n\\t\\t\\t{{ t('twofactor_backupcodes', 'Generate backup codes') }}\\n\\t\\t\\t<span :class=\\\"{'icon-loading-small': generatingCodes}\\\" />\\n\\t\\t</button>\\n\\t\\t<template v-else>\\n\\t\\t\\t<p>\\n\\t\\t\\t\\t<template v-if=\\\"!haveCodes\\\">\\n\\t\\t\\t\\t\\t{{ t('twofactor_backupcodes', 'Backup codes have been generated. {used} of {total} codes have been used.', {used, total}) }}\\n\\t\\t\\t\\t</template>\\n\\t\\t\\t\\t<template v-else>\\n\\t\\t\\t\\t\\t{{ t('twofactor_backupcodes', 'These are your backup codes. Please save and/or print them as you will not be able to read the codes again later') }}\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t<li v-for=\\\"code in codes\\\" :key=\\\"code\\\" class=\\\"backup-code\\\">\\n\\t\\t\\t\\t\\t\\t\\t{{ code }}\\n\\t\\t\\t\\t\\t\\t</li>\\n\\t\\t\\t\\t\\t</ul>\\n\\t\\t\\t\\t\\t<a :href=\\\"downloadUrl\\\"\\n\\t\\t\\t\\t\\t\\tclass=\\\"button primary\\\"\\n\\t\\t\\t\\t\\t\\t:download=\\\"downloadFilename\\\">{{ t('twofactor_backupcodes', 'Save backup codes') }}</a>\\n\\t\\t\\t\\t\\t<button class=\\\"button\\\"\\n\\t\\t\\t\\t\\t\\t@click=\\\"printCodes\\\">\\n\\t\\t\\t\\t\\t\\t{{ t('twofactor_backupcodes', 'Print backup codes') }}\\n\\t\\t\\t\\t\\t</button>\\n\\t\\t\\t\\t</template>\\n\\t\\t\\t</p>\\n\\t\\t\\t<p>\\n\\t\\t\\t\\t<button id=\\\"generate-backup-codes\\\"\\n\\t\\t\\t\\t\\t@click=\\\"generateBackupCodes\\\">\\n\\t\\t\\t\\t\\t{{ t('twofactor_backupcodes', 'Regenerate backup codes') }}\\n\\t\\t\\t\\t</button>\\n\\t\\t\\t</p>\\n\\t\\t\\t<p>\\n\\t\\t\\t\\t<em>\\n\\t\\t\\t\\t\\t{{ t('twofactor_backupcodes', 'If you regenerate backup codes, you automatically invalidate old codes.') }}\\n\\t\\t\\t\\t</em>\\n\\t\\t\\t</p>\\n\\t\\t</template>\\n\\t</div>\\n</template>\\n\\n<script>\\nimport confirmPassword from '@nextcloud/password-confirmation'\\nimport { print } from '../service/PrintService'\\n\\nexport default {\\n\\tname: 'PersonalSettings',\\n\\tdata() {\\n\\t\\treturn {\\n\\t\\t\\tgeneratingCodes: false,\\n\\t\\t}\\n\\t},\\n\\tcomputed: {\\n\\t\\tdownloadUrl() {\\n\\t\\t\\tif (!this.codes) {\\n\\t\\t\\t\\treturn ''\\n\\t\\t\\t}\\n\\t\\t\\treturn 'data:text/plain,' + encodeURIComponent(this.codes.reduce((prev, code) => {\\n\\t\\t\\t\\treturn prev + code + '\\\\r\\\\n'\\n\\t\\t\\t}, ''))\\n\\t\\t},\\n\\t\\tdownloadFilename() {\\n\\t\\t\\tconst name = OC.theme.name || 'Nextcloud'\\n\\t\\t\\treturn name + '-backup-codes.txt'\\n\\t\\t},\\n\\t\\tenabled() {\\n\\t\\t\\treturn this.$store.state.enabled\\n\\t\\t},\\n\\t\\ttotal() {\\n\\t\\t\\treturn this.$store.state.total\\n\\t\\t},\\n\\t\\tused() {\\n\\t\\t\\treturn this.$store.state.used\\n\\t\\t},\\n\\t\\tcodes() {\\n\\t\\t\\treturn this.$store.state.codes\\n\\t\\t},\\n\\t\\tname() {\\n\\t\\t\\treturn OC.theme.name || 'Nextcloud'\\n\\t\\t},\\n\\t\\thaveCodes() {\\n\\t\\t\\treturn this.codes && this.codes.length > 0\\n\\t\\t},\\n\\t},\\n\\tmethods: {\\n\\t\\tgenerateBackupCodes() {\\n\\t\\t\\tconfirmPassword().then(() => {\\n\\t\\t\\t\\t// Hide old codes\\n\\t\\t\\t\\tthis.generatingCodes = true\\n\\n\\t\\t\\t\\tthis.$store.dispatch('generate').then(data => {\\n\\t\\t\\t\\t\\tthis.generatingCodes = false\\n\\t\\t\\t\\t}).catch(err => {\\n\\t\\t\\t\\t\\tOC.Notification.showTemporary(t('twofactor_backupcodes', 'An error occurred while generating your backup codes'))\\n\\t\\t\\t\\t\\tthis.generatingCodes = false\\n\\t\\t\\t\\t\\tthrow err\\n\\t\\t\\t\\t})\\n\\t\\t\\t}).catch(console.error.bind(this))\\n\\t\\t},\\n\\n\\t\\tgetPrintData(codes) {\\n\\t\\t\\tif (!codes) {\\n\\t\\t\\t\\treturn ''\\n\\t\\t\\t}\\n\\t\\t\\treturn codes.reduce((prev, code) => {\\n\\t\\t\\t\\treturn prev + code + '<br>'\\n\\t\\t\\t}, '')\\n\\t\\t},\\n\\n\\t\\tprintCodes() {\\n\\t\\t\\tprint(this.getPrintData(this.codes))\\n\\t\\t},\\n\\t},\\n}\\n</script>\\n\\n<style scoped>\\n\\t.backup-code {\\n\\t\\tfont-family: monospace;\\n\\t\\tletter-spacing: 0.02em;\\n\\t\\tfont-size: 1.2em;\\n\\t}\\n\\t.button {\\n\\t\\tdisplay: inline-block;\\n\\t}\\n</style>\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","/*!\n * vuex v3.6.2\n * (c) 2021 Evan You\n * @license MIT\n */\nfunction applyMixin (Vue) {\n var version = Number(Vue.version.split('.')[0]);\n\n if (version >= 2) {\n Vue.mixin({ beforeCreate: vuexInit });\n } else {\n // override init and inject vuex init procedure\n // for 1.x backwards compatibility.\n var _init = Vue.prototype._init;\n Vue.prototype._init = function (options) {\n if ( options === void 0 ) options = {};\n\n options.init = options.init\n ? [vuexInit].concat(options.init)\n : vuexInit;\n _init.call(this, options);\n };\n }\n\n /**\n * Vuex init hook, injected into each instances init hooks list.\n */\n\n function vuexInit () {\n var options = this.$options;\n // store injection\n if (options.store) {\n this.$store = typeof options.store === 'function'\n ? options.store()\n : options.store;\n } else if (options.parent && options.parent.$store) {\n this.$store = options.parent.$store;\n }\n }\n}\n\nvar target = typeof window !== 'undefined'\n ? window\n : typeof global !== 'undefined'\n ? global\n : {};\nvar devtoolHook = target.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\nfunction devtoolPlugin (store) {\n if (!devtoolHook) { return }\n\n store._devtoolHook = devtoolHook;\n\n devtoolHook.emit('vuex:init', store);\n\n devtoolHook.on('vuex:travel-to-state', function (targetState) {\n store.replaceState(targetState);\n });\n\n store.subscribe(function (mutation, state) {\n devtoolHook.emit('vuex:mutation', mutation, state);\n }, { prepend: true });\n\n store.subscribeAction(function (action, state) {\n devtoolHook.emit('vuex:action', action, state);\n }, { prepend: true });\n}\n\n/**\n * Get the first item that pass the test\n * by second argument function\n *\n * @param {Array} list\n * @param {Function} f\n * @return {*}\n */\nfunction find (list, f) {\n return list.filter(f)[0]\n}\n\n/**\n * Deep copy the given object considering circular structure.\n * This function caches all nested objects and its copies.\n * If it detects circular structure, use cached copy to avoid infinite loop.\n *\n * @param {*} obj\n * @param {Array<Object>} cache\n * @return {*}\n */\nfunction deepCopy (obj, cache) {\n if ( cache === void 0 ) cache = [];\n\n // just return if obj is immutable value\n if (obj === null || typeof obj !== 'object') {\n return obj\n }\n\n // if obj is hit, it is in circular structure\n var hit = find(cache, function (c) { return c.original === obj; });\n if (hit) {\n return hit.copy\n }\n\n var copy = Array.isArray(obj) ? [] : {};\n // put the copy into cache at first\n // because we want to refer it in recursive deepCopy\n cache.push({\n original: obj,\n copy: copy\n });\n\n Object.keys(obj).forEach(function (key) {\n copy[key] = deepCopy(obj[key], cache);\n });\n\n return copy\n}\n\n/**\n * forEach for object\n */\nfunction forEachValue (obj, fn) {\n Object.keys(obj).forEach(function (key) { return fn(obj[key], key); });\n}\n\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\nfunction isPromise (val) {\n return val && typeof val.then === 'function'\n}\n\nfunction assert (condition, msg) {\n if (!condition) { throw new Error((\"[vuex] \" + msg)) }\n}\n\nfunction partial (fn, arg) {\n return function () {\n return fn(arg)\n }\n}\n\n// Base data struct for store's module, package with some attribute and method\nvar Module = function Module (rawModule, runtime) {\n this.runtime = runtime;\n // Store some children item\n this._children = Object.create(null);\n // Store the origin module object which passed by programmer\n this._rawModule = rawModule;\n var rawState = rawModule.state;\n\n // Store the origin module's state\n this.state = (typeof rawState === 'function' ? rawState() : rawState) || {};\n};\n\nvar prototypeAccessors = { namespaced: { configurable: true } };\n\nprototypeAccessors.namespaced.get = function () {\n return !!this._rawModule.namespaced\n};\n\nModule.prototype.addChild = function addChild (key, module) {\n this._children[key] = module;\n};\n\nModule.prototype.removeChild = function removeChild (key) {\n delete this._children[key];\n};\n\nModule.prototype.getChild = function getChild (key) {\n return this._children[key]\n};\n\nModule.prototype.hasChild = function hasChild (key) {\n return key in this._children\n};\n\nModule.prototype.update = function update (rawModule) {\n this._rawModule.namespaced = rawModule.namespaced;\n if (rawModule.actions) {\n this._rawModule.actions = rawModule.actions;\n }\n if (rawModule.mutations) {\n this._rawModule.mutations = rawModule.mutations;\n }\n if (rawModule.getters) {\n this._rawModule.getters = rawModule.getters;\n }\n};\n\nModule.prototype.forEachChild = function forEachChild (fn) {\n forEachValue(this._children, fn);\n};\n\nModule.prototype.forEachGetter = function forEachGetter (fn) {\n if (this._rawModule.getters) {\n forEachValue(this._rawModule.getters, fn);\n }\n};\n\nModule.prototype.forEachAction = function forEachAction (fn) {\n if (this._rawModule.actions) {\n forEachValue(this._rawModule.actions, fn);\n }\n};\n\nModule.prototype.forEachMutation = function forEachMutation (fn) {\n if (this._rawModule.mutations) {\n forEachValue(this._rawModule.mutations, fn);\n }\n};\n\nObject.defineProperties( Module.prototype, prototypeAccessors );\n\nvar ModuleCollection = function ModuleCollection (rawRootModule) {\n // register root module (Vuex.Store options)\n this.register([], rawRootModule, false);\n};\n\nModuleCollection.prototype.get = function get (path) {\n return path.reduce(function (module, key) {\n return module.getChild(key)\n }, this.root)\n};\n\nModuleCollection.prototype.getNamespace = function getNamespace (path) {\n var module = this.root;\n return path.reduce(function (namespace, key) {\n module = module.getChild(key);\n return namespace + (module.namespaced ? key + '/' : '')\n }, '')\n};\n\nModuleCollection.prototype.update = function update$1 (rawRootModule) {\n update([], this.root, rawRootModule);\n};\n\nModuleCollection.prototype.register = function register (path, rawModule, runtime) {\n var this$1 = this;\n if ( runtime === void 0 ) runtime = true;\n\n if ((process.env.NODE_ENV !== 'production')) {\n assertRawModule(path, rawModule);\n }\n\n var newModule = new Module(rawModule, runtime);\n if (path.length === 0) {\n this.root = newModule;\n } else {\n var parent = this.get(path.slice(0, -1));\n parent.addChild(path[path.length - 1], newModule);\n }\n\n // register nested modules\n if (rawModule.modules) {\n forEachValue(rawModule.modules, function (rawChildModule, key) {\n this$1.register(path.concat(key), rawChildModule, runtime);\n });\n }\n};\n\nModuleCollection.prototype.unregister = function unregister (path) {\n var parent = this.get(path.slice(0, -1));\n var key = path[path.length - 1];\n var child = parent.getChild(key);\n\n if (!child) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\n \"[vuex] trying to unregister module '\" + key + \"', which is \" +\n \"not registered\"\n );\n }\n return\n }\n\n if (!child.runtime) {\n return\n }\n\n parent.removeChild(key);\n};\n\nModuleCollection.prototype.isRegistered = function isRegistered (path) {\n var parent = this.get(path.slice(0, -1));\n var key = path[path.length - 1];\n\n if (parent) {\n return parent.hasChild(key)\n }\n\n return false\n};\n\nfunction update (path, targetModule, newModule) {\n if ((process.env.NODE_ENV !== 'production')) {\n assertRawModule(path, newModule);\n }\n\n // update target module\n targetModule.update(newModule);\n\n // update nested modules\n if (newModule.modules) {\n for (var key in newModule.modules) {\n if (!targetModule.getChild(key)) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\n \"[vuex] trying to add a new module '\" + key + \"' on hot reloading, \" +\n 'manual reload is needed'\n );\n }\n return\n }\n update(\n path.concat(key),\n targetModule.getChild(key),\n newModule.modules[key]\n );\n }\n }\n}\n\nvar functionAssert = {\n assert: function (value) { return typeof value === 'function'; },\n expected: 'function'\n};\n\nvar objectAssert = {\n assert: function (value) { return typeof value === 'function' ||\n (typeof value === 'object' && typeof value.handler === 'function'); },\n expected: 'function or object with \"handler\" function'\n};\n\nvar assertTypes = {\n getters: functionAssert,\n mutations: functionAssert,\n actions: objectAssert\n};\n\nfunction assertRawModule (path, rawModule) {\n Object.keys(assertTypes).forEach(function (key) {\n if (!rawModule[key]) { return }\n\n var assertOptions = assertTypes[key];\n\n forEachValue(rawModule[key], function (value, type) {\n assert(\n assertOptions.assert(value),\n makeAssertionMessage(path, key, type, value, assertOptions.expected)\n );\n });\n });\n}\n\nfunction makeAssertionMessage (path, key, type, value, expected) {\n var buf = key + \" should be \" + expected + \" but \\\"\" + key + \".\" + type + \"\\\"\";\n if (path.length > 0) {\n buf += \" in module \\\"\" + (path.join('.')) + \"\\\"\";\n }\n buf += \" is \" + (JSON.stringify(value)) + \".\";\n return buf\n}\n\nvar Vue; // bind on install\n\nvar Store = function Store (options) {\n var this$1 = this;\n if ( options === void 0 ) options = {};\n\n // Auto install if it is not done yet and `window` has `Vue`.\n // To allow users to avoid auto-installation in some cases,\n // this code should be placed here. See #731\n if (!Vue && typeof window !== 'undefined' && window.Vue) {\n install(window.Vue);\n }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Vue, \"must call Vue.use(Vuex) before creating a store instance.\");\n assert(typeof Promise !== 'undefined', \"vuex requires a Promise polyfill in this browser.\");\n assert(this instanceof Store, \"store must be called with the new operator.\");\n }\n\n var plugins = options.plugins; if ( plugins === void 0 ) plugins = [];\n var strict = options.strict; if ( strict === void 0 ) strict = false;\n\n // store internal state\n this._committing = false;\n this._actions = Object.create(null);\n this._actionSubscribers = [];\n this._mutations = Object.create(null);\n this._wrappedGetters = Object.create(null);\n this._modules = new ModuleCollection(options);\n this._modulesNamespaceMap = Object.create(null);\n this._subscribers = [];\n this._watcherVM = new Vue();\n this._makeLocalGettersCache = Object.create(null);\n\n // bind commit and dispatch to self\n var store = this;\n var ref = this;\n var dispatch = ref.dispatch;\n var commit = ref.commit;\n this.dispatch = function boundDispatch (type, payload) {\n return dispatch.call(store, type, payload)\n };\n this.commit = function boundCommit (type, payload, options) {\n return commit.call(store, type, payload, options)\n };\n\n // strict mode\n this.strict = strict;\n\n var state = this._modules.root.state;\n\n // init root module.\n // this also recursively registers all sub-modules\n // and collects all module getters inside this._wrappedGetters\n installModule(this, state, [], this._modules.root);\n\n // initialize the store vm, which is responsible for the reactivity\n // (also registers _wrappedGetters as computed properties)\n resetStoreVM(this, state);\n\n // apply plugins\n plugins.forEach(function (plugin) { return plugin(this$1); });\n\n var useDevtools = options.devtools !== undefined ? options.devtools : Vue.config.devtools;\n if (useDevtools) {\n devtoolPlugin(this);\n }\n};\n\nvar prototypeAccessors$1 = { state: { configurable: true } };\n\nprototypeAccessors$1.state.get = function () {\n return this._vm._data.$$state\n};\n\nprototypeAccessors$1.state.set = function (v) {\n if ((process.env.NODE_ENV !== 'production')) {\n assert(false, \"use store.replaceState() to explicit replace store state.\");\n }\n};\n\nStore.prototype.commit = function commit (_type, _payload, _options) {\n var this$1 = this;\n\n // check object-style commit\n var ref = unifyObjectStyle(_type, _payload, _options);\n var type = ref.type;\n var payload = ref.payload;\n var options = ref.options;\n\n var mutation = { type: type, payload: payload };\n var entry = this._mutations[type];\n if (!entry) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] unknown mutation type: \" + type));\n }\n return\n }\n this._withCommit(function () {\n entry.forEach(function commitIterator (handler) {\n handler(payload);\n });\n });\n\n this._subscribers\n .slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe\n .forEach(function (sub) { return sub(mutation, this$1.state); });\n\n if (\n (process.env.NODE_ENV !== 'production') &&\n options && options.silent\n ) {\n console.warn(\n \"[vuex] mutation type: \" + type + \". Silent option has been removed. \" +\n 'Use the filter functionality in the vue-devtools'\n );\n }\n};\n\nStore.prototype.dispatch = function dispatch (_type, _payload) {\n var this$1 = this;\n\n // check object-style dispatch\n var ref = unifyObjectStyle(_type, _payload);\n var type = ref.type;\n var payload = ref.payload;\n\n var action = { type: type, payload: payload };\n var entry = this._actions[type];\n if (!entry) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] unknown action type: \" + type));\n }\n return\n }\n\n try {\n this._actionSubscribers\n .slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe\n .filter(function (sub) { return sub.before; })\n .forEach(function (sub) { return sub.before(action, this$1.state); });\n } catch (e) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\"[vuex] error in before action subscribers: \");\n console.error(e);\n }\n }\n\n var result = entry.length > 1\n ? Promise.all(entry.map(function (handler) { return handler(payload); }))\n : entry[0](payload);\n\n return new Promise(function (resolve, reject) {\n result.then(function (res) {\n try {\n this$1._actionSubscribers\n .filter(function (sub) { return sub.after; })\n .forEach(function (sub) { return sub.after(action, this$1.state); });\n } catch (e) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\"[vuex] error in after action subscribers: \");\n console.error(e);\n }\n }\n resolve(res);\n }, function (error) {\n try {\n this$1._actionSubscribers\n .filter(function (sub) { return sub.error; })\n .forEach(function (sub) { return sub.error(action, this$1.state, error); });\n } catch (e) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.warn(\"[vuex] error in error action subscribers: \");\n console.error(e);\n }\n }\n reject(error);\n });\n })\n};\n\nStore.prototype.subscribe = function subscribe (fn, options) {\n return genericSubscribe(fn, this._subscribers, options)\n};\n\nStore.prototype.subscribeAction = function subscribeAction (fn, options) {\n var subs = typeof fn === 'function' ? { before: fn } : fn;\n return genericSubscribe(subs, this._actionSubscribers, options)\n};\n\nStore.prototype.watch = function watch (getter, cb, options) {\n var this$1 = this;\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(typeof getter === 'function', \"store.watch only accepts a function.\");\n }\n return this._watcherVM.$watch(function () { return getter(this$1.state, this$1.getters); }, cb, options)\n};\n\nStore.prototype.replaceState = function replaceState (state) {\n var this$1 = this;\n\n this._withCommit(function () {\n this$1._vm._data.$$state = state;\n });\n};\n\nStore.prototype.registerModule = function registerModule (path, rawModule, options) {\n if ( options === void 0 ) options = {};\n\n if (typeof path === 'string') { path = [path]; }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n assert(path.length > 0, 'cannot register the root module by using registerModule.');\n }\n\n this._modules.register(path, rawModule);\n installModule(this, this.state, path, this._modules.get(path), options.preserveState);\n // reset store to update getters...\n resetStoreVM(this, this.state);\n};\n\nStore.prototype.unregisterModule = function unregisterModule (path) {\n var this$1 = this;\n\n if (typeof path === 'string') { path = [path]; }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n }\n\n this._modules.unregister(path);\n this._withCommit(function () {\n var parentState = getNestedState(this$1.state, path.slice(0, -1));\n Vue.delete(parentState, path[path.length - 1]);\n });\n resetStore(this);\n};\n\nStore.prototype.hasModule = function hasModule (path) {\n if (typeof path === 'string') { path = [path]; }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n }\n\n return this._modules.isRegistered(path)\n};\n\nStore.prototype.hotUpdate = function hotUpdate (newOptions) {\n this._modules.update(newOptions);\n resetStore(this, true);\n};\n\nStore.prototype._withCommit = function _withCommit (fn) {\n var committing = this._committing;\n this._committing = true;\n fn();\n this._committing = committing;\n};\n\nObject.defineProperties( Store.prototype, prototypeAccessors$1 );\n\nfunction genericSubscribe (fn, subs, options) {\n if (subs.indexOf(fn) < 0) {\n options && options.prepend\n ? subs.unshift(fn)\n : subs.push(fn);\n }\n return function () {\n var i = subs.indexOf(fn);\n if (i > -1) {\n subs.splice(i, 1);\n }\n }\n}\n\nfunction resetStore (store, hot) {\n store._actions = Object.create(null);\n store._mutations = Object.create(null);\n store._wrappedGetters = Object.create(null);\n store._modulesNamespaceMap = Object.create(null);\n var state = store.state;\n // init all modules\n installModule(store, state, [], store._modules.root, true);\n // reset vm\n resetStoreVM(store, state, hot);\n}\n\nfunction resetStoreVM (store, state, hot) {\n var oldVm = store._vm;\n\n // bind store public getters\n store.getters = {};\n // reset local getters cache\n store._makeLocalGettersCache = Object.create(null);\n var wrappedGetters = store._wrappedGetters;\n var computed = {};\n forEachValue(wrappedGetters, function (fn, key) {\n // use computed to leverage its lazy-caching mechanism\n // direct inline function use will lead to closure preserving oldVm.\n // using partial to return function with only arguments preserved in closure environment.\n computed[key] = partial(fn, store);\n Object.defineProperty(store.getters, key, {\n get: function () { return store._vm[key]; },\n enumerable: true // for local getters\n });\n });\n\n // use a Vue instance to store the state tree\n // suppress warnings just in case the user has added\n // some funky global mixins\n var silent = Vue.config.silent;\n Vue.config.silent = true;\n store._vm = new Vue({\n data: {\n $$state: state\n },\n computed: computed\n });\n Vue.config.silent = silent;\n\n // enable strict mode for new vm\n if (store.strict) {\n enableStrictMode(store);\n }\n\n if (oldVm) {\n if (hot) {\n // dispatch changes in all subscribed watchers\n // to force getter re-evaluation for hot reloading.\n store._withCommit(function () {\n oldVm._data.$$state = null;\n });\n }\n Vue.nextTick(function () { return oldVm.$destroy(); });\n }\n}\n\nfunction installModule (store, rootState, path, module, hot) {\n var isRoot = !path.length;\n var namespace = store._modules.getNamespace(path);\n\n // register in namespace map\n if (module.namespaced) {\n if (store._modulesNamespaceMap[namespace] && (process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] duplicate namespace \" + namespace + \" for the namespaced module \" + (path.join('/'))));\n }\n store._modulesNamespaceMap[namespace] = module;\n }\n\n // set state\n if (!isRoot && !hot) {\n var parentState = getNestedState(rootState, path.slice(0, -1));\n var moduleName = path[path.length - 1];\n store._withCommit(function () {\n if ((process.env.NODE_ENV !== 'production')) {\n if (moduleName in parentState) {\n console.warn(\n (\"[vuex] state field \\\"\" + moduleName + \"\\\" was overridden by a module with the same name at \\\"\" + (path.join('.')) + \"\\\"\")\n );\n }\n }\n Vue.set(parentState, moduleName, module.state);\n });\n }\n\n var local = module.context = makeLocalContext(store, namespace, path);\n\n module.forEachMutation(function (mutation, key) {\n var namespacedType = namespace + key;\n registerMutation(store, namespacedType, mutation, local);\n });\n\n module.forEachAction(function (action, key) {\n var type = action.root ? key : namespace + key;\n var handler = action.handler || action;\n registerAction(store, type, handler, local);\n });\n\n module.forEachGetter(function (getter, key) {\n var namespacedType = namespace + key;\n registerGetter(store, namespacedType, getter, local);\n });\n\n module.forEachChild(function (child, key) {\n installModule(store, rootState, path.concat(key), child, hot);\n });\n}\n\n/**\n * make localized dispatch, commit, getters and state\n * if there is no namespace, just use root ones\n */\nfunction makeLocalContext (store, namespace, path) {\n var noNamespace = namespace === '';\n\n var local = {\n dispatch: noNamespace ? store.dispatch : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if ((process.env.NODE_ENV !== 'production') && !store._actions[type]) {\n console.error((\"[vuex] unknown local action type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n return store.dispatch(type, payload)\n },\n\n commit: noNamespace ? store.commit : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if ((process.env.NODE_ENV !== 'production') && !store._mutations[type]) {\n console.error((\"[vuex] unknown local mutation type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n store.commit(type, payload, options);\n }\n };\n\n // getters and state object must be gotten lazily\n // because they will be changed by vm update\n Object.defineProperties(local, {\n getters: {\n get: noNamespace\n ? function () { return store.getters; }\n : function () { return makeLocalGetters(store, namespace); }\n },\n state: {\n get: function () { return getNestedState(store.state, path); }\n }\n });\n\n return local\n}\n\nfunction makeLocalGetters (store, namespace) {\n if (!store._makeLocalGettersCache[namespace]) {\n var gettersProxy = {};\n var splitPos = namespace.length;\n Object.keys(store.getters).forEach(function (type) {\n // skip if the target getter is not match this namespace\n if (type.slice(0, splitPos) !== namespace) { return }\n\n // extract local getter type\n var localType = type.slice(splitPos);\n\n // Add a port to the getters proxy.\n // Define as getter property because\n // we do not want to evaluate the getters in this time.\n Object.defineProperty(gettersProxy, localType, {\n get: function () { return store.getters[type]; },\n enumerable: true\n });\n });\n store._makeLocalGettersCache[namespace] = gettersProxy;\n }\n\n return store._makeLocalGettersCache[namespace]\n}\n\nfunction registerMutation (store, type, handler, local) {\n var entry = store._mutations[type] || (store._mutations[type] = []);\n entry.push(function wrappedMutationHandler (payload) {\n handler.call(store, local.state, payload);\n });\n}\n\nfunction registerAction (store, type, handler, local) {\n var entry = store._actions[type] || (store._actions[type] = []);\n entry.push(function wrappedActionHandler (payload) {\n var res = handler.call(store, {\n dispatch: local.dispatch,\n commit: local.commit,\n getters: local.getters,\n state: local.state,\n rootGetters: store.getters,\n rootState: store.state\n }, payload);\n if (!isPromise(res)) {\n res = Promise.resolve(res);\n }\n if (store._devtoolHook) {\n return res.catch(function (err) {\n store._devtoolHook.emit('vuex:error', err);\n throw err\n })\n } else {\n return res\n }\n });\n}\n\nfunction registerGetter (store, type, rawGetter, local) {\n if (store._wrappedGetters[type]) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error((\"[vuex] duplicate getter key: \" + type));\n }\n return\n }\n store._wrappedGetters[type] = function wrappedGetter (store) {\n return rawGetter(\n local.state, // local state\n local.getters, // local getters\n store.state, // root state\n store.getters // root getters\n )\n };\n}\n\nfunction enableStrictMode (store) {\n store._vm.$watch(function () { return this._data.$$state }, function () {\n if ((process.env.NODE_ENV !== 'production')) {\n assert(store._committing, \"do not mutate vuex store state outside mutation handlers.\");\n }\n }, { deep: true, sync: true });\n}\n\nfunction getNestedState (state, path) {\n return path.reduce(function (state, key) { return state[key]; }, state)\n}\n\nfunction unifyObjectStyle (type, payload, options) {\n if (isObject(type) && type.type) {\n options = payload;\n payload = type;\n type = type.type;\n }\n\n if ((process.env.NODE_ENV !== 'production')) {\n assert(typeof type === 'string', (\"expects string as the type, but found \" + (typeof type) + \".\"));\n }\n\n return { type: type, payload: payload, options: options }\n}\n\nfunction install (_Vue) {\n if (Vue && _Vue === Vue) {\n if ((process.env.NODE_ENV !== 'production')) {\n console.error(\n '[vuex] already installed. Vue.use(Vuex) should be called only once.'\n );\n }\n return\n }\n Vue = _Vue;\n applyMixin(Vue);\n}\n\n/**\n * Reduce the code which written in Vue.js for getting the state.\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} states # Object's item can be a function which accept state and getters for param, you can do something for state and getters in it.\n * @param {Object}\n */\nvar mapState = normalizeNamespace(function (namespace, states) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(states)) {\n console.error('[vuex] mapState: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(states).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedState () {\n var state = this.$store.state;\n var getters = this.$store.getters;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapState', namespace);\n if (!module) {\n return\n }\n state = module.context.state;\n getters = module.context.getters;\n }\n return typeof val === 'function'\n ? val.call(this, state, getters)\n : state[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\n/**\n * Reduce the code which written in Vue.js for committing the mutation\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.\n * @return {Object}\n */\nvar mapMutations = normalizeNamespace(function (namespace, mutations) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(mutations)) {\n console.error('[vuex] mapMutations: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(mutations).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedMutation () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n // Get the commit method from store\n var commit = this.$store.commit;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapMutations', namespace);\n if (!module) {\n return\n }\n commit = module.context.commit;\n }\n return typeof val === 'function'\n ? val.apply(this, [commit].concat(args))\n : commit.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\n/**\n * Reduce the code which written in Vue.js for getting the getters\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} getters\n * @return {Object}\n */\nvar mapGetters = normalizeNamespace(function (namespace, getters) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(getters)) {\n console.error('[vuex] mapGetters: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(getters).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n // The namespace has been mutated by normalizeNamespace\n val = namespace + val;\n res[key] = function mappedGetter () {\n if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {\n return\n }\n if ((process.env.NODE_ENV !== 'production') && !(val in this.$store.getters)) {\n console.error((\"[vuex] unknown getter: \" + val));\n return\n }\n return this.$store.getters[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\n/**\n * Reduce the code which written in Vue.js for dispatch the action\n * @param {String} [namespace] - Module's namespace\n * @param {Object|Array} actions # Object's item can be a function which accept `dispatch` function as the first param, it can accept anthor params. You can dispatch action and do any other things in this function. specially, You need to pass anthor params from the mapped function.\n * @return {Object}\n */\nvar mapActions = normalizeNamespace(function (namespace, actions) {\n var res = {};\n if ((process.env.NODE_ENV !== 'production') && !isValidMap(actions)) {\n console.error('[vuex] mapActions: mapper parameter must be either an Array or an Object');\n }\n normalizeMap(actions).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedAction () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n // get dispatch function from store\n var dispatch = this.$store.dispatch;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapActions', namespace);\n if (!module) {\n return\n }\n dispatch = module.context.dispatch;\n }\n return typeof val === 'function'\n ? val.apply(this, [dispatch].concat(args))\n : dispatch.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\n/**\n * Rebinding namespace param for mapXXX function in special scoped, and return them by simple object\n * @param {String} namespace\n * @return {Object}\n */\nvar createNamespacedHelpers = function (namespace) { return ({\n mapState: mapState.bind(null, namespace),\n mapGetters: mapGetters.bind(null, namespace),\n mapMutations: mapMutations.bind(null, namespace),\n mapActions: mapActions.bind(null, namespace)\n}); };\n\n/**\n * Normalize the map\n * normalizeMap([1, 2, 3]) => [ { key: 1, val: 1 }, { key: 2, val: 2 }, { key: 3, val: 3 } ]\n * normalizeMap({a: 1, b: 2, c: 3}) => [ { key: 'a', val: 1 }, { key: 'b', val: 2 }, { key: 'c', val: 3 } ]\n * @param {Array|Object} map\n * @return {Object}\n */\nfunction normalizeMap (map) {\n if (!isValidMap(map)) {\n return []\n }\n return Array.isArray(map)\n ? map.map(function (key) { return ({ key: key, val: key }); })\n : Object.keys(map).map(function (key) { return ({ key: key, val: map[key] }); })\n}\n\n/**\n * Validate whether given map is valid or not\n * @param {*} map\n * @return {Boolean}\n */\nfunction isValidMap (map) {\n return Array.isArray(map) || isObject(map)\n}\n\n/**\n * Return a function expect two param contains namespace and map. it will normalize the namespace and then the param's function will handle the new namespace and the map.\n * @param {Function} fn\n * @return {Function}\n */\nfunction normalizeNamespace (fn) {\n return function (namespace, map) {\n if (typeof namespace !== 'string') {\n map = namespace;\n namespace = '';\n } else if (namespace.charAt(namespace.length - 1) !== '/') {\n namespace += '/';\n }\n return fn(namespace, map)\n }\n}\n\n/**\n * Search a special module from store by namespace. if module not exist, print error message.\n * @param {Object} store\n * @param {String} helper\n * @param {String} namespace\n * @return {Object}\n */\nfunction getModuleByNamespace (store, helper, namespace) {\n var module = store._modulesNamespaceMap[namespace];\n if ((process.env.NODE_ENV !== 'production') && !module) {\n console.error((\"[vuex] module namespace not found in \" + helper + \"(): \" + namespace));\n }\n return module\n}\n\n// Credits: borrowed code from fcomb/redux-logger\n\nfunction createLogger (ref) {\n if ( ref === void 0 ) ref = {};\n var collapsed = ref.collapsed; if ( collapsed === void 0 ) collapsed = true;\n var filter = ref.filter; if ( filter === void 0 ) filter = function (mutation, stateBefore, stateAfter) { return true; };\n var transformer = ref.transformer; if ( transformer === void 0 ) transformer = function (state) { return state; };\n var mutationTransformer = ref.mutationTransformer; if ( mutationTransformer === void 0 ) mutationTransformer = function (mut) { return mut; };\n var actionFilter = ref.actionFilter; if ( actionFilter === void 0 ) actionFilter = function (action, state) { return true; };\n var actionTransformer = ref.actionTransformer; if ( actionTransformer === void 0 ) actionTransformer = function (act) { return act; };\n var logMutations = ref.logMutations; if ( logMutations === void 0 ) logMutations = true;\n var logActions = ref.logActions; if ( logActions === void 0 ) logActions = true;\n var logger = ref.logger; if ( logger === void 0 ) logger = console;\n\n return function (store) {\n var prevState = deepCopy(store.state);\n\n if (typeof logger === 'undefined') {\n return\n }\n\n if (logMutations) {\n store.subscribe(function (mutation, state) {\n var nextState = deepCopy(state);\n\n if (filter(mutation, prevState, nextState)) {\n var formattedTime = getFormattedTime();\n var formattedMutation = mutationTransformer(mutation);\n var message = \"mutation \" + (mutation.type) + formattedTime;\n\n startMessage(logger, message, collapsed);\n logger.log('%c prev state', 'color: #9E9E9E; font-weight: bold', transformer(prevState));\n logger.log('%c mutation', 'color: #03A9F4; font-weight: bold', formattedMutation);\n logger.log('%c next state', 'color: #4CAF50; font-weight: bold', transformer(nextState));\n endMessage(logger);\n }\n\n prevState = nextState;\n });\n }\n\n if (logActions) {\n store.subscribeAction(function (action, state) {\n if (actionFilter(action, state)) {\n var formattedTime = getFormattedTime();\n var formattedAction = actionTransformer(action);\n var message = \"action \" + (action.type) + formattedTime;\n\n startMessage(logger, message, collapsed);\n logger.log('%c action', 'color: #03A9F4; font-weight: bold', formattedAction);\n endMessage(logger);\n }\n });\n }\n }\n}\n\nfunction startMessage (logger, message, collapsed) {\n var startMessage = collapsed\n ? logger.groupCollapsed\n : logger.group;\n\n // render\n try {\n startMessage.call(logger, message);\n } catch (e) {\n logger.log(message);\n }\n}\n\nfunction endMessage (logger) {\n try {\n logger.groupEnd();\n } catch (e) {\n logger.log('—— log end ——');\n }\n}\n\nfunction getFormattedTime () {\n var time = new Date();\n return (\" @ \" + (pad(time.getHours(), 2)) + \":\" + (pad(time.getMinutes(), 2)) + \":\" + (pad(time.getSeconds(), 2)) + \".\" + (pad(time.getMilliseconds(), 3)))\n}\n\nfunction repeat (str, times) {\n return (new Array(times + 1)).join(str)\n}\n\nfunction pad (num, maxLength) {\n return repeat('0', maxLength - num.toString().length) + num\n}\n\nvar index = {\n Store: Store,\n install: install,\n version: '3.6.2',\n mapState: mapState,\n mapMutations: mapMutations,\n mapGetters: mapGetters,\n mapActions: mapActions,\n createNamespacedHelpers: createNamespacedHelpers,\n createLogger: createLogger\n};\n\nexport default index;\nexport { Store, createLogger, createNamespacedHelpers, install, mapActions, mapGetters, mapMutations, mapState };\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.es/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.8.3',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2021 Denis Pushkarev (zloirock.ru)'\n});\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.es/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.es/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","exports.f = Object.getOwnPropertySymbols;\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.es/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.es/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.es/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.es/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar cookies = require('./../helpers/cookies');\nvar buildURL = require('./../helpers/buildURL');\nvar buildFullPath = require('../core/buildFullPath');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(createError('Request aborted', config, 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(createError(timeoutErrorMessage, config, 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2.\n // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function.\n if (config.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (!requestData) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nvar utils = require('../utils');\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n\n var valueFromConfig2Keys = ['url', 'method', 'data'];\n var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params'];\n var defaultToConfig2Keys = [\n 'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer',\n 'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',\n 'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress',\n 'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent',\n 'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding'\n ];\n var directMergeKeys = ['validateStatus'];\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n }\n\n utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n }\n });\n\n utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties);\n\n utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n\n utils.forEach(directMergeKeys, function merge(prop) {\n if (prop in config2) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n\n var axiosKeys = valueFromConfig2Keys\n .concat(mergeDeepPropertiesKeys)\n .concat(defaultToConfig2Keys)\n .concat(directMergeKeys);\n\n var otherKeys = Object\n .keys(config1)\n .concat(Object.keys(config2))\n .filter(function filterAxiosKeys(key) {\n return axiosKeys.indexOf(key) === -1;\n });\n\n utils.forEach(otherKeys, mergeDeepProperties);\n\n return config;\n};\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","'use strict';\nvar $ = require('../internals/export');\nvar forEach = require('../internals/array-for-each');\n\n// `Array.prototype.forEach` method\n// https://tc39.es/ecma262/#sec-array.prototype.foreach\n$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {\n forEach: forEach\n});\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.es/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","var bind = require('../internals/function-bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterOut }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var IS_FILTER_OUT = TYPE == 7;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_OUT ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else switch (TYPE) {\n case 4: return false; // every\n case 7: push.call(target, value); // filterOut\n }\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.es/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.es/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.es/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.es/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.es/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.es/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.es/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6),\n // `Array.prototype.filterOut` method\n // https://github.com/tc39/proposal-array-filtering\n filterOut: createMethod(7)\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","const { MAX_SAFE_COMPONENT_LENGTH } = require('./constants')\nconst debug = require('./debug')\nexports = module.exports = {}\n\n// The actual regexps go on exports.re\nconst re = exports.re = []\nconst src = exports.src = []\nconst t = exports.t = {}\nlet R = 0\n\nconst createToken = (name, value, isGlobal) => {\n const index = R++\n debug(index, value)\n t[name] = index\n src[index] = value\n re[index] = new RegExp(value, isGlobal ? 'g' : undefined)\n}\n\n// The following Regular Expressions can be used for tokenizing,\n// validating, and parsing SemVer version strings.\n\n// ## Numeric Identifier\n// A single `0`, or a non-zero digit followed by zero or more digits.\n\ncreateToken('NUMERICIDENTIFIER', '0|[1-9]\\\\d*')\ncreateToken('NUMERICIDENTIFIERLOOSE', '[0-9]+')\n\n// ## Non-numeric Identifier\n// Zero or more digits, followed by a letter or hyphen, and then zero or\n// more letters, digits, or hyphens.\n\ncreateToken('NONNUMERICIDENTIFIER', '\\\\d*[a-zA-Z-][a-zA-Z0-9-]*')\n\n// ## Main Version\n// Three dot-separated numeric identifiers.\n\ncreateToken('MAINVERSION', `(${src[t.NUMERICIDENTIFIER]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIER]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIER]})`)\n\ncreateToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIERLOOSE]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIERLOOSE]})`)\n\n// ## Pre-release Version Identifier\n// A numeric identifier, or a non-numeric identifier.\n\ncreateToken('PRERELEASEIDENTIFIER', `(?:${src[t.NUMERICIDENTIFIER]\n}|${src[t.NONNUMERICIDENTIFIER]})`)\n\ncreateToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NUMERICIDENTIFIERLOOSE]\n}|${src[t.NONNUMERICIDENTIFIER]})`)\n\n// ## Pre-release Version\n// Hyphen, followed by one or more dot-separated pre-release version\n// identifiers.\n\ncreateToken('PRERELEASE', `(?:-(${src[t.PRERELEASEIDENTIFIER]\n}(?:\\\\.${src[t.PRERELEASEIDENTIFIER]})*))`)\n\ncreateToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]\n}(?:\\\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`)\n\n// ## Build Metadata Identifier\n// Any combination of digits, letters, or hyphens.\n\ncreateToken('BUILDIDENTIFIER', '[0-9A-Za-z-]+')\n\n// ## Build Metadata\n// Plus sign, followed by one or more period-separated build metadata\n// identifiers.\n\ncreateToken('BUILD', `(?:\\\\+(${src[t.BUILDIDENTIFIER]\n}(?:\\\\.${src[t.BUILDIDENTIFIER]})*))`)\n\n// ## Full Version String\n// A main version, followed optionally by a pre-release version and\n// build metadata.\n\n// Note that the only major, minor, patch, and pre-release sections of\n// the version string are capturing groups. The build metadata is not a\n// capturing group, because it should not ever be used in version\n// comparison.\n\ncreateToken('FULLPLAIN', `v?${src[t.MAINVERSION]\n}${src[t.PRERELEASE]}?${\n src[t.BUILD]}?`)\n\ncreateToken('FULL', `^${src[t.FULLPLAIN]}$`)\n\n// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n// common in the npm registry.\ncreateToken('LOOSEPLAIN', `[v=\\\\s]*${src[t.MAINVERSIONLOOSE]\n}${src[t.PRERELEASELOOSE]}?${\n src[t.BUILD]}?`)\n\ncreateToken('LOOSE', `^${src[t.LOOSEPLAIN]}$`)\n\ncreateToken('GTLT', '((?:<|>)?=?)')\n\n// Something like \"2.*\" or \"1.2.x\".\n// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n// Only the first item is strictly required.\ncreateToken('XRANGEIDENTIFIERLOOSE', `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\\\*`)\ncreateToken('XRANGEIDENTIFIER', `${src[t.NUMERICIDENTIFIER]}|x|X|\\\\*`)\n\ncreateToken('XRANGEPLAIN', `[v=\\\\s]*(${src[t.XRANGEIDENTIFIER]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIER]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIER]})` +\n `(?:${src[t.PRERELEASE]})?${\n src[t.BUILD]}?` +\n `)?)?`)\n\ncreateToken('XRANGEPLAINLOOSE', `[v=\\\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n `(?:${src[t.PRERELEASELOOSE]})?${\n src[t.BUILD]}?` +\n `)?)?`)\n\ncreateToken('XRANGE', `^${src[t.GTLT]}\\\\s*${src[t.XRANGEPLAIN]}$`)\ncreateToken('XRANGELOOSE', `^${src[t.GTLT]}\\\\s*${src[t.XRANGEPLAINLOOSE]}$`)\n\n// Coercion.\n// Extract anything that could conceivably be a part of a valid semver\ncreateToken('COERCE', `${'(^|[^\\\\d])' +\n '(\\\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` +\n `(?:\\\\.(\\\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +\n `(?:\\\\.(\\\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +\n `(?:$|[^\\\\d])`)\ncreateToken('COERCERTL', src[t.COERCE], true)\n\n// Tilde ranges.\n// Meaning is \"reasonably at or greater than\"\ncreateToken('LONETILDE', '(?:~>?)')\n\ncreateToken('TILDETRIM', `(\\\\s*)${src[t.LONETILDE]}\\\\s+`, true)\nexports.tildeTrimReplace = '$1~'\n\ncreateToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`)\ncreateToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`)\n\n// Caret ranges.\n// Meaning is \"at least and backwards compatible with\"\ncreateToken('LONECARET', '(?:\\\\^)')\n\ncreateToken('CARETTRIM', `(\\\\s*)${src[t.LONECARET]}\\\\s+`, true)\nexports.caretTrimReplace = '$1^'\n\ncreateToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`)\ncreateToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`)\n\n// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\ncreateToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\\\s*(${src[t.LOOSEPLAIN]})$|^$`)\ncreateToken('COMPARATOR', `^${src[t.GTLT]}\\\\s*(${src[t.FULLPLAIN]})$|^$`)\n\n// An expression to strip any whitespace between the gtlt and the thing\n// it modifies, so that `> 1.2.3` ==> `>1.2.3`\ncreateToken('COMPARATORTRIM', `(\\\\s*)${src[t.GTLT]\n}\\\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true)\nexports.comparatorTrimReplace = '$1$2$3'\n\n// Something like `1.2.3 - 1.2.4`\n// Note that these all use the loose form, because they'll be\n// checked against either the strict or loose comparator form\n// later.\ncreateToken('HYPHENRANGE', `^\\\\s*(${src[t.XRANGEPLAIN]})` +\n `\\\\s+-\\\\s+` +\n `(${src[t.XRANGEPLAIN]})` +\n `\\\\s*$`)\n\ncreateToken('HYPHENRANGELOOSE', `^\\\\s*(${src[t.XRANGEPLAINLOOSE]})` +\n `\\\\s+-\\\\s+` +\n `(${src[t.XRANGEPLAINLOOSE]})` +\n `\\\\s*$`)\n\n// Star ranges basically just allow anything at all.\ncreateToken('STAR', '(<|>)?=?\\\\s*\\\\*')\n// >=0.0.0 is like a star\ncreateToken('GTE0', '^\\\\s*>=\\\\s*0\\.0\\.0\\\\s*$')\ncreateToken('GTE0PRE', '^\\\\s*>=\\\\s*0\\.0\\.0-0\\\\s*$')\n","const debug = (\n typeof process === 'object' &&\n process.env &&\n process.env.NODE_DEBUG &&\n /\\bsemver\\b/i.test(process.env.NODE_DEBUG)\n) ? (...args) => console.error('SEMVER', ...args)\n : () => {}\n\nmodule.exports = debug\n","const debug = require('../internal/debug')\nconst { MAX_LENGTH, MAX_SAFE_INTEGER } = require('../internal/constants')\nconst { re, t } = require('../internal/re')\n\nconst { compareIdentifiers } = require('../internal/identifiers')\nclass SemVer {\n constructor (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n if (version instanceof SemVer) {\n if (version.loose === !!options.loose &&\n version.includePrerelease === !!options.includePrerelease) {\n return version\n } else {\n version = version.version\n }\n } else if (typeof version !== 'string') {\n throw new TypeError(`Invalid Version: ${version}`)\n }\n\n if (version.length > MAX_LENGTH) {\n throw new TypeError(\n `version is longer than ${MAX_LENGTH} characters`\n )\n }\n\n debug('SemVer', version, options)\n this.options = options\n this.loose = !!options.loose\n // this isn't actually relevant for versions, but keep it so that we\n // don't run into trouble passing this.options around.\n this.includePrerelease = !!options.includePrerelease\n\n const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])\n\n if (!m) {\n throw new TypeError(`Invalid Version: ${version}`)\n }\n\n this.raw = version\n\n // these are actually numbers\n this.major = +m[1]\n this.minor = +m[2]\n this.patch = +m[3]\n\n if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n throw new TypeError('Invalid major version')\n }\n\n if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n throw new TypeError('Invalid minor version')\n }\n\n if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n throw new TypeError('Invalid patch version')\n }\n\n // numberify any prerelease numeric ids\n if (!m[4]) {\n this.prerelease = []\n } else {\n this.prerelease = m[4].split('.').map((id) => {\n if (/^[0-9]+$/.test(id)) {\n const num = +id\n if (num >= 0 && num < MAX_SAFE_INTEGER) {\n return num\n }\n }\n return id\n })\n }\n\n this.build = m[5] ? m[5].split('.') : []\n this.format()\n }\n\n format () {\n this.version = `${this.major}.${this.minor}.${this.patch}`\n if (this.prerelease.length) {\n this.version += `-${this.prerelease.join('.')}`\n }\n return this.version\n }\n\n toString () {\n return this.version\n }\n\n compare (other) {\n debug('SemVer.compare', this.version, this.options, other)\n if (!(other instanceof SemVer)) {\n if (typeof other === 'string' && other === this.version) {\n return 0\n }\n other = new SemVer(other, this.options)\n }\n\n if (other.version === this.version) {\n return 0\n }\n\n return this.compareMain(other) || this.comparePre(other)\n }\n\n compareMain (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return (\n compareIdentifiers(this.major, other.major) ||\n compareIdentifiers(this.minor, other.minor) ||\n compareIdentifiers(this.patch, other.patch)\n )\n }\n\n comparePre (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n // NOT having a prerelease is > having one\n if (this.prerelease.length && !other.prerelease.length) {\n return -1\n } else if (!this.prerelease.length && other.prerelease.length) {\n return 1\n } else if (!this.prerelease.length && !other.prerelease.length) {\n return 0\n }\n\n let i = 0\n do {\n const a = this.prerelease[i]\n const b = other.prerelease[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n }\n\n compareBuild (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n let i = 0\n do {\n const a = this.build[i]\n const b = other.build[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n }\n\n // preminor will bump the version up to the next minor release, and immediately\n // down to pre-release. premajor and prepatch work the same way.\n inc (release, identifier) {\n switch (release) {\n case 'premajor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor = 0\n this.major++\n this.inc('pre', identifier)\n break\n case 'preminor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor++\n this.inc('pre', identifier)\n break\n case 'prepatch':\n // If this is already a prerelease, it will bump to the next version\n // drop any prereleases that might already exist, since they are not\n // relevant at this point.\n this.prerelease.length = 0\n this.inc('patch', identifier)\n this.inc('pre', identifier)\n break\n // If the input is a non-prerelease version, this acts the same as\n // prepatch.\n case 'prerelease':\n if (this.prerelease.length === 0) {\n this.inc('patch', identifier)\n }\n this.inc('pre', identifier)\n break\n\n case 'major':\n // If this is a pre-major version, bump up to the same major version.\n // Otherwise increment major.\n // 1.0.0-5 bumps to 1.0.0\n // 1.1.0 bumps to 2.0.0\n if (\n this.minor !== 0 ||\n this.patch !== 0 ||\n this.prerelease.length === 0\n ) {\n this.major++\n }\n this.minor = 0\n this.patch = 0\n this.prerelease = []\n break\n case 'minor':\n // If this is a pre-minor version, bump up to the same minor version.\n // Otherwise increment minor.\n // 1.2.0-5 bumps to 1.2.0\n // 1.2.1 bumps to 1.3.0\n if (this.patch !== 0 || this.prerelease.length === 0) {\n this.minor++\n }\n this.patch = 0\n this.prerelease = []\n break\n case 'patch':\n // If this is not a pre-release version, it will increment the patch.\n // If it is a pre-release it will bump up to the same patch version.\n // 1.2.0-5 patches to 1.2.0\n // 1.2.0 patches to 1.2.1\n if (this.prerelease.length === 0) {\n this.patch++\n }\n this.prerelease = []\n break\n // This probably shouldn't be used publicly.\n // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.\n case 'pre':\n if (this.prerelease.length === 0) {\n this.prerelease = [0]\n } else {\n let i = this.prerelease.length\n while (--i >= 0) {\n if (typeof this.prerelease[i] === 'number') {\n this.prerelease[i]++\n i = -2\n }\n }\n if (i === -1) {\n // didn't increment anything\n this.prerelease.push(0)\n }\n }\n if (identifier) {\n // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n if (this.prerelease[0] === identifier) {\n if (isNaN(this.prerelease[1])) {\n this.prerelease = [identifier, 0]\n }\n } else {\n this.prerelease = [identifier, 0]\n }\n }\n break\n\n default:\n throw new Error(`invalid increment argument: ${release}`)\n }\n this.format()\n this.raw = this.version\n return this\n }\n}\n\nmodule.exports = SemVer\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.es/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.es/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.es/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.es/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.es/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.es/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.es/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar fails = require('../internals/fails');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.es/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nvar NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {\n var test = {};\n // FF44- legacy iterators case\n return IteratorPrototype[ITERATOR].call(test) !== test;\n});\n\nif (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif ((!IS_PURE || NEW_ITERATOR_PROTOTYPE) && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar iteratorClose = require('../internals/iterator-close');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nmodule.exports = function (iterable, unboundFunction, options) {\n var that = options && options.that;\n var AS_ENTRIES = !!(options && options.AS_ENTRIES);\n var IS_ITERATOR = !!(options && options.IS_ITERATOR);\n var INTERRUPTED = !!(options && options.INTERRUPTED);\n var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);\n var iterator, iterFn, index, length, result, next, step;\n\n var stop = function (condition) {\n if (iterator) iteratorClose(iterator);\n return new Result(true, condition);\n };\n\n var callFn = function (value) {\n if (AS_ENTRIES) {\n anObject(value);\n return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);\n } return INTERRUPTED ? fn(value, stop) : fn(value);\n };\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = callFn(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n try {\n result = callFn(step.value);\n } catch (error) {\n iteratorClose(iterator);\n throw error;\n }\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.es/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.es/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar exec = require('../internals/regexp-exec');\n\n// `RegExp.prototype.exec` method\n// https://tc39.es/ecma262/#sec-regexp.prototype.exec\n$({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {\n exec: exec\n});\n","'use strict';\nvar anObject = require('../internals/an-object');\n\n// `RegExp.prototype.flags` getter implementation\n// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.dotAll) result += 's';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.loadState = loadState;\n\n/**\n * @param app app ID, e.g. \"mail\"\n * @param key name of the property\n * @param fallback optional parameter to use as default value\n * @throws if the key can't be found\n */\nfunction loadState(app, key, fallback) {\n var elem = document.querySelector(\"#initial-state-\".concat(app, \"-\").concat(key));\n\n if (elem === null) {\n if (fallback !== undefined) {\n return fallback;\n }\n\n throw new Error(\"Could not find initial state \".concat(key, \" of \").concat(app));\n }\n\n try {\n return JSON.parse(atob(elem.value));\n } catch (e) {\n throw new Error(\"Could not parse initial state \".concat(key, \" of \").concat(app));\n }\n}\n//# sourceMappingURL=index.js.map","!function(e,r){if(\"object\"==typeof exports&&\"object\"==typeof module)module.exports=r();else if(\"function\"==typeof define&&define.amd)define([],r);else{var n=r();for(var o in n)(\"object\"==typeof exports?exports:e)[o]=n[o]}}(window,(function(){return function(e){var r={};function n(o){if(r[o])return r[o].exports;var t=r[o]={i:o,l:!1,exports:{}};return e[o].call(t.exports,t,t.exports,n),t.l=!0,t.exports}return n.m=e,n.c=r,n.d=function(e,r,o){n.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:o})},n.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,r){if(1&r&&(e=n(e)),8&r)return e;if(4&r&&\"object\"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,\"default\",{enumerable:!0,value:e}),2&r&&\"string\"!=typeof e)for(var t in e)n.d(o,t,function(r){return e[r]}.bind(null,t));return o},n.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(r,\"a\",r),r},n.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},n.p=\"\",n(n.s=0)}([function(e,r,n){\"use strict\";function o(){return\"undefined\"==typeof OC?Promise.reject(new Error(\"OC not defined\")):void 0===OC.PasswordConfirmation?Promise.reject(new Error(\"OC.PasswordConfirmation not defined\")):OC.PasswordConfirmation.requiresPasswordConfirmation()?new Promise((function(e,r){OC.PasswordConfirmation.requirePasswordConfirmation(e,{},r)})):Promise.resolve()}n.r(r),n.d(r,\"default\",(function(){return o}))}])}));\n//# sourceMappingURL=main.js.map","\"use strict\";\n\nvar isOldIE = function isOldIE() {\n var memo;\n return function memorize() {\n if (typeof memo === 'undefined') {\n // Test for IE <= 9 as proposed by Browserhacks\n // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805\n // Tests for existence of standard globals is to allow style-loader\n // to operate correctly into non-standard environments\n // @see https://github.com/webpack-contrib/style-loader/issues/177\n memo = Boolean(window && document && document.all && !window.atob);\n }\n\n return memo;\n };\n}();\n\nvar getTarget = function getTarget() {\n var memo = {};\n return function memorize(target) {\n if (typeof memo[target] === 'undefined') {\n var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself\n\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n\n memo[target] = styleTarget;\n }\n\n return memo[target];\n };\n}();\n\nvar stylesInDom = [];\n\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n\n for (var i = 0; i < stylesInDom.length; i++) {\n if (stylesInDom[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n\n return result;\n}\n\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var index = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3]\n };\n\n if (index !== -1) {\n stylesInDom[index].references++;\n stylesInDom[index].updater(obj);\n } else {\n stylesInDom.push({\n identifier: identifier,\n updater: addStyle(obj, options),\n references: 1\n });\n }\n\n identifiers.push(identifier);\n }\n\n return identifiers;\n}\n\nfunction insertStyleElement(options) {\n var style = document.createElement('style');\n var attributes = options.attributes || {};\n\n if (typeof attributes.nonce === 'undefined') {\n var nonce = typeof __webpack_nonce__ !== 'undefined' ? __webpack_nonce__ : null;\n\n if (nonce) {\n attributes.nonce = nonce;\n }\n }\n\n Object.keys(attributes).forEach(function (key) {\n style.setAttribute(key, attributes[key]);\n });\n\n if (typeof options.insert === 'function') {\n options.insert(style);\n } else {\n var target = getTarget(options.insert || 'head');\n\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n\n target.appendChild(style);\n }\n\n return style;\n}\n\nfunction removeStyleElement(style) {\n // istanbul ignore if\n if (style.parentNode === null) {\n return false;\n }\n\n style.parentNode.removeChild(style);\n}\n/* istanbul ignore next */\n\n\nvar replaceText = function replaceText() {\n var textStore = [];\n return function replace(index, replacement) {\n textStore[index] = replacement;\n return textStore.filter(Boolean).join('\\n');\n };\n}();\n\nfunction applyToSingletonTag(style, index, remove, obj) {\n var css = remove ? '' : obj.media ? \"@media \".concat(obj.media, \" {\").concat(obj.css, \"}\") : obj.css; // For old IE\n\n /* istanbul ignore if */\n\n if (style.styleSheet) {\n style.styleSheet.cssText = replaceText(index, css);\n } else {\n var cssNode = document.createTextNode(css);\n var childNodes = style.childNodes;\n\n if (childNodes[index]) {\n style.removeChild(childNodes[index]);\n }\n\n if (childNodes.length) {\n style.insertBefore(cssNode, childNodes[index]);\n } else {\n style.appendChild(cssNode);\n }\n }\n}\n\nfunction applyToTag(style, options, obj) {\n var css = obj.css;\n var media = obj.media;\n var sourceMap = obj.sourceMap;\n\n if (media) {\n style.setAttribute('media', media);\n } else {\n style.removeAttribute('media');\n }\n\n if (sourceMap && typeof btoa !== 'undefined') {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n } // For old IE\n\n /* istanbul ignore if */\n\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n while (style.firstChild) {\n style.removeChild(style.firstChild);\n }\n\n style.appendChild(document.createTextNode(css));\n }\n}\n\nvar singleton = null;\nvar singletonCounter = 0;\n\nfunction addStyle(obj, options) {\n var style;\n var update;\n var remove;\n\n if (options.singleton) {\n var styleIndex = singletonCounter++;\n style = singleton || (singleton = insertStyleElement(options));\n update = applyToSingletonTag.bind(null, style, styleIndex, false);\n remove = applyToSingletonTag.bind(null, style, styleIndex, true);\n } else {\n style = insertStyleElement(options);\n update = applyToTag.bind(null, style, options);\n\n remove = function remove() {\n removeStyleElement(style);\n };\n }\n\n update(obj);\n return function updateStyle(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) {\n return;\n }\n\n update(obj = newObj);\n } else {\n remove();\n }\n };\n}\n\nmodule.exports = function (list, options) {\n options = options || {}; // Force single-tag solution on IE6-9, which has a hard limit on the # of <style>\n // tags it will allow on a page\n\n if (!options.singleton && typeof options.singleton !== 'boolean') {\n options.singleton = isOldIE();\n }\n\n list = list || [];\n var lastIdentifiers = modulesToDom(list, options);\n return function update(newList) {\n newList = newList || [];\n\n if (Object.prototype.toString.call(newList) !== '[object Array]') {\n return;\n }\n\n for (var i = 0; i < lastIdentifiers.length; i++) {\n var identifier = lastIdentifiers[i];\n var index = getIndexByIdentifier(identifier);\n stylesInDom[index].references--;\n }\n\n var newLastIdentifiers = modulesToDom(newList, options);\n\n for (var _i = 0; _i < lastIdentifiers.length; _i++) {\n var _identifier = lastIdentifiers[_i];\n\n var _index = getIndexByIdentifier(_identifier);\n\n if (stylesInDom[_index].references === 0) {\n stylesInDom[_index].updater();\n\n stylesInDom.splice(_index, 1);\n }\n }\n\n lastIdentifiers = newLastIdentifiers;\n };\n};","\"use strict\";\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nmodule.exports = function cssWithMappingToString(item) {\n var _item = _slicedToArray(item, 4),\n content = _item[1],\n cssMapping = _item[3];\n\n if (typeof btoa === 'function') {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(cssMapping))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n var sourceMapping = \"/*# \".concat(data, \" */\");\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n};","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (cssWithMappingToString) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery, dedupe) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n if (dedupe) {\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = [].concat(modules[_i]);\n\n if (dedupe && alreadyImportedModules[item[0]]) {\n // eslint-disable-next-line no-continue\n continue;\n }\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};","\"use strict\";\n\nrequire(\"core-js/modules/es.object.assign.js\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _axios = _interopRequireDefault(require(\"axios\"));\n\nvar _auth = require(\"@nextcloud/auth\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar client = _axios.default.create({\n headers: {\n requesttoken: (0, _auth.getRequestToken)()\n }\n});\n\nvar cancelableClient = Object.assign(client, {\n CancelToken: _axios.default.CancelToken,\n isCancel: _axios.default.isCancel\n});\n(0, _auth.onRequestTokenUpdate)(function (token) {\n return client.defaults.headers.requesttoken = token;\n});\nvar _default = cancelableClient;\nexports.default = _default;\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nrequire(\"core-js/modules/es.array.index-of\");\n\nrequire(\"core-js/modules/es.object.assign\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.regexp.exec\");\n\nrequire(\"core-js/modules/es.regexp.to-string\");\n\nrequire(\"core-js/modules/es.string.replace\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRootUrl = exports.generateFilePath = exports.imagePath = exports.generateUrl = exports.generateOcsUrl = exports.generateRemoteUrl = exports.linkTo = void 0;\n\n/// <reference types=\"@nextcloud/typings\" />\n\n/**\n * Get an absolute url to a file in an app\n *\n * @param {string} app the id of the app the file belongs to\n * @param {string} file the file path relative to the app folder\n * @return {string} Absolute URL to a file\n */\nvar linkTo = function linkTo(app, file) {\n return generateFilePath(app, '', file);\n};\n/**\n * Creates a relative url for remote use\n *\n * @param {string} service id\n * @return {string} the url\n */\n\n\nexports.linkTo = linkTo;\n\nvar linkToRemoteBase = function linkToRemoteBase(service) {\n return getRootUrl() + '/remote.php/' + service;\n};\n/**\n * @brief Creates an absolute url for remote use\n * @param {string} service id\n * @return {string} the url\n */\n\n\nvar generateRemoteUrl = function generateRemoteUrl(service) {\n return window.location.protocol + '//' + window.location.host + linkToRemoteBase(service);\n};\n/**\n * Get the base path for the given OCS API service\n *\n * @param {string} service name\n * @param {int} version OCS API version\n * @return {string} OCS API base path\n */\n\n\nexports.generateRemoteUrl = generateRemoteUrl;\n\nvar generateOcsUrl = function generateOcsUrl(service, version) {\n version = version !== 2 ? 1 : 2;\n return window.location.protocol + '//' + window.location.host + getRootUrl() + '/ocs/v' + version + '.php/' + service + '/';\n};\n\nexports.generateOcsUrl = generateOcsUrl;\n\n/**\n * Generate the absolute url for the given relative url, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @return {string} Absolute URL for the given relative URL\n */\nvar generateUrl = function generateUrl(url, params, options) {\n var allOptions = Object.assign({\n escape: true,\n noRewrite: false\n }, options || {});\n\n var _build = function _build(text, vars) {\n vars = vars || {};\n return text.replace(/{([^{}]*)}/g, function (a, b) {\n var r = vars[b];\n\n if (allOptions.escape) {\n return typeof r === 'string' || typeof r === 'number' ? encodeURIComponent(r.toString()) : encodeURIComponent(a);\n } else {\n return typeof r === 'string' || typeof r === 'number' ? r.toString() : a;\n }\n });\n };\n\n if (url.charAt(0) !== '/') {\n url = '/' + url;\n }\n\n if (OC.config.modRewriteWorking === true && !allOptions.noRewrite) {\n return getRootUrl() + _build(url, params || {});\n }\n\n return getRootUrl() + '/index.php' + _build(url, params || {});\n};\n/**\n * Get the absolute path to an image file\n * if no extension is given for the image, it will automatically decide\n * between .png and .svg based on what the browser supports\n *\n * @param {string} app the app id to which the image belongs\n * @param {string} file the name of the image file\n * @return {string}\n */\n\n\nexports.generateUrl = generateUrl;\n\nvar imagePath = function imagePath(app, file) {\n if (file.indexOf('.') === -1) {\n //if no extension is given, use svg\n return generateFilePath(app, 'img', file + '.svg');\n }\n\n return generateFilePath(app, 'img', file);\n};\n/**\n * Get the absolute url for a file in an app\n *\n * @param {string} app the id of the app\n * @param {string} type the type of the file to link to (e.g. css,img,ajax.template)\n * @param {string} file the filename\n * @return {string} Absolute URL for a file in an app\n */\n\n\nexports.imagePath = imagePath;\n\nvar generateFilePath = function generateFilePath(app, type, file) {\n var isCore = OC.coreApps.indexOf(app) !== -1;\n var link = getRootUrl();\n\n if (file.substring(file.length - 3) === 'php' && !isCore) {\n link += '/index.php/apps/' + app;\n\n if (file !== 'index.php') {\n link += '/';\n\n if (type) {\n link += encodeURI(type + '/');\n }\n\n link += file;\n }\n } else if (file.substring(file.length - 3) !== 'php' && !isCore) {\n link = OC.appswebroots[app];\n\n if (type) {\n link += '/' + type + '/';\n }\n\n if (link.substring(link.length - 1) !== '/') {\n link += '/';\n }\n\n link += file;\n } else {\n if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') {\n link += '/index.php/';\n } else {\n link += '/';\n }\n\n if (!isCore) {\n link += 'apps/';\n }\n\n if (app !== '') {\n app += '/';\n link += app;\n }\n\n if (type) {\n link += type + '/';\n }\n\n link += file;\n }\n\n return link;\n};\n/**\n * Return the web root path where this Nextcloud instance\n * is accessible, with a leading slash.\n * For example \"/nextcloud\".\n *\n * @return {string} web root path\n */\n\n\nexports.generateFilePath = generateFilePath;\n\nvar getRootUrl = function getRootUrl() {\n return OC.webroot;\n};\n\nexports.getRootUrl = getRootUrl;\n//# sourceMappingURL=index.js.map","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.es/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.es/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","module.exports = require('./lib/axios');","'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar mergeConfig = require('./core/mergeConfig');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(mergeConfig(axios.defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\n// Expose isAxiosError\naxios.isAxiosError = require('./helpers/isAxiosError');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n","'use strict';\n\nvar utils = require('./../utils');\nvar buildURL = require('../helpers/buildURL');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\nvar mergeConfig = require('./mergeConfig');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = arguments[1] || {};\n config.url = arguments[0];\n } else {\n config = config || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n // Set config.method\n if (config.method) {\n config.method = config.method.toLowerCase();\n } else if (this.defaults.method) {\n config.method = this.defaults.method.toLowerCase();\n } else {\n config.method = 'get';\n }\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\nAxios.prototype.getUri = function getUri(config) {\n config = mergeConfig(this.defaults, config);\n return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\\?/, '');\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n","'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n\n error.toJSON = function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code\n };\n };\n return error;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","'use strict';\n\nvar isAbsoluteURL = require('../helpers/isAbsoluteURL');\nvar combineURLs = require('../helpers/combineURLs');\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","'use strict';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nmodule.exports = function isAxiosError(payload) {\n return (typeof payload === 'object') && (payload.isAxiosError === true);\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nrequire(\"core-js/modules/es.array.for-each\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","import { EventBus } from \"./EventBus\"\nimport { ProxyBus } from \"./ProxyBus\"\nimport { SimpleBus } from \"./SimpleBus\"\n\ndeclare global {\n interface Window {\n OC: any\n _nc_event_bus: any\n }\n}\n\nfunction getBus(): EventBus {\n if ((typeof window.OC !== 'undefined') && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!')\n window._nc_event_bus = window.OC._eventBus\n }\n\n // Either use an existing event bus instance or create one\n if (typeof window._nc_event_bus !== 'undefined') {\n return new ProxyBus(window._nc_event_bus)\n } else {\n return window._nc_event_bus = new SimpleBus()\n }\n}\n\nconst bus = getBus()\n\n/**\n * Register an event listener\n *\n * @param name name of the event\n * @param handler callback invoked for every matching event emitted on the bus\n */\nexport function subscribe(name: string, handler: (string) => void): void {\n bus.subscribe(name, handler)\n}\n\n/**\n * Unregister a previously registered event listener\n *\n * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.\n *\n * @param name name of the event\n * @param handler callback passed to `subscribed`\n */\nexport function unsubscribe(name: string, handler: (string) => void): void {\n bus.unsubscribe(name, handler)\n}\n\n/**\n * Emit an event\n *\n * @param name name of the event\n * @param event event payload\n */\nexport function emit(name: string, event: object): void {\n bus.emit(name, event)\n}\n","import valid from \"semver/functions/valid\";\nimport major from \"semver/functions/major\";\n\nimport packageJson from \"../package.json\";\nimport { Event } from \"./Event.js\";\nimport { EventBus } from \"./EventBus.js\";\nimport { EventHandler } from \"./EventHandler.js\";\n\nexport class ProxyBus implements EventBus {\n\n private bus: EventBus;\n\n constructor(bus: EventBus) {\n if (typeof bus.getVersion !== 'function' || !valid(bus.getVersion())) {\n console.warn('Proxying an event bus with an unknown or invalid version')\n } else if (major(bus.getVersion()) !== major(this.getVersion())) {\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion())\n }\n\n this.bus = bus;\n }\n\n getVersion(): string {\n return packageJson.version\n }\n\n subscribe(name: string, handler: EventHandler): void {\n this.bus.subscribe(name, handler);\n }\n\n unsubscribe(name: string, handler: EventHandler): void {\n this.bus.unsubscribe(name, handler);\n }\n\n emit(name: string, event: Event): void {\n this.bus.emit(name, event);\n }\n\n}\n","const parse = require('./parse')\nconst valid = (version, options) => {\n const v = parse(version, options)\n return v ? v.version : null\n}\nmodule.exports = valid\n","const {MAX_LENGTH} = require('../internal/constants')\nconst { re, t } = require('../internal/re')\nconst SemVer = require('../classes/semver')\n\nconst parse = (version, options) => {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n if (version.length > MAX_LENGTH) {\n return null\n }\n\n const r = options.loose ? re[t.LOOSE] : re[t.FULL]\n if (!r.test(version)) {\n return null\n }\n\n try {\n return new SemVer(version, options)\n } catch (er) {\n return null\n }\n}\n\nmodule.exports = parse\n","const numeric = /^[0-9]+$/\nconst compareIdentifiers = (a, b) => {\n const anum = numeric.test(a)\n const bnum = numeric.test(b)\n\n if (anum && bnum) {\n a = +a\n b = +b\n }\n\n return a === b ? 0\n : (anum && !bnum) ? -1\n : (bnum && !anum) ? 1\n : a < b ? -1\n : 1\n}\n\nconst rcompareIdentifiers = (a, b) => compareIdentifiers(b, a)\n\nmodule.exports = {\n compareIdentifiers,\n rcompareIdentifiers\n}\n","const SemVer = require('../classes/semver')\nconst major = (a, loose) => new SemVer(a, loose).major\nmodule.exports = major\n","import packageJson from \"../package.json\";\nimport { Event } from \"./Event.js\";\nimport { EventBus } from \"./EventBus.js\";\nimport { EventHandler } from \"./EventHandler.js\";\n\nexport class SimpleBus implements EventBus {\n\n private handlers = new Map<string, EventHandler[]>();\n\n getVersion(): string {\n return packageJson.version\n }\n\n subscribe(name: string, handler: EventHandler): void {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n\n unsubscribe(name: string, handler: EventHandler): void {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(h => h != handler));\n }\n\n emit(name: string, event: Event): void {\n (this.handlers.get(name) || []).forEach(h => {\n try {\n h(event)\n } catch (e) {\n console.error('could not invoke event listener', e)\n }\n })\n }\n\n}\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.es/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.es/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.es/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var anObject = require('../internals/an-object');\n\nmodule.exports = function (iterator) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) {\n return anObject(returnMethod.call(iterator)).value;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.es/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\n/// <reference types=\"@nextcloud/typings\" />\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\nvar isAdmin = typeof OC === 'undefined' ? false : OC.isUserAdmin();\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName,\n isAdmin: isAdmin\n };\n}\n//# sourceMappingURL=user.js.map","'use strict';\nvar $ = require('../internals/export');\nvar $indexOf = require('../internals/array-includes').indexOf;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar nativeIndexOf = [].indexOf;\n\nvar NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;\nvar STRICT_METHOD = arrayMethodIsStrict('indexOf');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 });\n\n// `Array.prototype.indexOf` method\n// https://tc39.es/ecma262/#sec-array.prototype.indexof\n$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD || !USES_TO_LENGTH }, {\n indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {\n return NEGATIVE_ZERO\n // convert -0 to +0\n ? nativeIndexOf.apply(this, arguments) || 0\n : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","'use strict';\n\nvar fails = require('./fails');\n\n// babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,\n// so we use an intermediate function.\nfunction RE(s, f) {\n return RegExp(s, f);\n}\n\nexports.UNSUPPORTED_Y = fails(function () {\n // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError\n var re = RE('a', 'y');\n re.lastIndex = 2;\n return re.exec('abcd') != null;\n});\n\nexports.BROKEN_CARET = fails(function () {\n // https://bugzilla.mozilla.org/show_bug.cgi?id=773687\n var re = RE('^r', 'gy');\n re.lastIndex = 2;\n return re.exec('str') != null;\n});\n","'use strict';\nvar redefine = require('../internals/redefine');\nvar anObject = require('../internals/an-object');\nvar fails = require('../internals/fails');\nvar flags = require('../internals/regexp-flags');\n\nvar TO_STRING = 'toString';\nvar RegExpPrototype = RegExp.prototype;\nvar nativeToString = RegExpPrototype[TO_STRING];\n\nvar NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });\n// FF44- RegExp#toString has a wrong name\nvar INCORRECT_NAME = nativeToString.name != TO_STRING;\n\n// `RegExp.prototype.toString` method\n// https://tc39.es/ecma262/#sec-regexp.prototype.tostring\nif (NOT_GENERIC || INCORRECT_NAME) {\n redefine(RegExp.prototype, TO_STRING, function toString() {\n var R = anObject(this);\n var p = String(R.source);\n var rf = R.flags;\n var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);\n return '/' + p + '/' + f;\n }, { unsafe: true });\n}\n","'use strict';\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar anObject = require('../internals/an-object');\nvar toLength = require('../internals/to-length');\nvar toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar getSubstitution = require('../internals/get-substitution');\nvar regExpExec = require('../internals/regexp-exec-abstract');\n\nvar max = Math.max;\nvar min = Math.min;\n\nvar maybeToString = function (it) {\n return it === undefined ? it : String(it);\n};\n\n// @@replace logic\nfixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {\n var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE;\n var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0;\n var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';\n\n return [\n // `String.prototype.replace` method\n // https://tc39.es/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];\n return replacer !== undefined\n ? replacer.call(searchValue, O, replaceValue)\n : nativeReplace.call(String(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace\n function (regexp, replaceValue) {\n if (\n (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) ||\n (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1)\n ) {\n var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);\n if (res.done) return res.value;\n }\n\n var rx = anObject(regexp);\n var S = String(this);\n\n var functionalReplace = typeof replaceValue === 'function';\n if (!functionalReplace) replaceValue = String(replaceValue);\n\n var global = rx.global;\n if (global) {\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n var results = [];\n while (true) {\n var result = regExpExec(rx, S);\n if (result === null) break;\n\n results.push(result);\n if (!global) break;\n\n var matchStr = String(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n\n var matched = String(result[0]);\n var position = max(min(toInteger(result.index), S.length), 0);\n var captures = [];\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = [matched].concat(captures, position, S);\n if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);\n var replacement = String(replaceValue.apply(undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += S.slice(nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n return accumulatedResult + S.slice(nextSourcePosition);\n }\n ];\n});\n","'use strict';\n// TODO: Remove from `core-js@4` since it's moved to entry points\nrequire('../modules/es.regexp.exec');\nvar redefine = require('../internals/redefine');\nvar fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar regexpExec = require('../internals/regexp-exec');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nvar SPECIES = wellKnownSymbol('species');\n\nvar REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {\n // #replace needs built-in support for named groups.\n // #match works fine because it just return the exec results, even if it has\n // a \"grops\" property.\n var re = /./;\n re.exec = function () {\n var result = [];\n result.groups = { a: '7' };\n return result;\n };\n return ''.replace(re, '$<a>') !== '7';\n});\n\n// IE <= 11 replaces $0 with the whole match, as if it was $&\n// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0\nvar REPLACE_KEEPS_$0 = (function () {\n return 'a'.replace(/./, '$0') === '$0';\n})();\n\nvar REPLACE = wellKnownSymbol('replace');\n// Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string\nvar REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {\n if (/./[REPLACE]) {\n return /./[REPLACE]('a', '$0') === '';\n }\n return false;\n})();\n\n// Chrome 51 has a buggy \"split\" implementation when RegExp#exec !== nativeExec\n// Weex JS has frozen built-in prototypes, so use try / catch wrapper\nvar SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {\n var re = /(?:)/;\n var originalExec = re.exec;\n re.exec = function () { return originalExec.apply(this, arguments); };\n var result = 'ab'.split(re);\n return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';\n});\n\nmodule.exports = function (KEY, length, exec, sham) {\n var SYMBOL = wellKnownSymbol(KEY);\n\n var DELEGATES_TO_SYMBOL = !fails(function () {\n // String methods call symbol-named RegEp methods\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n });\n\n var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {\n // Symbol-named RegExp methods call .exec\n var execCalled = false;\n var re = /a/;\n\n if (KEY === 'split') {\n // We can't use real regex here since it causes deoptimization\n // and serious performance degradation in V8\n // https://github.com/zloirock/core-js/issues/306\n re = {};\n // RegExp[@@split] doesn't call the regex's exec method, but first creates\n // a new one. We need to return the patched regex when creating the new one.\n re.constructor = {};\n re.constructor[SPECIES] = function () { return re; };\n re.flags = '';\n re[SYMBOL] = /./[SYMBOL];\n }\n\n re.exec = function () { execCalled = true; return null; };\n\n re[SYMBOL]('');\n return !execCalled;\n });\n\n if (\n !DELEGATES_TO_SYMBOL ||\n !DELEGATES_TO_EXEC ||\n (KEY === 'replace' && !(\n REPLACE_SUPPORTS_NAMED_GROUPS &&\n REPLACE_KEEPS_$0 &&\n !REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE\n )) ||\n (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)\n ) {\n var nativeRegExpMethod = /./[SYMBOL];\n var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {\n if (regexp.exec === regexpExec) {\n if (DELEGATES_TO_SYMBOL && !forceStringMethod) {\n // The native String method already delegates to @@method (this\n // polyfilled function), leasing to infinite recursion.\n // We avoid it by directly calling the native @@method method.\n return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };\n }\n return { done: true, value: nativeMethod.call(str, regexp, arg2) };\n }\n return { done: false };\n }, {\n REPLACE_KEEPS_$0: REPLACE_KEEPS_$0,\n REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE: REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE\n });\n var stringMethod = methods[0];\n var regexMethod = methods[1];\n\n redefine(String.prototype, KEY, stringMethod);\n redefine(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return regexMethod.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return regexMethod.call(string, this); }\n );\n }\n\n if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\n\n// `AdvanceStringIndex` abstract operation\n// https://tc39.es/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? charAt(S, index).length : 1);\n};\n","var toObject = require('../internals/to-object');\n\nvar floor = Math.floor;\nvar replace = ''.replace;\nvar SUBSTITUTION_SYMBOLS = /\\$([$&'`]|\\d\\d?|<[^>]*>)/g;\nvar SUBSTITUTION_SYMBOLS_NO_NAMED = /\\$([$&'`]|\\d\\d?)/g;\n\n// https://tc39.es/ecma262/#sec-getsubstitution\nmodule.exports = function (matched, str, position, captures, namedCaptures, replacement) {\n var tailPos = position + matched.length;\n var m = captures.length;\n var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;\n if (namedCaptures !== undefined) {\n namedCaptures = toObject(namedCaptures);\n symbols = SUBSTITUTION_SYMBOLS;\n }\n return replace.call(replacement, symbols, function (match, ch) {\n var capture;\n switch (ch.charAt(0)) {\n case '$': return '$';\n case '&': return matched;\n case '`': return str.slice(0, position);\n case \"'\": return str.slice(tailPos);\n case '<':\n capture = namedCaptures[ch.slice(1, -1)];\n break;\n default: // \\d\\d?\n var n = +ch;\n if (n === 0) return match;\n if (n > m) {\n var f = floor(n / 10);\n if (f === 0) return match;\n if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);\n return match;\n }\n capture = captures[n - 1];\n }\n return capture === undefined ? '' : capture;\n });\n};\n","var classof = require('./classof-raw');\nvar regexpExec = require('./regexp-exec');\n\n// `RegExpExec` abstract operation\n// https://tc39.es/ecma262/#sec-regexpexec\nmodule.exports = function (R, S) {\n var exec = R.exec;\n if (typeof exec === 'function') {\n var result = exec.call(R, S);\n if (typeof result !== 'object') {\n throw TypeError('RegExp exec method returned something other than an Object or null');\n }\n return result;\n }\n\n if (classof(R) !== 'RegExp') {\n throw TypeError('RegExp#exec called on incompatible receiver');\n }\n\n return regexpExec.call(R, S);\n};\n\n","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","<template>\n\t<div>\n\t\t<button v-if=\"!enabled\"\n\t\t\tid=\"generate-backup-codes\"\n\t\t\t:disabled=\"generatingCodes\"\n\t\t\t@click=\"generateBackupCodes\">\n\t\t\t{{ t('twofactor_backupcodes', 'Generate backup codes') }}\n\t\t\t<span :class=\"{'icon-loading-small': generatingCodes}\" />\n\t\t</button>\n\t\t<template v-else>\n\t\t\t<p>\n\t\t\t\t<template v-if=\"!haveCodes\">\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'Backup codes have been generated. {used} of {total} codes have been used.', {used, total}) }}\n\t\t\t\t</template>\n\t\t\t\t<template v-else>\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'These are your backup codes. Please save and/or print them as you will not be able to read the codes again later') }}\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li v-for=\"code in codes\" :key=\"code\" class=\"backup-code\">\n\t\t\t\t\t\t\t{{ code }}\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a :href=\"downloadUrl\"\n\t\t\t\t\t\tclass=\"button primary\"\n\t\t\t\t\t\t:download=\"downloadFilename\">{{ t('twofactor_backupcodes', 'Save backup codes') }}</a>\n\t\t\t\t\t<button class=\"button\"\n\t\t\t\t\t\t@click=\"printCodes\">\n\t\t\t\t\t\t{{ t('twofactor_backupcodes', 'Print backup codes') }}\n\t\t\t\t\t</button>\n\t\t\t\t</template>\n\t\t\t</p>\n\t\t\t<p>\n\t\t\t\t<button id=\"generate-backup-codes\"\n\t\t\t\t\t@click=\"generateBackupCodes\">\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'Regenerate backup codes') }}\n\t\t\t\t</button>\n\t\t\t</p>\n\t\t\t<p>\n\t\t\t\t<em>\n\t\t\t\t\t{{ t('twofactor_backupcodes', 'If you regenerate backup codes, you automatically invalidate old codes.') }}\n\t\t\t\t</em>\n\t\t\t</p>\n\t\t</template>\n\t</div>\n</template>\n\n<script>\nimport confirmPassword from '@nextcloud/password-confirmation'\nimport { print } from '../service/PrintService'\n\nexport default {\n\tname: 'PersonalSettings',\n\tdata() {\n\t\treturn {\n\t\t\tgeneratingCodes: false,\n\t\t}\n\t},\n\tcomputed: {\n\t\tdownloadUrl() {\n\t\t\tif (!this.codes) {\n\t\t\t\treturn ''\n\t\t\t}\n\t\t\treturn 'data:text/plain,' + encodeURIComponent(this.codes.reduce((prev, code) => {\n\t\t\t\treturn prev + code + '\\r\\n'\n\t\t\t}, ''))\n\t\t},\n\t\tdownloadFilename() {\n\t\t\tconst name = OC.theme.name || 'Nextcloud'\n\t\t\treturn name + '-backup-codes.txt'\n\t\t},\n\t\tenabled() {\n\t\t\treturn this.$store.state.enabled\n\t\t},\n\t\ttotal() {\n\t\t\treturn this.$store.state.total\n\t\t},\n\t\tused() {\n\t\t\treturn this.$store.state.used\n\t\t},\n\t\tcodes() {\n\t\t\treturn this.$store.state.codes\n\t\t},\n\t\tname() {\n\t\t\treturn OC.theme.name || 'Nextcloud'\n\t\t},\n\t\thaveCodes() {\n\t\t\treturn this.codes && this.codes.length > 0\n\t\t},\n\t},\n\tmethods: {\n\t\tgenerateBackupCodes() {\n\t\t\tconfirmPassword().then(() => {\n\t\t\t\t// Hide old codes\n\t\t\t\tthis.generatingCodes = true\n\n\t\t\t\tthis.$store.dispatch('generate').then(data => {\n\t\t\t\t\tthis.generatingCodes = false\n\t\t\t\t}).catch(err => {\n\t\t\t\t\tOC.Notification.showTemporary(t('twofactor_backupcodes', 'An error occurred while generating your backup codes'))\n\t\t\t\t\tthis.generatingCodes = false\n\t\t\t\t\tthrow err\n\t\t\t\t})\n\t\t\t}).catch(console.error.bind(this))\n\t\t},\n\n\t\tgetPrintData(codes) {\n\t\t\tif (!codes) {\n\t\t\t\treturn ''\n\t\t\t}\n\t\t\treturn codes.reduce((prev, code) => {\n\t\t\t\treturn prev + code + '<br>'\n\t\t\t}, '')\n\t\t},\n\n\t\tprintCodes() {\n\t\t\tprint(this.getPrintData(this.codes))\n\t\t},\n\t},\n}\n</script>\n\n<style scoped>\n\t.backup-code {\n\t\tfont-family: monospace;\n\t\tletter-spacing: 0.02em;\n\t\tfont-size: 1.2em;\n\t}\n\t.button {\n\t\tdisplay: inline-block;\n\t}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PersonalSettings.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PersonalSettings.vue?vue&type=script&lang=js&\"","export function print(data) {\n\tconst name = OC.theme.name || 'Nextcloud'\n\tconst newTab = window.open('', t('twofactor_backupcodes', '{name} backup codes', { name }))\n\tnewTab.document.write('<h1>' + t('twofactor_backupcodes', '{name} backup codes', { name }) + '</h1>')\n\tnewTab.document.write('<pre>' + data + '</pre>')\n\tnewTab.print()\n\tnewTab.close()\n}\n","import api from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import content from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PersonalSettings.vue?vue&type=style&index=0&id=00d0b868&scoped=true&lang=css&\";\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\n\n\nexport default content.locals || {};","import { render, staticRenderFns } from \"./PersonalSettings.vue?vue&type=template&id=00d0b868&scoped=true&\"\nimport script from \"./PersonalSettings.vue?vue&type=script&lang=js&\"\nexport * from \"./PersonalSettings.vue?vue&type=script&lang=js&\"\nimport style0 from \"./PersonalSettings.vue?vue&type=style&index=0&id=00d0b868&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"00d0b868\",\n null\n \n)\n\nexport default component.exports","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(!_vm.enabled)?_c('button',{attrs:{\"id\":\"generate-backup-codes\",\"disabled\":_vm.generatingCodes},on:{\"click\":_vm.generateBackupCodes}},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('twofactor_backupcodes', 'Generate backup codes'))+\"\\n\\t\\t\"),_c('span',{class:{'icon-loading-small': _vm.generatingCodes}})]):[_c('p',[(!_vm.haveCodes)?[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('twofactor_backupcodes', 'Backup codes have been generated. {used} of {total} codes have been used.', {used: _vm.used, total: _vm.total}))+\"\\n\\t\\t\\t\")]:[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('twofactor_backupcodes', 'These are your backup codes. Please save and/or print them as you will not be able to read the codes again later'))+\"\\n\\t\\t\\t\\t\"),_c('ul',_vm._l((_vm.codes),function(code){return _c('li',{key:code,staticClass:\"backup-code\"},[_vm._v(\"\\n\\t\\t\\t\\t\\t\\t\"+_vm._s(code)+\"\\n\\t\\t\\t\\t\\t\")])}),0),_vm._v(\" \"),_c('a',{staticClass:\"button primary\",attrs:{\"href\":_vm.downloadUrl,\"download\":_vm.downloadFilename}},[_vm._v(_vm._s(_vm.t('twofactor_backupcodes', 'Save backup codes')))]),_vm._v(\" \"),_c('button',{staticClass:\"button\",on:{\"click\":_vm.printCodes}},[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('twofactor_backupcodes', 'Print backup codes'))+\"\\n\\t\\t\\t\\t\")])]],2),_vm._v(\" \"),_c('p',[_c('button',{attrs:{\"id\":\"generate-backup-codes\"},on:{\"click\":_vm.generateBackupCodes}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('twofactor_backupcodes', 'Regenerate backup codes'))+\"\\n\\t\\t\\t\")])]),_vm._v(\" \"),_c('p',[_c('em',[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('twofactor_backupcodes', 'If you regenerate backup codes, you automatically invalidate old codes.'))+\"\\n\\t\\t\\t\")])])]],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright 2019 Roeland Jago Douma <roeland@famdouma.nl>\n *\n * @author 2019 Roeland Jago Douma <roeland@famdouma.nl>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n\nimport Vue from 'vue'\nimport Vuex from 'vuex'\nimport { generateCodes } from './service/BackupCodesService'\n\nVue.use(Vuex)\n\nconst state = {\n\tenabled: false,\n\ttotal: 0,\n\tused: 0,\n\tcodes: [],\n}\n\nconst mutations = {\n\tsetEnabled(state, enabled) {\n\t\tVue.set(state, 'enabled', enabled)\n\t},\n\tsetTotal(state, total) {\n\t\tVue.set(state, 'total', total)\n\t},\n\tsetUsed(state, used) {\n\t\tVue.set(state, 'used', used)\n\t},\n\tsetCodes(state, codes) {\n\t\tVue.set(state, 'codes', codes)\n\t},\n}\n\nconst actions = {\n\tgenerate({ commit }) {\n\t\tcommit('setEnabled', false)\n\n\t\treturn generateCodes().then(({ codes, state }) => {\n\t\t\tcommit('setEnabled', state.enabled)\n\t\t\tcommit('setTotal', state.total)\n\t\t\tcommit('setUsed', state.used)\n\t\t\tcommit('setCodes', codes)\n\t\t\treturn true\n\t\t})\n\t},\n}\n\nexport default new Vuex.Store({\n\tstrict: process.env.NODE_ENV !== 'production',\n\tstate,\n\tmutations,\n\tactions,\n})\n","import Axios from '@nextcloud/axios'\nimport { generateUrl } from '@nextcloud/router'\n\nexport function generateCodes() {\n\tconst url = generateUrl('/apps/twofactor_backupcodes/settings/create')\n\n\treturn Axios.post(url, {}).then(resp => resp.data)\n}\n","import { loadState } from '@nextcloud/initial-state'\nimport Vue from 'vue'\n\nimport PersonalSettings from './views/PersonalSettings'\nimport store from './store'\n\nVue.prototype.t = t\n\nconst initialState = loadState('twofactor_backupcodes', 'state')\nstore.replaceState(initialState)\n\nconst View = Vue.extend(PersonalSettings)\nnew View({\n\tstore,\n}).$mount('#twofactor-backupcodes-settings')\n"],"sourceRoot":""}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/af.js b/apps/twofactor_backupcodes/l10n/af.js index 6150f2177e7..cdd9083fbc7 100644 --- a/apps/twofactor_backupcodes/l10n/af.js +++ b/apps/twofactor_backupcodes/l10n/af.js @@ -7,11 +7,11 @@ OC.L10N.register( "Backup code" : "Rugsteunkode", "Use backup code" : "Gebruik rugsteunkode", "Two factor backup codes" : "Tweefaktorrugsteunkodes", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dit is u rugsteunkodes. Bewaar dit of druk dit af aangesien u later nie hierdie kodes sal kan lees nie", + "An error occurred while generating your backup codes" : "’n fout het voorgekom tydens generering van u rugsteunkodes", "Save backup codes" : "Bewaar rugsteunkodes", "Print backup codes" : "Druk rugsteunkodes", "Regenerate backup codes" : "Hergenereer rugsteunkodes", "If you regenerate backup codes, you automatically invalidate old codes." : "Indien u rugsteunkodes hergenereer maak u outomaties die ou kodes ongeldig.", - "An error occurred while generating your backup codes" : "’n fout het voorgekom tydens generering van u rugsteunkodes" + "Submit" : "Dien in" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/af.json b/apps/twofactor_backupcodes/l10n/af.json index f2f6123b317..c4fc9d35c4c 100644 --- a/apps/twofactor_backupcodes/l10n/af.json +++ b/apps/twofactor_backupcodes/l10n/af.json @@ -5,11 +5,11 @@ "Backup code" : "Rugsteunkode", "Use backup code" : "Gebruik rugsteunkode", "Two factor backup codes" : "Tweefaktorrugsteunkodes", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dit is u rugsteunkodes. Bewaar dit of druk dit af aangesien u later nie hierdie kodes sal kan lees nie", + "An error occurred while generating your backup codes" : "’n fout het voorgekom tydens generering van u rugsteunkodes", "Save backup codes" : "Bewaar rugsteunkodes", "Print backup codes" : "Druk rugsteunkodes", "Regenerate backup codes" : "Hergenereer rugsteunkodes", "If you regenerate backup codes, you automatically invalidate old codes." : "Indien u rugsteunkodes hergenereer maak u outomaties die ou kodes ongeldig.", - "An error occurred while generating your backup codes" : "’n fout het voorgekom tydens generering van u rugsteunkodes" + "Submit" : "Dien in" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ar.js b/apps/twofactor_backupcodes/l10n/ar.js new file mode 100644 index 00000000000..0c5f32cbf3d --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ar.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "لقد قمت بتوليد الأكواد الاحتياطية للدخول مع التحقق ثنائي العوامل لحسابك", + "Second-factor backup codes" : "الأكواد الاحتياطية للعامل الثاني في الدخول مع التحقق ثنائي العوامل من الهوية", + "Generate backup codes" : "توليد رموز الاسترجاع الاحتياطية", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "لقد قمت بتمكين التحقّق المثنى من الهوية لكنك لم تقم بتوليد الأكواد الاحتياطية بعد. ستحتاج هذه الأكواد لاسترجاع حق الدخول لحسابك إذا ما ضاع عاملك الثاني في الدخول.", + "Backup code" : "الرمز الاحتياطي", + "Use backup code" : "إستخدم الرمز الإحتياطي", + "Two factor backup codes" : "الأكواد الاحتياطية للتحقق ثنائي العوامل", + "A two-factor auth backup codes provider" : "مزوّد الأكواد الاحتياطية للتحقق ثنائي العوامل من الهويّة", + "An error occurred while generating your backup codes" : "حدث خطأ عند توليد أكوادك الاحتياطية", + "Backup codes have been generated. {used} of {total} codes have been used." : "تمّ توليد الأكواد الاحتياطية. {used} من {total} تمّ استخدامها.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "هذه هي الرموز الاحتياطية الخاصة بك. يرجى حفظها و/أو طباعتها لأنك لن تتمكن من قراءة الرموز لاحقًا.", + "Save backup codes" : "الإحتفاظ بالرموز الإحتياطية", + "Print backup codes" : "طباعة الرموز الإحتياطية", + "Regenerate backup codes" : "إعادة توليد رموز الإسترجاع الإحتياطية", + "If you regenerate backup codes, you automatically invalidate old codes." : "عندما تقوم بتوليد أكواد احتياطية جديدة، فإن الأكواد القديمة تفقد صلاحيتها تلقائيّتاً.", + "{name} backup codes" : "{name} أكواد احتياطية", + "Use one of the backup codes you saved when setting up two-factor authentication." : "استخدم واحداً من الأكواد الاحتياطية التي سبق و أن خزنتها عند تجهيز إعدادات التحقق ثنائي العوامل من الهويّة.", + "Submit" : "إرسال " +}, +"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/apps/twofactor_backupcodes/l10n/ar.json b/apps/twofactor_backupcodes/l10n/ar.json new file mode 100644 index 00000000000..0e496b1fb71 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ar.json @@ -0,0 +1,21 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "لقد قمت بتوليد الأكواد الاحتياطية للدخول مع التحقق ثنائي العوامل لحسابك", + "Second-factor backup codes" : "الأكواد الاحتياطية للعامل الثاني في الدخول مع التحقق ثنائي العوامل من الهوية", + "Generate backup codes" : "توليد رموز الاسترجاع الاحتياطية", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "لقد قمت بتمكين التحقّق المثنى من الهوية لكنك لم تقم بتوليد الأكواد الاحتياطية بعد. ستحتاج هذه الأكواد لاسترجاع حق الدخول لحسابك إذا ما ضاع عاملك الثاني في الدخول.", + "Backup code" : "الرمز الاحتياطي", + "Use backup code" : "إستخدم الرمز الإحتياطي", + "Two factor backup codes" : "الأكواد الاحتياطية للتحقق ثنائي العوامل", + "A two-factor auth backup codes provider" : "مزوّد الأكواد الاحتياطية للتحقق ثنائي العوامل من الهويّة", + "An error occurred while generating your backup codes" : "حدث خطأ عند توليد أكوادك الاحتياطية", + "Backup codes have been generated. {used} of {total} codes have been used." : "تمّ توليد الأكواد الاحتياطية. {used} من {total} تمّ استخدامها.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "هذه هي الرموز الاحتياطية الخاصة بك. يرجى حفظها و/أو طباعتها لأنك لن تتمكن من قراءة الرموز لاحقًا.", + "Save backup codes" : "الإحتفاظ بالرموز الإحتياطية", + "Print backup codes" : "طباعة الرموز الإحتياطية", + "Regenerate backup codes" : "إعادة توليد رموز الإسترجاع الإحتياطية", + "If you regenerate backup codes, you automatically invalidate old codes." : "عندما تقوم بتوليد أكواد احتياطية جديدة، فإن الأكواد القديمة تفقد صلاحيتها تلقائيّتاً.", + "{name} backup codes" : "{name} أكواد احتياطية", + "Use one of the backup codes you saved when setting up two-factor authentication." : "استخدم واحداً من الأكواد الاحتياطية التي سبق و أن خزنتها عند تجهيز إعدادات التحقق ثنائي العوامل من الهويّة.", + "Submit" : "إرسال " +},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ast.js b/apps/twofactor_backupcodes/l10n/ast.js index 9c594ff6ad1..787fc3bf72f 100644 --- a/apps/twofactor_backupcodes/l10n/ast.js +++ b/apps/twofactor_backupcodes/l10n/ast.js @@ -1,14 +1,22 @@ OC.L10N.register( "twofactor_backupcodes", { - "Generate backup codes" : "Xenerar códigos de respaldu", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Xeneráronse los códigos de respaldu. Usáronse {{used}} de {{total}} códigos.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son los códigos de respaldu. Guárdalos y/o impréntalos darréu que nun sedrás a lleelos de nueves más sero", - "Save backup codes" : "Guardar códigos de respaldu", - "Regenerate backup codes" : "Rexenerar códigos de respaldu", - "An error occurred while generating your backup codes" : "Asocedió un fallu entrín se xeneraben los tos códigos de respaldu", - "Nextcloud backup codes" : "Códigos de respaldu de Nextcloud", - "You created two-factor backup codes for your account" : "Creesti códigos de respaldu pa l'autenticación en dos pasos de la to cuenta", - "Use backup code" : "Usar códigu de respaldu" + "You created two-factor backup codes for your account" : "Creesti los códigos de recuperación pa l'autenticación en dos pasos de la to cuenta", + "Second-factor backup codes" : "Códigos de recuperación de l'autenticación en dos pasos", + "Generate backup codes" : "Xenerar códigos de recuperación", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Activesti l'autenticación en dos pasos mas entá nun xeneresti nengún códigu de recuperación. Estos códigos precísense pa recuperar l'accesu a la to cuenta en casu de perder l'autenticación en dos pasos.", + "Backup code" : "Códigu de recuperación", + "Use backup code" : "Usar un códigu de recuperación", + "Two factor backup codes" : "Códigos de recuperación de l'autenticación en dos pasos", + "A two-factor auth backup codes provider" : "Un fornidor de códigos de recuperación pa l'autenticación en dos pasos", + "An error occurred while generating your backup codes" : "Prodúxose un error mentanto se xeneraben los códigos de recuperación", + "Backup codes have been generated. {used} of {total} codes have been used." : "Xeneráronse los códigos de recuperación y usáronse {used} de {total} códigos.", + "Save backup codes" : "Guardar los códigos de recuperación", + "Print backup codes" : "Imprentar los códigos de recuperación", + "Regenerate backup codes" : "Volver xenerar los códigos de recuperación", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si vuelves xenerar los códigos de recuperación, anules automáticamente los antiguos.", + "{name} backup codes" : "Códigos de recuperación de: {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Usa unu de los códigos de recuperación que guardesti cuando configuresti l'autenticación en dos pasos.", + "Submit" : "Unviar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/ast.json b/apps/twofactor_backupcodes/l10n/ast.json index 89c231dfe00..ff63a8a9cf4 100644 --- a/apps/twofactor_backupcodes/l10n/ast.json +++ b/apps/twofactor_backupcodes/l10n/ast.json @@ -1,12 +1,20 @@ { "translations": { - "Generate backup codes" : "Xenerar códigos de respaldu", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Xeneráronse los códigos de respaldu. Usáronse {{used}} de {{total}} códigos.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son los códigos de respaldu. Guárdalos y/o impréntalos darréu que nun sedrás a lleelos de nueves más sero", - "Save backup codes" : "Guardar códigos de respaldu", - "Regenerate backup codes" : "Rexenerar códigos de respaldu", - "An error occurred while generating your backup codes" : "Asocedió un fallu entrín se xeneraben los tos códigos de respaldu", - "Nextcloud backup codes" : "Códigos de respaldu de Nextcloud", - "You created two-factor backup codes for your account" : "Creesti códigos de respaldu pa l'autenticación en dos pasos de la to cuenta", - "Use backup code" : "Usar códigu de respaldu" + "You created two-factor backup codes for your account" : "Creesti los códigos de recuperación pa l'autenticación en dos pasos de la to cuenta", + "Second-factor backup codes" : "Códigos de recuperación de l'autenticación en dos pasos", + "Generate backup codes" : "Xenerar códigos de recuperación", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Activesti l'autenticación en dos pasos mas entá nun xeneresti nengún códigu de recuperación. Estos códigos precísense pa recuperar l'accesu a la to cuenta en casu de perder l'autenticación en dos pasos.", + "Backup code" : "Códigu de recuperación", + "Use backup code" : "Usar un códigu de recuperación", + "Two factor backup codes" : "Códigos de recuperación de l'autenticación en dos pasos", + "A two-factor auth backup codes provider" : "Un fornidor de códigos de recuperación pa l'autenticación en dos pasos", + "An error occurred while generating your backup codes" : "Prodúxose un error mentanto se xeneraben los códigos de recuperación", + "Backup codes have been generated. {used} of {total} codes have been used." : "Xeneráronse los códigos de recuperación y usáronse {used} de {total} códigos.", + "Save backup codes" : "Guardar los códigos de recuperación", + "Print backup codes" : "Imprentar los códigos de recuperación", + "Regenerate backup codes" : "Volver xenerar los códigos de recuperación", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si vuelves xenerar los códigos de recuperación, anules automáticamente los antiguos.", + "{name} backup codes" : "Códigos de recuperación de: {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Usa unu de los códigos de recuperación que guardesti cuando configuresti l'autenticación en dos pasos.", + "Submit" : "Unviar" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/bg.js b/apps/twofactor_backupcodes/l10n/bg.js index b974d70942e..a690b5d6afe 100644 --- a/apps/twofactor_backupcodes/l10n/bg.js +++ b/apps/twofactor_backupcodes/l10n/bg.js @@ -4,15 +4,19 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Създадохте резервен код за двустепенното удостоверяване за вашия профил", "Second-factor backup codes" : "Резервен код за втората стъпка", "Generate backup codes" : "Генериране на резервни кодове", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Активирали сте двустепенно удостоверяване, но все още не сте генерирали резервни кодове. Те са необходими за възстановяване на достъп до вашия профил, в случай че загубите втората си стъпка.", "Backup code" : "Резервен код", "Use backup code" : "Използвай код за възстановяване", + "Two factor backup codes" : "Двустепенни резервни кодове", + "A two-factor auth backup codes provider" : "Доставчик на двустепенни резервни кодове за удостоверяване", + "An error occurred while generating your backup codes" : "Възникна грешка при генерирането на резервния код", "Backup codes have been generated. {used} of {total} codes have been used." : "Резервен код е бил генериран. Използвани са {used} от {total} кода.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Това е вашия резервен код. Моля, запишете го (или го принтирайте) защото по-късно няма да имате възможност да го видите.", "Save backup codes" : "Записване на резервния код", "Print backup codes" : "Принтиране на резервния код", "Regenerate backup codes" : "Регенериране на резервния код", "If you regenerate backup codes, you automatically invalidate old codes." : "При регенерирането на резервния код, стария код автоматично бива анулиран.", - "An error occurred while generating your backup codes" : "Възникна грешка при генерирането на резервния код", + "{name} backup codes" : "{name} резервни кодове", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Използвайте един от резервните кодове, които сте запазили, когато настройвате двустепенно удостоверяване.", "Submit" : "Изпращане" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/bg.json b/apps/twofactor_backupcodes/l10n/bg.json index 6dce3601911..8a60d037158 100644 --- a/apps/twofactor_backupcodes/l10n/bg.json +++ b/apps/twofactor_backupcodes/l10n/bg.json @@ -2,15 +2,19 @@ "You created two-factor backup codes for your account" : "Създадохте резервен код за двустепенното удостоверяване за вашия профил", "Second-factor backup codes" : "Резервен код за втората стъпка", "Generate backup codes" : "Генериране на резервни кодове", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Активирали сте двустепенно удостоверяване, но все още не сте генерирали резервни кодове. Те са необходими за възстановяване на достъп до вашия профил, в случай че загубите втората си стъпка.", "Backup code" : "Резервен код", "Use backup code" : "Използвай код за възстановяване", + "Two factor backup codes" : "Двустепенни резервни кодове", + "A two-factor auth backup codes provider" : "Доставчик на двустепенни резервни кодове за удостоверяване", + "An error occurred while generating your backup codes" : "Възникна грешка при генерирането на резервния код", "Backup codes have been generated. {used} of {total} codes have been used." : "Резервен код е бил генериран. Използвани са {used} от {total} кода.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Това е вашия резервен код. Моля, запишете го (или го принтирайте) защото по-късно няма да имате възможност да го видите.", "Save backup codes" : "Записване на резервния код", "Print backup codes" : "Принтиране на резервния код", "Regenerate backup codes" : "Регенериране на резервния код", "If you regenerate backup codes, you automatically invalidate old codes." : "При регенерирането на резервния код, стария код автоматично бива анулиран.", - "An error occurred while generating your backup codes" : "Възникна грешка при генерирането на резервния код", + "{name} backup codes" : "{name} резервни кодове", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Използвайте един от резервните кодове, които сте запазили, когато настройвате двустепенно удостоверяване.", "Submit" : "Изпращане" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ca.js b/apps/twofactor_backupcodes/l10n/ca.js index 095c9daa747..a530ac84138 100644 --- a/apps/twofactor_backupcodes/l10n/ca.js +++ b/apps/twofactor_backupcodes/l10n/ca.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Heu creat els codis de seguretat de dos factors per al vostre compte", - "Second-factor backup codes" : "Codis de seguretat de segon factor", - "Generate backup codes" : "Genera els codis de seguretat", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Heu activat l'autenticació de dos factors però encara no heu generat els codis de seguretat. Aquests són necessaris per restablir l'accés al vostre compte en cas de perdre el vostre segon factor.", - "Backup code" : "Codi de seguretat", - "Use backup code" : "Utilitza un codi de seguretat", - "Two factor backup codes" : "Codis de seguretat de l'autenticació en dos factors", - "A two-factor auth backup codes provider" : "Proveïdor de codis de seguretat d'autenticació en dos factors", - "Backup codes have been generated. {used} of {total} codes have been used." : "S'han generat els codis de seguretat. S'han fet servir {used} de {total} codis.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Aquests són els vostres codis de seguretat. Si us plau, deseu-los i/o imprimiu-los ja que no podreu tornar-los a llegir després", - "Save backup codes" : "Desa els codis de seguretat", - "Print backup codes" : "Imprimeix codis de seguretat", - "Regenerate backup codes" : "Regenera els codis de seguretat", - "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenereu els codis de seguretat, invalidareu automàticament els codis antics.", - "An error occurred while generating your backup codes" : "S'ha produït un error mentre es generaven els codis de seguretat", - "{name} backup codes" : "Codis de seguretat {name}", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Feu servir un dels codis de seguretat que heu desat quan he configurat l’autenticació de dos factors.", + "You created two-factor backup codes for your account" : "Heu creat els codis de reserva de dos factors per al vostre compte", + "Second-factor backup codes" : "Codis de reserva de dos factors", + "Generate backup codes" : "Genera els codis de reserva", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Heu habilitat l'autenticació de dos factors, però encara no heu generat codis de reserva. Els necessitareu per a restablir l'accés al compte si perdeu el segon factor.", + "Backup code" : "Codi de reserva", + "Use backup code" : "Utilitza un codi de reserva", + "Two factor backup codes" : "Codis de reserva de l'autenticació de dos factors", + "A two-factor auth backup codes provider" : "Proveïdor de codis de reserva de l'autenticació de dos factors", + "An error occurred while generating your backup codes" : "S'ha produït un error en generar els codis de reserva", + "Backup codes have been generated. {used} of {total} codes have been used." : "S'han generat els codis de reserva. Heu utilitzat {used} de {total} codis.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Aquests són els vostres codis de reserva. Deseu-los o imprimiu-los, ja que no podreu tornar-los a consultar més tard.", + "Save backup codes" : "Desa els codis de reserva", + "Print backup codes" : "Imprimeix els codis de reserva", + "Regenerate backup codes" : "Torna a generar els codis de reserva", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si torneu a generar els codis de reserva, anul·lareu automàticament els codis antics.", + "{name} backup codes" : "Codis de seguretat per a {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilitzeu un dels codis de reserva que vau desar en configurar l'autenticació de dos factors.", "Submit" : "Envia" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/ca.json b/apps/twofactor_backupcodes/l10n/ca.json index a30bc2a8ef9..a57edf504f4 100644 --- a/apps/twofactor_backupcodes/l10n/ca.json +++ b/apps/twofactor_backupcodes/l10n/ca.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Heu creat els codis de seguretat de dos factors per al vostre compte", - "Second-factor backup codes" : "Codis de seguretat de segon factor", - "Generate backup codes" : "Genera els codis de seguretat", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Heu activat l'autenticació de dos factors però encara no heu generat els codis de seguretat. Aquests són necessaris per restablir l'accés al vostre compte en cas de perdre el vostre segon factor.", - "Backup code" : "Codi de seguretat", - "Use backup code" : "Utilitza un codi de seguretat", - "Two factor backup codes" : "Codis de seguretat de l'autenticació en dos factors", - "A two-factor auth backup codes provider" : "Proveïdor de codis de seguretat d'autenticació en dos factors", - "Backup codes have been generated. {used} of {total} codes have been used." : "S'han generat els codis de seguretat. S'han fet servir {used} de {total} codis.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Aquests són els vostres codis de seguretat. Si us plau, deseu-los i/o imprimiu-los ja que no podreu tornar-los a llegir després", - "Save backup codes" : "Desa els codis de seguretat", - "Print backup codes" : "Imprimeix codis de seguretat", - "Regenerate backup codes" : "Regenera els codis de seguretat", - "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenereu els codis de seguretat, invalidareu automàticament els codis antics.", - "An error occurred while generating your backup codes" : "S'ha produït un error mentre es generaven els codis de seguretat", - "{name} backup codes" : "Codis de seguretat {name}", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Feu servir un dels codis de seguretat que heu desat quan he configurat l’autenticació de dos factors.", + "You created two-factor backup codes for your account" : "Heu creat els codis de reserva de dos factors per al vostre compte", + "Second-factor backup codes" : "Codis de reserva de dos factors", + "Generate backup codes" : "Genera els codis de reserva", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Heu habilitat l'autenticació de dos factors, però encara no heu generat codis de reserva. Els necessitareu per a restablir l'accés al compte si perdeu el segon factor.", + "Backup code" : "Codi de reserva", + "Use backup code" : "Utilitza un codi de reserva", + "Two factor backup codes" : "Codis de reserva de l'autenticació de dos factors", + "A two-factor auth backup codes provider" : "Proveïdor de codis de reserva de l'autenticació de dos factors", + "An error occurred while generating your backup codes" : "S'ha produït un error en generar els codis de reserva", + "Backup codes have been generated. {used} of {total} codes have been used." : "S'han generat els codis de reserva. Heu utilitzat {used} de {total} codis.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Aquests són els vostres codis de reserva. Deseu-los o imprimiu-los, ja que no podreu tornar-los a consultar més tard.", + "Save backup codes" : "Desa els codis de reserva", + "Print backup codes" : "Imprimeix els codis de reserva", + "Regenerate backup codes" : "Torna a generar els codis de reserva", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si torneu a generar els codis de reserva, anul·lareu automàticament els codis antics.", + "{name} backup codes" : "Codis de seguretat per a {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilitzeu un dels codis de reserva que vau desar en configurar l'autenticació de dos factors.", "Submit" : "Envia" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/cs.js b/apps/twofactor_backupcodes/l10n/cs.js index 3b8731d8bf9..cfb0cf59dc3 100644 --- a/apps/twofactor_backupcodes/l10n/cs.js +++ b/apps/twofactor_backupcodes/l10n/cs.js @@ -1,21 +1,21 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Vytvořili jste záložní kódy dvoufázového ověření pro váš účet", + "You created two-factor backup codes for your account" : "Vytvořili jste záložní kódy pro dvoufázové ověřování se pro svůj účet", "Second-factor backup codes" : "Záložní kódy pro dvoufázové ověřování", "Generate backup codes" : "Vytvořit záložní kódy", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Zapnuli jste si dvouúrovňové ověřování, ale doposud nenechali vytvořit záložní kódy. Ty jsou potřebné pro obnovení přístupu k vašemu účtu v případě, že ztratíte druhý faktor.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Zapnuli jste si dvoufázové ověřování, ale doposud nenechali vytvořit záložní kódy. Ty jsou potřebné pro obnovení přístupu k vašemu účtu v případě, že ztratíte druhý faktor.", "Backup code" : "Záložní kód", "Use backup code" : "Použít záložní kód", "Two factor backup codes" : "Záložní kódy pro dvoufázové ověřování", - "A two-factor auth backup codes provider" : "Poskytovatel záložních kódů pro dvoustupňové ověřování", + "A two-factor auth backup codes provider" : "Poskytovatel záložních kódů pro dvoufázové ověřování", + "An error occurred while generating your backup codes" : "Při pokusu o vytvoření záložních kódů nastala chyba.", "Backup codes have been generated. {used} of {total} codes have been used." : "Záložní kódy byly vytvořeny. Využito {used} z {total} kódů.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Zde jsou vaše záložní kódy. Kódy si uložte a/nebo vytiskněte, protože už je nebude možné zobrazit znovu.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Zde jsou vaše záložní kódy. Kódy si uložte a/nebo vytiskněte, protože už je nebude možné zobrazit znovu.", "Save backup codes" : "Uložit záložní kódy", "Print backup codes" : "Vytisknout záložní kódy", "Regenerate backup codes" : "Vytvořit nové záložní kódy", "If you regenerate backup codes, you automatically invalidate old codes." : "Pokud necháte vytvořit nové záložní kódy, staré budou automaticky zneplatněny.", - "An error occurred while generating your backup codes" : "Při pokusu o vytvoření záložních kódů nastala chyba.", "{name} backup codes" : "{name} záložní kódy", "Use one of the backup codes you saved when setting up two-factor authentication." : "Použijte jeden ze svých záložních kódů které jste si uložili při nastavování dvoufázového ověřování.", "Submit" : "Odeslat" diff --git a/apps/twofactor_backupcodes/l10n/cs.json b/apps/twofactor_backupcodes/l10n/cs.json index 492a91274fc..199c42c7e99 100644 --- a/apps/twofactor_backupcodes/l10n/cs.json +++ b/apps/twofactor_backupcodes/l10n/cs.json @@ -1,19 +1,19 @@ { "translations": { - "You created two-factor backup codes for your account" : "Vytvořili jste záložní kódy dvoufázového ověření pro váš účet", + "You created two-factor backup codes for your account" : "Vytvořili jste záložní kódy pro dvoufázové ověřování se pro svůj účet", "Second-factor backup codes" : "Záložní kódy pro dvoufázové ověřování", "Generate backup codes" : "Vytvořit záložní kódy", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Zapnuli jste si dvouúrovňové ověřování, ale doposud nenechali vytvořit záložní kódy. Ty jsou potřebné pro obnovení přístupu k vašemu účtu v případě, že ztratíte druhý faktor.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Zapnuli jste si dvoufázové ověřování, ale doposud nenechali vytvořit záložní kódy. Ty jsou potřebné pro obnovení přístupu k vašemu účtu v případě, že ztratíte druhý faktor.", "Backup code" : "Záložní kód", "Use backup code" : "Použít záložní kód", "Two factor backup codes" : "Záložní kódy pro dvoufázové ověřování", - "A two-factor auth backup codes provider" : "Poskytovatel záložních kódů pro dvoustupňové ověřování", + "A two-factor auth backup codes provider" : "Poskytovatel záložních kódů pro dvoufázové ověřování", + "An error occurred while generating your backup codes" : "Při pokusu o vytvoření záložních kódů nastala chyba.", "Backup codes have been generated. {used} of {total} codes have been used." : "Záložní kódy byly vytvořeny. Využito {used} z {total} kódů.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Zde jsou vaše záložní kódy. Kódy si uložte a/nebo vytiskněte, protože už je nebude možné zobrazit znovu.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Zde jsou vaše záložní kódy. Kódy si uložte a/nebo vytiskněte, protože už je nebude možné zobrazit znovu.", "Save backup codes" : "Uložit záložní kódy", "Print backup codes" : "Vytisknout záložní kódy", "Regenerate backup codes" : "Vytvořit nové záložní kódy", "If you regenerate backup codes, you automatically invalidate old codes." : "Pokud necháte vytvořit nové záložní kódy, staré budou automaticky zneplatněny.", - "An error occurred while generating your backup codes" : "Při pokusu o vytvoření záložních kódů nastala chyba.", "{name} backup codes" : "{name} záložní kódy", "Use one of the backup codes you saved when setting up two-factor authentication." : "Použijte jeden ze svých záložních kódů které jste si uložili při nastavování dvoufázového ověřování.", "Submit" : "Odeslat" diff --git a/apps/twofactor_backupcodes/l10n/cs_CZ.js b/apps/twofactor_backupcodes/l10n/cs_CZ.js deleted file mode 100644 index 126b5b20ec1..00000000000 --- a/apps/twofactor_backupcodes/l10n/cs_CZ.js +++ /dev/null @@ -1,21 +0,0 @@ -OC.L10N.register( - "twofactor_backupcodes", - { - "Generate backup codes" : "Vytvořit záložní kódy", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Záložní kódy byly vytvořeny. {{used}} z {{total}} kódů bylo využito.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Zde jsou vaše záložní kódy. Kódy si prosím uložte a/nebo vytiskněte, protože je nebude možné později zobrazit.", - "Save backup codes" : "Uložit záložní kódy", - "Print backup codes" : "Vytisknout záložní kódy", - "Regenerate backup codes" : "Vytvořit nové záložní kódy", - "If you regenerate backup codes, you automatically invalidate old codes." : "Pokud vytvoříte nové záložní kódy, staré budou automaticky zrušeny.", - "An error occurred while generating your backup codes" : "Při pokusu o vytvoření záložních kódů nastala chyba.", - "Nextcloud backup codes" : "Nextcloud záložní kódy", - "Two-factor authentication" : "Dvoufázová autentizace", - "You successfully logged in using two-factor authentication (%1$s)" : "Úspěšně jste se přihlásil(a) pomocí dvoufázové autentizace (%1$s)", - "A login attempt using two-factor authentication failed (%1$s)" : "Pokus o přihlášení s použitím dvoufázové autentizace selhal (%1$s)", - "You created two-factor backup codes for your account" : "Vytvořil(a) jste záložní kódy dvoufázové autentizace pro váš účet", - "Backup code" : "Záložní kód", - "Use backup code" : "Použít záložní kód", - "Second-factor backup codes" : "Dvoufázové záložní kódy" -}, -"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/cs_CZ.json b/apps/twofactor_backupcodes/l10n/cs_CZ.json deleted file mode 100644 index 98005f8e6ee..00000000000 --- a/apps/twofactor_backupcodes/l10n/cs_CZ.json +++ /dev/null @@ -1,19 +0,0 @@ -{ "translations": { - "Generate backup codes" : "Vytvořit záložní kódy", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Záložní kódy byly vytvořeny. {{used}} z {{total}} kódů bylo využito.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Zde jsou vaše záložní kódy. Kódy si prosím uložte a/nebo vytiskněte, protože je nebude možné později zobrazit.", - "Save backup codes" : "Uložit záložní kódy", - "Print backup codes" : "Vytisknout záložní kódy", - "Regenerate backup codes" : "Vytvořit nové záložní kódy", - "If you regenerate backup codes, you automatically invalidate old codes." : "Pokud vytvoříte nové záložní kódy, staré budou automaticky zrušeny.", - "An error occurred while generating your backup codes" : "Při pokusu o vytvoření záložních kódů nastala chyba.", - "Nextcloud backup codes" : "Nextcloud záložní kódy", - "Two-factor authentication" : "Dvoufázová autentizace", - "You successfully logged in using two-factor authentication (%1$s)" : "Úspěšně jste se přihlásil(a) pomocí dvoufázové autentizace (%1$s)", - "A login attempt using two-factor authentication failed (%1$s)" : "Pokus o přihlášení s použitím dvoufázové autentizace selhal (%1$s)", - "You created two-factor backup codes for your account" : "Vytvořil(a) jste záložní kódy dvoufázové autentizace pro váš účet", - "Backup code" : "Záložní kód", - "Use backup code" : "Použít záložní kód", - "Second-factor backup codes" : "Dvoufázové záložní kódy" -},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" -}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/da.js b/apps/twofactor_backupcodes/l10n/da.js index 14ad87dd84e..29ba82cb980 100644 --- a/apps/twofactor_backupcodes/l10n/da.js +++ b/apps/twofactor_backupcodes/l10n/da.js @@ -1,17 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Du har lavet two-factor backup koder til din konto.", + "You created two-factor backup codes for your account" : "Du har lavet two-factor backup koder til din konto", "Second-factor backup codes" : "Second-factor backup koder", - "Generate backup codes" : "Generer backup-koder", + "Generate backup codes" : "Generer backup koder", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du har aktiveret to-faktor-godkendelse, men har ikke genereret backup-koder endnu. De er nødvendige for at gendanne adgang til din konto, hvis du mister din anden faktor.", "Backup code" : "Backup-kode", - "Use backup code" : "Benyt backup-kode", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dett er dine backup koder. Gem eller udskriv dem venligst da det ikke vil være muligt at læse koderne her igen senere.", + "Use backup code" : "Anvend backup kode", + "Two factor backup codes" : "To faktor backup koder", + "A two-factor auth backup codes provider" : "En to-faktor udbyder af sikkerhedskopieringskoder", + "An error occurred while generating your backup codes" : "Der opstod en fejl under genereringen af dine backup-koder", + "Backup codes have been generated. {used} of {total} codes have been used." : "Sikkerhedskopieringskoder er blevet genereret. {used} af {total} koder er blevet brugt.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dette er dine backup-koder. Gem og/eller udskriv dem, da du ikke vil kunne se koderne igen senere.", "Save backup codes" : "Gem backup-koder", "Print backup codes" : "Print backup-koder", "Regenerate backup codes" : "Regenerer backup-koder", - "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis gu genere nye backup koder vil de gamle koder blive ubrugelige.", - "An error occurred while generating your backup codes" : "Der opstod en fejl under genereringen af dine backup-koder", + "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du genererer nye backupkoder, så vil de gamle koder blive ubrugelige.", + "{name} backup codes" : "{name} backup-koder", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Brug en af de backupkoder, du har gemt, når du konfigurerer to-faktor-godkendelse.", "Submit" : "Tilføj" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/da.json b/apps/twofactor_backupcodes/l10n/da.json index 7a14761fbd3..21e8083f0f6 100644 --- a/apps/twofactor_backupcodes/l10n/da.json +++ b/apps/twofactor_backupcodes/l10n/da.json @@ -1,15 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Du har lavet two-factor backup koder til din konto.", + "You created two-factor backup codes for your account" : "Du har lavet two-factor backup koder til din konto", "Second-factor backup codes" : "Second-factor backup koder", - "Generate backup codes" : "Generer backup-koder", + "Generate backup codes" : "Generer backup koder", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du har aktiveret to-faktor-godkendelse, men har ikke genereret backup-koder endnu. De er nødvendige for at gendanne adgang til din konto, hvis du mister din anden faktor.", "Backup code" : "Backup-kode", - "Use backup code" : "Benyt backup-kode", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dett er dine backup koder. Gem eller udskriv dem venligst da det ikke vil være muligt at læse koderne her igen senere.", + "Use backup code" : "Anvend backup kode", + "Two factor backup codes" : "To faktor backup koder", + "A two-factor auth backup codes provider" : "En to-faktor udbyder af sikkerhedskopieringskoder", + "An error occurred while generating your backup codes" : "Der opstod en fejl under genereringen af dine backup-koder", + "Backup codes have been generated. {used} of {total} codes have been used." : "Sikkerhedskopieringskoder er blevet genereret. {used} af {total} koder er blevet brugt.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dette er dine backup-koder. Gem og/eller udskriv dem, da du ikke vil kunne se koderne igen senere.", "Save backup codes" : "Gem backup-koder", "Print backup codes" : "Print backup-koder", "Regenerate backup codes" : "Regenerer backup-koder", - "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis gu genere nye backup koder vil de gamle koder blive ubrugelige.", - "An error occurred while generating your backup codes" : "Der opstod en fejl under genereringen af dine backup-koder", + "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du genererer nye backupkoder, så vil de gamle koder blive ubrugelige.", + "{name} backup codes" : "{name} backup-koder", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Brug en af de backupkoder, du har gemt, når du konfigurerer to-faktor-godkendelse.", "Submit" : "Tilføj" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/de.js b/apps/twofactor_backupcodes/l10n/de.js index 63aa68118d9..a4e7c13ab45 100644 --- a/apps/twofactor_backupcodes/l10n/de.js +++ b/apps/twofactor_backupcodes/l10n/de.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Du hast Zwei-Faktor Sicherungs-Codes für Dein Konto erstellt", + "You created two-factor backup codes for your account" : "Du hast Zwei-Faktor Sicherungs-Codes für dein Konto erstellt", "Second-factor backup codes" : "Zweitfaktor Backup-Codes", "Generate backup codes" : "Backup-Codes erzeugen", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du hast die Zwei-Faktor-Authentifizierung aktiviert, aber noch keine Backup-Codes erzeugt. Diese werden für den Fall benötigt, dass Du den Zugriff auf Deinen zweiten Faktor verloren hast.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du hast die Zwei-Faktor-Authentifizierung aktiviert, aber noch keine Backup-Codes erzeugt. Diese werden für den Fall benötigt, dass du den Zugriff auf deinen zweiten Faktor verloren hast.", "Backup code" : "Backup-Code", "Use backup code" : "Verwende Backup-Code", - "Two factor backup codes" : "Zweifaktor-Backup-Codes", - "A two-factor auth backup codes provider" : "Ein Anbieter für Zweifaktor-Backup-Codes", + "Two factor backup codes" : "Zwei-Faktor-Backup-Codes", + "A two-factor auth backup codes provider" : "Ein Anbieter für Zwei-Faktor-Backup-Codes", + "An error occurred while generating your backup codes" : "Es ist ein Fehler beim Erstellen deiner Backup-Codes aufgetreten", "Backup codes have been generated. {used} of {total} codes have been used." : "Backup-Codes wurden erzeugt. {used} von {total} Codes wurden benutzt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dies sind Deine Backup-Codes. Bitte speichere und/oder drucke diese aus, da diese Codes später nicht mehr angezeigt werden können", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dies sind deine Backup-Codes. Bitte speichere und/oder drucke diese aus, da du die Codes später nicht mehr abrufen kannst.", "Save backup codes" : "Backup-Codes speichern", "Print backup codes" : "Backup-Codes drucken", "Regenerate backup codes" : "Backup-Codes erneuern", - "If you regenerate backup codes, you automatically invalidate old codes." : "Wenn Du Backup-Codes erneuerst, werden alte automatisch ungültig.", - "An error occurred while generating your backup codes" : "Beim Erstellen Deiner Backup-Codes ist ein Fehler aufgetreten", + "If you regenerate backup codes, you automatically invalidate old codes." : "Wenn du Backup-Codes erneuerst, werden alte automatisch ungültig.", "{name} backup codes" : "{name} Backup-Codes", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Verwende einen der Backup-Codes, den Du bei der Einrichtung der Zwei-Faktor-Authentifizierung gespeichert hast.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Verwende einen der Backup-Codes, den du bei der Einrichtung der Zwei-Faktor-Authentifizierung gespeichert hast.", "Submit" : "Übermitteln" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/de.json b/apps/twofactor_backupcodes/l10n/de.json index 2423299cddf..290f9f47be3 100644 --- a/apps/twofactor_backupcodes/l10n/de.json +++ b/apps/twofactor_backupcodes/l10n/de.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Du hast Zwei-Faktor Sicherungs-Codes für Dein Konto erstellt", + "You created two-factor backup codes for your account" : "Du hast Zwei-Faktor Sicherungs-Codes für dein Konto erstellt", "Second-factor backup codes" : "Zweitfaktor Backup-Codes", "Generate backup codes" : "Backup-Codes erzeugen", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du hast die Zwei-Faktor-Authentifizierung aktiviert, aber noch keine Backup-Codes erzeugt. Diese werden für den Fall benötigt, dass Du den Zugriff auf Deinen zweiten Faktor verloren hast.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du hast die Zwei-Faktor-Authentifizierung aktiviert, aber noch keine Backup-Codes erzeugt. Diese werden für den Fall benötigt, dass du den Zugriff auf deinen zweiten Faktor verloren hast.", "Backup code" : "Backup-Code", "Use backup code" : "Verwende Backup-Code", - "Two factor backup codes" : "Zweifaktor-Backup-Codes", - "A two-factor auth backup codes provider" : "Ein Anbieter für Zweifaktor-Backup-Codes", + "Two factor backup codes" : "Zwei-Faktor-Backup-Codes", + "A two-factor auth backup codes provider" : "Ein Anbieter für Zwei-Faktor-Backup-Codes", + "An error occurred while generating your backup codes" : "Es ist ein Fehler beim Erstellen deiner Backup-Codes aufgetreten", "Backup codes have been generated. {used} of {total} codes have been used." : "Backup-Codes wurden erzeugt. {used} von {total} Codes wurden benutzt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dies sind Deine Backup-Codes. Bitte speichere und/oder drucke diese aus, da diese Codes später nicht mehr angezeigt werden können", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dies sind deine Backup-Codes. Bitte speichere und/oder drucke diese aus, da du die Codes später nicht mehr abrufen kannst.", "Save backup codes" : "Backup-Codes speichern", "Print backup codes" : "Backup-Codes drucken", "Regenerate backup codes" : "Backup-Codes erneuern", - "If you regenerate backup codes, you automatically invalidate old codes." : "Wenn Du Backup-Codes erneuerst, werden alte automatisch ungültig.", - "An error occurred while generating your backup codes" : "Beim Erstellen Deiner Backup-Codes ist ein Fehler aufgetreten", + "If you regenerate backup codes, you automatically invalidate old codes." : "Wenn du Backup-Codes erneuerst, werden alte automatisch ungültig.", "{name} backup codes" : "{name} Backup-Codes", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Verwende einen der Backup-Codes, den Du bei der Einrichtung der Zwei-Faktor-Authentifizierung gespeichert hast.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Verwende einen der Backup-Codes, den du bei der Einrichtung der Zwei-Faktor-Authentifizierung gespeichert hast.", "Submit" : "Übermitteln" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/de_DE.js b/apps/twofactor_backupcodes/l10n/de_DE.js index 5c824a4fcd8..800e3e112c1 100644 --- a/apps/twofactor_backupcodes/l10n/de_DE.js +++ b/apps/twofactor_backupcodes/l10n/de_DE.js @@ -2,20 +2,20 @@ OC.L10N.register( "twofactor_backupcodes", { "You created two-factor backup codes for your account" : "Sie haben Zwei-Faktor Sicherungs-Codes für Ihr Konto erstellt", - "Second-factor backup codes" : "Zweitfaktor Backup-Codes", + "Second-factor backup codes" : "Backup-Codes für Zweitfaktor", "Generate backup codes" : "Backup-Codes erzeugen", "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Sie haben die Zwei-Faktor-Authentifizierung aktiviert, aber noch keine Backup-Codes erzeugt. Diese werden für den Fall benötigt, dass Sie den Zugriff auf Ihren zweiten Faktor verlieren.", "Backup code" : "Backup-Code", - "Use backup code" : "Verwende Backup-Code", - "Two factor backup codes" : "Zweifaktor-Backup-Codes", - "A two-factor auth backup codes provider" : "Ein Anbieter für Zweifaktor-Backup-Codes", + "Use backup code" : "Backup-Code verwenden", + "Two factor backup codes" : "Zwei-Faktor-Backup-Codes", + "A two-factor auth backup codes provider" : "Ein Anbieter für Zwei-Faktor-Backup-Codes", + "An error occurred while generating your backup codes" : "Es ist ein Fehler beim Erstellen Ihrer Backup-Codes aufgetreten", "Backup codes have been generated. {used} of {total} codes have been used." : "Backup-Codes wurden erzeugt. {used} von {total} Codes wurden benutzt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dies sind Ihre Backup-Codes. Bitte speichern und/oder drucken Sie diese, da diese Codes später nicht mehr gelesen werden können", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dies sind Ihre Backup-Codes. Bitte speichern und/oder drucken Sie diese aus, da Sie die Codes später nicht mehr abrufen können.", "Save backup codes" : "Backup-Codes speichern", "Print backup codes" : "Backup-Codes drucken", "Regenerate backup codes" : "Backup-Codes erneuern", "If you regenerate backup codes, you automatically invalidate old codes." : "Wenn Sie die Backup-Codes erneuern, werden die alten Codes automatisch ungültig.", - "An error occurred while generating your backup codes" : "Beim Erstellen Ihrer Backup-Codes ist ein Fehler aufgetreten", "{name} backup codes" : "{name} Backup-Codes", "Use one of the backup codes you saved when setting up two-factor authentication." : "Verwenden Sie einen der Backup-Codes, den Sie bei der Einrichtung der Zwei-Faktor-Authentifizierung gespeichert haben.", "Submit" : "Übermitteln" diff --git a/apps/twofactor_backupcodes/l10n/de_DE.json b/apps/twofactor_backupcodes/l10n/de_DE.json index d6ad8979a19..04f73e1e330 100644 --- a/apps/twofactor_backupcodes/l10n/de_DE.json +++ b/apps/twofactor_backupcodes/l10n/de_DE.json @@ -1,19 +1,19 @@ { "translations": { "You created two-factor backup codes for your account" : "Sie haben Zwei-Faktor Sicherungs-Codes für Ihr Konto erstellt", - "Second-factor backup codes" : "Zweitfaktor Backup-Codes", + "Second-factor backup codes" : "Backup-Codes für Zweitfaktor", "Generate backup codes" : "Backup-Codes erzeugen", "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Sie haben die Zwei-Faktor-Authentifizierung aktiviert, aber noch keine Backup-Codes erzeugt. Diese werden für den Fall benötigt, dass Sie den Zugriff auf Ihren zweiten Faktor verlieren.", "Backup code" : "Backup-Code", - "Use backup code" : "Verwende Backup-Code", - "Two factor backup codes" : "Zweifaktor-Backup-Codes", - "A two-factor auth backup codes provider" : "Ein Anbieter für Zweifaktor-Backup-Codes", + "Use backup code" : "Backup-Code verwenden", + "Two factor backup codes" : "Zwei-Faktor-Backup-Codes", + "A two-factor auth backup codes provider" : "Ein Anbieter für Zwei-Faktor-Backup-Codes", + "An error occurred while generating your backup codes" : "Es ist ein Fehler beim Erstellen Ihrer Backup-Codes aufgetreten", "Backup codes have been generated. {used} of {total} codes have been used." : "Backup-Codes wurden erzeugt. {used} von {total} Codes wurden benutzt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dies sind Ihre Backup-Codes. Bitte speichern und/oder drucken Sie diese, da diese Codes später nicht mehr gelesen werden können", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dies sind Ihre Backup-Codes. Bitte speichern und/oder drucken Sie diese aus, da Sie die Codes später nicht mehr abrufen können.", "Save backup codes" : "Backup-Codes speichern", "Print backup codes" : "Backup-Codes drucken", "Regenerate backup codes" : "Backup-Codes erneuern", "If you regenerate backup codes, you automatically invalidate old codes." : "Wenn Sie die Backup-Codes erneuern, werden die alten Codes automatisch ungültig.", - "An error occurred while generating your backup codes" : "Beim Erstellen Ihrer Backup-Codes ist ein Fehler aufgetreten", "{name} backup codes" : "{name} Backup-Codes", "Use one of the backup codes you saved when setting up two-factor authentication." : "Verwenden Sie einen der Backup-Codes, den Sie bei der Einrichtung der Zwei-Faktor-Authentifizierung gespeichert haben.", "Submit" : "Übermitteln" diff --git a/apps/twofactor_backupcodes/l10n/el.js b/apps/twofactor_backupcodes/l10n/el.js index e7df01eaa23..cda1c9ba2bb 100644 --- a/apps/twofactor_backupcodes/l10n/el.js +++ b/apps/twofactor_backupcodes/l10n/el.js @@ -9,13 +9,12 @@ OC.L10N.register( "Use backup code" : "Χρησιμοποιήστε έναν εφεδρικό κωδικό", "Two factor backup codes" : "Δύο συντελεστές δημιουργίας αντιγράφων", "A two-factor auth backup codes provider" : "Παροχέας εφεδρικών κωδικών δύο-παραγόντων", + "An error occurred while generating your backup codes" : "Ένα σφάλμα προέκυψε κατά τη δημιουργία των εφεδρικών κωδικών.", "Backup codes have been generated. {used} of {total} codes have been used." : "Δημιουργήθηκαν εφεδρικοί κωδικοί. Χρησιμοποιήθηκαν {used} από {total} κωδικοί.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Αυτοί είναι είναι οι εφεδρικοί σας κωδικοί. Παρακαλούμε αποθηκεύστε τους και/ή εκτυπώστε τους καθώς δεν θα είστε σε θέση να τους διαβάσετε ξανά αργότερα.", "Save backup codes" : "Αποθήκευση εφεδρικών κωδικών", "Print backup codes" : "Εκτύπωση εφεδρικών κωδικών", "Regenerate backup codes" : "Δημιουργία εφεδρικών κωδικών", "If you regenerate backup codes, you automatically invalidate old codes." : "Εάν αναδημιουργήσετε εφεδρικούς κωδικούς, οι παλιοί κωδικοί ακυρώνονται αυτόματα.", - "An error occurred while generating your backup codes" : "Ένα σφάλμα προέκυψε κατά τη δημιουργία των εφεδρικών κωδικών.", "{name} backup codes" : "{name} εφεδρικοί κωδικοί", "Use one of the backup codes you saved when setting up two-factor authentication." : "Χρησιμοποιήστε έναν από τους εφεδρικούς κωδικούς που αποθηκεύσατε όταν ρυθμίζετε τον έλεγχο ταυτότητας δύο παραγόντων.", "Submit" : "Υποβολή" diff --git a/apps/twofactor_backupcodes/l10n/el.json b/apps/twofactor_backupcodes/l10n/el.json index 40be7e890b1..1f43bf0c068 100644 --- a/apps/twofactor_backupcodes/l10n/el.json +++ b/apps/twofactor_backupcodes/l10n/el.json @@ -7,13 +7,12 @@ "Use backup code" : "Χρησιμοποιήστε έναν εφεδρικό κωδικό", "Two factor backup codes" : "Δύο συντελεστές δημιουργίας αντιγράφων", "A two-factor auth backup codes provider" : "Παροχέας εφεδρικών κωδικών δύο-παραγόντων", + "An error occurred while generating your backup codes" : "Ένα σφάλμα προέκυψε κατά τη δημιουργία των εφεδρικών κωδικών.", "Backup codes have been generated. {used} of {total} codes have been used." : "Δημιουργήθηκαν εφεδρικοί κωδικοί. Χρησιμοποιήθηκαν {used} από {total} κωδικοί.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Αυτοί είναι είναι οι εφεδρικοί σας κωδικοί. Παρακαλούμε αποθηκεύστε τους και/ή εκτυπώστε τους καθώς δεν θα είστε σε θέση να τους διαβάσετε ξανά αργότερα.", "Save backup codes" : "Αποθήκευση εφεδρικών κωδικών", "Print backup codes" : "Εκτύπωση εφεδρικών κωδικών", "Regenerate backup codes" : "Δημιουργία εφεδρικών κωδικών", "If you regenerate backup codes, you automatically invalidate old codes." : "Εάν αναδημιουργήσετε εφεδρικούς κωδικούς, οι παλιοί κωδικοί ακυρώνονται αυτόματα.", - "An error occurred while generating your backup codes" : "Ένα σφάλμα προέκυψε κατά τη δημιουργία των εφεδρικών κωδικών.", "{name} backup codes" : "{name} εφεδρικοί κωδικοί", "Use one of the backup codes you saved when setting up two-factor authentication." : "Χρησιμοποιήστε έναν από τους εφεδρικούς κωδικούς που αποθηκεύσατε όταν ρυθμίζετε τον έλεγχο ταυτότητας δύο παραγόντων.", "Submit" : "Υποβολή" diff --git a/apps/twofactor_backupcodes/l10n/en_GB.js b/apps/twofactor_backupcodes/l10n/en_GB.js index 3ef9ae2b3c6..e2426b031c8 100644 --- a/apps/twofactor_backupcodes/l10n/en_GB.js +++ b/apps/twofactor_backupcodes/l10n/en_GB.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Use backup code", "Two factor backup codes" : "Two factor backup codes", "A two-factor auth backup codes provider" : "A two-factor auth backup codes provider", + "An error occurred while generating your backup codes" : "An error occurred while generating your backup codes", "Backup codes have been generated. {used} of {total} codes have been used." : "Backup codes have been generated. {used} of {total} codes have been used.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later.", "Save backup codes" : "Save backup codes", "Print backup codes" : "Print backup codes", "Regenerate backup codes" : "Regenerate backup codes", "If you regenerate backup codes, you automatically invalidate old codes." : "If you regenerate backup codes, you automatically invalidate old codes.", - "An error occurred while generating your backup codes" : "An error occurred while generating your backup codes", "{name} backup codes" : "{name} backup codes", "Use one of the backup codes you saved when setting up two-factor authentication." : "Use one of the backup codes you saved when setting up two-factor authentication.", "Submit" : "Submit" diff --git a/apps/twofactor_backupcodes/l10n/en_GB.json b/apps/twofactor_backupcodes/l10n/en_GB.json index 3aaf24cb716..2b255e97cd7 100644 --- a/apps/twofactor_backupcodes/l10n/en_GB.json +++ b/apps/twofactor_backupcodes/l10n/en_GB.json @@ -7,13 +7,13 @@ "Use backup code" : "Use backup code", "Two factor backup codes" : "Two factor backup codes", "A two-factor auth backup codes provider" : "A two-factor auth backup codes provider", + "An error occurred while generating your backup codes" : "An error occurred while generating your backup codes", "Backup codes have been generated. {used} of {total} codes have been used." : "Backup codes have been generated. {used} of {total} codes have been used.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later.", "Save backup codes" : "Save backup codes", "Print backup codes" : "Print backup codes", "Regenerate backup codes" : "Regenerate backup codes", "If you regenerate backup codes, you automatically invalidate old codes." : "If you regenerate backup codes, you automatically invalidate old codes.", - "An error occurred while generating your backup codes" : "An error occurred while generating your backup codes", "{name} backup codes" : "{name} backup codes", "Use one of the backup codes you saved when setting up two-factor authentication." : "Use one of the backup codes you saved when setting up two-factor authentication.", "Submit" : "Submit" diff --git a/apps/twofactor_backupcodes/l10n/eo.js b/apps/twofactor_backupcodes/l10n/eo.js index f0d684b9b23..8cf8ac95ce5 100644 --- a/apps/twofactor_backupcodes/l10n/eo.js +++ b/apps/twofactor_backupcodes/l10n/eo.js @@ -9,13 +9,12 @@ OC.L10N.register( "Use backup code" : "Uzi rezervkodon", "Two factor backup codes" : "Dufazaj rezervkodoj", "A two-factor auth backup codes provider" : "Provizanto de rezervkodoj por dufaza aŭtentigo", + "An error occurred while generating your backup codes" : "Eraro okazis dum generado de viaj rezervkodoj", "Backup codes have been generated. {used} of {total} codes have been used." : "Rezervkodoj generiĝis. {used} kodoj el {total} uziĝis.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Jen viaj rezervkodoj. Bv. konservi aŭ presi ilin, ĉar vi ne plu povos vidi tiujn kodojn poste", "Save backup codes" : "Konservi la rezervkodojn", "Print backup codes" : "Presi la rezervkodojn", "Regenerate backup codes" : "Regeneri rezervkodojn", "If you regenerate backup codes, you automatically invalidate old codes." : "Si vi regeneras rezervkodojn, vi aŭtomate senvalidigas la antaŭajn.", - "An error occurred while generating your backup codes" : "Eraro okazis dum generado de viaj rezervkodoj", "{name} backup codes" : "{name} rezervkodoj", "Use one of the backup codes you saved when setting up two-factor authentication." : "Uzu unu el viaj rezervkodoj, kiujn vi konservis dum agordo de dufaza aŭtentigo.", "Submit" : "Sendi" diff --git a/apps/twofactor_backupcodes/l10n/eo.json b/apps/twofactor_backupcodes/l10n/eo.json index 271b9f2b989..44cc0c9660f 100644 --- a/apps/twofactor_backupcodes/l10n/eo.json +++ b/apps/twofactor_backupcodes/l10n/eo.json @@ -7,13 +7,12 @@ "Use backup code" : "Uzi rezervkodon", "Two factor backup codes" : "Dufazaj rezervkodoj", "A two-factor auth backup codes provider" : "Provizanto de rezervkodoj por dufaza aŭtentigo", + "An error occurred while generating your backup codes" : "Eraro okazis dum generado de viaj rezervkodoj", "Backup codes have been generated. {used} of {total} codes have been used." : "Rezervkodoj generiĝis. {used} kodoj el {total} uziĝis.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Jen viaj rezervkodoj. Bv. konservi aŭ presi ilin, ĉar vi ne plu povos vidi tiujn kodojn poste", "Save backup codes" : "Konservi la rezervkodojn", "Print backup codes" : "Presi la rezervkodojn", "Regenerate backup codes" : "Regeneri rezervkodojn", "If you regenerate backup codes, you automatically invalidate old codes." : "Si vi regeneras rezervkodojn, vi aŭtomate senvalidigas la antaŭajn.", - "An error occurred while generating your backup codes" : "Eraro okazis dum generado de viaj rezervkodoj", "{name} backup codes" : "{name} rezervkodoj", "Use one of the backup codes you saved when setting up two-factor authentication." : "Uzu unu el viaj rezervkodoj, kiujn vi konservis dum agordo de dufaza aŭtentigo.", "Submit" : "Sendi" diff --git a/apps/twofactor_backupcodes/l10n/es.js b/apps/twofactor_backupcodes/l10n/es.js index b17f1b86dca..1f0621f4a8c 100644 --- a/apps/twofactor_backupcodes/l10n/es.js +++ b/apps/twofactor_backupcodes/l10n/es.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Has creado códigos de respaldo para la verificación en dos pasos de tu cuenta", - "Second-factor backup codes" : "Códigos de respaldo para verificación en dos pasos", + "You created two-factor backup codes for your account" : "Has creado códigos de respaldo para la autenticación de dos factores para tu cuenta", + "Second-factor backup codes" : "Códigos de respaldo para el segundo factor", "Generate backup codes" : "Generar códigos de respaldo", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Has habilitado la verificación en dos pasos pero no has generado aún los códigos de respaldo. Son necesarios para acceder a tu cuenta en caso de pérdida del segundo paso.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Ha habilitado la autenticación de dos factores pero no ha generado aún los códigos de respaldo. Estos son necesarios para acceder a su cuenta en caso de pérdida del segundo factor.", "Backup code" : "Código de respaldo", "Use backup code" : "Usar código de respaldo", - "Two factor backup codes" : "Códigos de respaldo de la verificación en dos pasos", - "A two-factor auth backup codes provider" : "Un proveedor de códigos respaldo para verificación en dos pasos", + "Two factor backup codes" : "Códigos de respaldo para la verificación de dos factores", + "A two-factor auth backup codes provider" : "Un proveedor de códigos respaldo para autenticación de dos factores", + "An error occurred while generating your backup codes" : "Ha ocurrido un error mientras se generaban sus códigos de respaldo.", "Backup codes have been generated. {used} of {total} codes have been used." : "Se han generado códigos de respaldo. Se han usado {used} de {total} códigos.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son sus códigos de respaldo. Por favor guardelos y/o imprimalos ya que no podrá obtenerlos de nuevo.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estos son sus códigos de respaldo. Por favor, guárdelos y/o imprima los mismos, ya que no podrá volver a verlos más tarde.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", - "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo, automáticamente invalidarás los antiguos.", - "An error occurred while generating your backup codes" : "Ha ocurrido un error mientras se generaban los códigos de respaldo.", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo, automáticamente invalidará los antiguos.", "{name} backup codes" : "Códigos de respaldo {name}", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Usa uno de los códigos de respaldo que guardaste cuando activaste la verificación en dos pasos.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Use uno de los códigos de respaldo que guardó cuando activó la autenticación de dos factores.", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es.json b/apps/twofactor_backupcodes/l10n/es.json index 7ffd50a6c18..bad78f7b72d 100644 --- a/apps/twofactor_backupcodes/l10n/es.json +++ b/apps/twofactor_backupcodes/l10n/es.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Has creado códigos de respaldo para la verificación en dos pasos de tu cuenta", - "Second-factor backup codes" : "Códigos de respaldo para verificación en dos pasos", + "You created two-factor backup codes for your account" : "Has creado códigos de respaldo para la autenticación de dos factores para tu cuenta", + "Second-factor backup codes" : "Códigos de respaldo para el segundo factor", "Generate backup codes" : "Generar códigos de respaldo", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Has habilitado la verificación en dos pasos pero no has generado aún los códigos de respaldo. Son necesarios para acceder a tu cuenta en caso de pérdida del segundo paso.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Ha habilitado la autenticación de dos factores pero no ha generado aún los códigos de respaldo. Estos son necesarios para acceder a su cuenta en caso de pérdida del segundo factor.", "Backup code" : "Código de respaldo", "Use backup code" : "Usar código de respaldo", - "Two factor backup codes" : "Códigos de respaldo de la verificación en dos pasos", - "A two-factor auth backup codes provider" : "Un proveedor de códigos respaldo para verificación en dos pasos", + "Two factor backup codes" : "Códigos de respaldo para la verificación de dos factores", + "A two-factor auth backup codes provider" : "Un proveedor de códigos respaldo para autenticación de dos factores", + "An error occurred while generating your backup codes" : "Ha ocurrido un error mientras se generaban sus códigos de respaldo.", "Backup codes have been generated. {used} of {total} codes have been used." : "Se han generado códigos de respaldo. Se han usado {used} de {total} códigos.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son sus códigos de respaldo. Por favor guardelos y/o imprimalos ya que no podrá obtenerlos de nuevo.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estos son sus códigos de respaldo. Por favor, guárdelos y/o imprima los mismos, ya que no podrá volver a verlos más tarde.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", - "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo, automáticamente invalidarás los antiguos.", - "An error occurred while generating your backup codes" : "Ha ocurrido un error mientras se generaban los códigos de respaldo.", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo, automáticamente invalidará los antiguos.", "{name} backup codes" : "Códigos de respaldo {name}", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Usa uno de los códigos de respaldo que guardaste cuando activaste la verificación en dos pasos.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Use uno de los códigos de respaldo que guardó cuando activó la autenticación de dos factores.", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_419.js b/apps/twofactor_backupcodes/l10n/es_419.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_419.js +++ b/apps/twofactor_backupcodes/l10n/es_419.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_419.json b/apps/twofactor_backupcodes/l10n/es_419.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_419.json +++ b/apps/twofactor_backupcodes/l10n/es_419.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_AR.js b/apps/twofactor_backupcodes/l10n/es_AR.js index 66d064fa2e3..dac1122e86b 100644 --- a/apps/twofactor_backupcodes/l10n/es_AR.js +++ b/apps/twofactor_backupcodes/l10n/es_AR.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Código de respaldo", "Use backup code" : "Use el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son sus códigos de respaldo. Favor de resguardarlos y/o imprimirlos ya que no podrá leerlos otra vez después. ", + "An error occurred while generating your backup codes" : "Se presentó un error al generar sus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si usted regenera los códigos de respaldo, automáticamente invalidará los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar sus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_AR.json b/apps/twofactor_backupcodes/l10n/es_AR.json index 729eb4dafe8..425dd987e3e 100644 --- a/apps/twofactor_backupcodes/l10n/es_AR.json +++ b/apps/twofactor_backupcodes/l10n/es_AR.json @@ -5,12 +5,11 @@ "Backup code" : "Código de respaldo", "Use backup code" : "Use el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son sus códigos de respaldo. Favor de resguardarlos y/o imprimirlos ya que no podrá leerlos otra vez después. ", + "An error occurred while generating your backup codes" : "Se presentó un error al generar sus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si usted regenera los códigos de respaldo, automáticamente invalidará los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar sus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_CL.js b/apps/twofactor_backupcodes/l10n/es_CL.js index 787ad85152e..bd9cbba24a9 100644 --- a/apps/twofactor_backupcodes/l10n/es_CL.js +++ b/apps/twofactor_backupcodes/l10n/es_CL.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_CL.json b/apps/twofactor_backupcodes/l10n/es_CL.json index 08db3931be3..3798120620d 100644 --- a/apps/twofactor_backupcodes/l10n/es_CL.json +++ b/apps/twofactor_backupcodes/l10n/es_CL.json @@ -5,12 +5,11 @@ "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_CO.js b/apps/twofactor_backupcodes/l10n/es_CO.js index 787ad85152e..bd9cbba24a9 100644 --- a/apps/twofactor_backupcodes/l10n/es_CO.js +++ b/apps/twofactor_backupcodes/l10n/es_CO.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_CO.json b/apps/twofactor_backupcodes/l10n/es_CO.json index 08db3931be3..3798120620d 100644 --- a/apps/twofactor_backupcodes/l10n/es_CO.json +++ b/apps/twofactor_backupcodes/l10n/es_CO.json @@ -5,12 +5,11 @@ "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_CR.js b/apps/twofactor_backupcodes/l10n/es_CR.js index 787ad85152e..bd9cbba24a9 100644 --- a/apps/twofactor_backupcodes/l10n/es_CR.js +++ b/apps/twofactor_backupcodes/l10n/es_CR.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_CR.json b/apps/twofactor_backupcodes/l10n/es_CR.json index 08db3931be3..3798120620d 100644 --- a/apps/twofactor_backupcodes/l10n/es_CR.json +++ b/apps/twofactor_backupcodes/l10n/es_CR.json @@ -5,12 +5,11 @@ "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_DO.js b/apps/twofactor_backupcodes/l10n/es_DO.js index 787ad85152e..bd9cbba24a9 100644 --- a/apps/twofactor_backupcodes/l10n/es_DO.js +++ b/apps/twofactor_backupcodes/l10n/es_DO.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_DO.json b/apps/twofactor_backupcodes/l10n/es_DO.json index 08db3931be3..3798120620d 100644 --- a/apps/twofactor_backupcodes/l10n/es_DO.json +++ b/apps/twofactor_backupcodes/l10n/es_DO.json @@ -5,12 +5,11 @@ "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_EC.js b/apps/twofactor_backupcodes/l10n/es_EC.js index 787ad85152e..14f349562cd 100644 --- a/apps/twofactor_backupcodes/l10n/es_EC.js +++ b/apps/twofactor_backupcodes/l10n/es_EC.js @@ -4,15 +4,19 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Creaste códigos de respaldo de dos factores para tu cuenta", "Second-factor backup codes" : "Códigos de respaldo del segundo factor", "Generate backup codes" : "Generar los códigos de respaldo", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Has habilitado la autenticación de dos factores pero aún no has generado códigos de respaldo. Estos son necesarios para restaurar el acceso a tu cuenta en caso de que pierdas tu segundo factor.", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "A two-factor auth backup codes provider" : "Un proveedor de códigos de respaldo para autenticación de dos factores.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "Backup codes have been generated. {used} of {total} codes have been used." : "Se han generado códigos de respaldo. Se han utilizado {used} de {total} códigos.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "{name} backup codes" : "Códigos de respaldo de {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utiliza uno de los códigos de respaldo que guardaste al configurar la autenticación de dos factores.", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_EC.json b/apps/twofactor_backupcodes/l10n/es_EC.json index 08db3931be3..7747d76faa5 100644 --- a/apps/twofactor_backupcodes/l10n/es_EC.json +++ b/apps/twofactor_backupcodes/l10n/es_EC.json @@ -2,15 +2,19 @@ "You created two-factor backup codes for your account" : "Creaste códigos de respaldo de dos factores para tu cuenta", "Second-factor backup codes" : "Códigos de respaldo del segundo factor", "Generate backup codes" : "Generar los códigos de respaldo", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Has habilitado la autenticación de dos factores pero aún no has generado códigos de respaldo. Estos son necesarios para restaurar el acceso a tu cuenta en caso de que pierdas tu segundo factor.", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "A two-factor auth backup codes provider" : "Un proveedor de códigos de respaldo para autenticación de dos factores.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "Backup codes have been generated. {used} of {total} codes have been used." : "Se han generado códigos de respaldo. Se han utilizado {used} de {total} códigos.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "{name} backup codes" : "Códigos de respaldo de {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utiliza uno de los códigos de respaldo que guardaste al configurar la autenticación de dos factores.", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_GT.js b/apps/twofactor_backupcodes/l10n/es_GT.js index 787ad85152e..bd9cbba24a9 100644 --- a/apps/twofactor_backupcodes/l10n/es_GT.js +++ b/apps/twofactor_backupcodes/l10n/es_GT.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_GT.json b/apps/twofactor_backupcodes/l10n/es_GT.json index 08db3931be3..3798120620d 100644 --- a/apps/twofactor_backupcodes/l10n/es_GT.json +++ b/apps/twofactor_backupcodes/l10n/es_GT.json @@ -5,12 +5,11 @@ "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_HN.js b/apps/twofactor_backupcodes/l10n/es_HN.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_HN.js +++ b/apps/twofactor_backupcodes/l10n/es_HN.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_HN.json b/apps/twofactor_backupcodes/l10n/es_HN.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_HN.json +++ b/apps/twofactor_backupcodes/l10n/es_HN.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_MX.js b/apps/twofactor_backupcodes/l10n/es_MX.js index 8c94cdaeb1f..b6860f03ea7 100644 --- a/apps/twofactor_backupcodes/l10n/es_MX.js +++ b/apps/twofactor_backupcodes/l10n/es_MX.js @@ -4,16 +4,20 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Creaste códigos de respaldo de dos factores para tu cuenta", "Second-factor backup codes" : "Códigos de respaldo del segundo factor", "Generate backup codes" : "Generar los códigos de respaldo", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Habilitó la autentificación de dos factores pero aún no ha generado los códigos de respaldo. Éstos son necesarios para acceder a su cuenta en caso de que pierda del segundo factor.", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", "A two-factor auth backup codes provider" : "Un proveedor de códigos de respaldo para autenticación de dos-factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "Backup codes have been generated. {used} of {total} codes have been used." : "Se generaron los códigos de respaldo. Se han utilizado {used} de {total} códigos.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estos son sus códigos de respaldo. Por favor guárdelos y/o imprímalos ya que no podrá leerlos después.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "{name} backup codes" : "Códigos de respaldo {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilice uno de los códigos de respaldo que guardó al configurar la autentificación de dos factores.", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_MX.json b/apps/twofactor_backupcodes/l10n/es_MX.json index 3b07e21f3fb..5256ae1025a 100644 --- a/apps/twofactor_backupcodes/l10n/es_MX.json +++ b/apps/twofactor_backupcodes/l10n/es_MX.json @@ -2,16 +2,20 @@ "You created two-factor backup codes for your account" : "Creaste códigos de respaldo de dos factores para tu cuenta", "Second-factor backup codes" : "Códigos de respaldo del segundo factor", "Generate backup codes" : "Generar los códigos de respaldo", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Habilitó la autentificación de dos factores pero aún no ha generado los códigos de respaldo. Éstos son necesarios para acceder a su cuenta en caso de que pierda del segundo factor.", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", "A two-factor auth backup codes provider" : "Un proveedor de códigos de respaldo para autenticación de dos-factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "Backup codes have been generated. {used} of {total} codes have been used." : "Se generaron los códigos de respaldo. Se han utilizado {used} de {total} códigos.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estos son sus códigos de respaldo. Por favor guárdelos y/o imprímalos ya que no podrá leerlos después.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", + "{name} backup codes" : "Códigos de respaldo {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilice uno de los códigos de respaldo que guardó al configurar la autentificación de dos factores.", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_NI.js b/apps/twofactor_backupcodes/l10n/es_NI.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_NI.js +++ b/apps/twofactor_backupcodes/l10n/es_NI.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_NI.json b/apps/twofactor_backupcodes/l10n/es_NI.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_NI.json +++ b/apps/twofactor_backupcodes/l10n/es_NI.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_PA.js b/apps/twofactor_backupcodes/l10n/es_PA.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_PA.js +++ b/apps/twofactor_backupcodes/l10n/es_PA.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_PA.json b/apps/twofactor_backupcodes/l10n/es_PA.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_PA.json +++ b/apps/twofactor_backupcodes/l10n/es_PA.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_PE.js b/apps/twofactor_backupcodes/l10n/es_PE.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_PE.js +++ b/apps/twofactor_backupcodes/l10n/es_PE.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_PE.json b/apps/twofactor_backupcodes/l10n/es_PE.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_PE.json +++ b/apps/twofactor_backupcodes/l10n/es_PE.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_PR.js b/apps/twofactor_backupcodes/l10n/es_PR.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_PR.js +++ b/apps/twofactor_backupcodes/l10n/es_PR.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_PR.json b/apps/twofactor_backupcodes/l10n/es_PR.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_PR.json +++ b/apps/twofactor_backupcodes/l10n/es_PR.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_PY.js b/apps/twofactor_backupcodes/l10n/es_PY.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_PY.js +++ b/apps/twofactor_backupcodes/l10n/es_PY.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_PY.json b/apps/twofactor_backupcodes/l10n/es_PY.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_PY.json +++ b/apps/twofactor_backupcodes/l10n/es_PY.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_SV.js b/apps/twofactor_backupcodes/l10n/es_SV.js index 787ad85152e..bd9cbba24a9 100644 --- a/apps/twofactor_backupcodes/l10n/es_SV.js +++ b/apps/twofactor_backupcodes/l10n/es_SV.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_SV.json b/apps/twofactor_backupcodes/l10n/es_SV.json index 08db3931be3..3798120620d 100644 --- a/apps/twofactor_backupcodes/l10n/es_SV.json +++ b/apps/twofactor_backupcodes/l10n/es_SV.json @@ -5,12 +5,11 @@ "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", "Two factor backup codes" : "Códigos de respaldo de dos factores", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_UY.js b/apps/twofactor_backupcodes/l10n/es_UY.js index 613ecd8a6f2..bda75e326ad 100644 --- a/apps/twofactor_backupcodes/l10n/es_UY.js +++ b/apps/twofactor_backupcodes/l10n/es_UY.js @@ -6,12 +6,11 @@ OC.L10N.register( "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/es_UY.json b/apps/twofactor_backupcodes/l10n/es_UY.json index ef3ce8cb5d1..67d4525548f 100644 --- a/apps/twofactor_backupcodes/l10n/es_UY.json +++ b/apps/twofactor_backupcodes/l10n/es_UY.json @@ -4,12 +4,11 @@ "Generate backup codes" : "Generar los códigos de respaldo", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son tus códigos de respaldo. Por favor resguárdalos y/o imprímelos ya que no podrás leerlos otra vez después.", + "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", "If you regenerate backup codes, you automatically invalidate old codes." : "Si regeneras los códigos de respaldo, automáticamente invalidarás los anteriores. ", - "An error occurred while generating your backup codes" : "Se presentó un error al generar tus códigos de respaldo. ", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/et_EE.js b/apps/twofactor_backupcodes/l10n/et_EE.js new file mode 100644 index 00000000000..8f62eea86ee --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/et_EE.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "Sa lõid oma konto jaoks kaheastmelise autentimise varukoodid", + "Second-factor backup codes" : "Kaheastmelise autentimise varukoodid", + "Generate backup codes" : "Genereeri varukoodid", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Sa lülitasid sisse kaheastmelise autentimise, aga pole veel varukoode genereerinud. Neid on vaja kontole ligipääsemiseks, kui peaksid oma teise autentimisfaktori kaotama.", + "Backup code" : "Varukood", + "Use backup code" : "Kasuta varukoodi", + "Two factor backup codes" : "Kaheastmelise autentimise varukoodid", + "A two-factor auth backup codes provider" : "Kaheastmelise autentimise varukoodide pakkuja", + "An error occurred while generating your backup codes" : "Varukoodide genereerimisel tekkis tõrge", + "Backup codes have been generated. {used} of {total} codes have been used." : "Varukoodid genereeritud. {used} koodi {total}-st on kasutatud.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Need on su tagavarakoodid. Palun salvesta ja/või prindi need välja kuna sa ei saa neid koode hiljem uuesti lugeda.", + "Save backup codes" : "Salvesta varukoodid", + "Print backup codes" : "Trüki varukoodid", + "Regenerate backup codes" : "Genereeri varukoodid uuesti", + "If you regenerate backup codes, you automatically invalidate old codes." : "Kui genereerid varukoodid uuesti, muudad vanad koodid automaatselt kehtetuks.", + "{name} backup codes" : "{name} varukoodid", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Kasuta üht kaheastmelise autentimise seadistamisel salvestatud varukoodidest.", + "Submit" : "Saada" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/et_EE.json b/apps/twofactor_backupcodes/l10n/et_EE.json new file mode 100644 index 00000000000..9cc7ebced77 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/et_EE.json @@ -0,0 +1,21 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "Sa lõid oma konto jaoks kaheastmelise autentimise varukoodid", + "Second-factor backup codes" : "Kaheastmelise autentimise varukoodid", + "Generate backup codes" : "Genereeri varukoodid", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Sa lülitasid sisse kaheastmelise autentimise, aga pole veel varukoode genereerinud. Neid on vaja kontole ligipääsemiseks, kui peaksid oma teise autentimisfaktori kaotama.", + "Backup code" : "Varukood", + "Use backup code" : "Kasuta varukoodi", + "Two factor backup codes" : "Kaheastmelise autentimise varukoodid", + "A two-factor auth backup codes provider" : "Kaheastmelise autentimise varukoodide pakkuja", + "An error occurred while generating your backup codes" : "Varukoodide genereerimisel tekkis tõrge", + "Backup codes have been generated. {used} of {total} codes have been used." : "Varukoodid genereeritud. {used} koodi {total}-st on kasutatud.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Need on su tagavarakoodid. Palun salvesta ja/või prindi need välja kuna sa ei saa neid koode hiljem uuesti lugeda.", + "Save backup codes" : "Salvesta varukoodid", + "Print backup codes" : "Trüki varukoodid", + "Regenerate backup codes" : "Genereeri varukoodid uuesti", + "If you regenerate backup codes, you automatically invalidate old codes." : "Kui genereerid varukoodid uuesti, muudad vanad koodid automaatselt kehtetuks.", + "{name} backup codes" : "{name} varukoodid", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Kasuta üht kaheastmelise autentimise seadistamisel salvestatud varukoodidest.", + "Submit" : "Saada" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/eu.js b/apps/twofactor_backupcodes/l10n/eu.js index 093dcb8e02b..51bbef86537 100644 --- a/apps/twofactor_backupcodes/l10n/eu.js +++ b/apps/twofactor_backupcodes/l10n/eu.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Erabili ordezko kodea", "Two factor backup codes" : "Bigarren faktoreko segurtasun kodeak", "A two-factor auth backup codes provider" : "Bigarren faktoreko segurtasun kodeen hornitzailea", + "An error occurred while generating your backup codes" : "Errorea gertatu da segurtasun kodeak sortzean", "Backup codes have been generated. {used} of {total} codes have been used." : "Sortu den segurtasun kode kopurua. {used} erabili dira {total} segurtasun kodetik.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Hauexek dira zure segurtasun kodeak. Gorde edo/eta inprimatu itzazu ez baitira berriz agertuko.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Hauexek dira zure segurtasun kodeak. Gorde edo/eta inprimatu itzazu ez baitira berriz agertuko.", "Save backup codes" : "Gorde babeskopia-kodeak", "Print backup codes" : "Segurtasun kodeak inprimatu", "Regenerate backup codes" : "Segurtasun kodeak berriz sortu", "If you regenerate backup codes, you automatically invalidate old codes." : "Segurtasun kodeak berriz sortzen badituzu, zaharrak desaktibatu egingo dira.", - "An error occurred while generating your backup codes" : "Errorea gertatu da segurtasun kodeak sortzean", "{name} backup codes" : "{name} segurtasun kodeak", "Use one of the backup codes you saved when setting up two-factor authentication." : "Erabili bi faktoreko autentifikazioa aktibatu zenuenean sortutako segurtasun kodeetako bat", "Submit" : "Bidali" diff --git a/apps/twofactor_backupcodes/l10n/eu.json b/apps/twofactor_backupcodes/l10n/eu.json index 75fa7b1c82a..23655c5bbcc 100644 --- a/apps/twofactor_backupcodes/l10n/eu.json +++ b/apps/twofactor_backupcodes/l10n/eu.json @@ -7,13 +7,13 @@ "Use backup code" : "Erabili ordezko kodea", "Two factor backup codes" : "Bigarren faktoreko segurtasun kodeak", "A two-factor auth backup codes provider" : "Bigarren faktoreko segurtasun kodeen hornitzailea", + "An error occurred while generating your backup codes" : "Errorea gertatu da segurtasun kodeak sortzean", "Backup codes have been generated. {used} of {total} codes have been used." : "Sortu den segurtasun kode kopurua. {used} erabili dira {total} segurtasun kodetik.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Hauexek dira zure segurtasun kodeak. Gorde edo/eta inprimatu itzazu ez baitira berriz agertuko.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Hauexek dira zure segurtasun kodeak. Gorde edo/eta inprimatu itzazu ez baitira berriz agertuko.", "Save backup codes" : "Gorde babeskopia-kodeak", "Print backup codes" : "Segurtasun kodeak inprimatu", "Regenerate backup codes" : "Segurtasun kodeak berriz sortu", "If you regenerate backup codes, you automatically invalidate old codes." : "Segurtasun kodeak berriz sortzen badituzu, zaharrak desaktibatu egingo dira.", - "An error occurred while generating your backup codes" : "Errorea gertatu da segurtasun kodeak sortzean", "{name} backup codes" : "{name} segurtasun kodeak", "Use one of the backup codes you saved when setting up two-factor authentication." : "Erabili bi faktoreko autentifikazioa aktibatu zenuenean sortutako segurtasun kodeetako bat", "Submit" : "Bidali" diff --git a/apps/twofactor_backupcodes/l10n/fa.js b/apps/twofactor_backupcodes/l10n/fa.js new file mode 100644 index 00000000000..123700613c3 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/fa.js @@ -0,0 +1,22 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "شما کدهای پشتیبان دو مرحله ای برای حساب خود ایجاد کردید.", + "Second-factor backup codes" : "کدهای پشتیبان فاکتور دوم", + "Generate backup codes" : "کدهای پشتیبان تولید کنید", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "شما احراز هویت دو مرحله ای را فعال کرده اید اما هنوز کدهای پشتیبان ایجاد نکرده اید. آنها برای بازگرداندن دسترسی به حساب شما در صورت از دست دادن فاکتور دوم مورد نیاز هستند.", + "Backup code" : "کد پشتیبان", + "Use backup code" : "از کد پشتیبان استفاده شود", + "Two factor backup codes" : "کدهای پشتیبان دو عاملی", + "A two-factor auth backup codes provider" : "ارائه دهنده کدهای پشتیبان تأیید اعتبار دو مرحله ای", + "An error occurred while generating your backup codes" : "هنگام ایجاد کدهای پشتیبان شما خطایی روی داد", + "Backup codes have been generated. {used} of {total} codes have been used." : "کدهای پشتیبان ایجاد شده است. {used} از {total} کد استفاده شده است.", + "Save backup codes" : "ذخیره کدهای پشتیبان", + "Print backup codes" : "چاپ کدهای پشتیبان", + "Regenerate backup codes" : "کدهای پشتیبان را دوباره تولید کنید.", + "If you regenerate backup codes, you automatically invalidate old codes." : "اگر کدهای پشتیبان را دوباره تولید کنید، به طور خودکار کدهای قدیمی را باطل می کنید.", + "{name} backup codes" : "کدهای پشتیبان {نام}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "از یکی از کدهای پشتیبان که هنگام تنظیم احراز هویت دو مرحله ای ذخیره کرده اید استفاده کنید.", + "Submit" : "ارسال" +}, +"nplurals=2; plural=(n > 1);"); diff --git a/apps/twofactor_backupcodes/l10n/fa.json b/apps/twofactor_backupcodes/l10n/fa.json new file mode 100644 index 00000000000..c1c2d24f30e --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/fa.json @@ -0,0 +1,20 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "شما کدهای پشتیبان دو مرحله ای برای حساب خود ایجاد کردید.", + "Second-factor backup codes" : "کدهای پشتیبان فاکتور دوم", + "Generate backup codes" : "کدهای پشتیبان تولید کنید", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "شما احراز هویت دو مرحله ای را فعال کرده اید اما هنوز کدهای پشتیبان ایجاد نکرده اید. آنها برای بازگرداندن دسترسی به حساب شما در صورت از دست دادن فاکتور دوم مورد نیاز هستند.", + "Backup code" : "کد پشتیبان", + "Use backup code" : "از کد پشتیبان استفاده شود", + "Two factor backup codes" : "کدهای پشتیبان دو عاملی", + "A two-factor auth backup codes provider" : "ارائه دهنده کدهای پشتیبان تأیید اعتبار دو مرحله ای", + "An error occurred while generating your backup codes" : "هنگام ایجاد کدهای پشتیبان شما خطایی روی داد", + "Backup codes have been generated. {used} of {total} codes have been used." : "کدهای پشتیبان ایجاد شده است. {used} از {total} کد استفاده شده است.", + "Save backup codes" : "ذخیره کدهای پشتیبان", + "Print backup codes" : "چاپ کدهای پشتیبان", + "Regenerate backup codes" : "کدهای پشتیبان را دوباره تولید کنید.", + "If you regenerate backup codes, you automatically invalidate old codes." : "اگر کدهای پشتیبان را دوباره تولید کنید، به طور خودکار کدهای قدیمی را باطل می کنید.", + "{name} backup codes" : "کدهای پشتیبان {نام}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "از یکی از کدهای پشتیبان که هنگام تنظیم احراز هویت دو مرحله ای ذخیره کرده اید استفاده کنید.", + "Submit" : "ارسال" +},"pluralForm" :"nplurals=2; plural=(n > 1);" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/fi.js b/apps/twofactor_backupcodes/l10n/fi.js index fed7b745cfa..6a408e16400 100644 --- a/apps/twofactor_backupcodes/l10n/fi.js +++ b/apps/twofactor_backupcodes/l10n/fi.js @@ -7,13 +7,12 @@ OC.L10N.register( "Backup code" : "Varakoodi", "Use backup code" : "Käytä varakoodia", "Two factor backup codes" : "Kaksivaiheiden tunnistautumisen varakoodit", + "An error occurred while generating your backup codes" : "Tapahtui virhe varakoodeja luotaessa", "Backup codes have been generated. {used} of {total} codes have been used." : "Varakoodit on luotu. {used}/{total} koodia on käytetty.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Nämä ovat varakoodisi. Tallenna ja/tai tulosta ne, koska et voi lukea koodeja myöhemmin", "Save backup codes" : "Tallenna varakoodit", "Print backup codes" : "Tulosta varakoodit", "Regenerate backup codes" : "Luo varakoodit uudelleen", "If you regenerate backup codes, you automatically invalidate old codes." : "Jos luot varakoodit uudelleen, vanhat koodit poistetaan automaattisesti käytöstä.", - "An error occurred while generating your backup codes" : "Tapahtui virhe varakoodeja luotaessa", "Submit" : "Lähetä" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/fi.json b/apps/twofactor_backupcodes/l10n/fi.json index 5b71da5bc84..ce82c32a30f 100644 --- a/apps/twofactor_backupcodes/l10n/fi.json +++ b/apps/twofactor_backupcodes/l10n/fi.json @@ -5,13 +5,12 @@ "Backup code" : "Varakoodi", "Use backup code" : "Käytä varakoodia", "Two factor backup codes" : "Kaksivaiheiden tunnistautumisen varakoodit", + "An error occurred while generating your backup codes" : "Tapahtui virhe varakoodeja luotaessa", "Backup codes have been generated. {used} of {total} codes have been used." : "Varakoodit on luotu. {used}/{total} koodia on käytetty.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Nämä ovat varakoodisi. Tallenna ja/tai tulosta ne, koska et voi lukea koodeja myöhemmin", "Save backup codes" : "Tallenna varakoodit", "Print backup codes" : "Tulosta varakoodit", "Regenerate backup codes" : "Luo varakoodit uudelleen", "If you regenerate backup codes, you automatically invalidate old codes." : "Jos luot varakoodit uudelleen, vanhat koodit poistetaan automaattisesti käytöstä.", - "An error occurred while generating your backup codes" : "Tapahtui virhe varakoodeja luotaessa", "Submit" : "Lähetä" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/fr.js b/apps/twofactor_backupcodes/l10n/fr.js index 8f44815a5f8..c49e09edc8f 100644 --- a/apps/twofactor_backupcodes/l10n/fr.js +++ b/apps/twofactor_backupcodes/l10n/fr.js @@ -2,22 +2,22 @@ OC.L10N.register( "twofactor_backupcodes", { "You created two-factor backup codes for your account" : "Vous avez créé des codes de secours à deux facteurs pour votre compte", - "Second-factor backup codes" : "Codes de récupération pour l'authentification en deux étapes", + "Second-factor backup codes" : "Codes de récupération pour l’authentification en deux étapes", "Generate backup codes" : "Générer des codes de récupération", "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Vous avez activé l'authentification en deux étapes mais vous n'avez pas généré de codes de secours. Ils sont nécessaires pour récupérer l'accès à votre compte en cas de perte de votre autre moyen de connexion.", "Backup code" : "Code de récupération", "Use backup code" : "Utiliser un code de récupération", "Two factor backup codes" : "Code de secours pour l'authentification double facteur.", "A two-factor auth backup codes provider" : "Un fournisseur de codes de récupération d'authentification à deux facteurs", + "An error occurred while generating your backup codes" : "Une erreur est survenue lors de la génération de vos codes de récupération", "Backup codes have been generated. {used} of {total} codes have been used." : "Les codes de récupération ont été générés. {used} codes sur {total} ont été utilisés.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Voici vos codes de récupération. Veuillez les sauvegarder et/ou les imprimer car vous ne pourrez plus y avoir accès ultérieurement", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Ce sont vos codes de secours. Veuillez les enregistrer et/ou les imprimer car vous ne pourrez plus les redemander ultérieurement.", "Save backup codes" : "Sauvegarder les codes de récupération", "Print backup codes" : "Imprimer les codes de récupération", "Regenerate backup codes" : "Régénérer les codes de récupération", "If you regenerate backup codes, you automatically invalidate old codes." : "Si vous régénérez les codes de récupération, vous invalidez automatiquement les anciens codes.", - "An error occurred while generating your backup codes" : "Une erreur est survenue lors de la génération de vos codes de récupération", "{name} backup codes" : "{name} codes de récupération", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilisez l'un des codes de secours que vous avez crée lors du paramétrage de l'authentification à deux facteurs.", - "Submit" : "Envoyer" + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilisez l'un des codes de récupération que vous avez enregistrés lors de la configuration de l'authentification à deux facteurs.", + "Submit" : "Soumettre" }, -"nplurals=2; plural=(n > 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/fr.json b/apps/twofactor_backupcodes/l10n/fr.json index 48157e74a03..04f04ae2c6e 100644 --- a/apps/twofactor_backupcodes/l10n/fr.json +++ b/apps/twofactor_backupcodes/l10n/fr.json @@ -1,21 +1,21 @@ { "translations": { "You created two-factor backup codes for your account" : "Vous avez créé des codes de secours à deux facteurs pour votre compte", - "Second-factor backup codes" : "Codes de récupération pour l'authentification en deux étapes", + "Second-factor backup codes" : "Codes de récupération pour l’authentification en deux étapes", "Generate backup codes" : "Générer des codes de récupération", "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Vous avez activé l'authentification en deux étapes mais vous n'avez pas généré de codes de secours. Ils sont nécessaires pour récupérer l'accès à votre compte en cas de perte de votre autre moyen de connexion.", "Backup code" : "Code de récupération", "Use backup code" : "Utiliser un code de récupération", "Two factor backup codes" : "Code de secours pour l'authentification double facteur.", "A two-factor auth backup codes provider" : "Un fournisseur de codes de récupération d'authentification à deux facteurs", + "An error occurred while generating your backup codes" : "Une erreur est survenue lors de la génération de vos codes de récupération", "Backup codes have been generated. {used} of {total} codes have been used." : "Les codes de récupération ont été générés. {used} codes sur {total} ont été utilisés.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Voici vos codes de récupération. Veuillez les sauvegarder et/ou les imprimer car vous ne pourrez plus y avoir accès ultérieurement", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Ce sont vos codes de secours. Veuillez les enregistrer et/ou les imprimer car vous ne pourrez plus les redemander ultérieurement.", "Save backup codes" : "Sauvegarder les codes de récupération", "Print backup codes" : "Imprimer les codes de récupération", "Regenerate backup codes" : "Régénérer les codes de récupération", "If you regenerate backup codes, you automatically invalidate old codes." : "Si vous régénérez les codes de récupération, vous invalidez automatiquement les anciens codes.", - "An error occurred while generating your backup codes" : "Une erreur est survenue lors de la génération de vos codes de récupération", "{name} backup codes" : "{name} codes de récupération", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilisez l'un des codes de secours que vous avez crée lors du paramétrage de l'authentification à deux facteurs.", - "Submit" : "Envoyer" -},"pluralForm" :"nplurals=2; plural=(n > 1);" + "Use one of the backup codes you saved when setting up two-factor authentication." : "Utilisez l'un des codes de récupération que vous avez enregistrés lors de la configuration de l'authentification à deux facteurs.", + "Submit" : "Soumettre" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ga.js b/apps/twofactor_backupcodes/l10n/ga.js new file mode 100644 index 00000000000..92afbed005f --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ga.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "Chruthaigh tú cóid chúltaca dhá-fhachtóir do do chuntas", + "Second-factor backup codes" : "Cóid chúltaca dara fachtóir", + "Generate backup codes" : "Gin cóid chúltaca", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Chuir tú ar chumas fíordheimhnithe dhá-fhachtóir ach níor ghin tú cóid chúltaca fós. Tá siad ag teastáil chun rochtain ar do chuntas a aischur ar eagla go gcaillfidh tú do dhara fachtóir.", + "Backup code" : "Cód cúltaca", + "Use backup code" : "Úsáid cód cúltaca", + "Two factor backup codes" : "Cóid chúltaca dhá fhachtóir", + "A two-factor auth backup codes provider" : "Soláthraí cóid chúltaca údaráis dhá-fhachtóir", + "An error occurred while generating your backup codes" : "Tharla earráid agus do chóid chúltaca á nginiúint", + "Backup codes have been generated. {used} of {total} codes have been used." : "Gineadh cóid chúltaca. Baineadh úsáid as {used} as {total} cóid.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Seo iad do chóid chúltaca. Sábháil agus/nó priontáil iad mar ní bheidh tú in ann na cóid a léamh arís ar ball le do thoil.", + "Save backup codes" : "Sábháil cóid chúltaca", + "Print backup codes" : "Priontáil cóid chúltaca", + "Regenerate backup codes" : "Athghin cóid chúltaca", + "If you regenerate backup codes, you automatically invalidate old codes." : "Má athghineann tú cóid chúltaca, déanann tú sean-chóid neamhbhailí go huathoibríoch.", + "{name} backup codes" : "cóid chúltaca {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Bain úsáid as ceann de na cóid chúltaca a shábháil tú agus fíordheimhniú dhá-fhachtóir á socrú agat.", + "Submit" : "Cuir isteach" +}, +"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); diff --git a/apps/twofactor_backupcodes/l10n/ga.json b/apps/twofactor_backupcodes/l10n/ga.json new file mode 100644 index 00000000000..b610ac4d1b7 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ga.json @@ -0,0 +1,21 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "Chruthaigh tú cóid chúltaca dhá-fhachtóir do do chuntas", + "Second-factor backup codes" : "Cóid chúltaca dara fachtóir", + "Generate backup codes" : "Gin cóid chúltaca", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Chuir tú ar chumas fíordheimhnithe dhá-fhachtóir ach níor ghin tú cóid chúltaca fós. Tá siad ag teastáil chun rochtain ar do chuntas a aischur ar eagla go gcaillfidh tú do dhara fachtóir.", + "Backup code" : "Cód cúltaca", + "Use backup code" : "Úsáid cód cúltaca", + "Two factor backup codes" : "Cóid chúltaca dhá fhachtóir", + "A two-factor auth backup codes provider" : "Soláthraí cóid chúltaca údaráis dhá-fhachtóir", + "An error occurred while generating your backup codes" : "Tharla earráid agus do chóid chúltaca á nginiúint", + "Backup codes have been generated. {used} of {total} codes have been used." : "Gineadh cóid chúltaca. Baineadh úsáid as {used} as {total} cóid.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Seo iad do chóid chúltaca. Sábháil agus/nó priontáil iad mar ní bheidh tú in ann na cóid a léamh arís ar ball le do thoil.", + "Save backup codes" : "Sábháil cóid chúltaca", + "Print backup codes" : "Priontáil cóid chúltaca", + "Regenerate backup codes" : "Athghin cóid chúltaca", + "If you regenerate backup codes, you automatically invalidate old codes." : "Má athghineann tú cóid chúltaca, déanann tú sean-chóid neamhbhailí go huathoibríoch.", + "{name} backup codes" : "cóid chúltaca {name}", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Bain úsáid as ceann de na cóid chúltaca a shábháil tú agus fíordheimhniú dhá-fhachtóir á socrú agat.", + "Submit" : "Cuir isteach" +},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/gl.js b/apps/twofactor_backupcodes/l10n/gl.js index 6f01f163ac0..76a82fe9ebc 100644 --- a/apps/twofactor_backupcodes/l10n/gl.js +++ b/apps/twofactor_backupcodes/l10n/gl.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Creou códigos de seguridade de dous factores para a súa conta", - "Second-factor backup codes" : "Códigos de seguridade do segundo factor", - "Generate backup codes" : "Xerar códigos de seguridade", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Activou a autenticación de dous factores mais aínda non xerou os códigos de copia de seguridade. Necesítanse para restaurar o acceso á súa conta no caso de perder o segundo factor.", - "Backup code" : "Código de seguridade", - "Use backup code" : "Usar código de seguridade", - "Two factor backup codes" : "Códigos de seguridade de dous factores", - "A two-factor auth backup codes provider" : "Un provedor de códigos de seguridade para a autenticación de dous factores", - "Backup codes have been generated. {used} of {total} codes have been used." : "Os códigos de seguridade foron xerados. Usou {used} códigos de {total}.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estes son os seus códigos de seguridade. Gárdeos e/ou imprímaos xa que non poderá volver lelos de novo.", - "Save backup codes" : "Gardar os códigos de seguridade", - "Print backup codes" : "Imprimir os códigos de seguridade", - "Regenerate backup codes" : "Rexenerar códigos de seguridade", - "If you regenerate backup codes, you automatically invalidate old codes." : "Se rexenera os códigos de seguridade, automaticamente invalidara os antigos códigos.", - "An error occurred while generating your backup codes" : "Produciuse un erro ao rexenerar os seus códigos de seguridade", - "{name} backup codes" : "{name} códigos de seguridade", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Use un dos códigos de seguridade que gardou cuando axustou a autenticación de dous factores.", + "You created two-factor backup codes for your account" : "Creou códigos de recuperación de dous factores para a súa conta", + "Second-factor backup codes" : "Códigos de recuperación do segundo factor", + "Generate backup codes" : "Xerar códigos de recuperación", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Activou a autenticación de dous factores mais aínda non xerou os códigos de recuperación. Necesítanse para restaurar o acceso á súa conta no caso de perder o segundo factor.", + "Backup code" : "Código de recuperación", + "Use backup code" : "Usar código de recuperación", + "Two factor backup codes" : "Códigos de recuperación de dous factores", + "A two-factor auth backup codes provider" : "Un provedor de códigos de recuperación para a autenticación de dous factores", + "An error occurred while generating your backup codes" : "Produciuse un erro ao xerar os seus códigos de recuperación", + "Backup codes have been generated. {used} of {total} codes have been used." : "Xeraronse os códigos de recuperación. Usou {used} códigos de {total}.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estes son os seus códigos de recuperación. Gárdeos e/ou imprímaos xa que non poderá volver lelos de novo.", + "Save backup codes" : "Gardar os códigos de recuperación", + "Print backup codes" : "Imprimir os códigos de recuperación", + "Regenerate backup codes" : "Volver xerar códigos de recuperación", + "If you regenerate backup codes, you automatically invalidate old codes." : "Se volve xerar os códigos de recuperación, automaticamente invalidara os antigos códigos.", + "{name} backup codes" : "Códigos de recuperación {name} ", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Use un dos códigos de recuperación que gardou cando axustou a autenticación de dous factores.", "Submit" : "Enviar " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/gl.json b/apps/twofactor_backupcodes/l10n/gl.json index 523715b48e2..47cc4a174f4 100644 --- a/apps/twofactor_backupcodes/l10n/gl.json +++ b/apps/twofactor_backupcodes/l10n/gl.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Creou códigos de seguridade de dous factores para a súa conta", - "Second-factor backup codes" : "Códigos de seguridade do segundo factor", - "Generate backup codes" : "Xerar códigos de seguridade", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Activou a autenticación de dous factores mais aínda non xerou os códigos de copia de seguridade. Necesítanse para restaurar o acceso á súa conta no caso de perder o segundo factor.", - "Backup code" : "Código de seguridade", - "Use backup code" : "Usar código de seguridade", - "Two factor backup codes" : "Códigos de seguridade de dous factores", - "A two-factor auth backup codes provider" : "Un provedor de códigos de seguridade para a autenticación de dous factores", - "Backup codes have been generated. {used} of {total} codes have been used." : "Os códigos de seguridade foron xerados. Usou {used} códigos de {total}.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estes son os seus códigos de seguridade. Gárdeos e/ou imprímaos xa que non poderá volver lelos de novo.", - "Save backup codes" : "Gardar os códigos de seguridade", - "Print backup codes" : "Imprimir os códigos de seguridade", - "Regenerate backup codes" : "Rexenerar códigos de seguridade", - "If you regenerate backup codes, you automatically invalidate old codes." : "Se rexenera os códigos de seguridade, automaticamente invalidara os antigos códigos.", - "An error occurred while generating your backup codes" : "Produciuse un erro ao rexenerar os seus códigos de seguridade", - "{name} backup codes" : "{name} códigos de seguridade", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Use un dos códigos de seguridade que gardou cuando axustou a autenticación de dous factores.", + "You created two-factor backup codes for your account" : "Creou códigos de recuperación de dous factores para a súa conta", + "Second-factor backup codes" : "Códigos de recuperación do segundo factor", + "Generate backup codes" : "Xerar códigos de recuperación", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Activou a autenticación de dous factores mais aínda non xerou os códigos de recuperación. Necesítanse para restaurar o acceso á súa conta no caso de perder o segundo factor.", + "Backup code" : "Código de recuperación", + "Use backup code" : "Usar código de recuperación", + "Two factor backup codes" : "Códigos de recuperación de dous factores", + "A two-factor auth backup codes provider" : "Un provedor de códigos de recuperación para a autenticación de dous factores", + "An error occurred while generating your backup codes" : "Produciuse un erro ao xerar os seus códigos de recuperación", + "Backup codes have been generated. {used} of {total} codes have been used." : "Xeraronse os códigos de recuperación. Usou {used} códigos de {total}.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estes son os seus códigos de recuperación. Gárdeos e/ou imprímaos xa que non poderá volver lelos de novo.", + "Save backup codes" : "Gardar os códigos de recuperación", + "Print backup codes" : "Imprimir os códigos de recuperación", + "Regenerate backup codes" : "Volver xerar códigos de recuperación", + "If you regenerate backup codes, you automatically invalidate old codes." : "Se volve xerar os códigos de recuperación, automaticamente invalidara os antigos códigos.", + "{name} backup codes" : "Códigos de recuperación {name} ", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Use un dos códigos de recuperación que gardou cando axustou a autenticación de dous factores.", "Submit" : "Enviar " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/he.js b/apps/twofactor_backupcodes/l10n/he.js index c8b0f6fad32..e3d24e14788 100644 --- a/apps/twofactor_backupcodes/l10n/he.js +++ b/apps/twofactor_backupcodes/l10n/he.js @@ -8,12 +8,12 @@ OC.L10N.register( "Backup code" : "קוד גיבוי", "Use backup code" : "שימוש בקוד גיבוי", "Two factor backup codes" : "קודים לגיבוי אימות דו־שלבי", + "An error occurred while generating your backup codes" : "אירעה שגיאה ביצירת הקודים שלך לגיבוי", "Save backup codes" : "שמירת קודים לגיבוי", "Print backup codes" : "הדפסת קודים לגיבוי", "Regenerate backup codes" : "יצירת קודים לגיבוי", "If you regenerate backup codes, you automatically invalidate old codes." : "ייצור של קודים חדשים לגיבוי יבטל את תוקף הקודים הישנים.", - "An error occurred while generating your backup codes" : "אירעה שגיאה ביצירת הקודים שלך לגיבוי", "{name} backup codes" : "{name} קודים לגיבוי", "Submit" : "שליחה" }, -"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); +"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); diff --git a/apps/twofactor_backupcodes/l10n/he.json b/apps/twofactor_backupcodes/l10n/he.json index 32c8688960c..a0528976ea0 100644 --- a/apps/twofactor_backupcodes/l10n/he.json +++ b/apps/twofactor_backupcodes/l10n/he.json @@ -6,12 +6,12 @@ "Backup code" : "קוד גיבוי", "Use backup code" : "שימוש בקוד גיבוי", "Two factor backup codes" : "קודים לגיבוי אימות דו־שלבי", + "An error occurred while generating your backup codes" : "אירעה שגיאה ביצירת הקודים שלך לגיבוי", "Save backup codes" : "שמירת קודים לגיבוי", "Print backup codes" : "הדפסת קודים לגיבוי", "Regenerate backup codes" : "יצירת קודים לגיבוי", "If you regenerate backup codes, you automatically invalidate old codes." : "ייצור של קודים חדשים לגיבוי יבטל את תוקף הקודים הישנים.", - "An error occurred while generating your backup codes" : "אירעה שגיאה ביצירת הקודים שלך לגיבוי", "{name} backup codes" : "{name} קודים לגיבוי", "Submit" : "שליחה" -},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" +},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/hr.js b/apps/twofactor_backupcodes/l10n/hr.js index 1e9c1af7075..8fecb092274 100644 --- a/apps/twofactor_backupcodes/l10n/hr.js +++ b/apps/twofactor_backupcodes/l10n/hr.js @@ -9,13 +9,12 @@ OC.L10N.register( "Use backup code" : "Upotrijebi pričuvnu šifru", "Two factor backup codes" : "Dvofaktorske pričuvne šifre", "A two-factor auth backup codes provider" : "Davatelj pričuvnih šifri za dvofaktorsku autentifikaciju", + "An error occurred while generating your backup codes" : "Došlo je do pogreške pri generiranju pričuvnih šifri", "Backup codes have been generated. {used} of {total} codes have been used." : "Pričuvne šifre su generirane. Iskorišteno je {used} od {total} šifri.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ovo su vaše pričuvne šifre. Spremite ih i/ili ih ispišite jer ih kasnije više nećete moći pročitati", "Save backup codes" : "Spremi pričuvne šifre", "Print backup codes" : "Ispis pričuvnih šifri", "Regenerate backup codes" : "Ponovno generiranje pričuvnih šifri", "If you regenerate backup codes, you automatically invalidate old codes." : "Ako ponovno generirate pričuvne šifre, automatski poništavate stare šifre.", - "An error occurred while generating your backup codes" : "Došlo je do pogreške pri generiranju pričuvnih šifri", "{name} backup codes" : "{name} pričuvnih šifri", "Use one of the backup codes you saved when setting up two-factor authentication." : "Upotrijebite jednu od pričuvnih šifri koje ste spremili prilikom postavljanja dvofaktorske autentifikacije.", "Submit" : "Šalji" diff --git a/apps/twofactor_backupcodes/l10n/hr.json b/apps/twofactor_backupcodes/l10n/hr.json index 2c0d33bc2f2..049d4a601fa 100644 --- a/apps/twofactor_backupcodes/l10n/hr.json +++ b/apps/twofactor_backupcodes/l10n/hr.json @@ -7,13 +7,12 @@ "Use backup code" : "Upotrijebi pričuvnu šifru", "Two factor backup codes" : "Dvofaktorske pričuvne šifre", "A two-factor auth backup codes provider" : "Davatelj pričuvnih šifri za dvofaktorsku autentifikaciju", + "An error occurred while generating your backup codes" : "Došlo je do pogreške pri generiranju pričuvnih šifri", "Backup codes have been generated. {used} of {total} codes have been used." : "Pričuvne šifre su generirane. Iskorišteno je {used} od {total} šifri.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ovo su vaše pričuvne šifre. Spremite ih i/ili ih ispišite jer ih kasnije više nećete moći pročitati", "Save backup codes" : "Spremi pričuvne šifre", "Print backup codes" : "Ispis pričuvnih šifri", "Regenerate backup codes" : "Ponovno generiranje pričuvnih šifri", "If you regenerate backup codes, you automatically invalidate old codes." : "Ako ponovno generirate pričuvne šifre, automatski poništavate stare šifre.", - "An error occurred while generating your backup codes" : "Došlo je do pogreške pri generiranju pričuvnih šifri", "{name} backup codes" : "{name} pričuvnih šifri", "Use one of the backup codes you saved when setting up two-factor authentication." : "Upotrijebite jednu od pričuvnih šifri koje ste spremili prilikom postavljanja dvofaktorske autentifikacije.", "Submit" : "Šalji" diff --git a/apps/twofactor_backupcodes/l10n/hu.js b/apps/twofactor_backupcodes/l10n/hu.js index 81515e94d86..1ddbcdb4277 100644 --- a/apps/twofactor_backupcodes/l10n/hu.js +++ b/apps/twofactor_backupcodes/l10n/hu.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Kétfaktoros helyreállítási kódot hoztál létre a fiókodhoz", + "You created two-factor backup codes for your account" : "Kétfaktoros helyreállítási kódot hozott létre a fiókjához", "Second-factor backup codes" : "Második lépcsős biztonsági kódok", - "Generate backup codes" : "Biztonsági kód generálás", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Engedélyezted a kétfaktoros azonosítást, de még nem hoztál létre biztonsági kódokat. Szükségesek, hogy akkor is hozzáférj a fiókodhoz, ha elveszted a másik faktort.", + "Generate backup codes" : "Biztonsági kódok előállítása", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Engedélyezte a kétlépcsős hitelesítést, de még nem hozott létre biztonsági kódokat. Ezek ahhoz szükségesek, hogy akkor is hozzáférjen a fiókjához, ha elveszíti a második faktort.", "Backup code" : "Biztonsági kód", "Use backup code" : "Biztonsági kód használata", - "Two factor backup codes" : "Kétfaktoros biztonsági mentési kódok", - "A two-factor auth backup codes provider" : "Kétfaktoros azonosítás biztonsági kódok szolgáltatója", - "Backup codes have been generated. {used} of {total} codes have been used." : "Létre lettek hozva biztonsági kódok. {total} kódból {used} lett felhasználva.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ezek a biztonsági kódjaid. Kérlek mentsd el vagy nyomtasd ki őket úgy hogy később is meglegyenek.", + "Two factor backup codes" : "Kétlépcsős biztonsági mentési kódok", + "A two-factor auth backup codes provider" : "Kétlépcsős hitelesítés biztonsági kódjainak szolgáltatója", + "An error occurred while generating your backup codes" : "Hiba történt a biztonsági kódok előállítása során", + "Backup codes have been generated. {used} of {total} codes have been used." : "Létrejöttek a biztonsági kódok. {total} kódból {used} lett felhasználva.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Ezek a biztonsági kódjai. Mentse el vagy nyomtassa ki őket úgy, hogy később is meglegyenek.", "Save backup codes" : "Biztonsági kódok mentése", "Print backup codes" : "Biztonsági kódok nyomtatása", - "Regenerate backup codes" : "Biztonsági kódok újra generálása", - "If you regenerate backup codes, you automatically invalidate old codes." : "Ha újra generálod a biztonsági kódokat, akkor a régiek automatikusan érvénytelenítve lesznek.", - "An error occurred while generating your backup codes" : "Hiba történt a biztonsági kódok generálása közben", - "{name} backup codes" : "{name} biztonsági kód", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Használj egy biztonsági kódot, amikor beállítod a kétfaktoros azonosítást.", + "Regenerate backup codes" : "Biztonsági kódok újbóli előállítása", + "If you regenerate backup codes, you automatically invalidate old codes." : "Ha újra előállítja a biztonsági kódokat, akkor a régiek automatikusan érvénytelenítve lesznek.", + "{name} backup codes" : "{name} biztonsági kódjai", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Használjon egy biztonsági kódot, amikor beállítja a kétlépcsős hitelesítést.", "Submit" : "Küldés" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/hu.json b/apps/twofactor_backupcodes/l10n/hu.json index 7026b5842d1..514b09a7896 100644 --- a/apps/twofactor_backupcodes/l10n/hu.json +++ b/apps/twofactor_backupcodes/l10n/hu.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Kétfaktoros helyreállítási kódot hoztál létre a fiókodhoz", + "You created two-factor backup codes for your account" : "Kétfaktoros helyreállítási kódot hozott létre a fiókjához", "Second-factor backup codes" : "Második lépcsős biztonsági kódok", - "Generate backup codes" : "Biztonsági kód generálás", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Engedélyezted a kétfaktoros azonosítást, de még nem hoztál létre biztonsági kódokat. Szükségesek, hogy akkor is hozzáférj a fiókodhoz, ha elveszted a másik faktort.", + "Generate backup codes" : "Biztonsági kódok előállítása", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Engedélyezte a kétlépcsős hitelesítést, de még nem hozott létre biztonsági kódokat. Ezek ahhoz szükségesek, hogy akkor is hozzáférjen a fiókjához, ha elveszíti a második faktort.", "Backup code" : "Biztonsági kód", "Use backup code" : "Biztonsági kód használata", - "Two factor backup codes" : "Kétfaktoros biztonsági mentési kódok", - "A two-factor auth backup codes provider" : "Kétfaktoros azonosítás biztonsági kódok szolgáltatója", - "Backup codes have been generated. {used} of {total} codes have been used." : "Létre lettek hozva biztonsági kódok. {total} kódból {used} lett felhasználva.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ezek a biztonsági kódjaid. Kérlek mentsd el vagy nyomtasd ki őket úgy hogy később is meglegyenek.", + "Two factor backup codes" : "Kétlépcsős biztonsági mentési kódok", + "A two-factor auth backup codes provider" : "Kétlépcsős hitelesítés biztonsági kódjainak szolgáltatója", + "An error occurred while generating your backup codes" : "Hiba történt a biztonsági kódok előállítása során", + "Backup codes have been generated. {used} of {total} codes have been used." : "Létrejöttek a biztonsági kódok. {total} kódból {used} lett felhasználva.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Ezek a biztonsági kódjai. Mentse el vagy nyomtassa ki őket úgy, hogy később is meglegyenek.", "Save backup codes" : "Biztonsági kódok mentése", "Print backup codes" : "Biztonsági kódok nyomtatása", - "Regenerate backup codes" : "Biztonsági kódok újra generálása", - "If you regenerate backup codes, you automatically invalidate old codes." : "Ha újra generálod a biztonsági kódokat, akkor a régiek automatikusan érvénytelenítve lesznek.", - "An error occurred while generating your backup codes" : "Hiba történt a biztonsági kódok generálása közben", - "{name} backup codes" : "{name} biztonsági kód", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Használj egy biztonsági kódot, amikor beállítod a kétfaktoros azonosítást.", + "Regenerate backup codes" : "Biztonsági kódok újbóli előállítása", + "If you regenerate backup codes, you automatically invalidate old codes." : "Ha újra előállítja a biztonsági kódokat, akkor a régiek automatikusan érvénytelenítve lesznek.", + "{name} backup codes" : "{name} biztonsági kódjai", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Használjon egy biztonsági kódot, amikor beállítja a kétlépcsős hitelesítést.", "Submit" : "Küldés" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/hu_HU.js b/apps/twofactor_backupcodes/l10n/hu_HU.js deleted file mode 100644 index af793b8fb9a..00000000000 --- a/apps/twofactor_backupcodes/l10n/hu_HU.js +++ /dev/null @@ -1,18 +0,0 @@ -OC.L10N.register( - "twofactor_backupcodes", - { - "Generate backup codes" : "Biztonsági kód generálás", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "A biztonsági kódok elkészültek. Felhasználva: {{used}}, ennyiből: {{total}}.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ezek a biztonsági kódjaid. Kérlek mentsd el vagy nyomtasd ki őket úgy hogy később is meglegyenek.", - "Save backup codes" : "Biztonsági kódok mentése", - "Print backup codes" : "Biztonsági kódok nyomtatása", - "Regenerate backup codes" : "Biztonsági kódok újra generálása", - "If you regenerate backup codes, you automatically invalidate old codes." : "Ha újra generálod a biztonsági kódokat, akkor a régiek automatikusan érvénytelenítve lesznek.", - "An error occurred while generating your backup codes" : "Hiba történt a biztonsági kódok generálása közben", - "Nextcloud backup codes" : "Nextcloud biztonsági kódok", - "Two-factor authentication" : "Kétlépcsős hitelesítés", - "Backup code" : "Biztonsági kód", - "Use backup code" : "Biztonsági kód használata", - "Second-factor backup codes" : "Második lépcsős biztonsági kódok" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/hu_HU.json b/apps/twofactor_backupcodes/l10n/hu_HU.json deleted file mode 100644 index acb9373df72..00000000000 --- a/apps/twofactor_backupcodes/l10n/hu_HU.json +++ /dev/null @@ -1,16 +0,0 @@ -{ "translations": { - "Generate backup codes" : "Biztonsági kód generálás", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "A biztonsági kódok elkészültek. Felhasználva: {{used}}, ennyiből: {{total}}.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ezek a biztonsági kódjaid. Kérlek mentsd el vagy nyomtasd ki őket úgy hogy később is meglegyenek.", - "Save backup codes" : "Biztonsági kódok mentése", - "Print backup codes" : "Biztonsági kódok nyomtatása", - "Regenerate backup codes" : "Biztonsági kódok újra generálása", - "If you regenerate backup codes, you automatically invalidate old codes." : "Ha újra generálod a biztonsági kódokat, akkor a régiek automatikusan érvénytelenítve lesznek.", - "An error occurred while generating your backup codes" : "Hiba történt a biztonsági kódok generálása közben", - "Nextcloud backup codes" : "Nextcloud biztonsági kódok", - "Two-factor authentication" : "Kétlépcsős hitelesítés", - "Backup code" : "Biztonsági kód", - "Use backup code" : "Biztonsági kód használata", - "Second-factor backup codes" : "Második lépcsős biztonsági kódok" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/is.js b/apps/twofactor_backupcodes/l10n/is.js index b6d8a747ae5..c43e3779337 100644 --- a/apps/twofactor_backupcodes/l10n/is.js +++ b/apps/twofactor_backupcodes/l10n/is.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Nota öryggisafritunarkóða", "Two factor backup codes" : "Tveggja-þrepa öryggisafritunarkóðar", "A two-factor auth backup codes provider" : "Útgefandi tveggja-þrepa öryggisafritunarkóða", + "An error occurred while generating your backup codes" : "Villa kom upp við að búa til öryggisafritunarkóðana þína", "Backup codes have been generated. {used} of {total} codes have been used." : "Öryggisafritunarkóðar hafa verið útbúnir. {used} af {total} kóðum hafa verið notaðir.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Þetta eru öryggisafritunarkóðarnir þínir. Vistaðu þá og/eða prentaðu þá út, því þú munt ekki geta lesið þá aftur síðar í ferlinu", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Þetta eru öryggisafritunarkóðarnir þínir. Vistaðu þá og/eða prentaðu þá út, því þú munt ekki geta lesið þá aftur síðar í ferlinu.", "Save backup codes" : "Vista öryggisafritunarkóða", "Print backup codes" : "Prenta öryggisafritunarkóða", "Regenerate backup codes" : "Endurnýja öryggisafritunarkóða", "If you regenerate backup codes, you automatically invalidate old codes." : "Ef þú endurnýjar öryggisafritunarkóða, gerir þú sjálfkrafa eldri kóða ógilda.", - "An error occurred while generating your backup codes" : "Villa kom upp við að búa til öryggisafritunarkóðana þína", "{name} backup codes" : "{name} öryggisafritunarkóðar", "Use one of the backup codes you saved when setting up two-factor authentication." : "Notaðu einn af öryggisafritunarkóðunum sem þú vistaðir þegar þú settir upp tveggja-þátta auðkenningu.", "Submit" : "Senda inn" diff --git a/apps/twofactor_backupcodes/l10n/is.json b/apps/twofactor_backupcodes/l10n/is.json index 2c785eea38d..2141b6e51bc 100644 --- a/apps/twofactor_backupcodes/l10n/is.json +++ b/apps/twofactor_backupcodes/l10n/is.json @@ -7,13 +7,13 @@ "Use backup code" : "Nota öryggisafritunarkóða", "Two factor backup codes" : "Tveggja-þrepa öryggisafritunarkóðar", "A two-factor auth backup codes provider" : "Útgefandi tveggja-þrepa öryggisafritunarkóða", + "An error occurred while generating your backup codes" : "Villa kom upp við að búa til öryggisafritunarkóðana þína", "Backup codes have been generated. {used} of {total} codes have been used." : "Öryggisafritunarkóðar hafa verið útbúnir. {used} af {total} kóðum hafa verið notaðir.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Þetta eru öryggisafritunarkóðarnir þínir. Vistaðu þá og/eða prentaðu þá út, því þú munt ekki geta lesið þá aftur síðar í ferlinu", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Þetta eru öryggisafritunarkóðarnir þínir. Vistaðu þá og/eða prentaðu þá út, því þú munt ekki geta lesið þá aftur síðar í ferlinu.", "Save backup codes" : "Vista öryggisafritunarkóða", "Print backup codes" : "Prenta öryggisafritunarkóða", "Regenerate backup codes" : "Endurnýja öryggisafritunarkóða", "If you regenerate backup codes, you automatically invalidate old codes." : "Ef þú endurnýjar öryggisafritunarkóða, gerir þú sjálfkrafa eldri kóða ógilda.", - "An error occurred while generating your backup codes" : "Villa kom upp við að búa til öryggisafritunarkóðana þína", "{name} backup codes" : "{name} öryggisafritunarkóðar", "Use one of the backup codes you saved when setting up two-factor authentication." : "Notaðu einn af öryggisafritunarkóðunum sem þú vistaðir þegar þú settir upp tveggja-þátta auðkenningu.", "Submit" : "Senda inn" diff --git a/apps/twofactor_backupcodes/l10n/it.js b/apps/twofactor_backupcodes/l10n/it.js index f5207afe264..4ccc170b59c 100644 --- a/apps/twofactor_backupcodes/l10n/it.js +++ b/apps/twofactor_backupcodes/l10n/it.js @@ -9,15 +9,15 @@ OC.L10N.register( "Use backup code" : "Usa il codice di backup", "Two factor backup codes" : "Codici di backup a due fattori", "A two-factor auth backup codes provider" : "Un fornitore di codici di backup per l'autenticazione a due fattori", + "An error occurred while generating your backup codes" : "Si è verificato un errore durante la generazione dei tuoi codici di backup", "Backup codes have been generated. {used} of {total} codes have been used." : "I codici di backup sono stati generali. {used} di {total} codici sono stati utilizzati.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Questi sono i tuoi codici di backup. Salvali e/o stampali poiché non potrai più leggerli successivamente", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Questi sono i tuoi codici di backup. Salvali e/o stampali poiché non potrai più leggerli successivamente.", "Save backup codes" : "Salva i codici di backup", "Print backup codes" : "Stampa i codici di backup", "Regenerate backup codes" : "Rigenera i codici di backup", "If you regenerate backup codes, you automatically invalidate old codes." : "Se rigeneri i codici di backup, invaliderai automaticamente i vecchi codici.", - "An error occurred while generating your backup codes" : "Si è verificato un errore durante la generazione dei tuoi codici di backup", "{name} backup codes" : "Codici di backup di {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Usa uno dei codici di backup che hai salvato quando configuri l'autenticazione a due fattori.", "Submit" : "Invia" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/it.json b/apps/twofactor_backupcodes/l10n/it.json index 69884e2f56a..cc13db71619 100644 --- a/apps/twofactor_backupcodes/l10n/it.json +++ b/apps/twofactor_backupcodes/l10n/it.json @@ -7,15 +7,15 @@ "Use backup code" : "Usa il codice di backup", "Two factor backup codes" : "Codici di backup a due fattori", "A two-factor auth backup codes provider" : "Un fornitore di codici di backup per l'autenticazione a due fattori", + "An error occurred while generating your backup codes" : "Si è verificato un errore durante la generazione dei tuoi codici di backup", "Backup codes have been generated. {used} of {total} codes have been used." : "I codici di backup sono stati generali. {used} di {total} codici sono stati utilizzati.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Questi sono i tuoi codici di backup. Salvali e/o stampali poiché non potrai più leggerli successivamente", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Questi sono i tuoi codici di backup. Salvali e/o stampali poiché non potrai più leggerli successivamente.", "Save backup codes" : "Salva i codici di backup", "Print backup codes" : "Stampa i codici di backup", "Regenerate backup codes" : "Rigenera i codici di backup", "If you regenerate backup codes, you automatically invalidate old codes." : "Se rigeneri i codici di backup, invaliderai automaticamente i vecchi codici.", - "An error occurred while generating your backup codes" : "Si è verificato un errore durante la generazione dei tuoi codici di backup", "{name} backup codes" : "Codici di backup di {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Usa uno dei codici di backup che hai salvato quando configuri l'autenticazione a due fattori.", "Submit" : "Invia" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ja.js b/apps/twofactor_backupcodes/l10n/ja.js index 59a36b36b8c..52fd8935dba 100644 --- a/apps/twofactor_backupcodes/l10n/ja.js +++ b/apps/twofactor_backupcodes/l10n/ja.js @@ -8,14 +8,14 @@ OC.L10N.register( "Backup code" : "バックアップコード", "Use backup code" : "バックアップコードを使用する", "Two factor backup codes" : "二要素認証バックアップコード", - "A two-factor auth backup codes provider" : "二要素認証バックアップコードプロバイダ", + "A two-factor auth backup codes provider" : "二要素認証バックアップコードプロバイダー", + "An error occurred while generating your backup codes" : "バックアップコードの生成中にエラーが発生しました", "Backup codes have been generated. {used} of {total} codes have been used." : "バックアップコードが生成されました。 {total} 個のうち {used} 個のコードが使用されています。", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "以下はあなたのバックアップコードです。 後からこのコードを見ることはできないので、保存するか印刷しておいてください", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "これらはバックアップコードです。後でコードを再度読み取ることはできませんので、保存または印刷してください。", "Save backup codes" : "バックアップコードを保存", "Print backup codes" : "バックアップコードを印刷", "Regenerate backup codes" : "バックアップコードを再生成", "If you regenerate backup codes, you automatically invalidate old codes." : "バックアップコードを再生成すると、自動的に古いコードが無効になります。", - "An error occurred while generating your backup codes" : "バックアップコードの生成中にエラーが発生しました", "{name} backup codes" : "{name} バックアップコード", "Use one of the backup codes you saved when setting up two-factor authentication." : "二要素認証を設定するときに保存したバックアップコードのいずれかを使用します。", "Submit" : "了解" diff --git a/apps/twofactor_backupcodes/l10n/ja.json b/apps/twofactor_backupcodes/l10n/ja.json index 0cd2c9997f1..a813c3102ca 100644 --- a/apps/twofactor_backupcodes/l10n/ja.json +++ b/apps/twofactor_backupcodes/l10n/ja.json @@ -6,14 +6,14 @@ "Backup code" : "バックアップコード", "Use backup code" : "バックアップコードを使用する", "Two factor backup codes" : "二要素認証バックアップコード", - "A two-factor auth backup codes provider" : "二要素認証バックアップコードプロバイダ", + "A two-factor auth backup codes provider" : "二要素認証バックアップコードプロバイダー", + "An error occurred while generating your backup codes" : "バックアップコードの生成中にエラーが発生しました", "Backup codes have been generated. {used} of {total} codes have been used." : "バックアップコードが生成されました。 {total} 個のうち {used} 個のコードが使用されています。", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "以下はあなたのバックアップコードです。 後からこのコードを見ることはできないので、保存するか印刷しておいてください", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "これらはバックアップコードです。後でコードを再度読み取ることはできませんので、保存または印刷してください。", "Save backup codes" : "バックアップコードを保存", "Print backup codes" : "バックアップコードを印刷", "Regenerate backup codes" : "バックアップコードを再生成", "If you regenerate backup codes, you automatically invalidate old codes." : "バックアップコードを再生成すると、自動的に古いコードが無効になります。", - "An error occurred while generating your backup codes" : "バックアップコードの生成中にエラーが発生しました", "{name} backup codes" : "{name} バックアップコード", "Use one of the backup codes you saved when setting up two-factor authentication." : "二要素認証を設定するときに保存したバックアップコードのいずれかを使用します。", "Submit" : "了解" diff --git a/apps/twofactor_backupcodes/l10n/ka.js b/apps/twofactor_backupcodes/l10n/ka.js new file mode 100644 index 00000000000..fb9029941b0 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ka.js @@ -0,0 +1,22 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "You created two-factor backup codes for your account", + "Second-factor backup codes" : "Second-factor backup codes", + "Generate backup codes" : "Generate backup codes", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor.", + "Backup code" : "Backup code", + "Use backup code" : "Use backup code", + "Two factor backup codes" : "Two factor backup codes", + "A two-factor auth backup codes provider" : "A two-factor auth backup codes provider", + "An error occurred while generating your backup codes" : "An error occurred while generating your backup codes", + "Backup codes have been generated. {used} of {total} codes have been used." : "Backup codes have been generated. {used} of {total} codes have been used.", + "Save backup codes" : "Save backup codes", + "Print backup codes" : "Print backup codes", + "Regenerate backup codes" : "Regenerate backup codes", + "If you regenerate backup codes, you automatically invalidate old codes." : "If you regenerate backup codes, you automatically invalidate old codes.", + "{name} backup codes" : "{name} backup codes", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Use one of the backup codes you saved when setting up two-factor authentication.", + "Submit" : "Submit" +}, +"nplurals=2; plural=(n!=1);"); diff --git a/apps/twofactor_backupcodes/l10n/ka.json b/apps/twofactor_backupcodes/l10n/ka.json new file mode 100644 index 00000000000..f663ce8ddff --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ka.json @@ -0,0 +1,20 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "You created two-factor backup codes for your account", + "Second-factor backup codes" : "Second-factor backup codes", + "Generate backup codes" : "Generate backup codes", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor.", + "Backup code" : "Backup code", + "Use backup code" : "Use backup code", + "Two factor backup codes" : "Two factor backup codes", + "A two-factor auth backup codes provider" : "A two-factor auth backup codes provider", + "An error occurred while generating your backup codes" : "An error occurred while generating your backup codes", + "Backup codes have been generated. {used} of {total} codes have been used." : "Backup codes have been generated. {used} of {total} codes have been used.", + "Save backup codes" : "Save backup codes", + "Print backup codes" : "Print backup codes", + "Regenerate backup codes" : "Regenerate backup codes", + "If you regenerate backup codes, you automatically invalidate old codes." : "If you regenerate backup codes, you automatically invalidate old codes.", + "{name} backup codes" : "{name} backup codes", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Use one of the backup codes you saved when setting up two-factor authentication.", + "Submit" : "Submit" +},"pluralForm" :"nplurals=2; plural=(n!=1);" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ka_GE.js b/apps/twofactor_backupcodes/l10n/ka_GE.js index 1b498caead3..2155dcba759 100644 --- a/apps/twofactor_backupcodes/l10n/ka_GE.js +++ b/apps/twofactor_backupcodes/l10n/ka_GE.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "ბექაფის კოდები", "Use backup code" : "ბექაფის კოდების გამოყენება", "Two factor backup codes" : "მეორე-ფაქტორის ბექაფის კოდები", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "ეს თქვენი ბექაფის კოდებია. გთხოვთ შეინახოთ ან ამობეჭდოთ ისინი, კოდებს მეტი ვეღარ წაიკითხავთ", + "An error occurred while generating your backup codes" : "ბექაფის კოდების გენერაციისას წარმოიშვა შეცდომა", "Save backup codes" : "ბექაფის კოდების შენახვა", "Print backup codes" : "ბექაფის კოდების ამობეჭდვა", "Regenerate backup codes" : "ბექაფის კოდების გენერაცია", "If you regenerate backup codes, you automatically invalidate old codes." : "ძველი კოდები, ახალი ბექაფის კოდების რეგენერაციისას დაკარგავენ მოქმდების ძალას.", - "An error occurred while generating your backup codes" : "ბექაფის კოდების გენერაციისას წარმოიშვა შეცდომა", "Submit" : "გაგზავნა" }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/twofactor_backupcodes/l10n/ka_GE.json b/apps/twofactor_backupcodes/l10n/ka_GE.json index 39bcdeafd48..bf5bc6ebff3 100644 --- a/apps/twofactor_backupcodes/l10n/ka_GE.json +++ b/apps/twofactor_backupcodes/l10n/ka_GE.json @@ -5,12 +5,11 @@ "Backup code" : "ბექაფის კოდები", "Use backup code" : "ბექაფის კოდების გამოყენება", "Two factor backup codes" : "მეორე-ფაქტორის ბექაფის კოდები", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "ეს თქვენი ბექაფის კოდებია. გთხოვთ შეინახოთ ან ამობეჭდოთ ისინი, კოდებს მეტი ვეღარ წაიკითხავთ", + "An error occurred while generating your backup codes" : "ბექაფის კოდების გენერაციისას წარმოიშვა შეცდომა", "Save backup codes" : "ბექაფის კოდების შენახვა", "Print backup codes" : "ბექაფის კოდების ამობეჭდვა", "Regenerate backup codes" : "ბექაფის კოდების გენერაცია", "If you regenerate backup codes, you automatically invalidate old codes." : "ძველი კოდები, ახალი ბექაფის კოდების რეგენერაციისას დაკარგავენ მოქმდების ძალას.", - "An error occurred while generating your backup codes" : "ბექაფის კოდების გენერაციისას წარმოიშვა შეცდომა", "Submit" : "გაგზავნა" },"pluralForm" :"nplurals=2; plural=(n!=1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ko.js b/apps/twofactor_backupcodes/l10n/ko.js index 2c28c0dda82..d292d78e9a1 100644 --- a/apps/twofactor_backupcodes/l10n/ko.js +++ b/apps/twofactor_backupcodes/l10n/ko.js @@ -4,17 +4,18 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "내 계정의 2단계 인증 백업 코드를 생성함", "Second-factor backup codes" : "2단계 인증 백업 코드", "Generate backup codes" : "백업 코드 생성", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "2단계 인증을 활성화했으나 아직 백업 코드를 생성하지 않았습니다. 백업코드는 2단계 인증을 잃어버려 계정을 복구할 때 필요합니다.", "Backup code" : "백업 코드", "Use backup code" : "백업 코드 사용", "Two factor backup codes" : "2단계 인증 백업 코드", "A two-factor auth backup codes provider" : "2단계 인증 백업 코드 공급자", + "An error occurred while generating your backup codes" : "백업 코드를 생성하는 중 오류가 발생했습니다.", "Backup codes have been generated. {used} of {total} codes have been used." : "백업 코드가 생성되었습니다. {total}개 중 {used}개의 코드가 사용되었습니다.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "다음은 백업 코드입니다. 이 코드는 나중에 다시 확인할 수 없으므로 저장하거나 인쇄하십시오.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "귀하의 백업 코드입니다. 이 코드는 다시 확인할 수 없다는 사실을 염두에 두고, 저장하거나 출력해 두십시오.", "Save backup codes" : "백업 코드 저장", "Print backup codes" : "백업 코드 인쇄", "Regenerate backup codes" : "백업 코드 다시 생성", "If you regenerate backup codes, you automatically invalidate old codes." : "백업 코드를 다시 생성하면 이전 코드는 자동으로 무효화됩니다.", - "An error occurred while generating your backup codes" : "백업 코드를 생성하는 중 오류가 발생했습니다.", "{name} backup codes" : "{name} 백업 코드", "Use one of the backup codes you saved when setting up two-factor authentication." : "2단계 인증을 설정할 때 저장한 백업 코드를 사용하십시오.", "Submit" : "제출" diff --git a/apps/twofactor_backupcodes/l10n/ko.json b/apps/twofactor_backupcodes/l10n/ko.json index a496f30536d..29ec38258a5 100644 --- a/apps/twofactor_backupcodes/l10n/ko.json +++ b/apps/twofactor_backupcodes/l10n/ko.json @@ -2,17 +2,18 @@ "You created two-factor backup codes for your account" : "내 계정의 2단계 인증 백업 코드를 생성함", "Second-factor backup codes" : "2단계 인증 백업 코드", "Generate backup codes" : "백업 코드 생성", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "2단계 인증을 활성화했으나 아직 백업 코드를 생성하지 않았습니다. 백업코드는 2단계 인증을 잃어버려 계정을 복구할 때 필요합니다.", "Backup code" : "백업 코드", "Use backup code" : "백업 코드 사용", "Two factor backup codes" : "2단계 인증 백업 코드", "A two-factor auth backup codes provider" : "2단계 인증 백업 코드 공급자", + "An error occurred while generating your backup codes" : "백업 코드를 생성하는 중 오류가 발생했습니다.", "Backup codes have been generated. {used} of {total} codes have been used." : "백업 코드가 생성되었습니다. {total}개 중 {used}개의 코드가 사용되었습니다.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "다음은 백업 코드입니다. 이 코드는 나중에 다시 확인할 수 없으므로 저장하거나 인쇄하십시오.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "귀하의 백업 코드입니다. 이 코드는 다시 확인할 수 없다는 사실을 염두에 두고, 저장하거나 출력해 두십시오.", "Save backup codes" : "백업 코드 저장", "Print backup codes" : "백업 코드 인쇄", "Regenerate backup codes" : "백업 코드 다시 생성", "If you regenerate backup codes, you automatically invalidate old codes." : "백업 코드를 다시 생성하면 이전 코드는 자동으로 무효화됩니다.", - "An error occurred while generating your backup codes" : "백업 코드를 생성하는 중 오류가 발생했습니다.", "{name} backup codes" : "{name} 백업 코드", "Use one of the backup codes you saved when setting up two-factor authentication." : "2단계 인증을 설정할 때 저장한 백업 코드를 사용하십시오.", "Submit" : "제출" diff --git a/apps/twofactor_backupcodes/l10n/lt_LT.js b/apps/twofactor_backupcodes/l10n/lt_LT.js index e1e1f01e516..206e3dc2ed2 100644 --- a/apps/twofactor_backupcodes/l10n/lt_LT.js +++ b/apps/twofactor_backupcodes/l10n/lt_LT.js @@ -8,13 +8,12 @@ OC.L10N.register( "Backup code" : "Atsarginis kodas", "Use backup code" : "Naudoti atsarginį kodą", "Two factor backup codes" : "Dviejų faktorių atsarginiai kodai", + "An error occurred while generating your backup codes" : "Generuojant jūsų atsarginius kodus, įvyko klaida", "Backup codes have been generated. {used} of {total} codes have been used." : "Atsarginiai kodai sugeneruoti. Panaudota {used} iš {total} kodų.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Tai yra jūsų atsarginiai kodai. Įsirašykite ir/arba atspausdinkite juos, nes vėliau nebegalėsite dar kartą jų perskaityti", "Save backup codes" : "Įrašyti atsarginius kodus", "Print backup codes" : "Spausdinti atsarginius kodus", "Regenerate backup codes" : "Iš naujo generuoti atsarginius kodus", "If you regenerate backup codes, you automatically invalidate old codes." : "Jeigu iš naujo generuosite atsarginius kodus, automatiškai paversite senuosius kodus nebegaliojančiais.", - "An error occurred while generating your backup codes" : "Generuojant jūsų atsarginius kodus, įvyko klaida", "{name} backup codes" : "{name} atsarginiai kodai", "Submit" : "Pateikti" }, diff --git a/apps/twofactor_backupcodes/l10n/lt_LT.json b/apps/twofactor_backupcodes/l10n/lt_LT.json index e4696e95d3f..bb37a06a21b 100644 --- a/apps/twofactor_backupcodes/l10n/lt_LT.json +++ b/apps/twofactor_backupcodes/l10n/lt_LT.json @@ -6,13 +6,12 @@ "Backup code" : "Atsarginis kodas", "Use backup code" : "Naudoti atsarginį kodą", "Two factor backup codes" : "Dviejų faktorių atsarginiai kodai", + "An error occurred while generating your backup codes" : "Generuojant jūsų atsarginius kodus, įvyko klaida", "Backup codes have been generated. {used} of {total} codes have been used." : "Atsarginiai kodai sugeneruoti. Panaudota {used} iš {total} kodų.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Tai yra jūsų atsarginiai kodai. Įsirašykite ir/arba atspausdinkite juos, nes vėliau nebegalėsite dar kartą jų perskaityti", "Save backup codes" : "Įrašyti atsarginius kodus", "Print backup codes" : "Spausdinti atsarginius kodus", "Regenerate backup codes" : "Iš naujo generuoti atsarginius kodus", "If you regenerate backup codes, you automatically invalidate old codes." : "Jeigu iš naujo generuosite atsarginius kodus, automatiškai paversite senuosius kodus nebegaliojančiais.", - "An error occurred while generating your backup codes" : "Generuojant jūsų atsarginius kodus, įvyko klaida", "{name} backup codes" : "{name} atsarginiai kodai", "Submit" : "Pateikti" },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" diff --git a/apps/twofactor_backupcodes/l10n/lv.js b/apps/twofactor_backupcodes/l10n/lv.js index 58e5effc212..7c0eaf63c4b 100644 --- a/apps/twofactor_backupcodes/l10n/lv.js +++ b/apps/twofactor_backupcodes/l10n/lv.js @@ -1,17 +1,16 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Jūs izveidojāt divpakāpju dublējumu kodus savam kontam", + "You created two-factor backup codes for your account" : "Tu savam kontam izveidoji divpakāpju rezerves kopiju kodus", "Second-factor backup codes" : "Second-factor dublēšanas kodi", "Generate backup codes" : "Izveidot rezerves kodus", "Backup code" : "Dublēšanas kods", - "Use backup code" : "Izmantojiet dublēšanas kodu", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Šie ir jūsu dublējuma kodi. Lūdzu saglabāt un / vai izdrukāt tos, jūs nevarēsiet izlasīt kodus vēlreiz", + "Use backup code" : "Izmantot rezerves kodu", + "An error occurred while generating your backup codes" : "Atgadījās kļūda rezerves kodu izveidošanas laikā", "Save backup codes" : "Saglabāt rezerves kodus", "Print backup codes" : "Drukāt dublējuma kodus", "Regenerate backup codes" : "Atjaunot dublējuma kodus", "If you regenerate backup codes, you automatically invalidate old codes." : "Ja atjaunot dublējum kodus, tiek automātiski anulēti vecie kodi.", - "An error occurred while generating your backup codes" : "Radās kļūda, ģenerējot jūsu dublējuma kodus", "Submit" : "Iesniegt" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/twofactor_backupcodes/l10n/lv.json b/apps/twofactor_backupcodes/l10n/lv.json index 90d783603dd..871dee78b2c 100644 --- a/apps/twofactor_backupcodes/l10n/lv.json +++ b/apps/twofactor_backupcodes/l10n/lv.json @@ -1,15 +1,14 @@ { "translations": { - "You created two-factor backup codes for your account" : "Jūs izveidojāt divpakāpju dublējumu kodus savam kontam", + "You created two-factor backup codes for your account" : "Tu savam kontam izveidoji divpakāpju rezerves kopiju kodus", "Second-factor backup codes" : "Second-factor dublēšanas kodi", "Generate backup codes" : "Izveidot rezerves kodus", "Backup code" : "Dublēšanas kods", - "Use backup code" : "Izmantojiet dublēšanas kodu", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Šie ir jūsu dublējuma kodi. Lūdzu saglabāt un / vai izdrukāt tos, jūs nevarēsiet izlasīt kodus vēlreiz", + "Use backup code" : "Izmantot rezerves kodu", + "An error occurred while generating your backup codes" : "Atgadījās kļūda rezerves kodu izveidošanas laikā", "Save backup codes" : "Saglabāt rezerves kodus", "Print backup codes" : "Drukāt dublējuma kodus", "Regenerate backup codes" : "Atjaunot dublējuma kodus", "If you regenerate backup codes, you automatically invalidate old codes." : "Ja atjaunot dublējum kodus, tiek automātiski anulēti vecie kodi.", - "An error occurred while generating your backup codes" : "Radās kļūda, ģenerējot jūsu dublējuma kodus", "Submit" : "Iesniegt" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/mk.js b/apps/twofactor_backupcodes/l10n/mk.js index 3ba50a0581e..f6447ece31d 100644 --- a/apps/twofactor_backupcodes/l10n/mk.js +++ b/apps/twofactor_backupcodes/l10n/mk.js @@ -9,13 +9,12 @@ OC.L10N.register( "Use backup code" : "Искористи резервен код", "Two factor backup codes" : "Резервни кодови за двофакторна автентификација", "A two-factor auth backup codes provider" : "Провајдер за резервни кодови за двофакторна автентификација", + "An error occurred while generating your backup codes" : "Настана грешка при генерирање на вашите резервни кодови", "Backup codes have been generated. {used} of {total} codes have been used." : "Резервни кодови се генерирани. Искористени се {used} од {total} кодови.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ова се вашите резервни кодови. Ве молиме зачувајте ги и/или испечатете ги бидејќи нема да бидете во можност да ги видите повторно", "Save backup codes" : "Зачувај ги резервните кодови", "Print backup codes" : "Печати ги резевните кодови", "Regenerate backup codes" : "Генерирај повторно резервни кодови", "If you regenerate backup codes, you automatically invalidate old codes." : "Доколку генерирате повторно резервни кодови, старите кодови нема да бидат во употреба.", - "An error occurred while generating your backup codes" : "Настана грешка при генерирање на вашите резервни кодови", "{name} backup codes" : "{name} резервни кодови", "Use one of the backup codes you saved when setting up two-factor authentication." : "Искористи еден од резервните кодови што ги зачувавте кога активиравте двофакторна автентикација.", "Submit" : "Испрати" diff --git a/apps/twofactor_backupcodes/l10n/mk.json b/apps/twofactor_backupcodes/l10n/mk.json index 849e9c581ab..8ff2522dd78 100644 --- a/apps/twofactor_backupcodes/l10n/mk.json +++ b/apps/twofactor_backupcodes/l10n/mk.json @@ -7,13 +7,12 @@ "Use backup code" : "Искористи резервен код", "Two factor backup codes" : "Резервни кодови за двофакторна автентификација", "A two-factor auth backup codes provider" : "Провајдер за резервни кодови за двофакторна автентификација", + "An error occurred while generating your backup codes" : "Настана грешка при генерирање на вашите резервни кодови", "Backup codes have been generated. {used} of {total} codes have been used." : "Резервни кодови се генерирани. Искористени се {used} од {total} кодови.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ова се вашите резервни кодови. Ве молиме зачувајте ги и/или испечатете ги бидејќи нема да бидете во можност да ги видите повторно", "Save backup codes" : "Зачувај ги резервните кодови", "Print backup codes" : "Печати ги резевните кодови", "Regenerate backup codes" : "Генерирај повторно резервни кодови", "If you regenerate backup codes, you automatically invalidate old codes." : "Доколку генерирате повторно резервни кодови, старите кодови нема да бидат во употреба.", - "An error occurred while generating your backup codes" : "Настана грешка при генерирање на вашите резервни кодови", "{name} backup codes" : "{name} резервни кодови", "Use one of the backup codes you saved when setting up two-factor authentication." : "Искористи еден од резервните кодови што ги зачувавте кога активиравте двофакторна автентикација.", "Submit" : "Испрати" diff --git a/apps/twofactor_backupcodes/l10n/mn.js b/apps/twofactor_backupcodes/l10n/mn.js index 907e86d16e6..7c6cf17b2eb 100644 --- a/apps/twofactor_backupcodes/l10n/mn.js +++ b/apps/twofactor_backupcodes/l10n/mn.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Нөөц код", "Use backup code" : "Нөөц кодыг ашиглах", "Two factor backup codes" : "Нөөц кодын хоёр хүчин зүйл", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Эдгээр нь таны нөөц код юм. Дараа нь дахин кодыг уншиж чадахгүй тул та тэдгээрийг хадгалах буюу хэвлэх боломжтой", + "An error occurred while generating your backup codes" : "Таны нөөц кодыг үүсгэх явцад алдаа гарлаа", "Save backup codes" : "Нөөц кодыг хадгалах", "Print backup codes" : "Нөөц кодыг хэвлэх", "Regenerate backup codes" : "Нөөц кодыг дахин сэргээх", "If you regenerate backup codes, you automatically invalidate old codes." : "хэрвээ нөөц кодыг дахин сэргээх бол, та хуучин кодыг автоматаар хүчингүй болгоно", - "An error occurred while generating your backup codes" : "Таны нөөц кодыг үүсгэх явцад алдаа гарлаа", "Submit" : "мэдэгдэх" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/mn.json b/apps/twofactor_backupcodes/l10n/mn.json index fa3cde21751..17763574b64 100644 --- a/apps/twofactor_backupcodes/l10n/mn.json +++ b/apps/twofactor_backupcodes/l10n/mn.json @@ -5,12 +5,11 @@ "Backup code" : "Нөөц код", "Use backup code" : "Нөөц кодыг ашиглах", "Two factor backup codes" : "Нөөц кодын хоёр хүчин зүйл", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Эдгээр нь таны нөөц код юм. Дараа нь дахин кодыг уншиж чадахгүй тул та тэдгээрийг хадгалах буюу хэвлэх боломжтой", + "An error occurred while generating your backup codes" : "Таны нөөц кодыг үүсгэх явцад алдаа гарлаа", "Save backup codes" : "Нөөц кодыг хадгалах", "Print backup codes" : "Нөөц кодыг хэвлэх", "Regenerate backup codes" : "Нөөц кодыг дахин сэргээх", "If you regenerate backup codes, you automatically invalidate old codes." : "хэрвээ нөөц кодыг дахин сэргээх бол, та хуучин кодыг автоматаар хүчингүй болгоно", - "An error occurred while generating your backup codes" : "Таны нөөц кодыг үүсгэх явцад алдаа гарлаа", "Submit" : "мэдэгдэх" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/nb.js b/apps/twofactor_backupcodes/l10n/nb.js index 121704bc50e..ff76337d31a 100644 --- a/apps/twofactor_backupcodes/l10n/nb.js +++ b/apps/twofactor_backupcodes/l10n/nb.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Du opprettet to-trinns bekreftelse sikkerhetskopi-koder", - "Second-factor backup codes" : "To-trinns bekreftelse sikkerhetskopi-koder", - "Generate backup codes" : "Generer sikkerhetskopi-koder", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du aktiverte tofaktorautentisering, men har ikke generert sikkerhetskopikoder ennå. De er nødvendige for å gjenopprette tilgangen til kontoen din i tilfelle du mister din to faktor autentisering.", - "Backup code" : "Sikkerhetskopi-kode", - "Use backup code" : "Bruker sikkerhetskopi-kode", - "Two factor backup codes" : "Sikkerhetskopikoder for tofaktor", - "A two-factor auth backup codes provider" : "En leverandør av sikkerhetskopi av to-faktor koder", + "You created two-factor backup codes for your account" : "Du opprettet to-faktor sikkerhetskoder for din konto", + "Second-factor backup codes" : "Andre-faktor sikkerhetskoder", + "Generate backup codes" : "Generer sikkerhetskoder", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du aktiverte tofaktorautentisering, men har ikke generert sikkerhetskoder ennå. De er nødvendige for å gjenopprette tilgangen til din konto i tilfelle du mister din to-faktor autentisering.", + "Backup code" : "Sikkerhetskoder", + "Use backup code" : "Bruker sikkerhetskode", + "Two factor backup codes" : "Sikkerhetskoder for to-faktor", + "A two-factor auth backup codes provider" : "En tilbyder av sikkerhetskoder for to-faktor autentisering", + "An error occurred while generating your backup codes" : "En feil oppsto under generering av sikkerhetskodene", "Backup codes have been generated. {used} of {total} codes have been used." : "Sikkerhetskoder er generert. {used} av {total} koder er brukt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dette er sikkerhetskopi-kodene. Lagre og/eller skriv dem ut siden du ikke vil kunne se kodene her igjen senere.", - "Save backup codes" : "Lagre sikkerhetskopi-kodene", - "Print backup codes" : "Skriv ut sikkerhetskopi-koder", - "Regenerate backup codes" : "Lag sikkerhetskopi-koder på nytt", - "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du regenererer nye sikkerhetskopi-koder, vil du automatisk gjøre de gamle kodene ugyldige.", - "An error occurred while generating your backup codes" : "En feil oppstod under generering av sikkerhetskopi-kodene", - "{name} backup codes" : "{name} sikkerhetskopi-koder", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Bruk en av backup kodene du lagret når du opprettet to-faktor autentisering.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dette er reservekodene dine. Lagre og/eller skriv dem ut, da du ikke vil kunne lese kodene igjen senere.", + "Save backup codes" : "Lagre sikkerhetskodene", + "Print backup codes" : "Skriv ut sikkerhetskoder", + "Regenerate backup codes" : "Lag sikkerhetskoder på nytt", + "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du regenererer nye sikkerhetskoder, blir de gamle kodene ugyldige.", + "{name} backup codes" : "{name} sikkerhetskoder", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Bruk en av sikkerhetskodene du lagret når du opprettet to-faktor autentisering.", "Submit" : "Send" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/nb.json b/apps/twofactor_backupcodes/l10n/nb.json index cba3a01627a..739b785fc98 100644 --- a/apps/twofactor_backupcodes/l10n/nb.json +++ b/apps/twofactor_backupcodes/l10n/nb.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Du opprettet to-trinns bekreftelse sikkerhetskopi-koder", - "Second-factor backup codes" : "To-trinns bekreftelse sikkerhetskopi-koder", - "Generate backup codes" : "Generer sikkerhetskopi-koder", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du aktiverte tofaktorautentisering, men har ikke generert sikkerhetskopikoder ennå. De er nødvendige for å gjenopprette tilgangen til kontoen din i tilfelle du mister din to faktor autentisering.", - "Backup code" : "Sikkerhetskopi-kode", - "Use backup code" : "Bruker sikkerhetskopi-kode", - "Two factor backup codes" : "Sikkerhetskopikoder for tofaktor", - "A two-factor auth backup codes provider" : "En leverandør av sikkerhetskopi av to-faktor koder", + "You created two-factor backup codes for your account" : "Du opprettet to-faktor sikkerhetskoder for din konto", + "Second-factor backup codes" : "Andre-faktor sikkerhetskoder", + "Generate backup codes" : "Generer sikkerhetskoder", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Du aktiverte tofaktorautentisering, men har ikke generert sikkerhetskoder ennå. De er nødvendige for å gjenopprette tilgangen til din konto i tilfelle du mister din to-faktor autentisering.", + "Backup code" : "Sikkerhetskoder", + "Use backup code" : "Bruker sikkerhetskode", + "Two factor backup codes" : "Sikkerhetskoder for to-faktor", + "A two-factor auth backup codes provider" : "En tilbyder av sikkerhetskoder for to-faktor autentisering", + "An error occurred while generating your backup codes" : "En feil oppsto under generering av sikkerhetskodene", "Backup codes have been generated. {used} of {total} codes have been used." : "Sikkerhetskoder er generert. {used} av {total} koder er brukt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dette er sikkerhetskopi-kodene. Lagre og/eller skriv dem ut siden du ikke vil kunne se kodene her igjen senere.", - "Save backup codes" : "Lagre sikkerhetskopi-kodene", - "Print backup codes" : "Skriv ut sikkerhetskopi-koder", - "Regenerate backup codes" : "Lag sikkerhetskopi-koder på nytt", - "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du regenererer nye sikkerhetskopi-koder, vil du automatisk gjøre de gamle kodene ugyldige.", - "An error occurred while generating your backup codes" : "En feil oppstod under generering av sikkerhetskopi-kodene", - "{name} backup codes" : "{name} sikkerhetskopi-koder", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Bruk en av backup kodene du lagret når du opprettet to-faktor autentisering.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dette er reservekodene dine. Lagre og/eller skriv dem ut, da du ikke vil kunne lese kodene igjen senere.", + "Save backup codes" : "Lagre sikkerhetskodene", + "Print backup codes" : "Skriv ut sikkerhetskoder", + "Regenerate backup codes" : "Lag sikkerhetskoder på nytt", + "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du regenererer nye sikkerhetskoder, blir de gamle kodene ugyldige.", + "{name} backup codes" : "{name} sikkerhetskoder", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Bruk en av sikkerhetskodene du lagret når du opprettet to-faktor autentisering.", "Submit" : "Send" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/nb_NO.js b/apps/twofactor_backupcodes/l10n/nb_NO.js deleted file mode 100644 index 98ad943d2cd..00000000000 --- a/apps/twofactor_backupcodes/l10n/nb_NO.js +++ /dev/null @@ -1,21 +0,0 @@ -OC.L10N.register( - "twofactor_backupcodes", - { - "Generate backup codes" : "Generer sikkerhetskopi-koder", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Sikkerhetskopi-koder har blitt generert. {{used}} av {{total}} koder er brukt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dette er sikkerhetskopi-kodene. Vennligst lagre og/eller skriv dem ut siden du ikke vil kunne se kodene her igjen senere.", - "Save backup codes" : "Lagre sikkerhetskopi-kodene", - "Print backup codes" : "Skriv ut sikkerhetskopi-koder", - "Regenerate backup codes" : "Lag sikkerhetskopi-koder på nytt", - "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du regenererer nye sikkerhetskopi-koder, vil du automatisk gjøre de gamle kodene ugyldige.", - "An error occurred while generating your backup codes" : "En feil oppstod under generering av sikkerhetskopi-kodene", - "Nextcloud backup codes" : "Nextcloud sikkerhetskopi-koder", - "Two-factor authentication" : "To-trinns bekreftelse", - "You successfully logged in using two-factor authentication (%1$s)" : "Din innlogging med to-trinns bekreftelse var velykket (%1$s)", - "A login attempt using two-factor authentication failed (%1$s)" : "En innlogging med to-trinns bekreftelse mislyktes (%1$s)", - "You created two-factor backup codes for your account" : "Du opprettet to-trinns bekreftelse sikkerhetskopi-koder", - "Backup code" : "Sikkerhetskopi-kode", - "Use backup code" : "Bruker sikkerhetskopi-kode", - "Second-factor backup codes" : "To-trinns bekreftelse sikkerhetskopi-koder" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/nb_NO.json b/apps/twofactor_backupcodes/l10n/nb_NO.json deleted file mode 100644 index 1fe3d2a9a32..00000000000 --- a/apps/twofactor_backupcodes/l10n/nb_NO.json +++ /dev/null @@ -1,19 +0,0 @@ -{ "translations": { - "Generate backup codes" : "Generer sikkerhetskopi-koder", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Sikkerhetskopi-koder har blitt generert. {{used}} av {{total}} koder er brukt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dette er sikkerhetskopi-kodene. Vennligst lagre og/eller skriv dem ut siden du ikke vil kunne se kodene her igjen senere.", - "Save backup codes" : "Lagre sikkerhetskopi-kodene", - "Print backup codes" : "Skriv ut sikkerhetskopi-koder", - "Regenerate backup codes" : "Lag sikkerhetskopi-koder på nytt", - "If you regenerate backup codes, you automatically invalidate old codes." : "Hvis du regenererer nye sikkerhetskopi-koder, vil du automatisk gjøre de gamle kodene ugyldige.", - "An error occurred while generating your backup codes" : "En feil oppstod under generering av sikkerhetskopi-kodene", - "Nextcloud backup codes" : "Nextcloud sikkerhetskopi-koder", - "Two-factor authentication" : "To-trinns bekreftelse", - "You successfully logged in using two-factor authentication (%1$s)" : "Din innlogging med to-trinns bekreftelse var velykket (%1$s)", - "A login attempt using two-factor authentication failed (%1$s)" : "En innlogging med to-trinns bekreftelse mislyktes (%1$s)", - "You created two-factor backup codes for your account" : "Du opprettet to-trinns bekreftelse sikkerhetskopi-koder", - "Backup code" : "Sikkerhetskopi-kode", - "Use backup code" : "Bruker sikkerhetskopi-kode", - "Second-factor backup codes" : "To-trinns bekreftelse sikkerhetskopi-koder" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/nl.js b/apps/twofactor_backupcodes/l10n/nl.js index 73daccb3b58..641e12060a9 100644 --- a/apps/twofactor_backupcodes/l10n/nl.js +++ b/apps/twofactor_backupcodes/l10n/nl.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Gebruik back-upcode", "Two factor backup codes" : "Twee-factor back-upcode", "A two-factor auth backup codes provider" : "Een tweefactor authenticatie back-upcodes provider", + "An error occurred while generating your backup codes" : "Er trad een fout op bij het genereren van je back-upcodes", "Backup codes have been generated. {used} of {total} codes have been used." : "Back-upcodes zijn gegenereerd. {used} van {total} codes zijn gebruikt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dit zijn je back-upcodes. Bewaar ze en/of druk ze alsjeblieft af, want je ze kunt niet later nog een keer opvragen.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dit zijn je back-upcodes. Bewaar ze en/of druk ze alsjeblieft af, want je ze kunt niet later nog een keer opvragen.", "Save backup codes" : "Bewaren back-upcode", "Print backup codes" : "Afdrukken back-upcode", "Regenerate backup codes" : "Regenereer back-upcode", "If you regenerate backup codes, you automatically invalidate old codes." : "Als je back-upcodes opnieuw genereert, worden oude codes automatisch ongeldig gemaakt.", - "An error occurred while generating your backup codes" : "Er trad een fout op bij het genereren van je back-upcodes", "{name} backup codes" : "{name} back-upcodes", "Use one of the backup codes you saved when setting up two-factor authentication." : "Gebruik een van de back-upcodes die je bewaarde bij het inschakelen van de tweefactorauthenticatie.", "Submit" : "Verwerken" diff --git a/apps/twofactor_backupcodes/l10n/nl.json b/apps/twofactor_backupcodes/l10n/nl.json index db5380afda1..e4638fbb0f9 100644 --- a/apps/twofactor_backupcodes/l10n/nl.json +++ b/apps/twofactor_backupcodes/l10n/nl.json @@ -7,13 +7,13 @@ "Use backup code" : "Gebruik back-upcode", "Two factor backup codes" : "Twee-factor back-upcode", "A two-factor auth backup codes provider" : "Een tweefactor authenticatie back-upcodes provider", + "An error occurred while generating your backup codes" : "Er trad een fout op bij het genereren van je back-upcodes", "Backup codes have been generated. {used} of {total} codes have been used." : "Back-upcodes zijn gegenereerd. {used} van {total} codes zijn gebruikt.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dit zijn je back-upcodes. Bewaar ze en/of druk ze alsjeblieft af, want je ze kunt niet later nog een keer opvragen.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Dit zijn je back-upcodes. Bewaar ze en/of druk ze alsjeblieft af, want je ze kunt niet later nog een keer opvragen.", "Save backup codes" : "Bewaren back-upcode", "Print backup codes" : "Afdrukken back-upcode", "Regenerate backup codes" : "Regenereer back-upcode", "If you regenerate backup codes, you automatically invalidate old codes." : "Als je back-upcodes opnieuw genereert, worden oude codes automatisch ongeldig gemaakt.", - "An error occurred while generating your backup codes" : "Er trad een fout op bij het genereren van je back-upcodes", "{name} backup codes" : "{name} back-upcodes", "Use one of the backup codes you saved when setting up two-factor authentication." : "Gebruik een van de back-upcodes die je bewaarde bij het inschakelen van de tweefactorauthenticatie.", "Submit" : "Verwerken" diff --git a/apps/twofactor_backupcodes/l10n/pl.js b/apps/twofactor_backupcodes/l10n/pl.js index 14774d81f98..52840c4641b 100644 --- a/apps/twofactor_backupcodes/l10n/pl.js +++ b/apps/twofactor_backupcodes/l10n/pl.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Użyj kodu zapasowego", "Two factor backup codes" : "Kody zapasowe uwierzytelnienia dwuskładnikowego", "A two-factor auth backup codes provider" : "Dostawca dwuskładnikowych kodów zapasowych ", + "An error occurred while generating your backup codes" : "Wystąpił błąd podczas generowania kodów zapasowych.", "Backup codes have been generated. {used} of {total} codes have been used." : "Wygenerowano kody zapasowe. Użyto {used} z {total} kodów.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "To są kody zapasowe. Proszę je zapisać i/lub wydrukować, ponieważ później nie będzie można ich ponownie odczytać", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "To są kody zapasowe. Zapisz je i/lub wydrukuj, ponieważ nie będziesz mógł ich później odczytać.", "Save backup codes" : "Zapisz kody zapasowe", "Print backup codes" : "Drukuj kody zapasowe", "Regenerate backup codes" : "Ponownie generuj kody zapasowe", "If you regenerate backup codes, you automatically invalidate old codes." : "Jeśli generujesz kody zapasowe ponownie, automatycznie unieważniasz stare kody.", - "An error occurred while generating your backup codes" : "Wystąpił błąd podczas generowania kodów zapasowych.", "{name} backup codes" : "Kody kopii zapasowej {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Użyj jednego z kodów zapasowych zapisanych podczas konfigurowania uwierzytelniania dwuskładnikowego.", "Submit" : "Wyślij" diff --git a/apps/twofactor_backupcodes/l10n/pl.json b/apps/twofactor_backupcodes/l10n/pl.json index cc44933a267..e8ecbb3a095 100644 --- a/apps/twofactor_backupcodes/l10n/pl.json +++ b/apps/twofactor_backupcodes/l10n/pl.json @@ -7,13 +7,13 @@ "Use backup code" : "Użyj kodu zapasowego", "Two factor backup codes" : "Kody zapasowe uwierzytelnienia dwuskładnikowego", "A two-factor auth backup codes provider" : "Dostawca dwuskładnikowych kodów zapasowych ", + "An error occurred while generating your backup codes" : "Wystąpił błąd podczas generowania kodów zapasowych.", "Backup codes have been generated. {used} of {total} codes have been used." : "Wygenerowano kody zapasowe. Użyto {used} z {total} kodów.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "To są kody zapasowe. Proszę je zapisać i/lub wydrukować, ponieważ później nie będzie można ich ponownie odczytać", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "To są kody zapasowe. Zapisz je i/lub wydrukuj, ponieważ nie będziesz mógł ich później odczytać.", "Save backup codes" : "Zapisz kody zapasowe", "Print backup codes" : "Drukuj kody zapasowe", "Regenerate backup codes" : "Ponownie generuj kody zapasowe", "If you regenerate backup codes, you automatically invalidate old codes." : "Jeśli generujesz kody zapasowe ponownie, automatycznie unieważniasz stare kody.", - "An error occurred while generating your backup codes" : "Wystąpił błąd podczas generowania kodów zapasowych.", "{name} backup codes" : "Kody kopii zapasowej {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Użyj jednego z kodów zapasowych zapisanych podczas konfigurowania uwierzytelniania dwuskładnikowego.", "Submit" : "Wyślij" diff --git a/apps/twofactor_backupcodes/l10n/pt_BR.js b/apps/twofactor_backupcodes/l10n/pt_BR.js index 3d17e1d7629..c3803a5f156 100644 --- a/apps/twofactor_backupcodes/l10n/pt_BR.js +++ b/apps/twofactor_backupcodes/l10n/pt_BR.js @@ -9,15 +9,15 @@ OC.L10N.register( "Use backup code" : "Usar o código de backup", "Two factor backup codes" : "Códigos de backup de dois fatores", "A two-factor auth backup codes provider" : "Um provedor de códigos de backup de autenticação de dois fatores", + "An error occurred while generating your backup codes" : "Ocorreu um erro ao gerar os códigos de backup", "Backup codes have been generated. {used} of {total} codes have been used." : "Códigos de backup foram gerados. Foram usados {used} de um total de {total} códigos.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estes são os seus códigos de backup. Salve e/ou imprima-os, pois não será possível ler os códigos novamente mais tarde", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estes são seus códigos de backup. Salve-os e/ou imprima-os, pois você não conseguirá ler os códigos novamente mais tarde.", "Save backup codes" : "Salvar códigos de backup", "Print backup codes" : "Imprimir códigos de backup", "Regenerate backup codes" : "Regerar códigos de backup", "If you regenerate backup codes, you automatically invalidate old codes." : "Se você gerar novamente os códigos de backup, invalidará automaticamente os códigos antigos.", - "An error occurred while generating your backup codes" : "Ocorreu um erro ao gerar os códigos de backup", "{name} backup codes" : "Códigos de backup {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Use um dos códigos de backup que você salvou ao configurar a autenticação de dois fatores.", "Submit" : "Enviar" }, -"nplurals=2; plural=(n > 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/pt_BR.json b/apps/twofactor_backupcodes/l10n/pt_BR.json index d29b4f2a7cb..1f7d46bda90 100644 --- a/apps/twofactor_backupcodes/l10n/pt_BR.json +++ b/apps/twofactor_backupcodes/l10n/pt_BR.json @@ -7,15 +7,15 @@ "Use backup code" : "Usar o código de backup", "Two factor backup codes" : "Códigos de backup de dois fatores", "A two-factor auth backup codes provider" : "Um provedor de códigos de backup de autenticação de dois fatores", + "An error occurred while generating your backup codes" : "Ocorreu um erro ao gerar os códigos de backup", "Backup codes have been generated. {used} of {total} codes have been used." : "Códigos de backup foram gerados. Foram usados {used} de um total de {total} códigos.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estes são os seus códigos de backup. Salve e/ou imprima-os, pois não será possível ler os códigos novamente mais tarde", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Estes são seus códigos de backup. Salve-os e/ou imprima-os, pois você não conseguirá ler os códigos novamente mais tarde.", "Save backup codes" : "Salvar códigos de backup", "Print backup codes" : "Imprimir códigos de backup", "Regenerate backup codes" : "Regerar códigos de backup", "If you regenerate backup codes, you automatically invalidate old codes." : "Se você gerar novamente os códigos de backup, invalidará automaticamente os códigos antigos.", - "An error occurred while generating your backup codes" : "Ocorreu um erro ao gerar os códigos de backup", "{name} backup codes" : "Códigos de backup {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Use um dos códigos de backup que você salvou ao configurar a autenticação de dois fatores.", "Submit" : "Enviar" -},"pluralForm" :"nplurals=2; plural=(n > 1);" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/pt_PT.js b/apps/twofactor_backupcodes/l10n/pt_PT.js new file mode 100644 index 00000000000..16cc27277b7 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/pt_PT.js @@ -0,0 +1,15 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "Second-factor backup codes" : "Códigos de segurança de segundo fator", + "Generate backup codes" : "Gerar códigos de cópia de segurança", + "Backup code" : "Código de segurança", + "Use backup code" : "Usar código de cópia de segurança", + "An error occurred while generating your backup codes" : "Ocorreu um erro enquanto os códigos de segurança eram gerados", + "Save backup codes" : "Guardar códigos de segurança", + "Print backup codes" : "Imprimir códigos de segurança", + "Regenerate backup codes" : "Voltar a gerar os códigos de segurança", + "If you regenerate backup codes, you automatically invalidate old codes." : "Se voltar a gerar os códigos de segurança os seus códigos antigos serão automaticamente invalidados.", + "Submit" : "Submeter" +}, +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/twofactor_backupcodes/l10n/pt_PT.json b/apps/twofactor_backupcodes/l10n/pt_PT.json new file mode 100644 index 00000000000..7e132a94af5 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/pt_PT.json @@ -0,0 +1,13 @@ +{ "translations": { + "Second-factor backup codes" : "Códigos de segurança de segundo fator", + "Generate backup codes" : "Gerar códigos de cópia de segurança", + "Backup code" : "Código de segurança", + "Use backup code" : "Usar código de cópia de segurança", + "An error occurred while generating your backup codes" : "Ocorreu um erro enquanto os códigos de segurança eram gerados", + "Save backup codes" : "Guardar códigos de segurança", + "Print backup codes" : "Imprimir códigos de segurança", + "Regenerate backup codes" : "Voltar a gerar os códigos de segurança", + "If you regenerate backup codes, you automatically invalidate old codes." : "Se voltar a gerar os códigos de segurança os seus códigos antigos serão automaticamente invalidados.", + "Submit" : "Submeter" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ru.js b/apps/twofactor_backupcodes/l10n/ru.js index 127cbabdb14..76e1baf9d6d 100644 --- a/apps/twofactor_backupcodes/l10n/ru.js +++ b/apps/twofactor_backupcodes/l10n/ru.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Использовать резервный код", "Two factor backup codes" : "Второй фактор — резервные коды", "A two-factor auth backup codes provider" : "Провайдер резервных копий для кодов двухфакторной аутентификации", + "An error occurred while generating your backup codes" : "Произошла ошибка при создании резервных кодов", "Backup codes have been generated. {used} of {total} codes have been used." : "Использовано {used} из {total} ранее выпущенных резервных кодов.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Это ваши резервные коды доступа. Пожалуйста, сохраните и/или распечатайте их, так как вы не сможете увидеть эти коды снова.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Это ваши резервные коды. Пожалуйста, сохраните и/или распечатайте их, так как позже вы не сможете прочитать коды снова.", "Save backup codes" : "Сохранить резервные коды", "Print backup codes" : "Распечатать резервные коды", "Regenerate backup codes" : "Перевыпустить резервные коды", "If you regenerate backup codes, you automatically invalidate old codes." : "При перевыпуске резервных кодов, старые автоматически становятся недействительными.", - "An error occurred while generating your backup codes" : "Произошла ошибка при создании резервных кодов", "{name} backup codes" : "Резервные коды {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Использовать для двухфакторной аутентификации один из ранее выпущенных резервных кодов.", "Submit" : "Отправить" diff --git a/apps/twofactor_backupcodes/l10n/ru.json b/apps/twofactor_backupcodes/l10n/ru.json index 8d74cfce54a..9202e3136f1 100644 --- a/apps/twofactor_backupcodes/l10n/ru.json +++ b/apps/twofactor_backupcodes/l10n/ru.json @@ -7,13 +7,13 @@ "Use backup code" : "Использовать резервный код", "Two factor backup codes" : "Второй фактор — резервные коды", "A two-factor auth backup codes provider" : "Провайдер резервных копий для кодов двухфакторной аутентификации", + "An error occurred while generating your backup codes" : "Произошла ошибка при создании резервных кодов", "Backup codes have been generated. {used} of {total} codes have been used." : "Использовано {used} из {total} ранее выпущенных резервных кодов.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Это ваши резервные коды доступа. Пожалуйста, сохраните и/или распечатайте их, так как вы не сможете увидеть эти коды снова.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Это ваши резервные коды. Пожалуйста, сохраните и/или распечатайте их, так как позже вы не сможете прочитать коды снова.", "Save backup codes" : "Сохранить резервные коды", "Print backup codes" : "Распечатать резервные коды", "Regenerate backup codes" : "Перевыпустить резервные коды", "If you regenerate backup codes, you automatically invalidate old codes." : "При перевыпуске резервных кодов, старые автоматически становятся недействительными.", - "An error occurred while generating your backup codes" : "Произошла ошибка при создании резервных кодов", "{name} backup codes" : "Резервные коды {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Использовать для двухфакторной аутентификации один из ранее выпущенных резервных кодов.", "Submit" : "Отправить" diff --git a/apps/twofactor_backupcodes/l10n/sc.js b/apps/twofactor_backupcodes/l10n/sc.js new file mode 100644 index 00000000000..850261f3774 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/sc.js @@ -0,0 +1,22 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "As creadu còdighes de còpia de seguresa a duos fatores pro su contu tuo", + "Second-factor backup codes" : "Còdighes de còpia de seguresa a segundu fatore", + "Generate backup codes" : "Gènera còdighes de còpia de seguresa", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "As ativadu s'autenticatzione a duos fatores ma no as ancora generadu is còdighes. Sunt netzessàrios pro ripristinare s'atzessu a su contu tuo s'in casu perdes su segundu fatore. ", + "Backup code" : "Còdighe de còpia de seguresa", + "Use backup code" : "Imprea còdighe de còpia de seguresa", + "Two factor backup codes" : "Còdighes còpia de seguresa a duos fatores", + "A two-factor auth backup codes provider" : "Unu frunidore de autenticatzione de còdighes de còpia de seguresa a duos fatores", + "An error occurred while generating your backup codes" : "Ddoe at àpidu un'errore in sa creatzione de is còdighes de còpia de seguresa", + "Backup codes have been generated. {used} of {total} codes have been used." : "Is còdighes de còpia de seguresa si sunt generados. {used} de {total} còdighes sunt istados impreados.", + "Save backup codes" : "Sarva còdighes de còpia de seguresa", + "Print backup codes" : "Imprenta còdighes de còpia de seguresa", + "Regenerate backup codes" : "Torra a generare còdighes de còpia de seguresa", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si torras a generare is còdighes de còpia de seguresa, in automàticu is còdighes betzos non sunt prus vàlidos.", + "{name} backup codes" : "{name} còdighes de còpia de seguresa", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Imprea unu de is còdighes de còpia de seguresa chi as sarvadu cando cunfiguras s'autenticatzione a duos fatores.", + "Submit" : "Imbia" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/sc.json b/apps/twofactor_backupcodes/l10n/sc.json new file mode 100644 index 00000000000..3d0bc7d37ac --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/sc.json @@ -0,0 +1,20 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "As creadu còdighes de còpia de seguresa a duos fatores pro su contu tuo", + "Second-factor backup codes" : "Còdighes de còpia de seguresa a segundu fatore", + "Generate backup codes" : "Gènera còdighes de còpia de seguresa", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "As ativadu s'autenticatzione a duos fatores ma no as ancora generadu is còdighes. Sunt netzessàrios pro ripristinare s'atzessu a su contu tuo s'in casu perdes su segundu fatore. ", + "Backup code" : "Còdighe de còpia de seguresa", + "Use backup code" : "Imprea còdighe de còpia de seguresa", + "Two factor backup codes" : "Còdighes còpia de seguresa a duos fatores", + "A two-factor auth backup codes provider" : "Unu frunidore de autenticatzione de còdighes de còpia de seguresa a duos fatores", + "An error occurred while generating your backup codes" : "Ddoe at àpidu un'errore in sa creatzione de is còdighes de còpia de seguresa", + "Backup codes have been generated. {used} of {total} codes have been used." : "Is còdighes de còpia de seguresa si sunt generados. {used} de {total} còdighes sunt istados impreados.", + "Save backup codes" : "Sarva còdighes de còpia de seguresa", + "Print backup codes" : "Imprenta còdighes de còpia de seguresa", + "Regenerate backup codes" : "Torra a generare còdighes de còpia de seguresa", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si torras a generare is còdighes de còpia de seguresa, in automàticu is còdighes betzos non sunt prus vàlidos.", + "{name} backup codes" : "{name} còdighes de còpia de seguresa", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Imprea unu de is còdighes de còpia de seguresa chi as sarvadu cando cunfiguras s'autenticatzione a duos fatores.", + "Submit" : "Imbia" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/sk.js b/apps/twofactor_backupcodes/l10n/sk.js index 4f69e72fb5c..d5d51c5b935 100644 --- a/apps/twofactor_backupcodes/l10n/sk.js +++ b/apps/twofactor_backupcodes/l10n/sk.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Použiť záložný kód", "Two factor backup codes" : "Záložné kódy pre dvojfaktorové overovanie", "A two-factor auth backup codes provider" : "Poskytovateľ záložných kódov pre dvojfaktorové overovanie", - "Backup codes have been generated. {used} of {total} codes have been used." : "Boli vygenerované záložné kódy. Boli použité {použité} z {celkom} kódov.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Tu sú vaše záložné kódy. Uložte si ich prosím alebo vytlačte, pretože ich nebude možné neskôr znovu zobraziť.", + "An error occurred while generating your backup codes" : "Pri vytváraní záložných kódov nastala chyba.", + "Backup codes have been generated. {used} of {total} codes have been used." : "Boli vygenerované záložné kódy. Boli použité {used} z {total} kódov.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Toto sú vaše záložné kódy. Uložte si ich a/alebo si ich vytlačte, pretože kódy neskôr nebudete môcť znova prečítať.", "Save backup codes" : "Uložiť záložné kódy", "Print backup codes" : "Vytlačiť záložné kódy", "Regenerate backup codes" : "Vytvoriť nové záložné kódy", "If you regenerate backup codes, you automatically invalidate old codes." : "Ak vytvoríte nové záložné kódy, staré sa automaticky zneplatnia.", - "An error occurred while generating your backup codes" : "Pri vytváraní záložných kódov nastala chyba.", "{name} backup codes" : "{name} záložné kódy", "Use one of the backup codes you saved when setting up two-factor authentication." : "Pri nastavovaní dvojfaktorového overovania totožnosti použite jeden zo záložných kódov, ktoré ste uložili.", "Submit" : "Odoslať" diff --git a/apps/twofactor_backupcodes/l10n/sk.json b/apps/twofactor_backupcodes/l10n/sk.json index 67a3b2bb99b..cc32c1f9721 100644 --- a/apps/twofactor_backupcodes/l10n/sk.json +++ b/apps/twofactor_backupcodes/l10n/sk.json @@ -7,13 +7,13 @@ "Use backup code" : "Použiť záložný kód", "Two factor backup codes" : "Záložné kódy pre dvojfaktorové overovanie", "A two-factor auth backup codes provider" : "Poskytovateľ záložných kódov pre dvojfaktorové overovanie", - "Backup codes have been generated. {used} of {total} codes have been used." : "Boli vygenerované záložné kódy. Boli použité {použité} z {celkom} kódov.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Tu sú vaše záložné kódy. Uložte si ich prosím alebo vytlačte, pretože ich nebude možné neskôr znovu zobraziť.", + "An error occurred while generating your backup codes" : "Pri vytváraní záložných kódov nastala chyba.", + "Backup codes have been generated. {used} of {total} codes have been used." : "Boli vygenerované záložné kódy. Boli použité {used} z {total} kódov.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Toto sú vaše záložné kódy. Uložte si ich a/alebo si ich vytlačte, pretože kódy neskôr nebudete môcť znova prečítať.", "Save backup codes" : "Uložiť záložné kódy", "Print backup codes" : "Vytlačiť záložné kódy", "Regenerate backup codes" : "Vytvoriť nové záložné kódy", "If you regenerate backup codes, you automatically invalidate old codes." : "Ak vytvoríte nové záložné kódy, staré sa automaticky zneplatnia.", - "An error occurred while generating your backup codes" : "Pri vytváraní záložných kódov nastala chyba.", "{name} backup codes" : "{name} záložné kódy", "Use one of the backup codes you saved when setting up two-factor authentication." : "Pri nastavovaní dvojfaktorového overovania totožnosti použite jeden zo záložných kódov, ktoré ste uložili.", "Submit" : "Odoslať" diff --git a/apps/twofactor_backupcodes/l10n/sl.js b/apps/twofactor_backupcodes/l10n/sl.js index 78836028ae6..1d0310064a7 100644 --- a/apps/twofactor_backupcodes/l10n/sl.js +++ b/apps/twofactor_backupcodes/l10n/sl.js @@ -9,13 +9,12 @@ OC.L10N.register( "Use backup code" : "Uporabi varnostno kodo", "Two factor backup codes" : "Dvostopenjske varnostne kode", "A two-factor auth backup codes provider" : "Ponudnik varnostnih kod za dvostopenjsko overitev", + "An error occurred while generating your backup codes" : "Prišlo je do namako med ustvarjanjem varnostnih kok", "Backup codes have been generated. {used} of {total} codes have been used." : "Varnostne kode so bile uspešno ustvarjene. Uporabljeno {used} od skupno {total}.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Varnostne kode je priporočljivo shraniti oziroma natisniti, saj jih v tej obliki prebrati ne bo več mogoče.", "Save backup codes" : "Shrani varnostne kode", "Print backup codes" : "Natisni varnostne kode", "Regenerate backup codes" : "Osveži varnostne kode", "If you regenerate backup codes, you automatically invalidate old codes." : "Z osvežitvijo varnostnih kod bo preklicana veljavnost starih.", - "An error occurred while generating your backup codes" : "Prišlo je do namako med ustvarjanjem varnostnih kok", "{name} backup codes" : "Varnostne kode {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Uporabite eno izmed varnostnih kod, ki ste jo shranili pri nastavljanju dvostopenjske overitve", "Submit" : "Pošlji" diff --git a/apps/twofactor_backupcodes/l10n/sl.json b/apps/twofactor_backupcodes/l10n/sl.json index b6faa3d3ebd..eea353bedc7 100644 --- a/apps/twofactor_backupcodes/l10n/sl.json +++ b/apps/twofactor_backupcodes/l10n/sl.json @@ -7,13 +7,12 @@ "Use backup code" : "Uporabi varnostno kodo", "Two factor backup codes" : "Dvostopenjske varnostne kode", "A two-factor auth backup codes provider" : "Ponudnik varnostnih kod za dvostopenjsko overitev", + "An error occurred while generating your backup codes" : "Prišlo je do namako med ustvarjanjem varnostnih kok", "Backup codes have been generated. {used} of {total} codes have been used." : "Varnostne kode so bile uspešno ustvarjene. Uporabljeno {used} od skupno {total}.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Varnostne kode je priporočljivo shraniti oziroma natisniti, saj jih v tej obliki prebrati ne bo več mogoče.", "Save backup codes" : "Shrani varnostne kode", "Print backup codes" : "Natisni varnostne kode", "Regenerate backup codes" : "Osveži varnostne kode", "If you regenerate backup codes, you automatically invalidate old codes." : "Z osvežitvijo varnostnih kod bo preklicana veljavnost starih.", - "An error occurred while generating your backup codes" : "Prišlo je do namako med ustvarjanjem varnostnih kok", "{name} backup codes" : "Varnostne kode {name}", "Use one of the backup codes you saved when setting up two-factor authentication." : "Uporabite eno izmed varnostnih kod, ki ste jo shranili pri nastavljanju dvostopenjske overitve", "Submit" : "Pošlji" diff --git a/apps/twofactor_backupcodes/l10n/sq.js b/apps/twofactor_backupcodes/l10n/sq.js index 6258b55b410..74167ba33e4 100644 --- a/apps/twofactor_backupcodes/l10n/sq.js +++ b/apps/twofactor_backupcodes/l10n/sq.js @@ -7,12 +7,11 @@ OC.L10N.register( "Backup code" : "Kod i kopjuar", "Use backup code" : "Përdorni kodin e kopjimit", "Two factor backup codes" : "Dy kopje rezervë të faktorëve", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Këto janë kodet tuaja rezervë. Ju lutemi ruajini dhe/ose printojini ato pasi nuk do të jeni në gjendje që ti lexoni më vonë", + "An error occurred while generating your backup codes" : "Ndodhi një problem ndërsa ishin duke u prodhuar kodet tuaja rezervë", "Save backup codes" : "Ruaj kodet e kopjuara", "Print backup codes" : "Printo kodet rezervë ", "Regenerate backup codes" : "Gjenero kodet e kopjuara", "If you regenerate backup codes, you automatically invalidate old codes." : "Nëse gjeneroni kode rezervë, automaktikisht ju çaktivizoni kodet e vjetra.", - "An error occurred while generating your backup codes" : "Ndodhi një problem ndërsa ishin duke u prodhuar kodet tuaja rezervë", "Submit" : "Dërgo" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/sq.json b/apps/twofactor_backupcodes/l10n/sq.json index 948861766cb..9448cacbdc4 100644 --- a/apps/twofactor_backupcodes/l10n/sq.json +++ b/apps/twofactor_backupcodes/l10n/sq.json @@ -5,12 +5,11 @@ "Backup code" : "Kod i kopjuar", "Use backup code" : "Përdorni kodin e kopjimit", "Two factor backup codes" : "Dy kopje rezervë të faktorëve", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Këto janë kodet tuaja rezervë. Ju lutemi ruajini dhe/ose printojini ato pasi nuk do të jeni në gjendje që ti lexoni më vonë", + "An error occurred while generating your backup codes" : "Ndodhi një problem ndërsa ishin duke u prodhuar kodet tuaja rezervë", "Save backup codes" : "Ruaj kodet e kopjuara", "Print backup codes" : "Printo kodet rezervë ", "Regenerate backup codes" : "Gjenero kodet e kopjuara", "If you regenerate backup codes, you automatically invalidate old codes." : "Nëse gjeneroni kode rezervë, automaktikisht ju çaktivizoni kodet e vjetra.", - "An error occurred while generating your backup codes" : "Ndodhi një problem ndërsa ishin duke u prodhuar kodet tuaja rezervë", "Submit" : "Dërgo" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/sr.js b/apps/twofactor_backupcodes/l10n/sr.js index 82b7cc1e9a3..58ba0cfca8d 100644 --- a/apps/twofactor_backupcodes/l10n/sr.js +++ b/apps/twofactor_backupcodes/l10n/sr.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Искористи резервни код", "Two factor backup codes" : "Двофакторски резервни кодови", "A two-factor auth backup codes provider" : "Провајдер резервних кодова за двофакторску ауторизацију", + "An error occurred while generating your backup codes" : "Десила се грешка приликом генерисања резервних кодова", "Backup codes have been generated. {used} of {total} codes have been used." : "Резервни кодови су изгенерисани. {used} од {total} кодова је искоришћено.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ово су Ваши резервни кодови. Сачувајте их и/или их одштампајте пошто више нећете моћи да их прочитате.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Ово су ваши резервни кодови. Сачувајте их и/или их одштампајте пошто више нећете моћи поново да их прочитате.", "Save backup codes" : "Сачувај резервне кодове", "Print backup codes" : "Одштампај резервне кодове", "Regenerate backup codes" : "Поново генериши резервне кодове", "If you regenerate backup codes, you automatically invalidate old codes." : "Ако поново генеришете резервне кодове, стари аутоматски престају да важе.", - "An error occurred while generating your backup codes" : "Десила се грешка приликом генерисања резервних кодова", "{name} backup codes" : "{name} резервни кодови", "Use one of the backup codes you saved when setting up two-factor authentication." : "Искористите један од резервних кодова које сте сачували када се подешавали двофакторску проверу идентитета.", "Submit" : "Пошаљи" diff --git a/apps/twofactor_backupcodes/l10n/sr.json b/apps/twofactor_backupcodes/l10n/sr.json index 0f20c8baf25..0a5be0547be 100644 --- a/apps/twofactor_backupcodes/l10n/sr.json +++ b/apps/twofactor_backupcodes/l10n/sr.json @@ -7,13 +7,13 @@ "Use backup code" : "Искористи резервни код", "Two factor backup codes" : "Двофакторски резервни кодови", "A two-factor auth backup codes provider" : "Провајдер резервних кодова за двофакторску ауторизацију", + "An error occurred while generating your backup codes" : "Десила се грешка приликом генерисања резервних кодова", "Backup codes have been generated. {used} of {total} codes have been used." : "Резервни кодови су изгенерисани. {used} од {total} кодова је искоришћено.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Ово су Ваши резервни кодови. Сачувајте их и/или их одштампајте пошто више нећете моћи да их прочитате.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Ово су ваши резервни кодови. Сачувајте их и/или их одштампајте пошто више нећете моћи поново да их прочитате.", "Save backup codes" : "Сачувај резервне кодове", "Print backup codes" : "Одштампај резервне кодове", "Regenerate backup codes" : "Поново генериши резервне кодове", "If you regenerate backup codes, you automatically invalidate old codes." : "Ако поново генеришете резервне кодове, стари аутоматски престају да важе.", - "An error occurred while generating your backup codes" : "Десила се грешка приликом генерисања резервних кодова", "{name} backup codes" : "{name} резервни кодови", "Use one of the backup codes you saved when setting up two-factor authentication." : "Искористите један од резервних кодова које сте сачували када се подешавали двофакторску проверу идентитета.", "Submit" : "Пошаљи" diff --git a/apps/twofactor_backupcodes/l10n/sv.js b/apps/twofactor_backupcodes/l10n/sv.js index 9876ec21fc6..4ac01e1d46a 100644 --- a/apps/twofactor_backupcodes/l10n/sv.js +++ b/apps/twofactor_backupcodes/l10n/sv.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "Använd återställningsnyckel", "Two factor backup codes" : "Återställningsnycklar tvåfaktor", "A two-factor auth backup codes provider" : "Återställningsnycklar för tvåfaktorautentisering", + "An error occurred while generating your backup codes" : "Ett fel uppstod vid skapandet av nya återställningsnycklar", "Backup codes have been generated. {used} of {total} codes have been used." : "Återställningsnycklar har skapats. {used} av {total} nycklar har använts.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Detta är dina återställningsnycklar. Vänligen spara och/eller skriv ut dem eftersom du inte kommer kunna se dessa nycklar igen.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Detta är dina reservkoder. Spara och/eller skriv ut dem eftersom du inte kommer att kunna läsa koderna igen senare.", "Save backup codes" : "Spara återställningsnycklar", "Print backup codes" : "Skriv ut återställningsnycklar", "Regenerate backup codes" : "Skapa nya återställningsnycklar", "If you regenerate backup codes, you automatically invalidate old codes." : "Om du skapar nya återställningsnycklar så kommer de gamla automatiskt att sluta fungera.", - "An error occurred while generating your backup codes" : "Ett fel uppstod vid skapandet av nya återställningsnycklar", "{name} backup codes" : "{name} återställningsnycklar", "Use one of the backup codes you saved when setting up two-factor authentication." : "Använd en av återställningsnycklarna du sparade när du konfigurerar tvåfaktorsautentisering.", "Submit" : "Skicka" diff --git a/apps/twofactor_backupcodes/l10n/sv.json b/apps/twofactor_backupcodes/l10n/sv.json index 082c2fbfec6..f579d7633aa 100644 --- a/apps/twofactor_backupcodes/l10n/sv.json +++ b/apps/twofactor_backupcodes/l10n/sv.json @@ -7,13 +7,13 @@ "Use backup code" : "Använd återställningsnyckel", "Two factor backup codes" : "Återställningsnycklar tvåfaktor", "A two-factor auth backup codes provider" : "Återställningsnycklar för tvåfaktorautentisering", + "An error occurred while generating your backup codes" : "Ett fel uppstod vid skapandet av nya återställningsnycklar", "Backup codes have been generated. {used} of {total} codes have been used." : "Återställningsnycklar har skapats. {used} av {total} nycklar har använts.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Detta är dina återställningsnycklar. Vänligen spara och/eller skriv ut dem eftersom du inte kommer kunna se dessa nycklar igen.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Detta är dina reservkoder. Spara och/eller skriv ut dem eftersom du inte kommer att kunna läsa koderna igen senare.", "Save backup codes" : "Spara återställningsnycklar", "Print backup codes" : "Skriv ut återställningsnycklar", "Regenerate backup codes" : "Skapa nya återställningsnycklar", "If you regenerate backup codes, you automatically invalidate old codes." : "Om du skapar nya återställningsnycklar så kommer de gamla automatiskt att sluta fungera.", - "An error occurred while generating your backup codes" : "Ett fel uppstod vid skapandet av nya återställningsnycklar", "{name} backup codes" : "{name} återställningsnycklar", "Use one of the backup codes you saved when setting up two-factor authentication." : "Använd en av återställningsnycklarna du sparade när du konfigurerar tvåfaktorsautentisering.", "Submit" : "Skicka" diff --git a/apps/twofactor_backupcodes/l10n/sw.js b/apps/twofactor_backupcodes/l10n/sw.js new file mode 100644 index 00000000000..1602df7d1dc --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/sw.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "Umeunda misimbo ya usaidizi ya vipengele viwili vya akaunti yako", + "Second-factor backup codes" : "Misimbo ya ambari mbadala za kipengele cha pili", + "Generate backup codes" : "Tengeneza misimbo mbadala", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Umewasha uthibitishaji wa vipengele viwili lakini bado hukutoa misimbo mbadala. Inahitajika ili kurejesha ufikiaji wa akaunti yako endapo utapoteza kipengele chako cha pili.", + "Backup code" : "Msimbo mbadala wa usaidizi", + "Use backup code" : "Tumia nambari ya kuthibitisha", + "Two factor backup codes" : "Nambari mbili mbadala za misimbo", + "A two-factor auth backup codes provider" : "Mtoa huduma wa misimbo ya uthibitishaji wa vipengele viwili", + "An error occurred while generating your backup codes" : "Hitilafu ilitokea wakati wa kuunda misimbo yako mbadala", + "Backup codes have been generated. {used} of {total} codes have been used." : "Misimbo ya hifadhi rudufu imetolewa. {used}kati ya misimbo {total} zimetumika.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Hii ndiyo misimbo yako mbadala. Tafadhali ihifadhi na/au uichapishe kwani hutaweza kusoma misimbo tena baadaye.", + "Save backup codes" : "Hifadhi misimbo mbadala ya usaidizi", + "Print backup codes" : "Chapisha misimbo mbadala ya usaidizi", + "Regenerate backup codes" : "Tengeneza upya misimbo mbadala ya usaidizi", + "If you regenerate backup codes, you automatically invalidate old codes." : "Ukiunda upya misimbo mbadala, unabatilisha misimbo ya zamani kiotomatiki.", + "{name} backup codes" : "{name} misimbo mbadala ya usaidizi", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Tumia mojawapo ya misimbo mbadala uliyohifadhi wakati wa kusanidi uthibitishaji wa vipengele viwili.", + "Submit" : "Wasilisha" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/sw.json b/apps/twofactor_backupcodes/l10n/sw.json new file mode 100644 index 00000000000..b6607a180e5 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/sw.json @@ -0,0 +1,21 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "Umeunda misimbo ya usaidizi ya vipengele viwili vya akaunti yako", + "Second-factor backup codes" : "Misimbo ya ambari mbadala za kipengele cha pili", + "Generate backup codes" : "Tengeneza misimbo mbadala", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Umewasha uthibitishaji wa vipengele viwili lakini bado hukutoa misimbo mbadala. Inahitajika ili kurejesha ufikiaji wa akaunti yako endapo utapoteza kipengele chako cha pili.", + "Backup code" : "Msimbo mbadala wa usaidizi", + "Use backup code" : "Tumia nambari ya kuthibitisha", + "Two factor backup codes" : "Nambari mbili mbadala za misimbo", + "A two-factor auth backup codes provider" : "Mtoa huduma wa misimbo ya uthibitishaji wa vipengele viwili", + "An error occurred while generating your backup codes" : "Hitilafu ilitokea wakati wa kuunda misimbo yako mbadala", + "Backup codes have been generated. {used} of {total} codes have been used." : "Misimbo ya hifadhi rudufu imetolewa. {used}kati ya misimbo {total} zimetumika.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Hii ndiyo misimbo yako mbadala. Tafadhali ihifadhi na/au uichapishe kwani hutaweza kusoma misimbo tena baadaye.", + "Save backup codes" : "Hifadhi misimbo mbadala ya usaidizi", + "Print backup codes" : "Chapisha misimbo mbadala ya usaidizi", + "Regenerate backup codes" : "Tengeneza upya misimbo mbadala ya usaidizi", + "If you regenerate backup codes, you automatically invalidate old codes." : "Ukiunda upya misimbo mbadala, unabatilisha misimbo ya zamani kiotomatiki.", + "{name} backup codes" : "{name} misimbo mbadala ya usaidizi", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Tumia mojawapo ya misimbo mbadala uliyohifadhi wakati wa kusanidi uthibitishaji wa vipengele viwili.", + "Submit" : "Wasilisha" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/tr.js b/apps/twofactor_backupcodes/l10n/tr.js index a03a541a3f7..5d2bb802e55 100644 --- a/apps/twofactor_backupcodes/l10n/tr.js +++ b/apps/twofactor_backupcodes/l10n/tr.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "İki aşamalı kimlik doğrulama için yedek kodlarınızı oluşturdunuz", - "Second-factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları", + "You created two-factor backup codes for your account" : "İki adımlı doğrulama için yedek kodlarınızı oluşturdunuz", + "Second-factor backup codes" : "İki adımlı doğrulama yedek kodları", "Generate backup codes" : "Yedek kodları oluştur", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "İki aşamalı kimlik doğrulamayı etkinleştirdiniz ancak henüz yedek kodlarını üretmediniz. Bu kodlar herhangi bir nedenle ikinci aşamayı kullanamadığınızda hesabınıza erişebilmenizi sağlar.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "İki adımlı doğrulamayı kullanıma aldınız ancak henüz yedek kodlarını oluşturmadınız. Bu kodlar herhangi bir nedenle ikinci adımı kullanamadığınızda hesabınıza erişebilmenizi sağlar.", "Backup code" : "Yedek kod", "Use backup code" : "Yedek kodu kullan", - "Two factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları", - "A two-factor auth backup codes provider" : "İki aşamalı kimlik doğrulaması için yedek kodlar sağlayıcısı", + "Two factor backup codes" : "İki adımlı doğrulama yedek kodları", + "A two-factor auth backup codes provider" : "İki adımlı doğrulama için yedek kodlar sağlayıcısı", + "An error occurred while generating your backup codes" : "Yedek kodlar oluşturulurken bir sorun çıktı", "Backup codes have been generated. {used} of {total} codes have been used." : "Yedek kodları oluşturuldu. {used} / {total} kod kullanılıyor.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Yedek kodlarınızı burada görebilirsiniz. Kodları daha sonra göremeyeceğiniz için bu kodları kaydedin ya da yazdırın", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Yedek kodlarınızı burada görebilirsiniz. Kodları daha sonra göremeyeceğiniz için bu kodları kaydedin ya da yazdırın.", "Save backup codes" : "Yedek kodları kaydet", "Print backup codes" : "Yedek kodları yazdır", "Regenerate backup codes" : "Yedek kodlarını yeniden oluştur", "If you regenerate backup codes, you automatically invalidate old codes." : "Yedek kodlarını yeniden oluşturursanız, eski kodlar geçersiz olur.", - "An error occurred while generating your backup codes" : "Yedek kodlar oluşturulurken bir sorun çıktı", "{name} backup codes" : "{name} yedek kodları", - "Use one of the backup codes you saved when setting up two-factor authentication." : "İki aşamalı kimlik doğrulamasını ayarlarken yedek kodlarından birini kullanın.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "İki adımlı doğrulamayı ayarlarken yedek kodlarından birini kullanın.", "Submit" : "Gönder" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/twofactor_backupcodes/l10n/tr.json b/apps/twofactor_backupcodes/l10n/tr.json index 21d85e62aa0..2ad03bb0a87 100644 --- a/apps/twofactor_backupcodes/l10n/tr.json +++ b/apps/twofactor_backupcodes/l10n/tr.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "İki aşamalı kimlik doğrulama için yedek kodlarınızı oluşturdunuz", - "Second-factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları", + "You created two-factor backup codes for your account" : "İki adımlı doğrulama için yedek kodlarınızı oluşturdunuz", + "Second-factor backup codes" : "İki adımlı doğrulama yedek kodları", "Generate backup codes" : "Yedek kodları oluştur", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "İki aşamalı kimlik doğrulamayı etkinleştirdiniz ancak henüz yedek kodlarını üretmediniz. Bu kodlar herhangi bir nedenle ikinci aşamayı kullanamadığınızda hesabınıza erişebilmenizi sağlar.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "İki adımlı doğrulamayı kullanıma aldınız ancak henüz yedek kodlarını oluşturmadınız. Bu kodlar herhangi bir nedenle ikinci adımı kullanamadığınızda hesabınıza erişebilmenizi sağlar.", "Backup code" : "Yedek kod", "Use backup code" : "Yedek kodu kullan", - "Two factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları", - "A two-factor auth backup codes provider" : "İki aşamalı kimlik doğrulaması için yedek kodlar sağlayıcısı", + "Two factor backup codes" : "İki adımlı doğrulama yedek kodları", + "A two-factor auth backup codes provider" : "İki adımlı doğrulama için yedek kodlar sağlayıcısı", + "An error occurred while generating your backup codes" : "Yedek kodlar oluşturulurken bir sorun çıktı", "Backup codes have been generated. {used} of {total} codes have been used." : "Yedek kodları oluşturuldu. {used} / {total} kod kullanılıyor.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Yedek kodlarınızı burada görebilirsiniz. Kodları daha sonra göremeyeceğiniz için bu kodları kaydedin ya da yazdırın", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Yedek kodlarınızı burada görebilirsiniz. Kodları daha sonra göremeyeceğiniz için bu kodları kaydedin ya da yazdırın.", "Save backup codes" : "Yedek kodları kaydet", "Print backup codes" : "Yedek kodları yazdır", "Regenerate backup codes" : "Yedek kodlarını yeniden oluştur", "If you regenerate backup codes, you automatically invalidate old codes." : "Yedek kodlarını yeniden oluşturursanız, eski kodlar geçersiz olur.", - "An error occurred while generating your backup codes" : "Yedek kodlar oluşturulurken bir sorun çıktı", "{name} backup codes" : "{name} yedek kodları", - "Use one of the backup codes you saved when setting up two-factor authentication." : "İki aşamalı kimlik doğrulamasını ayarlarken yedek kodlarından birini kullanın.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "İki adımlı doğrulamayı ayarlarken yedek kodlarından birini kullanın.", "Submit" : "Gönder" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ug.js b/apps/twofactor_backupcodes/l10n/ug.js new file mode 100644 index 00000000000..351a95adf06 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ug.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "You created two-factor backup codes for your account" : "ھېساباتىڭىزغا ئىككى ئامىللىق زاپاسلاش كودى قۇردىڭىز", + "Second-factor backup codes" : "ئىككىنچى ئامىل زاپاسلاش كودى", + "Generate backup codes" : "زاپاسلاش كودى ھاسىل قىلىڭ", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "سىز ئىككى ئامىللىق دەلىللەشنى قوزغىدىڭىز ، ئەمما زاپاسلاش كودى ھاسىل قىلمىدىڭىز. ئۇلار ئىككىنچى ئامىلىڭىزنى يوقىتىپ قويسىڭىز ، ھېساباتىڭىزغا كىرىشنى ئەسلىگە كەلتۈرۈشكە موھتاج.", + "Backup code" : "زاپاسلاش كودى", + "Use backup code" : "زاپاسلاش كودىنى ئىشلىتىڭ", + "Two factor backup codes" : "ئىككى ئامىل زاپاسلاش كودى", + "A two-factor auth backup codes provider" : "ئىككى ئامىللىق ئاپتوماتىك زاپاسلاش كودى بىلەن تەمىنلىگۈچى", + "An error occurred while generating your backup codes" : "زاپاسلاش كودىڭىزنى ھاسىل قىلغاندا خاتالىق كۆرۈلدى", + "Backup codes have been generated. {used} of {total} codes have been used." : "زاپاسلاش كودى بارلىققا كەلدى. {used}{total} كودلار ئىشلىتىلگەن.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "بۇلار سىزنىڭ زاپاسلاش كودىڭىز. كېيىن كودلارنى قايتا ئوقۇيالمىغاچقا ساقلىۋېلىڭ ۋە ياكى بېسىڭ.", + "Save backup codes" : "زاپاسلاش كودىنى ساقلاڭ", + "Print backup codes" : "زاپاسلاش كودىنى بېسىڭ", + "Regenerate backup codes" : "زاپاسلاش كودىنى قايتا ھاسىل قىلىڭ", + "If you regenerate backup codes, you automatically invalidate old codes." : "زاپاسلاش كودىنى ئەسلىگە كەلتۈرسىڭىز ، كونا كودلارنى ئاپتوماتىك ئىناۋەتسىز قىلىسىز.", + "{name} backup codes" : "{name} زاپاسلاش كودى", + "Use one of the backup codes you saved when setting up two-factor authentication." : "ئىككى ئامىللىق دەلىللەشنى تەڭشىگەندە ساقلىغان زاپاسلاش كودىدىن بىرنى ئىشلىتىڭ.", + "Submit" : "يوللاڭ" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/ug.json b/apps/twofactor_backupcodes/l10n/ug.json new file mode 100644 index 00000000000..be886f61abf --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ug.json @@ -0,0 +1,21 @@ +{ "translations": { + "You created two-factor backup codes for your account" : "ھېساباتىڭىزغا ئىككى ئامىللىق زاپاسلاش كودى قۇردىڭىز", + "Second-factor backup codes" : "ئىككىنچى ئامىل زاپاسلاش كودى", + "Generate backup codes" : "زاپاسلاش كودى ھاسىل قىلىڭ", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "سىز ئىككى ئامىللىق دەلىللەشنى قوزغىدىڭىز ، ئەمما زاپاسلاش كودى ھاسىل قىلمىدىڭىز. ئۇلار ئىككىنچى ئامىلىڭىزنى يوقىتىپ قويسىڭىز ، ھېساباتىڭىزغا كىرىشنى ئەسلىگە كەلتۈرۈشكە موھتاج.", + "Backup code" : "زاپاسلاش كودى", + "Use backup code" : "زاپاسلاش كودىنى ئىشلىتىڭ", + "Two factor backup codes" : "ئىككى ئامىل زاپاسلاش كودى", + "A two-factor auth backup codes provider" : "ئىككى ئامىللىق ئاپتوماتىك زاپاسلاش كودى بىلەن تەمىنلىگۈچى", + "An error occurred while generating your backup codes" : "زاپاسلاش كودىڭىزنى ھاسىل قىلغاندا خاتالىق كۆرۈلدى", + "Backup codes have been generated. {used} of {total} codes have been used." : "زاپاسلاش كودى بارلىققا كەلدى. {used}{total} كودلار ئىشلىتىلگەن.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "بۇلار سىزنىڭ زاپاسلاش كودىڭىز. كېيىن كودلارنى قايتا ئوقۇيالمىغاچقا ساقلىۋېلىڭ ۋە ياكى بېسىڭ.", + "Save backup codes" : "زاپاسلاش كودىنى ساقلاڭ", + "Print backup codes" : "زاپاسلاش كودىنى بېسىڭ", + "Regenerate backup codes" : "زاپاسلاش كودىنى قايتا ھاسىل قىلىڭ", + "If you regenerate backup codes, you automatically invalidate old codes." : "زاپاسلاش كودىنى ئەسلىگە كەلتۈرسىڭىز ، كونا كودلارنى ئاپتوماتىك ئىناۋەتسىز قىلىسىز.", + "{name} backup codes" : "{name} زاپاسلاش كودى", + "Use one of the backup codes you saved when setting up two-factor authentication." : "ئىككى ئامىللىق دەلىللەشنى تەڭشىگەندە ساقلىغان زاپاسلاش كودىدىن بىرنى ئىشلىتىڭ.", + "Submit" : "يوللاڭ" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/uk.js b/apps/twofactor_backupcodes/l10n/uk.js index c51adf50b26..6c4f1d63169 100644 --- a/apps/twofactor_backupcodes/l10n/uk.js +++ b/apps/twofactor_backupcodes/l10n/uk.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "Ви створили резервні коди для двофакторної автентифікації у вашому обліковому записі", + "You created two-factor backup codes for your account" : "Ви створили резервні коди для двофакторної авторизації у вашому обліковому записі", "Second-factor backup codes" : "Резервні коди другого фактору", "Generate backup codes" : "Створити резервні коди", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Ви увімкнули двофакторну автентифікацію, але ще не створили резервні коди. Вони потрібні для відновлення доступу до вашого облікового запису, якщо ви втратите другий фактор.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Ви увімкнули двофакторну авторизацію, але поки не створили резервні коди. Резервні коди потрібні для відновлення доступу до вашого облікового запису, якщо буде втрачено доступ до другого фактору.", "Backup code" : "Резервні коди", "Use backup code" : "Використати резервний код", - "Two factor backup codes" : "Резервні коди двофакторної автентифікації", - "A two-factor auth backup codes provider" : "Провайдер резервних кодів двофакторної автентифікації", - "Backup codes have been generated. {used} of {total} codes have been used." : "Створено резервні коди. Вже використано {used} із {total} кодів.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Це ваші резервні коди. Будь ласка, збережіть їх та у разі потреби роздрукуйте, оскільки подалі вони ніде не будуть показуватися.", + "Two factor backup codes" : "Резервні коди двофакторної авторизації", + "A two-factor auth backup codes provider" : "Постачальник резервних кодів двофакторної авторизації", + "An error occurred while generating your backup codes" : "Помилка під час створення резервних кодів", + "Backup codes have been generated. {used} of {total} codes have been used." : "Створено резервні коди. Ви вже використали {used} із {total} кодів.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Це резервні коди. Будь ласка, збережіть їх та/або надрукуйте, оскільки вони подалі будуть недоступні.", "Save backup codes" : "Зберегти резервні коди", "Print backup codes" : "Друк резервних кодів", "Regenerate backup codes" : "Перестворити резервні коди", "If you regenerate backup codes, you automatically invalidate old codes." : "Після повторного створення резервних кодів попередні автоматично стануть недійсними", - "An error occurred while generating your backup codes" : "Помилка під час створення резервних кодів", "{name} backup codes" : "Резервні коди {name}", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Скористайтеся одним з резервних кодів, які ви зберегли під час встановлення двофакторної автентифікації.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Скористайтеся одним з резервних кодів, які ви зберегли під час встановлення двофакторної авторизації.", "Submit" : "Гаразд" }, "nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"); diff --git a/apps/twofactor_backupcodes/l10n/uk.json b/apps/twofactor_backupcodes/l10n/uk.json index 51ba639d782..0a05102a3b4 100644 --- a/apps/twofactor_backupcodes/l10n/uk.json +++ b/apps/twofactor_backupcodes/l10n/uk.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "Ви створили резервні коди для двофакторної автентифікації у вашому обліковому записі", + "You created two-factor backup codes for your account" : "Ви створили резервні коди для двофакторної авторизації у вашому обліковому записі", "Second-factor backup codes" : "Резервні коди другого фактору", "Generate backup codes" : "Створити резервні коди", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Ви увімкнули двофакторну автентифікацію, але ще не створили резервні коди. Вони потрібні для відновлення доступу до вашого облікового запису, якщо ви втратите другий фактор.", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "Ви увімкнули двофакторну авторизацію, але поки не створили резервні коди. Резервні коди потрібні для відновлення доступу до вашого облікового запису, якщо буде втрачено доступ до другого фактору.", "Backup code" : "Резервні коди", "Use backup code" : "Використати резервний код", - "Two factor backup codes" : "Резервні коди двофакторної автентифікації", - "A two-factor auth backup codes provider" : "Провайдер резервних кодів двофакторної автентифікації", - "Backup codes have been generated. {used} of {total} codes have been used." : "Створено резервні коди. Вже використано {used} із {total} кодів.", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Це ваші резервні коди. Будь ласка, збережіть їх та у разі потреби роздрукуйте, оскільки подалі вони ніде не будуть показуватися.", + "Two factor backup codes" : "Резервні коди двофакторної авторизації", + "A two-factor auth backup codes provider" : "Постачальник резервних кодів двофакторної авторизації", + "An error occurred while generating your backup codes" : "Помилка під час створення резервних кодів", + "Backup codes have been generated. {used} of {total} codes have been used." : "Створено резервні коди. Ви вже використали {used} із {total} кодів.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "Це резервні коди. Будь ласка, збережіть їх та/або надрукуйте, оскільки вони подалі будуть недоступні.", "Save backup codes" : "Зберегти резервні коди", "Print backup codes" : "Друк резервних кодів", "Regenerate backup codes" : "Перестворити резервні коди", "If you regenerate backup codes, you automatically invalidate old codes." : "Після повторного створення резервних кодів попередні автоматично стануть недійсними", - "An error occurred while generating your backup codes" : "Помилка під час створення резервних кодів", "{name} backup codes" : "Резервні коди {name}", - "Use one of the backup codes you saved when setting up two-factor authentication." : "Скористайтеся одним з резервних кодів, які ви зберегли під час встановлення двофакторної автентифікації.", + "Use one of the backup codes you saved when setting up two-factor authentication." : "Скористайтеся одним з резервних кодів, які ви зберегли під час встановлення двофакторної авторизації.", "Submit" : "Гаразд" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/zh_CN.js b/apps/twofactor_backupcodes/l10n/zh_CN.js index 12ed56b3280..34a772fd64c 100644 --- a/apps/twofactor_backupcodes/l10n/zh_CN.js +++ b/apps/twofactor_backupcodes/l10n/zh_CN.js @@ -9,13 +9,13 @@ OC.L10N.register( "Use backup code" : "使用备用码", "Two factor backup codes" : "两步验证备用码", "A two-factor auth backup codes provider" : "一个两步验证备用码提供者", + "An error occurred while generating your backup codes" : "生成备用码时出错", "Backup codes have been generated. {used} of {total} codes have been used." : "备用码已生成。备用码 {total} 条中的 {used} 条已被使用。", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "下列是您的备用码。备用码无法重复查看,请将其保存或打印存储。", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "下列是您的备用码。备用码无法重复查看,请将其保存或打印存储。", "Save backup codes" : "保存备用码", "Print backup codes" : "打印备用码", "Regenerate backup codes" : "重新生成备用码", "If you regenerate backup codes, you automatically invalidate old codes." : "如果您重新生成了备用码,旧的代码将自动失效。", - "An error occurred while generating your backup codes" : "生成备用码时出错", "{name} backup codes" : "{name} 备用码", "Use one of the backup codes you saved when setting up two-factor authentication." : "在设置两步验证时使用您保存的其中一个备用码", "Submit" : "提交" diff --git a/apps/twofactor_backupcodes/l10n/zh_CN.json b/apps/twofactor_backupcodes/l10n/zh_CN.json index 85b95803d18..d08d943029e 100644 --- a/apps/twofactor_backupcodes/l10n/zh_CN.json +++ b/apps/twofactor_backupcodes/l10n/zh_CN.json @@ -7,13 +7,13 @@ "Use backup code" : "使用备用码", "Two factor backup codes" : "两步验证备用码", "A two-factor auth backup codes provider" : "一个两步验证备用码提供者", + "An error occurred while generating your backup codes" : "生成备用码时出错", "Backup codes have been generated. {used} of {total} codes have been used." : "备用码已生成。备用码 {total} 条中的 {used} 条已被使用。", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "下列是您的备用码。备用码无法重复查看,请将其保存或打印存储。", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "下列是您的备用码。备用码无法重复查看,请将其保存或打印存储。", "Save backup codes" : "保存备用码", "Print backup codes" : "打印备用码", "Regenerate backup codes" : "重新生成备用码", "If you regenerate backup codes, you automatically invalidate old codes." : "如果您重新生成了备用码,旧的代码将自动失效。", - "An error occurred while generating your backup codes" : "生成备用码时出错", "{name} backup codes" : "{name} 备用码", "Use one of the backup codes you saved when setting up two-factor authentication." : "在设置两步验证时使用您保存的其中一个备用码", "Submit" : "提交" diff --git a/apps/twofactor_backupcodes/l10n/zh_HK.js b/apps/twofactor_backupcodes/l10n/zh_HK.js index 1ffec9d7378..c9de2b58d3b 100644 --- a/apps/twofactor_backupcodes/l10n/zh_HK.js +++ b/apps/twofactor_backupcodes/l10n/zh_HK.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "你的帳戶已建立兩階段認證的備用碼。", + "You created two-factor backup codes for your account" : "你的帳戶已建立雙重認證的備用碼。", "Second-factor backup codes" : "第二階段備用驗證碼", "Generate backup codes" : "產生備用驗證碼", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "你已經啟用了兩階段驗證但並未兩階段驗證備用碼。若你遺失了你的第二驗證手段,你會需要兩階段驗證備用碼來取回你帳戶的存取權。", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "你已經啟用了雙重認證但並未産生雙重認證備用碼。若你遺失了你的第二驗證因數,你會需要雙重認證備用碼來復原你帳戶的存取權。", "Backup code" : "備用驗證碼", "Use backup code" : "使用備用驗證碼", - "Two factor backup codes" : "兩階段備用驗證碼", - "A two-factor auth backup codes provider" : "兩階段驗證備用驗證碼提供者", + "Two factor backup codes" : "雙重備用驗證碼", + "A two-factor auth backup codes provider" : "雙重認證備用驗證碼提供者", + "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤。", "Backup codes have been generated. {used} of {total} codes have been used." : "備用碼已經建立,共{total}組備用碼中有{used}組已經使用", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "以下是您的備用碼,由於備用碼不會再次顯示,請儲存 並/或 列印。", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "以下是您的備用碼,由於備用碼不會再次顯示,請儲存 並/或 列印。", "Save backup codes" : "儲存備用碼", "Print backup codes" : "列印備用碼", "Regenerate backup codes" : "重新產生備用碼", "If you regenerate backup codes, you automatically invalidate old codes." : "若您重新產生備用碼,原來舊的備用碼將自動失效。", - "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤。", "{name} backup codes" : "{name} 備用驗證碼", - "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用兩階段驗證時,可輸入其中一個您已儲存的備用碼。", - "Submit" : "送出" + "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用雙重認證時,可輸入其中一個您已儲存的備用碼。", + "Submit" : "遞交" }, "nplurals=1; plural=0;"); diff --git a/apps/twofactor_backupcodes/l10n/zh_HK.json b/apps/twofactor_backupcodes/l10n/zh_HK.json index ab0dd9a054f..416a88eed9e 100644 --- a/apps/twofactor_backupcodes/l10n/zh_HK.json +++ b/apps/twofactor_backupcodes/l10n/zh_HK.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "你的帳戶已建立兩階段認證的備用碼。", + "You created two-factor backup codes for your account" : "你的帳戶已建立雙重認證的備用碼。", "Second-factor backup codes" : "第二階段備用驗證碼", "Generate backup codes" : "產生備用驗證碼", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "你已經啟用了兩階段驗證但並未兩階段驗證備用碼。若你遺失了你的第二驗證手段,你會需要兩階段驗證備用碼來取回你帳戶的存取權。", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "你已經啟用了雙重認證但並未産生雙重認證備用碼。若你遺失了你的第二驗證因數,你會需要雙重認證備用碼來復原你帳戶的存取權。", "Backup code" : "備用驗證碼", "Use backup code" : "使用備用驗證碼", - "Two factor backup codes" : "兩階段備用驗證碼", - "A two-factor auth backup codes provider" : "兩階段驗證備用驗證碼提供者", + "Two factor backup codes" : "雙重備用驗證碼", + "A two-factor auth backup codes provider" : "雙重認證備用驗證碼提供者", + "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤。", "Backup codes have been generated. {used} of {total} codes have been used." : "備用碼已經建立,共{total}組備用碼中有{used}組已經使用", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "以下是您的備用碼,由於備用碼不會再次顯示,請儲存 並/或 列印。", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "以下是您的備用碼,由於備用碼不會再次顯示,請儲存 並/或 列印。", "Save backup codes" : "儲存備用碼", "Print backup codes" : "列印備用碼", "Regenerate backup codes" : "重新產生備用碼", "If you regenerate backup codes, you automatically invalidate old codes." : "若您重新產生備用碼,原來舊的備用碼將自動失效。", - "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤。", "{name} backup codes" : "{name} 備用驗證碼", - "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用兩階段驗證時,可輸入其中一個您已儲存的備用碼。", - "Submit" : "送出" + "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用雙重認證時,可輸入其中一個您已儲存的備用碼。", + "Submit" : "遞交" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/zh_TW.js b/apps/twofactor_backupcodes/l10n/zh_TW.js index 1ffec9d7378..2c2ae1710a6 100644 --- a/apps/twofactor_backupcodes/l10n/zh_TW.js +++ b/apps/twofactor_backupcodes/l10n/zh_TW.js @@ -1,23 +1,23 @@ OC.L10N.register( "twofactor_backupcodes", { - "You created two-factor backup codes for your account" : "你的帳戶已建立兩階段認證的備用碼。", - "Second-factor backup codes" : "第二階段備用驗證碼", - "Generate backup codes" : "產生備用驗證碼", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "你已經啟用了兩階段驗證但並未兩階段驗證備用碼。若你遺失了你的第二驗證手段,你會需要兩階段驗證備用碼來取回你帳戶的存取權。", - "Backup code" : "備用驗證碼", - "Use backup code" : "使用備用驗證碼", - "Two factor backup codes" : "兩階段備用驗證碼", - "A two-factor auth backup codes provider" : "兩階段驗證備用驗證碼提供者", - "Backup codes have been generated. {used} of {total} codes have been used." : "備用碼已經建立,共{total}組備用碼中有{used}組已經使用", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "以下是您的備用碼,由於備用碼不會再次顯示,請儲存 並/或 列印。", + "You created two-factor backup codes for your account" : "您已建立您帳號的雙因子認證的備用碼", + "Second-factor backup codes" : "雙因子認證備用碼", + "Generate backup codes" : "產生備用碼", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "您已啟用雙因子認證,但尚未產生備用碼。如果您失去第二因素的認證方式,則必須使用備用碼來恢復對您帳號的存取權。", + "Backup code" : "備用碼", + "Use backup code" : "使用備用碼", + "Two factor backup codes" : "雙因子認證備用碼", + "A two-factor auth backup codes provider" : "雙因子認證備用碼提供者", + "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤", + "Backup codes have been generated. {used} of {total} codes have been used." : "備用碼已產生。共 {total} 組備用碼,有 {used} 組已使用。", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "以下是您的備用碼。由於備用碼不會再次顯示,請儲存及/或列印。", "Save backup codes" : "儲存備用碼", "Print backup codes" : "列印備用碼", "Regenerate backup codes" : "重新產生備用碼", "If you regenerate backup codes, you automatically invalidate old codes." : "若您重新產生備用碼,原來舊的備用碼將自動失效。", - "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤。", - "{name} backup codes" : "{name} 備用驗證碼", - "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用兩階段驗證時,可輸入其中一個您已儲存的備用碼。", - "Submit" : "送出" + "{name} backup codes" : "{name} 備用碼", + "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用雙因子認證時,可輸入其中一組您已儲存的備用碼。", + "Submit" : "提交" }, "nplurals=1; plural=0;"); diff --git a/apps/twofactor_backupcodes/l10n/zh_TW.json b/apps/twofactor_backupcodes/l10n/zh_TW.json index ab0dd9a054f..23d922a1cca 100644 --- a/apps/twofactor_backupcodes/l10n/zh_TW.json +++ b/apps/twofactor_backupcodes/l10n/zh_TW.json @@ -1,21 +1,21 @@ { "translations": { - "You created two-factor backup codes for your account" : "你的帳戶已建立兩階段認證的備用碼。", - "Second-factor backup codes" : "第二階段備用驗證碼", - "Generate backup codes" : "產生備用驗證碼", - "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "你已經啟用了兩階段驗證但並未兩階段驗證備用碼。若你遺失了你的第二驗證手段,你會需要兩階段驗證備用碼來取回你帳戶的存取權。", - "Backup code" : "備用驗證碼", - "Use backup code" : "使用備用驗證碼", - "Two factor backup codes" : "兩階段備用驗證碼", - "A two-factor auth backup codes provider" : "兩階段驗證備用驗證碼提供者", - "Backup codes have been generated. {used} of {total} codes have been used." : "備用碼已經建立,共{total}組備用碼中有{used}組已經使用", - "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "以下是您的備用碼,由於備用碼不會再次顯示,請儲存 並/或 列印。", + "You created two-factor backup codes for your account" : "您已建立您帳號的雙因子認證的備用碼", + "Second-factor backup codes" : "雙因子認證備用碼", + "Generate backup codes" : "產生備用碼", + "You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor." : "您已啟用雙因子認證,但尚未產生備用碼。如果您失去第二因素的認證方式,則必須使用備用碼來恢復對您帳號的存取權。", + "Backup code" : "備用碼", + "Use backup code" : "使用備用碼", + "Two factor backup codes" : "雙因子認證備用碼", + "A two-factor auth backup codes provider" : "雙因子認證備用碼提供者", + "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤", + "Backup codes have been generated. {used} of {total} codes have been used." : "備用碼已產生。共 {total} 組備用碼,有 {used} 組已使用。", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later." : "以下是您的備用碼。由於備用碼不會再次顯示,請儲存及/或列印。", "Save backup codes" : "儲存備用碼", "Print backup codes" : "列印備用碼", "Regenerate backup codes" : "重新產生備用碼", "If you regenerate backup codes, you automatically invalidate old codes." : "若您重新產生備用碼,原來舊的備用碼將自動失效。", - "An error occurred while generating your backup codes" : "產生備用碼時發生錯誤。", - "{name} backup codes" : "{name} 備用驗證碼", - "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用兩階段驗證時,可輸入其中一個您已儲存的備用碼。", - "Submit" : "送出" + "{name} backup codes" : "{name} 備用碼", + "Use one of the backup codes you saved when setting up two-factor authentication." : "設定啟用雙因子認證時,可輸入其中一組您已儲存的備用碼。", + "Submit" : "提交" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/twofactor_backupcodes/lib/Activity/Provider.php b/apps/twofactor_backupcodes/lib/Activity/Provider.php index 12c71f68d1c..eba38147bd7 100644 --- a/apps/twofactor_backupcodes/lib/Activity/Provider.php +++ b/apps/twofactor_backupcodes/lib/Activity/Provider.php @@ -1,30 +1,14 @@ <?php + +declare(strict_types=1); + /** - * @copyright Copyright (c) 2016 Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Activity; -use InvalidArgumentException; +use OCP\Activity\Exceptions\UnknownActivityException; use OCP\Activity\IEvent; use OCP\Activity\IManager; use OCP\Activity\IProvider; @@ -33,29 +17,21 @@ use OCP\L10N\IFactory as L10nFactory; class Provider implements IProvider { - /** @var L10nFactory */ - private $l10n; - - /** @var IURLGenerator */ - private $urlGenerator; - - /** @var IManager */ - private $activityManager; - /** * @param L10nFactory $l10n * @param IURLGenerator $urlGenerator * @param IManager $activityManager */ - public function __construct(L10nFactory $l10n, IURLGenerator $urlGenerator, IManager $activityManager) { - $this->urlGenerator = $urlGenerator; - $this->activityManager = $activityManager; - $this->l10n = $l10n; + public function __construct( + private L10nFactory $l10n, + private IURLGenerator $urlGenerator, + private IManager $activityManager, + ) { } - public function parse($language, IEvent $event, IEvent $previousEvent = null) { + public function parse($language, IEvent $event, ?IEvent $previousEvent = null): IEvent { if ($event->getApp() !== 'twofactor_backupcodes') { - throw new InvalidArgumentException(); + throw new UnknownActivityException(); } $l = $this->l10n->get('twofactor_backupcodes', $language); @@ -71,7 +47,7 @@ class Provider implements IProvider { } break; default: - throw new InvalidArgumentException(); + throw new UnknownActivityException(); } return $event; } diff --git a/apps/twofactor_backupcodes/lib/AppInfo/Application.php b/apps/twofactor_backupcodes/lib/AppInfo/Application.php index 4ac5016f925..e9a1ec1c72c 100644 --- a/apps/twofactor_backupcodes/lib/AppInfo/Application.php +++ b/apps/twofactor_backupcodes/lib/AppInfo/Application.php @@ -3,47 +3,27 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\AppInfo; -use Closure; -use OCA\TwoFactorBackupCodes\Db\BackupCodeMapper; use OCA\TwoFactorBackupCodes\Event\CodesGenerated; use OCA\TwoFactorBackupCodes\Listener\ActivityPublisher; use OCA\TwoFactorBackupCodes\Listener\ClearNotifications; use OCA\TwoFactorBackupCodes\Listener\ProviderDisabled; use OCA\TwoFactorBackupCodes\Listener\ProviderEnabled; use OCA\TwoFactorBackupCodes\Listener\RegistryUpdater; +use OCA\TwoFactorBackupCodes\Listener\UserDeleted; use OCA\TwoFactorBackupCodes\Notifications\Notifier; +use OCA\TwoFactorBackupCodes\Provider\BackupCodesProvider; use OCP\AppFramework\App; use OCP\AppFramework\Bootstrap\IBootContext; use OCP\AppFramework\Bootstrap\IBootstrap; use OCP\AppFramework\Bootstrap\IRegistrationContext; -use OCP\Authentication\TwoFactorAuth\IRegistry; -use OCP\Notification\IManager; -use OCP\Util; +use OCP\Authentication\TwoFactorAuth\TwoFactorProviderForUserRegistered; +use OCP\Authentication\TwoFactorAuth\TwoFactorProviderForUserUnregistered; +use OCP\User\Events\UserDeletedEvent; class Application extends App implements IBootstrap { public const APP_ID = 'twofactor_backupcodes'; @@ -53,33 +33,19 @@ class Application extends App implements IBootstrap { } public function register(IRegistrationContext $context): void { - $this->registerHooksAndEvents($context); - } + $context->registerNotifierService(Notifier::class); - public function boot(IBootContext $context): void { - Util::connectHook('OC_User', 'post_deleteUser', $this, 'deleteUser'); - - $context->injectFn(Closure::fromCallable([$this, 'registerNotification'])); - } - - /** - * Register the hooks and events - */ - public function registerHooksAndEvents(IRegistrationContext $context) { $context->registerEventListener(CodesGenerated::class, ActivityPublisher::class); $context->registerEventListener(CodesGenerated::class, RegistryUpdater::class); $context->registerEventListener(CodesGenerated::class, ClearNotifications::class); - $context->registerEventListener(IRegistry::EVENT_PROVIDER_ENABLED, ProviderEnabled::class); - $context->registerEventListener(IRegistry::EVENT_PROVIDER_DISABLED, ProviderDisabled::class); - } + $context->registerEventListener(TwoFactorProviderForUserRegistered::class, ProviderEnabled::class); + $context->registerEventListener(TwoFactorProviderForUserUnregistered::class, ProviderDisabled::class); + $context->registerEventListener(UserDeletedEvent::class, UserDeleted::class); - private function registerNotification(IManager $manager) { - $manager->registerNotifierService(Notifier::class); + + $context->registerTwoFactorProvider(BackupCodesProvider::class); } - public function deleteUser($params) { - /** @var BackupCodeMapper $mapper */ - $mapper = $this->getContainer()->query(BackupCodeMapper::class); - $mapper->deleteCodesByUserId($params['uid']); + public function boot(IBootContext $context): void { } } diff --git a/apps/twofactor_backupcodes/lib/BackgroundJob/CheckBackupCodes.php b/apps/twofactor_backupcodes/lib/BackgroundJob/CheckBackupCodes.php index 277fff9e70c..bc26cb260f4 100644 --- a/apps/twofactor_backupcodes/lib/BackgroundJob/CheckBackupCodes.php +++ b/apps/twofactor_backupcodes/lib/BackgroundJob/CheckBackupCodes.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\BackgroundJob; use OC\Authentication\TwoFactorAuth\Manager; @@ -37,28 +18,26 @@ use OCP\IUserManager; class CheckBackupCodes extends QueuedJob { - /** @var IUserManager */ - private $userManager; - - /** @var IJobList */ - private $jobList; - - /** @var Manager */ - private $registry; - /** @var Manager */ private $twofactorManager; - public function __construct(ITimeFactory $timeFactory, IUserManager $userManager, IJobList $jobList, Manager $twofactorManager, IRegistry $registry) { + public function __construct( + ITimeFactory $timeFactory, + private IUserManager $userManager, + private IJobList $jobList, + Manager $twofactorManager, + private IRegistry $registry, + ) { parent::__construct($timeFactory); - $this->userManager = $userManager; - $this->jobList = $jobList; $this->twofactorManager = $twofactorManager; - $this->registry = $registry; } protected function run($argument) { - $this->userManager->callForSeenUsers(function (IUser $user) { + $this->userManager->callForSeenUsers(function (IUser $user): void { + if (!$user->isEnabled()) { + return; + } + $providers = $this->registry->getProviderStates($user); $isTwoFactorAuthenticated = $this->twofactorManager->isTwoFactorAuthenticated($user); diff --git a/apps/twofactor_backupcodes/lib/BackgroundJob/RememberBackupCodesJob.php b/apps/twofactor_backupcodes/lib/BackgroundJob/RememberBackupCodesJob.php index ec45420299b..5e853479f0a 100644 --- a/apps/twofactor_backupcodes/lib/BackgroundJob/RememberBackupCodesJob.php +++ b/apps/twofactor_backupcodes/lib/BackgroundJob/RememberBackupCodesJob.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\BackgroundJob; use OCP\AppFramework\Utility\ITimeFactory; @@ -36,31 +17,18 @@ use OCP\Notification\IManager; class RememberBackupCodesJob extends TimedJob { - /** @var IRegistry */ - private $registry; - - /** @var IUserManager */ - private $userManager; - - /** @var IManager */ - private $notificationManager; - - /** @var IJobList */ - private $jobList; - - public function __construct(IRegistry $registry, - IUserManager $userManager, - ITimeFactory $timeFactory, - IManager $notificationManager, - IJobList $jobList) { + public function __construct( + private IRegistry $registry, + private IUserManager $userManager, + ITimeFactory $timeFactory, + private IManager $notificationManager, + private IJobList $jobList, + ) { parent::__construct($timeFactory); - $this->registry = $registry; - $this->userManager = $userManager; $this->time = $timeFactory; - $this->notificationManager = $notificationManager; - $this->jobList = $jobList; $this->setInterval(60 * 60 * 24 * 14); + $this->setTimeSensitivity(self::TIME_INSENSITIVE); } protected function run($argument) { @@ -69,6 +37,7 @@ class RememberBackupCodesJob extends TimedJob { if ($user === null) { // We can't run with an invalid user + $this->jobList->remove(self::class, $argument); return; } @@ -93,9 +62,16 @@ class RememberBackupCodesJob extends TimedJob { $notification = $this->notificationManager->createNotification(); $notification->setApp('twofactor_backupcodes') ->setUser($user->getUID()) - ->setDateTime($date) ->setObject('create', 'codes') ->setSubject('create_backupcodes'); + $this->notificationManager->markProcessed($notification); + + if (!$user->isEnabled()) { + // Don't recreate a notification for a user that can not read it + $this->jobList->remove(self::class, $argument); + return; + } + $notification->setDateTime($date); $this->notificationManager->notify($notification); } } diff --git a/apps/twofactor_backupcodes/lib/Controller/SettingsController.php b/apps/twofactor_backupcodes/lib/Controller/SettingsController.php index 04ec2e19e95..effc058e05c 100644 --- a/apps/twofactor_backupcodes/lib/Controller/SettingsController.php +++ b/apps/twofactor_backupcodes/lib/Controller/SettingsController.php @@ -1,62 +1,44 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Controller; use OCA\TwoFactorBackupCodes\Service\BackupCodeStorage; use OCP\AppFramework\Controller; +use OCP\AppFramework\Http\Attribute\NoAdminRequired; +use OCP\AppFramework\Http\Attribute\PasswordConfirmationRequired; use OCP\AppFramework\Http\JSONResponse; use OCP\IRequest; use OCP\IUserSession; class SettingsController extends Controller { - /** @var BackupCodeStorage */ - private $storage; - - /** @var IUserSession */ - private $userSession; - /** * @param string $appName * @param IRequest $request * @param BackupCodeStorage $storage * @param IUserSession $userSession */ - public function __construct($appName, IRequest $request, BackupCodeStorage $storage, IUserSession $userSession) { + public function __construct( + $appName, + IRequest $request, + private BackupCodeStorage $storage, + private IUserSession $userSession, + ) { parent::__construct($appName, $request); - $this->userSession = $userSession; - $this->storage = $storage; } /** - * @NoAdminRequired - * @PasswordConfirmationRequired - * * @return JSONResponse */ - public function createCodes() { + #[NoAdminRequired] + #[PasswordConfirmationRequired] + public function createCodes(): JSONResponse { $user = $this->userSession->getUser(); $codes = $this->storage->createCodes($user); return new JSONResponse([ diff --git a/apps/twofactor_backupcodes/lib/Db/BackupCode.php b/apps/twofactor_backupcodes/lib/Db/BackupCode.php index 8b173890e3c..252b9b77faa 100644 --- a/apps/twofactor_backupcodes/lib/Db/BackupCode.php +++ b/apps/twofactor_backupcodes/lib/Db/BackupCode.php @@ -1,26 +1,11 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Db; use OCP\AppFramework\Db\Entity; diff --git a/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php b/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php index 84972a5171a..fbbc3d0403c 100644 --- a/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php +++ b/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php @@ -1,28 +1,11 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Db; use OCP\AppFramework\Db\QBMapper; @@ -42,7 +25,7 @@ class BackupCodeMapper extends QBMapper { * @param IUser $user * @return BackupCode[] */ - public function getBackupCodes(IUser $user) { + public function getBackupCodes(IUser $user): array { /* @var IQueryBuilder $qb */ $qb = $this->db->getQueryBuilder(); @@ -56,14 +39,14 @@ class BackupCodeMapper extends QBMapper { /** * @param IUser $user */ - public function deleteCodes(IUser $user) { + public function deleteCodes(IUser $user): void { $this->deleteCodesByUserId($user->getUID()); } /** * @param string $uid */ - public function deleteCodesByUserId($uid) { + public function deleteCodesByUserId(string $uid): void { /* @var IQueryBuilder $qb */ $qb = $this->db->getQueryBuilder(); diff --git a/apps/twofactor_backupcodes/lib/Event/CodesGenerated.php b/apps/twofactor_backupcodes/lib/Event/CodesGenerated.php index d1e5e29d4b5..90dc6206f71 100644 --- a/apps/twofactor_backupcodes/lib/Event/CodesGenerated.php +++ b/apps/twofactor_backupcodes/lib/Event/CodesGenerated.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Event; use OCP\EventDispatcher\Event; @@ -31,12 +13,10 @@ use OCP\IUser; class CodesGenerated extends Event { - /** @var IUser */ - private $user; - - public function __construct(IUser $user) { + public function __construct( + private IUser $user, + ) { parent::__construct(); - $this->user = $user; } /** diff --git a/apps/twofactor_backupcodes/lib/Listener/ActivityPublisher.php b/apps/twofactor_backupcodes/lib/Listener/ActivityPublisher.php index d7240677b6c..b52f1f2c098 100644 --- a/apps/twofactor_backupcodes/lib/Listener/ActivityPublisher.php +++ b/apps/twofactor_backupcodes/lib/Listener/ActivityPublisher.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Listener; use BadMethodCallException; @@ -31,20 +13,14 @@ use OCA\TwoFactorBackupCodes\Event\CodesGenerated; use OCP\Activity\IManager; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; -use OCP\ILogger; +use Psr\Log\LoggerInterface; +/** @template-implements IEventListener<CodesGenerated> */ class ActivityPublisher implements IEventListener { - - /** @var IManager */ - private $activityManager; - - /** @var ILogger */ - private $logger; - - public function __construct(IManager $activityManager, - ILogger $logger) { - $this->activityManager = $activityManager; - $this->logger = $logger; + public function __construct( + private IManager $activityManager, + private LoggerInterface $logger, + ) { } /** @@ -61,8 +37,7 @@ class ActivityPublisher implements IEventListener { try { $this->activityManager->publish($activity); } catch (BadMethodCallException $e) { - $this->logger->warning('could not publish backup code creation activity', ['app' => 'twofactor_backupcodes']); - $this->logger->logException($e, ['app' => 'twofactor_backupcodes']); + $this->logger->error('Could not publish backup code creation activity', ['exception' => $e]); } } } diff --git a/apps/twofactor_backupcodes/lib/Listener/ClearNotifications.php b/apps/twofactor_backupcodes/lib/Listener/ClearNotifications.php index 84c94a7b0c8..46bb1583004 100644 --- a/apps/twofactor_backupcodes/lib/Listener/ClearNotifications.php +++ b/apps/twofactor_backupcodes/lib/Listener/ClearNotifications.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Listener; use OCA\TwoFactorBackupCodes\Event\CodesGenerated; @@ -32,13 +13,12 @@ use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; use OCP\Notification\IManager; +/** @template-implements IEventListener<CodesGenerated> */ class ClearNotifications implements IEventListener { - /** @var IManager */ - private $manager; - - public function __construct(IManager $manager) { - $this->manager = $manager; + public function __construct( + private IManager $manager, + ) { } public function handle(Event $event): void { diff --git a/apps/twofactor_backupcodes/lib/Listener/ProviderDisabled.php b/apps/twofactor_backupcodes/lib/Listener/ProviderDisabled.php index f3242aa8c8a..a8d51e55c1b 100644 --- a/apps/twofactor_backupcodes/lib/Listener/ProviderDisabled.php +++ b/apps/twofactor_backupcodes/lib/Listener/ProviderDisabled.php @@ -3,53 +3,29 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Listener; use OCA\TwoFactorBackupCodes\BackgroundJob\RememberBackupCodesJob; use OCP\Authentication\TwoFactorAuth\IRegistry; -use OCP\Authentication\TwoFactorAuth\RegistryEvent; +use OCP\Authentication\TwoFactorAuth\TwoFactorProviderForUserUnregistered; use OCP\BackgroundJob\IJobList; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; +/** @template-implements IEventListener<TwoFactorProviderForUserUnregistered> */ class ProviderDisabled implements IEventListener { - /** @var IRegistry */ - private $registry; - - /** @var IJobList */ - private $jobList; - - public function __construct(IRegistry $registry, - IJobList $jobList) { - $this->registry = $registry; - $this->jobList = $jobList; + public function __construct( + private IRegistry $registry, + private IJobList $jobList, + ) { } public function handle(Event $event): void { - if (!($event instanceof RegistryEvent)) { + if (!($event instanceof TwoFactorProviderForUserUnregistered)) { return; } diff --git a/apps/twofactor_backupcodes/lib/Listener/ProviderEnabled.php b/apps/twofactor_backupcodes/lib/Listener/ProviderEnabled.php index d43af2e4590..4ec510e7194 100644 --- a/apps/twofactor_backupcodes/lib/Listener/ProviderEnabled.php +++ b/apps/twofactor_backupcodes/lib/Listener/ProviderEnabled.php @@ -3,53 +3,29 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Listener; use OCA\TwoFactorBackupCodes\BackgroundJob\RememberBackupCodesJob; use OCP\Authentication\TwoFactorAuth\IRegistry; -use OCP\Authentication\TwoFactorAuth\RegistryEvent; +use OCP\Authentication\TwoFactorAuth\TwoFactorProviderForUserRegistered; use OCP\BackgroundJob\IJobList; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; +/** @template-implements IEventListener<TwoFactorProviderForUserRegistered> */ class ProviderEnabled implements IEventListener { - /** @var IRegistry */ - private $registry; - - /** @var IJobList */ - private $jobList; - - public function __construct(IRegistry $registry, - IJobList $jobList) { - $this->registry = $registry; - $this->jobList = $jobList; + public function __construct( + private IRegistry $registry, + private IJobList $jobList, + ) { } public function handle(Event $event): void { - if (!($event instanceof RegistryEvent)) { + if (!($event instanceof TwoFactorProviderForUserRegistered)) { return; } diff --git a/apps/twofactor_backupcodes/lib/Listener/RegistryUpdater.php b/apps/twofactor_backupcodes/lib/Listener/RegistryUpdater.php index 011950a0979..1cb07bd9805 100644 --- a/apps/twofactor_backupcodes/lib/Listener/RegistryUpdater.php +++ b/apps/twofactor_backupcodes/lib/Listener/RegistryUpdater.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Listener; use OCA\TwoFactorBackupCodes\Event\CodesGenerated; @@ -32,17 +14,13 @@ use OCP\Authentication\TwoFactorAuth\IRegistry; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; +/** @template-implements IEventListener<CodesGenerated> */ class RegistryUpdater implements IEventListener { - /** @var IRegistry */ - private $registry; - - /** @var BackupCodesProvider */ - private $provider; - - public function __construct(IRegistry $registry, BackupCodesProvider $provider) { - $this->registry = $registry; - $this->provider = $provider; + public function __construct( + private IRegistry $registry, + private BackupCodesProvider $provider, + ) { } public function handle(Event $event): void { diff --git a/apps/twofactor_backupcodes/lib/Listener/UserDeleted.php b/apps/twofactor_backupcodes/lib/Listener/UserDeleted.php new file mode 100644 index 00000000000..72fd504b338 --- /dev/null +++ b/apps/twofactor_backupcodes/lib/Listener/UserDeleted.php @@ -0,0 +1,31 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\TwoFactorBackupCodes\Listener; + +use OCA\TwoFactorBackupCodes\Db\BackupCodeMapper; +use OCP\EventDispatcher\Event; +use OCP\EventDispatcher\IEventListener; +use OCP\User\Events\UserDeletedEvent; + +/** @template-implements IEventListener<UserDeletedEvent> */ +class UserDeleted implements IEventListener { + + public function __construct( + private BackupCodeMapper $backupCodeMapper, + ) { + } + + public function handle(Event $event): void { + if (!($event instanceof UserDeletedEvent)) { + return; + } + + $this->backupCodeMapper->deleteCodes($event->getUser()); + } +} diff --git a/apps/twofactor_backupcodes/lib/Migration/CheckBackupCodes.php b/apps/twofactor_backupcodes/lib/Migration/CheckBackupCodes.php index e43a99b9e0a..9c0c676134b 100644 --- a/apps/twofactor_backupcodes/lib/Migration/CheckBackupCodes.php +++ b/apps/twofactor_backupcodes/lib/Migration/CheckBackupCodes.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Migration; use OCP\BackgroundJob\IJobList; @@ -32,11 +14,9 @@ use OCP\Migration\IRepairStep; class CheckBackupCodes implements IRepairStep { - /** @var IJobList */ - private $jobList; - - public function __construct(IJobList $jobList) { - $this->jobList = $jobList; + public function __construct( + private IJobList $jobList, + ) { } public function getName(): string { diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php index 68f0d5b3421..ce752541bac 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php @@ -1,28 +1,11 @@ <?php + +declare(strict_types=1); + /** - * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> - * - * @author Daniel Kesselberg <mail@danielkesselberg.de> - * @author Joas Schilling <coding@schilljs.com> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Migration; use Doctrine\DBAL\Types\Types; diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php index 771c74853d1..bed733cd413 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php @@ -1,27 +1,11 @@ <?php + +declare(strict_types=1); + /** - * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> - * - * @author Joas Schilling <coding@schilljs.com> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Migration; use OCP\DB\ISchemaWrapper; @@ -32,14 +16,12 @@ use OCP\Migration\SimpleMigrationStep; class Version1002Date20170607113030 extends SimpleMigrationStep { - /** @var IDBConnection */ - protected $connection; - /** * @param IDBConnection $connection */ - public function __construct(IDBConnection $connection) { - $this->connection = $connection; + public function __construct( + protected IDBConnection $connection, + ) { } /** diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php index dc42ad2545c..2ca390e6edd 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php @@ -1,28 +1,11 @@ <?php + +declare(strict_types=1); + /** - * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> - * - * @author Daniel Kesselberg <mail@danielkesselberg.de> - * @author Joas Schilling <coding@schilljs.com> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Migration; use Doctrine\DBAL\Types\Type; diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php index f8df9e69844..d19fda49182 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php @@ -1,25 +1,10 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\TwoFactorBackupCodes\Migration; @@ -32,7 +17,7 @@ class Version1002Date20170926101419 extends BigIntMigration { /** * @return array Returns an array with the following structure - * ['table1' => ['column1', 'column2'], ...] + * ['table1' => ['column1', 'column2'], ...] * @since 13.0.0 */ protected function getColumnsByTable() { diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20180821043638.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20180821043638.php index 1138bcd6bd2..04d6d58c783 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20180821043638.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20180821043638.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Migration; use Closure; diff --git a/apps/twofactor_backupcodes/lib/Notifications/Notifier.php b/apps/twofactor_backupcodes/lib/Notifications/Notifier.php index bc5f69a1f98..e8144f52a56 100644 --- a/apps/twofactor_backupcodes/lib/Notifications/Notifier.php +++ b/apps/twofactor_backupcodes/lib/Notifications/Notifier.php @@ -3,47 +3,23 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Jan-Christoph Borchardt <hey@jancborchardt.net> - * @author Joas Schilling <coding@schilljs.com> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Notifications; use OCP\IURLGenerator; use OCP\L10N\IFactory; use OCP\Notification\INotification; use OCP\Notification\INotifier; +use OCP\Notification\UnknownNotificationException; class Notifier implements INotifier { - /** @var IFactory */ - private $factory; - - /** @var IURLGenerator */ - private $url; - - public function __construct(IFactory $factory, IURLGenerator $url) { - $this->factory = $factory; - $this->url = $url; + public function __construct( + private IFactory $factory, + private IURLGenerator $url, + ) { } /** @@ -69,7 +45,7 @@ class Notifier implements INotifier { public function prepare(INotification $notification, string $languageCode): INotification { if ($notification->getApp() !== 'twofactor_backupcodes') { // Not my app => throw - throw new \InvalidArgumentException(); + throw new UnknownNotificationException(); } // Read the language from the notification @@ -91,7 +67,7 @@ class Notifier implements INotifier { default: // Unknown subject => Unknown notification => throw - throw new \InvalidArgumentException(); + throw new UnknownNotificationException(); } } } diff --git a/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php b/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php index 9b7ce1ed7de..c521329e203 100644 --- a/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php +++ b/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php @@ -3,74 +3,32 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Provider; use OC\App\AppManager; use OCA\TwoFactorBackupCodes\Service\BackupCodeStorage; use OCA\TwoFactorBackupCodes\Settings\Personal; +use OCP\AppFramework\Services\IInitialState; +use OCP\Authentication\TwoFactorAuth\IDeactivatableByAdmin; use OCP\Authentication\TwoFactorAuth\IPersonalProviderSettings; -use OCP\Authentication\TwoFactorAuth\IProvider; use OCP\Authentication\TwoFactorAuth\IProvidesPersonalSettings; -use OCP\IInitialStateService; use OCP\IL10N; use OCP\IUser; -use OCP\Template; - -class BackupCodesProvider implements IProvider, IProvidesPersonalSettings { - - /** @var string */ - private $appName; - - /** @var BackupCodeStorage */ - private $storage; - - /** @var IL10N */ - private $l10n; - - /** @var AppManager */ - private $appManager; - /** @var IInitialStateService */ - private $initialStateService; - - /** - * @param string $appName - * @param BackupCodeStorage $storage - * @param IL10N $l10n - * @param AppManager $appManager - */ - public function __construct(string $appName, - BackupCodeStorage $storage, - IL10N $l10n, - AppManager $appManager, - IInitialStateService $initialStateService) { - $this->appName = $appName; - $this->l10n = $l10n; - $this->storage = $storage; - $this->appManager = $appManager; - $this->initialStateService = $initialStateService; +use OCP\Template\ITemplate; +use OCP\Template\ITemplateManager; + +class BackupCodesProvider implements IDeactivatableByAdmin, IProvidesPersonalSettings { + public function __construct( + private string $appName, + private BackupCodeStorage $storage, + private IL10N $l10n, + private AppManager $appManager, + private IInitialState $initialState, + private ITemplateManager $templateManager, + ) { } /** @@ -104,10 +62,10 @@ class BackupCodesProvider implements IProvider, IProvidesPersonalSettings { * Get the template for rending the 2FA provider view * * @param IUser $user - * @return Template + * @return ITemplate */ - public function getTemplate(IUser $user): Template { - return new Template('twofactor_backupcodes', 'challenge'); + public function getTemplate(IUser $user): ITemplate { + return $this->templateManager->getTemplate('twofactor_backupcodes', 'challenge'); } /** @@ -162,7 +120,11 @@ class BackupCodesProvider implements IProvider, IProvidesPersonalSettings { */ public function getPersonalSettings(IUser $user): IPersonalProviderSettings { $state = $this->storage->getBackupCodesState($user); - $this->initialStateService->provideInitialState($this->appName, 'state', $state); + $this->initialState->provideInitialState('state', $state); return new Personal(); } + + public function disableFor(IUser $user): void { + $this->storage->deleteCodes($user); + } } diff --git a/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php b/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php index d85e00c0a8c..7dd6b3949e2 100644 --- a/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php +++ b/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php @@ -1,28 +1,11 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Service; use OCA\TwoFactorBackupCodes\Db\BackupCode; @@ -36,33 +19,20 @@ use OCP\Security\ISecureRandom; class BackupCodeStorage { private static $CODE_LENGTH = 16; - /** @var BackupCodeMapper */ - private $mapper; - - /** @var IHasher */ - private $hasher; - - /** @var ISecureRandom */ - private $random; - - /** @var IEventDispatcher */ - private $eventDispatcher; - - public function __construct(BackupCodeMapper $mapper, - ISecureRandom $random, - IHasher $hasher, - IEventDispatcher $eventDispatcher) { - $this->mapper = $mapper; - $this->hasher = $hasher; - $this->random = $random; - $this->eventDispatcher = $eventDispatcher; + public function __construct( + private BackupCodeMapper $mapper, + private ISecureRandom $random, + private IHasher $hasher, + private IEventDispatcher $eventDispatcher, + ) { } /** * @param IUser $user + * @param int $number * @return string[] */ - public function createCodes(IUser $user, $number = 10) { + public function createCodes(IUser $user, int $number = 10): array { $result = []; // Delete existing ones @@ -90,7 +60,7 @@ class BackupCodeStorage { * @param IUser $user * @return bool */ - public function hasBackupCodes(IUser $user) { + public function hasBackupCodes(IUser $user): bool { $codes = $this->mapper->getBackupCodes($user); return count($codes) > 0; } @@ -99,12 +69,12 @@ class BackupCodeStorage { * @param IUser $user * @return array */ - public function getBackupCodesState(IUser $user) { + public function getBackupCodesState(IUser $user): array { $codes = $this->mapper->getBackupCodes($user); $total = count($codes); $used = 0; - array_walk($codes, function (BackupCode $code) use (&$used) { - if (1 === (int)$code->getUsed()) { + array_walk($codes, function (BackupCode $code) use (&$used): void { + if ((int)$code->getUsed() === 1) { $used++; } }); @@ -120,11 +90,11 @@ class BackupCodeStorage { * @param string $code * @return bool */ - public function validateCode(IUser $user, $code) { + public function validateCode(IUser $user, string $code): bool { $dbCodes = $this->mapper->getBackupCodes($user); foreach ($dbCodes as $dbCode) { - if (0 === (int)$dbCode->getUsed() && $this->hasher->verify($code, $dbCode->getCode())) { + if ((int)$dbCode->getUsed() === 0 && $this->hasher->verify($code, $dbCode->getCode())) { $dbCode->setUsed(1); $this->mapper->update($dbCode); return true; @@ -132,4 +102,8 @@ class BackupCodeStorage { } return false; } + + public function deleteCodes(IUser $user): void { + $this->mapper->deleteCodes($user); + } } diff --git a/apps/twofactor_backupcodes/lib/Settings/Personal.php b/apps/twofactor_backupcodes/lib/Settings/Personal.php index 062016d0d05..e03c3d303db 100644 --- a/apps/twofactor_backupcodes/lib/Settings/Personal.php +++ b/apps/twofactor_backupcodes/lib/Settings/Personal.php @@ -3,36 +3,19 @@ declare(strict_types=1); /** - * - * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\TwoFactorBackupCodes\Settings; use OCP\Authentication\TwoFactorAuth\IPersonalProviderSettings; -use OCP\Template; +use OCP\Server; +use OCP\Template\ITemplate; +use OCP\Template\ITemplateManager; class Personal implements IPersonalProviderSettings { - public function getBody(): Template { - return new Template('twofactor_backupcodes', 'personal'); + public function getBody(): ITemplate { + return Server::get(ITemplateManager::class)->getTemplate('twofactor_backupcodes', 'personal'); } } diff --git a/apps/twofactor_backupcodes/src/service/BackupCodesService.js b/apps/twofactor_backupcodes/src/service/BackupCodesService.js index 6d49892df5b..0abf365ccdb 100644 --- a/apps/twofactor_backupcodes/src/service/BackupCodesService.js +++ b/apps/twofactor_backupcodes/src/service/BackupCodesService.js @@ -1,6 +1,14 @@ +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + import Axios from '@nextcloud/axios' import { generateUrl } from '@nextcloud/router' +/** + * + */ export function generateCodes() { const url = generateUrl('/apps/twofactor_backupcodes/settings/create') diff --git a/apps/twofactor_backupcodes/src/service/PrintService.js b/apps/twofactor_backupcodes/src/service/PrintService.js index f0036201a45..4575628744a 100644 --- a/apps/twofactor_backupcodes/src/service/PrintService.js +++ b/apps/twofactor_backupcodes/src/service/PrintService.js @@ -1,3 +1,11 @@ +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +/** + * @param {any} data - + */ export function print(data) { const name = OC.theme.name || 'Nextcloud' const newTab = window.open('', t('twofactor_backupcodes', '{name} backup codes', { name })) diff --git a/apps/twofactor_backupcodes/src/settings.js b/apps/twofactor_backupcodes/src/settings.js index 12f118ae007..53aa7e365af 100644 --- a/apps/twofactor_backupcodes/src/settings.js +++ b/apps/twofactor_backupcodes/src/settings.js @@ -1,8 +1,13 @@ +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + import { loadState } from '@nextcloud/initial-state' import Vue from 'vue' -import PersonalSettings from './views/PersonalSettings' -import store from './store' +import PersonalSettings from './views/PersonalSettings.vue' +import store from './store.js' Vue.prototype.t = t diff --git a/apps/twofactor_backupcodes/src/store.js b/apps/twofactor_backupcodes/src/store.js index 99c327ec362..1d5cdcafc6d 100644 --- a/apps/twofactor_backupcodes/src/store.js +++ b/apps/twofactor_backupcodes/src/store.js @@ -1,27 +1,11 @@ /** - * @copyright 2019 Roeland Jago Douma <roeland@famdouma.nl> - * - * @author 2019 Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ import Vue from 'vue' -import Vuex from 'vuex' -import { generateCodes } from './service/BackupCodesService' +import Vuex, { Store } from 'vuex' +import { generateCodes } from './service/BackupCodesService.js' Vue.use(Vuex) @@ -61,7 +45,7 @@ const actions = { }, } -export default new Vuex.Store({ +export default new Store({ strict: process.env.NODE_ENV !== 'production', state, mutations, diff --git a/apps/twofactor_backupcodes/src/views/PersonalSettings.vue b/apps/twofactor_backupcodes/src/views/PersonalSettings.vue index 96b02064134..3e17613bb47 100644 --- a/apps/twofactor_backupcodes/src/views/PersonalSettings.vue +++ b/apps/twofactor_backupcodes/src/views/PersonalSettings.vue @@ -1,38 +1,49 @@ +<!-- + - SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + - SPDX-License-Identifier: AGPL-3.0-or-later +--> <template> - <div> - <button v-if="!enabled" + <div class="backupcodes-settings"> + <NcButton v-if="!enabled" id="generate-backup-codes" :disabled="generatingCodes" @click="generateBackupCodes"> + <template #icon> + <NcLoadingIcon v-if="generatingCodes" /> + </template> {{ t('twofactor_backupcodes', 'Generate backup codes') }} - <span :class="{'icon-loading-small': generatingCodes}" /> - </button> + </NcButton> <template v-else> - <p> + <p class="backupcodes-settings__codes"> <template v-if="!haveCodes"> {{ t('twofactor_backupcodes', 'Backup codes have been generated. {used} of {total} codes have been used.', {used, total}) }} </template> <template v-else> - {{ t('twofactor_backupcodes', 'These are your backup codes. Please save and/or print them as you will not be able to read the codes again later') }} + {{ t('twofactor_backupcodes', 'These are your backup codes. Please save and/or print them as you will not be able to read the codes again later.') }} <ul> - <li v-for="code in codes" :key="code" class="backup-code"> + <li v-for="code in codes" + :key="code" + class="backupcodes-settings__codes__code"> {{ code }} </li> </ul> - <a :href="downloadUrl" - class="button primary" - :download="downloadFilename">{{ t('twofactor_backupcodes', 'Save backup codes') }}</a> - <button class="button" - @click="printCodes"> - {{ t('twofactor_backupcodes', 'Print backup codes') }} - </button> </template> </p> - <p> - <button id="generate-backup-codes" + <p class="backupcodes-settings__actions"> + <template v-if="haveCodes"> + <NcButton :href="downloadUrl" + :download="downloadFilename" + type="primary"> + {{ t('twofactor_backupcodes', 'Save backup codes') }} + </NcButton> + <NcButton @click="printCodes"> + {{ t('twofactor_backupcodes', 'Print backup codes') }} + </NcButton> + </template> + <NcButton id="generate-backup-codes" @click="generateBackupCodes"> {{ t('twofactor_backupcodes', 'Regenerate backup codes') }} - </button> + </NcButton> </p> <p> <em> @@ -44,11 +55,19 @@ </template> <script> -import confirmPassword from '@nextcloud/password-confirmation' -import { print } from '../service/PrintService' +import { confirmPassword } from '@nextcloud/password-confirmation' +import { print } from '../service/PrintService.js' +import NcButton from '@nextcloud/vue/components/NcButton' +import NcLoadingIcon from '@nextcloud/vue/components/NcLoadingIcon' + +import '@nextcloud/password-confirmation/dist/style.css' export default { name: 'PersonalSettings', + components: { + NcButton, + NcLoadingIcon, + }, data() { return { generatingCodes: false, @@ -92,7 +111,7 @@ export default { // Hide old codes this.generatingCodes = true - this.$store.dispatch('generate').then(data => { + this.$store.dispatch('generate').then(() => { this.generatingCodes = false }).catch(err => { OC.Notification.showTemporary(t('twofactor_backupcodes', 'An error occurred while generating your backup codes')) @@ -118,13 +137,21 @@ export default { } </script> -<style scoped> - .backup-code { - font-family: monospace; - letter-spacing: 0.02em; - font-size: 1.2em; +<style lang="scss" scoped> +.backupcodes-settings { + &__codes { + &__code { + font-family: monospace; + letter-spacing: 0.02em; + font-size: 1.2em; + } } - .button { - display: inline-block; + + &__actions { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: var(--default-grid-baseline); } +} </style> diff --git a/apps/twofactor_backupcodes/templates/challenge.php b/apps/twofactor_backupcodes/templates/challenge.php index d269fb4b47e..2dc4eec3973 100644 --- a/apps/twofactor_backupcodes/templates/challenge.php +++ b/apps/twofactor_backupcodes/templates/challenge.php @@ -1,4 +1,10 @@ <?php + +declare(strict_types=1); +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ style('twofactor_backupcodes', 'style'); ?> diff --git a/apps/twofactor_backupcodes/templates/personal.php b/apps/twofactor_backupcodes/templates/personal.php index c57a589a26a..838e2016777 100644 --- a/apps/twofactor_backupcodes/templates/personal.php +++ b/apps/twofactor_backupcodes/templates/personal.php @@ -1,6 +1,11 @@ <?php -script('twofactor_backupcodes', 'settings'); +declare(strict_types=1); +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +\OCP\Util::addScript('twofactor_backupcodes', 'settings', 'core'); ?> diff --git a/apps/twofactor_backupcodes/tests/Db/BackupCodeMapperTest.php b/apps/twofactor_backupcodes/tests/Db/BackupCodeMapperTest.php index 17155c266de..19cab51969b 100644 --- a/apps/twofactor_backupcodes/tests/Db/BackupCodeMapperTest.php +++ b/apps/twofactor_backupcodes/tests/Db/BackupCodeMapperTest.php @@ -1,50 +1,27 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Db; use OCA\TwoFactorBackupCodes\Db\BackupCode; use OCA\TwoFactorBackupCodes\Db\BackupCodeMapper; use OCP\IDBConnection; use OCP\IUser; +use OCP\Server; use Test\TestCase; /** * @group DB */ class BackupCodeMapperTest extends TestCase { - - /** @var IDBConnection */ - private $db; - - /** @var BackupCodeMapper */ - private $mapper; - - /** @var string */ - private $testUID = 'test123456'; + private IDBConnection $db; + private BackupCodeMapper $mapper; + private string $testUID = 'test123456'; private function resetDB() { $qb = $this->db->getQueryBuilder(); @@ -56,8 +33,8 @@ class BackupCodeMapperTest extends TestCase { protected function setUp(): void { parent::setUp(); - $this->db = \OC::$server->getDatabaseConnection(); - $this->mapper = \OC::$server->query(BackupCodeMapper::class); + $this->db = Server::get(IDBConnection::class); + $this->mapper = Server::get(BackupCodeMapper::class); $this->resetDB(); } @@ -68,7 +45,7 @@ class BackupCodeMapperTest extends TestCase { $this->resetDB(); } - public function testGetBackupCodes() { + public function testGetBackupCodes(): void { $code1 = new BackupCode(); $code1->setUserId($this->testUID); $code1->setCode('1|$2y$10$Fyo.DkMtkaHapVvRVbQBeeIdi5x/6nmPnxiBzD0GDKa08NMus5xze'); @@ -94,7 +71,7 @@ class BackupCodeMapperTest extends TestCase { $this->assertInstanceOf(BackupCode::class, $dbCodes[1]); } - public function testDeleteCodes() { + public function testDeleteCodes(): void { $code = new BackupCode(); $code->setUserId($this->testUID); $code->setCode('1|$2y$10$CagG8pEhZL.xDirtCCP/KuuWtnsAasgq60zY9rU46dBK4w8yW0Z/y'); @@ -113,7 +90,7 @@ class BackupCodeMapperTest extends TestCase { $this->assertCount(0, $this->mapper->getBackupCodes($user)); } - public function testInsertArgonEncryptedCodes() { + public function testInsertArgonEncryptedCodes(): void { $code = new BackupCode(); $code->setUserId($this->testUID); $code->setCode('2|$argon2i$v=19$m=1024,t=2,p=2$MjJWUjRFWndtMm5BWGxOag$BusVxLeFyiLLWtaVvX/JRFBiPdZcjRrzpQ/rAhn6vqY'); diff --git a/apps/twofactor_backupcodes/tests/Service/BackupCodeStorageTest.php b/apps/twofactor_backupcodes/tests/Service/BackupCodeStorageTest.php index 8aadacec767..cfc35e7cb1c 100644 --- a/apps/twofactor_backupcodes/tests/Service/BackupCodeStorageTest.php +++ b/apps/twofactor_backupcodes/tests/Service/BackupCodeStorageTest.php @@ -1,63 +1,42 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Service; use OCA\TwoFactorBackupCodes\Service\BackupCodeStorage; +use OCP\IUser; use OCP\Notification\IManager; use OCP\Notification\INotification; +use OCP\Server; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; /** * @group DB */ class BackupCodeStorageTest extends TestCase { - - /** @var BackupCodeStorage */ - private $storage; - - /** @var string */ - private $testUID = 'test123456789'; - - /** @var IManager|\PHPUnit\Framework\MockObject\MockObject */ - private $notificationManager; + private IManager&MockObject $notificationManager; + private string $testUID = 'test123456789'; + private BackupCodeStorage $storage; protected function setUp(): void { parent::setUp(); - $this->storage = \OC::$server->query(BackupCodeStorage::class); + $this->storage = Server::get(BackupCodeStorage::class); $this->notificationManager = $this->createMock(IManager::class); $this->notificationManager->method('createNotification') - ->willReturn(\OC::$server->query(IManager::class)->createNotification()); + ->willReturn(Server::get(IManager::class)->createNotification()); $this->overwriteService(IManager::class, $this->notificationManager); } - public function testSimpleWorkFlow() { - $user = $this->getMockBuilder(\OCP\IUser::class)->getMock(); + public function testSimpleWorkFlow(): void { + $user = $this->getMockBuilder(IUser::class)->getMock(); $user->expects($this->any()) ->method('getUID') ->willReturn($this->testUID); @@ -65,10 +44,10 @@ class BackupCodeStorageTest extends TestCase { $this->notificationManager->expects($this->once()) ->method('markProcessed') ->with($this->callback(function (INotification $notification) { - return $notification->getUser() === $this->testUID && - $notification->getObjectType() === 'create' && - $notification->getObjectId() === 'codes' && - $notification->getApp() === 'twofactor_backupcodes'; + return $notification->getUser() === $this->testUID + && $notification->getObjectType() === 'create' + && $notification->getObjectId() === 'codes' + && $notification->getApp() === 'twofactor_backupcodes'; })); // Create codes diff --git a/apps/twofactor_backupcodes/tests/Unit/Activity/ProviderTest.php b/apps/twofactor_backupcodes/tests/Unit/Activity/ProviderTest.php index fce23f2ada5..152ff80194a 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Activity/ProviderTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Activity/ProviderTest.php @@ -1,53 +1,28 @@ <?php + +declare(strict_types=1); + /** - * @copyright Copyright (c) 2017 Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Test\Unit\Activity; -use InvalidArgumentException; use OCA\TwoFactorBackupCodes\Activity\Provider; +use OCP\Activity\Exceptions\UnknownActivityException; use OCP\Activity\IEvent; use OCP\Activity\IManager; use OCP\IL10N; use OCP\IURLGenerator; use OCP\L10N\IFactory; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class ProviderTest extends TestCase { - - /** @var IFactory|\PHPUnit\Framework\MockObject\MockObject */ - private $l10n; - - /** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject */ - private $urlGenerator; - - /** @var IManager|\PHPUnit\Framework\MockObject\MockObject */ - private $activityManager; - - /** @var Provider */ - private $provider; + private IFactory&MockObject $l10n; + private IURLGenerator&MockObject $urlGenerator; + private IManager&MockObject $activityManager; + private Provider $provider; protected function setUp(): void { parent::setUp(); @@ -59,27 +34,25 @@ class ProviderTest extends TestCase { $this->provider = new Provider($this->l10n, $this->urlGenerator, $this->activityManager); } - public function testParseUnrelated() { + public function testParseUnrelated(): void { $lang = 'ru'; $event = $this->createMock(IEvent::class); $event->expects($this->once()) ->method('getApp') ->willReturn('comments'); - $this->expectException(InvalidArgumentException::class); + $this->expectException(UnknownActivityException::class); $this->provider->parse($lang, $event); } - public function subjectData() { + public static function subjectData(): array { return [ ['codes_generated'], ]; } - /** - * @dataProvider subjectData - */ - public function testParse($subject) { + #[\PHPUnit\Framework\Attributes\DataProvider('subjectData')] + public function testParse(string $subject): void { $lang = 'ru'; $event = $this->createMock(IEvent::class); $l = $this->createMock(IL10N::class); @@ -111,7 +84,7 @@ class ProviderTest extends TestCase { $this->provider->parse($lang, $event); } - public function testParseInvalidSubject() { + public function testParseInvalidSubject(): void { $lang = 'ru'; $l = $this->createMock(IL10N::class); $event = $this->createMock(IEvent::class); @@ -127,7 +100,7 @@ class ProviderTest extends TestCase { ->method('getSubject') ->willReturn('unrelated'); - $this->expectException(InvalidArgumentException::class); + $this->expectException(UnknownActivityException::class); $this->provider->parse($lang, $event); } } diff --git a/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/CheckBackupCodeTest.php b/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/CheckBackupCodeTest.php index 43873e6cc89..87bc65e4309 100644 --- a/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/CheckBackupCodeTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/CheckBackupCodeTest.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\BackgroundJob; use OC\Authentication\TwoFactorAuth\Manager; @@ -39,24 +20,12 @@ use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class CheckBackupCodeTest extends TestCase { - - /** @var IUserManager|MockObject */ - private $userManager; - - /** @var IJobList|MockObject */ - private $jobList; - - /** @var IRegistry|MockObject */ - private $registry; - - /** @var Manager|MockObject */ - private $manager; - - /** @var IUser|MockObject */ - private $user; - - /** @var CheckBackupCodes */ - private $checkBackupCodes; + private IUserManager&MockObject $userManager; + private IJobList&MockObject $jobList; + private IRegistry&MockObject $registry; + private Manager&MockObject $manager; + private IUser&MockObject $user; + private CheckBackupCodes $checkBackupCodes; protected function setUp(): void { parent::setUp(); @@ -69,7 +38,7 @@ class CheckBackupCodeTest extends TestCase { $this->user = $this->createMock(IUser::class); $this->userManager->method('callForSeenUsers') - ->willReturnCallback(function (\Closure $e) { + ->willReturnCallback(function (\Closure $e): void { $e($this->user); }); @@ -82,7 +51,10 @@ class CheckBackupCodeTest extends TestCase { ); } - public function testRunAlreadyGenerated() { + public function testRunAlreadyGenerated(): void { + $this->user->method('isEnabled') + ->willReturn(true); + $this->registry->method('getProviderStates') ->with($this->user) ->willReturn(['backup_codes' => true]); @@ -95,9 +67,11 @@ class CheckBackupCodeTest extends TestCase { $this->invokePrivate($this->checkBackupCodes, 'run', [[]]); } - public function testRun() { + public function testRun(): void { $this->user->method('getUID') ->willReturn('myUID'); + $this->user->method('isEnabled') + ->willReturn(true); $this->registry->expects($this->once()) ->method('getProviderStates') @@ -118,7 +92,26 @@ class CheckBackupCodeTest extends TestCase { $this->invokePrivate($this->checkBackupCodes, 'run', [[]]); } - public function testRunNoProviders() { + public function testRunDisabledUser(): void { + $this->user->method('getUID') + ->willReturn('myUID'); + $this->user->method('isEnabled') + ->willReturn(false); + + $this->registry->expects($this->never()) + ->method('getProviderStates') + ->with($this->user); + + $this->jobList->expects($this->never()) + ->method('add'); + + $this->invokePrivate($this->checkBackupCodes, 'run', [[]]); + } + + public function testRunNoProviders(): void { + $this->user->method('isEnabled') + ->willReturn(true); + $this->registry->expects($this->once()) ->method('getProviderStates') ->with($this->user) diff --git a/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/RememberBackupCodesJobTest.php b/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/RememberBackupCodesJobTest.php index 3e5307a2b0f..6b162894258 100644 --- a/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/RememberBackupCodesJobTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/BackgroundJob/RememberBackupCodesJobTest.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\BackgroundJob; use OCA\TwoFactorBackupCodes\BackgroundJob\RememberBackupCodesJob; @@ -34,27 +16,17 @@ use OCP\IUser; use OCP\IUserManager; use OCP\Notification\IManager; use OCP\Notification\INotification; +use OCP\Server; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class RememberBackupCodesJobTest extends TestCase { - - /** @var IRegistry|\PHPUnit\Framework\MockObject\MockObject */ - private $registry; - - /** @var IUserManager|\PHPUnit\Framework\MockObject\MockObject */ - private $userManager; - - /** @var ITimeFactory|\PHPUnit\Framework\MockObject\MockObject */ - private $time; - - /** @var IManager|\PHPUnit\Framework\MockObject\MockObject */ - private $notificationManager; - - /** @var IJobList|\PHPUnit\Framework\MockObject\MockObject */ - private $jobList; - - /** @var RememberBackupCodesJob */ - private $job; + private IRegistry&MockObject $registry; + private IUserManager&MockObject $userManager; + private ITimeFactory&MockObject $time; + private IManager&MockObject $notificationManager; + private IJobList&MockObject $jobList; + private RememberBackupCodesJob $job; protected function setUp(): void { parent::setUp(); @@ -76,23 +48,32 @@ class RememberBackupCodesJobTest extends TestCase { ); } - public function testInvalidUID() { + public function testInvalidUID(): void { $this->userManager->method('get') ->with('invalidUID') ->willReturn(null); $this->notificationManager->expects($this->never()) ->method($this->anything()); + $this->jobList->expects($this->once()) + ->method('remove') + ->with( + RememberBackupCodesJob::class, + ['uid' => 'invalidUID'] + ); $this->jobList->expects($this->never()) - ->method($this->anything()); + ->method('add'); - $this->invokePrivate($this->job, 'run', [['uid' => 'invalidUID']]); + self::invokePrivate($this->job, 'run', [['uid' => 'invalidUID']]); } - public function testBackupCodesGenerated() { + public function testBackupCodesGenerated(): void { $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('validUID'); + $user->method('isEnabled') + ->willReturn(true); + $this->userManager->method('get') ->with('validUID') ->willReturn($user); @@ -113,10 +94,10 @@ class RememberBackupCodesJobTest extends TestCase { $this->notificationManager->expects($this->never()) ->method($this->anything()); - $this->invokePrivate($this->job, 'run', [['uid' => 'validUID']]); + self::invokePrivate($this->job, 'run', [['uid' => 'validUID']]); } - public function testNoActiveProvider() { + public function testNoActiveProvider(): void { $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('validUID'); @@ -141,13 +122,15 @@ class RememberBackupCodesJobTest extends TestCase { $this->notificationManager->expects($this->never()) ->method($this->anything()); - $this->invokePrivate($this->job, 'run', [['uid' => 'validUID']]); + self::invokePrivate($this->job, 'run', [['uid' => 'validUID']]); } - public function testNotificationSend() { + public function testNotificationSend(): void { $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('validUID'); + $user->method('isEnabled') + ->willReturn(true); $this->userManager->method('get') ->with('validUID') ->willReturn($user); @@ -166,19 +149,65 @@ class RememberBackupCodesJobTest extends TestCase { $date->setTimestamp($this->time->getTime()); $this->notificationManager->method('createNotification') - ->willReturn(\OC::$server->query(IManager::class)->createNotification()); + ->willReturn(Server::get(IManager::class)->createNotification()); $this->notificationManager->expects($this->once()) ->method('notify') ->with($this->callback(function (INotification $n) { - return $n->getApp() === 'twofactor_backupcodes' && - $n->getUser() === 'validUID' && - $n->getDateTime()->getTimestamp() === 10000000 && - $n->getObjectType() === 'create' && - $n->getObjectId() === 'codes' && - $n->getSubject() === 'create_backupcodes'; + return $n->getApp() === 'twofactor_backupcodes' + && $n->getUser() === 'validUID' + && $n->getDateTime()->getTimestamp() === 10000000 + && $n->getObjectType() === 'create' + && $n->getObjectId() === 'codes' + && $n->getSubject() === 'create_backupcodes'; + })); + + self::invokePrivate($this->job, 'run', [['uid' => 'validUID']]); + } + + public function testNotificationNotSendForDisabledUser(): void { + $user = $this->createMock(IUser::class); + $user->method('getUID') + ->willReturn('validUID'); + $user->method('isEnabled') + ->willReturn(false); + $this->userManager->method('get') + ->with('validUID') + ->willReturn($user); + + $this->registry->method('getProviderStates') + ->with($user) + ->willReturn([ + 'backup_codes' => false, + 'foo' => true, + ]); + + $this->jobList->expects($this->once()) + ->method('remove') + ->with( + RememberBackupCodesJob::class, + ['uid' => 'validUID'] + ); + + $date = new \DateTime(); + $date->setTimestamp($this->time->getTime()); + + $this->notificationManager->method('createNotification') + ->willReturn(Server::get(IManager::class)->createNotification()); + + $this->notificationManager->expects($this->once()) + ->method('markProcessed') + ->with($this->callback(function (INotification $n) { + return $n->getApp() === 'twofactor_backupcodes' + && $n->getUser() === 'validUID' + && $n->getObjectType() === 'create' + && $n->getObjectId() === 'codes' + && $n->getSubject() === 'create_backupcodes'; })); - $this->invokePrivate($this->job, 'run', [['uid' => 'validUID']]); + $this->notificationManager->expects($this->never()) + ->method('notify'); + + self::invokePrivate($this->job, 'run', [['uid' => 'validUID']]); } } diff --git a/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php b/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php index fc085472529..02c42b65148 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php @@ -1,29 +1,11 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Joas Schilling <coding@schilljs.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Controller; use OCA\TwoFactorBackupCodes\Controller\SettingsController; @@ -32,36 +14,27 @@ use OCP\AppFramework\Http\JSONResponse; use OCP\IRequest; use OCP\IUser; use OCP\IUserSession; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class SettingsControllerTest extends TestCase { - - /** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */ - private $request; - - /** @var BackupCodeStorage|\PHPUnit\Framework\MockObject\MockObject */ - private $storage; - - /** @var IUserSession|\PHPUnit\Framework\MockObject\MockObject */ - private $userSession; - - /** @var SettingsController */ - private $controller; + private IRequest&MockObject $request; + private BackupCodeStorage&MockObject $storage; + private IUserSession&MockObject $userSession; + private SettingsController $controller; protected function setUp(): void { parent::setUp(); - $this->request = $this->getMockBuilder(IRequest::class)->getMock(); - $this->storage = $this->getMockBuilder(BackupCodeStorage::class) - ->disableOriginalConstructor() - ->getMock(); - $this->userSession = $this->getMockBuilder(IUserSession::class)->getMock(); + $this->request = $this->createMock(IRequest::class); + $this->storage = $this->createMock(BackupCodeStorage::class); + $this->userSession = $this->createMock(IUserSession::class); $this->controller = new SettingsController('twofactor_backupcodes', $this->request, $this->storage, $this->userSession); } - public function testCreateCodes() { - $user = $this->getMockBuilder(IUser::class)->getMock(); + public function testCreateCodes(): void { + $user = $this->createMock(IUser::class); $codes = ['a', 'b']; $this->userSession->expects($this->once()) @@ -74,11 +47,11 @@ class SettingsControllerTest extends TestCase { $this->storage->expects($this->once()) ->method('getBackupCodesState') ->with($user) - ->willReturn('state'); + ->willReturn(['state']); $expected = [ 'codes' => $codes, - 'state' => 'state', + 'state' => ['state'], ]; $response = $this->controller->createCodes(); $this->assertInstanceOf(JSONResponse::class, $response); diff --git a/apps/twofactor_backupcodes/tests/Unit/Event/CodesGeneratedTest.php b/apps/twofactor_backupcodes/tests/Unit/Event/CodesGeneratedTest.php index b8922b2cbbe..3f619e387e9 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Event/CodesGeneratedTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Event/CodesGeneratedTest.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Event; use OCA\TwoFactorBackupCodes\Event\CodesGenerated; @@ -31,7 +13,7 @@ use OCP\IUser; use Test\TestCase; class CodesGeneratedTest extends TestCase { - public function testCodeGeneratedEvent() { + public function testCodeGeneratedEvent(): void { $user = $this->createMock(IUser::class); $event = new CodesGenerated($user); diff --git a/apps/twofactor_backupcodes/tests/Unit/Listener/ActivityPublisherTest.php b/apps/twofactor_backupcodes/tests/Unit/Listener/ActivityPublisherTest.php index a786d5b7f5b..bd944dc2396 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Listener/ActivityPublisherTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Listener/ActivityPublisherTest.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Listener; use OCA\TwoFactorBackupCodes\Event\CodesGenerated; @@ -32,33 +13,26 @@ use OCA\TwoFactorBackupCodes\Listener\ActivityPublisher; use OCP\Activity\IEvent; use OCP\Activity\IManager; use OCP\EventDispatcher\Event; -use OCP\ILogger; use OCP\IUser; use PHPUnit\Framework\MockObject\MockObject; +use Psr\Log\LoggerInterface; use Test\TestCase; class ActivityPublisherTest extends TestCase { - - /** @var IManager|MockObject */ - private $activityManager; - - /** @var ILogger */ - - private $logger; - - /** @var ActivityPublisher */ - private $listener; + private IManager&MockObject $activityManager; + private LoggerInterface&MockObject $logger; + private ActivityPublisher $listener; protected function setUp(): void { parent::setUp(); $this->activityManager = $this->createMock(IManager::class); - $this->logger = $this->createMock(ILogger::class); + $this->logger = $this->createMock(LoggerInterface::class); $this->listener = new ActivityPublisher($this->activityManager, $this->logger); } - public function testHandleGenericEvent() { + public function testHandleGenericEvent(): void { $event = $this->createMock(Event::class); $this->activityManager->expects($this->never()) ->method('publish'); @@ -66,7 +40,7 @@ class ActivityPublisherTest extends TestCase { $this->listener->handle($event); } - public function testHandleCodesGeneratedEvent() { + public function testHandleCodesGeneratedEvent(): void { $user = $this->createMock(IUser::class); $user->method('getUID')->willReturn('fritz'); $event = new CodesGenerated($user); @@ -91,8 +65,7 @@ class ActivityPublisherTest extends TestCase { ->with('fritz') ->willReturnSelf(); $this->activityManager->expects($this->once()) - ->method('publish') - ->willReturn($activityEvent); + ->method('publish'); $this->listener->handle($event); } diff --git a/apps/twofactor_backupcodes/tests/Unit/Listener/ClearNotificationsTest.php b/apps/twofactor_backupcodes/tests/Unit/Listener/ClearNotificationsTest.php index 99d11504710..229d8df05d3 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Listener/ClearNotificationsTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Listener/ClearNotificationsTest.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Listener; use OCA\TwoFactorBackupCodes\Event\CodesGenerated; @@ -33,27 +14,25 @@ use OCP\EventDispatcher\Event; use OCP\IUser; use OCP\Notification\IManager; use OCP\Notification\INotification; +use OCP\Server; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class ClearNotificationsTest extends TestCase { - - /** @var IManager|\PHPUnit\Framework\MockObject\MockObject */ - private $notificationManager; - - /** @var ClearNotifications */ - private $listener; + private IManager&MockObject $notificationManager; + private ClearNotifications $listener; protected function setUp(): void { parent::setUp(); $this->notificationManager = $this->createMock(IManager::class); $this->notificationManager->method('createNotification') - ->willReturn(\OC::$server->query(IManager::class)->createNotification()); + ->willReturn(Server::get(IManager::class)->createNotification()); $this->listener = new ClearNotifications($this->notificationManager); } - public function testHandleGenericEvent() { + public function testHandleGenericEvent(): void { $event = $this->createMock(Event::class); $this->notificationManager->expects($this->never()) ->method($this->anything()); @@ -61,7 +40,7 @@ class ClearNotificationsTest extends TestCase { $this->listener->handle($event); } - public function testHandleCodesGeneratedEvent() { + public function testHandleCodesGeneratedEvent(): void { $user = $this->createMock(IUser::class); $user->method('getUID')->willReturn('fritz'); $event = new CodesGenerated($user); @@ -69,10 +48,10 @@ class ClearNotificationsTest extends TestCase { $this->notificationManager->expects($this->once()) ->method('markProcessed') ->with($this->callback(function (INotification $n) { - return $n->getUser() === 'fritz' && - $n->getApp() === 'twofactor_backupcodes' && - $n->getObjectType() === 'create' && - $n->getObjectId() === 'codes'; + return $n->getUser() === 'fritz' + && $n->getApp() === 'twofactor_backupcodes' + && $n->getObjectType() === 'create' + && $n->getObjectId() === 'codes'; })); $this->listener->handle($event); diff --git a/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderDisabledTest.php b/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderDisabledTest.php index 0206cbb09d3..ea4f530cab4 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderDisabledTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderDisabledTest.php @@ -3,49 +3,25 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Listener; use OCA\TwoFactorBackupCodes\BackgroundJob\RememberBackupCodesJob; use OCA\TwoFactorBackupCodes\Listener\ProviderDisabled; use OCP\Authentication\TwoFactorAuth\IRegistry; -use OCP\Authentication\TwoFactorAuth\RegistryEvent; +use OCP\Authentication\TwoFactorAuth\TwoFactorProviderForUserUnregistered; use OCP\BackgroundJob\IJobList; use OCP\EventDispatcher\Event; use OCP\IUser; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class ProviderDisabledTest extends TestCase { - - /** @var IRegistry|\PHPUnit\Framework\MockObject\MockObject */ - private $registy; - - /** @var IJobList|\PHPUnit\Framework\MockObject\MockObject */ - private $jobList; - - /** @var ProviderDisabled */ - private $listener; + private IRegistry&MockObject $registy; + private IJobList&MockObject $jobList; + private ProviderDisabled $listener; protected function setUp(): void { parent::setUp(); @@ -56,7 +32,7 @@ class ProviderDisabledTest extends TestCase { $this->listener = new ProviderDisabled($this->registy, $this->jobList); } - public function testHandleGenericEvent() { + public function testHandleGenericEvent(): void { $event = $this->createMock(Event::class); $this->jobList->expects($this->never()) ->method($this->anything()); @@ -64,11 +40,11 @@ class ProviderDisabledTest extends TestCase { $this->listener->handle($event); } - public function testHandleStillActiveProvider() { + public function testHandleStillActiveProvider(): void { $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('myUID'); - $event = $this->createMock(RegistryEvent::class); + $event = $this->createMock(TwoFactorProviderForUserUnregistered::class); $event->method('getUser') ->willReturn($user); @@ -85,11 +61,11 @@ class ProviderDisabledTest extends TestCase { $this->listener->handle($event); } - public function testHandleNoActiveProvider() { + public function testHandleNoActiveProvider(): void { $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('myUID'); - $event = $this->createMock(RegistryEvent::class); + $event = $this->createMock(TwoFactorProviderForUserUnregistered::class); $event->method('getUser') ->willReturn($user); diff --git a/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderEnabledTest.php b/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderEnabledTest.php index 41bb3c55a29..50aac6139c0 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderEnabledTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Listener/ProviderEnabledTest.php @@ -3,49 +3,25 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Listener; use OCA\TwoFactorBackupCodes\BackgroundJob\RememberBackupCodesJob; use OCA\TwoFactorBackupCodes\Listener\ProviderEnabled; use OCP\Authentication\TwoFactorAuth\IRegistry; -use OCP\Authentication\TwoFactorAuth\RegistryEvent; +use OCP\Authentication\TwoFactorAuth\TwoFactorProviderForUserRegistered; use OCP\BackgroundJob\IJobList; use OCP\EventDispatcher\Event; use OCP\IUser; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class ProviderEnabledTest extends TestCase { - - /** @var IRegistry|\PHPUnit\Framework\MockObject\MockObject */ - private $registy; - - /** @var IJobList|\PHPUnit\Framework\MockObject\MockObject */ - private $jobList; - - /** @var ProviderEnabled */ - private $listener; + private IRegistry&MockObject $registy; + private IJobList&MockObject $jobList; + private ProviderEnabled $listener; protected function setUp(): void { parent::setUp(); @@ -56,7 +32,7 @@ class ProviderEnabledTest extends TestCase { $this->listener = new ProviderEnabled($this->registy, $this->jobList); } - public function testHandleGenericEvent() { + public function testHandleGenericEvent(): void { $event = $this->createMock(Event::class); $this->jobList->expects($this->never()) ->method($this->anything()); @@ -64,11 +40,11 @@ class ProviderEnabledTest extends TestCase { $this->listener->handle($event); } - public function testHandleCodesGeneratedEventAlraedyBackupcodes() { + public function testHandleCodesGeneratedEventAlraedyBackupcodes(): void { $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('myUID'); - $event = $this->createMock(RegistryEvent::class); + $event = $this->createMock(TwoFactorProviderForUserRegistered::class); $event->method('getUser') ->willReturn($user); @@ -84,11 +60,11 @@ class ProviderEnabledTest extends TestCase { $this->listener->handle($event); } - public function testHandleCodesGeneratedEventNoBackupcodes() { + public function testHandleCodesGeneratedEventNoBackupcodes(): void { $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('myUID'); - $event = $this->createMock(RegistryEvent::class); + $event = $this->createMock(TwoFactorProviderForUserRegistered::class); $event->method('getUser') ->willReturn($user); diff --git a/apps/twofactor_backupcodes/tests/Unit/Listener/RegistryUpdaterTest.php b/apps/twofactor_backupcodes/tests/Unit/Listener/RegistryUpdaterTest.php index 8820905458f..86d890f0d5e 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Listener/RegistryUpdaterTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Listener/RegistryUpdaterTest.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Listener; use OCA\TwoFactorBackupCodes\Event\CodesGenerated; @@ -33,18 +14,13 @@ use OCA\TwoFactorBackupCodes\Provider\BackupCodesProvider; use OCP\Authentication\TwoFactorAuth\IRegistry; use OCP\EventDispatcher\Event; use OCP\IUser; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class RegistryUpdaterTest extends TestCase { - - /** @var IRegistry */ - private $registry; - - /** @var BackupCodesProvider */ - private $provider; - - /** @var RegistryUpdater */ - private $listener; + private IRegistry&MockObject $registry; + private BackupCodesProvider&MockObject $provider; + private RegistryUpdater $listener; protected function setUp(): void { parent::setUp(); @@ -55,7 +31,7 @@ class RegistryUpdaterTest extends TestCase { $this->listener = new RegistryUpdater($this->registry, $this->provider); } - public function testHandleGenericEvent() { + public function testHandleGenericEvent(): void { $event = $this->createMock(Event::class); $this->registry->expects($this->never()) ->method('enableProviderFor'); @@ -63,7 +39,7 @@ class RegistryUpdaterTest extends TestCase { $this->listener->handle($event); } - public function testHandleCodesGeneratedEvent() { + public function testHandleCodesGeneratedEvent(): void { $user = $this->createMock(IUser::class); $event = new CodesGenerated($user); $this->registry->expects($this->once()) diff --git a/apps/twofactor_backupcodes/tests/Unit/Migration/CheckBackupCodeTest.php b/apps/twofactor_backupcodes/tests/Unit/Migration/CheckBackupCodeTest.php index 123d6cdc1f8..c68ab185116 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Migration/CheckBackupCodeTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Migration/CheckBackupCodeTest.php @@ -3,41 +3,20 @@ declare(strict_types=1); /** - * - * - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Migration; use OCA\TwoFactorBackupCodes\Migration\CheckBackupCodes; use OCP\BackgroundJob\IJobList; use OCP\Migration\IOutput; +use PHPunit\Framework\MockObject\MockObject; use Test\TestCase; class CheckBackupCodeTest extends TestCase { - - /** @var IJobList|\PHPunit\Framework\MockObject\MockObject */ - private $jobList; - - /** @var CheckBackupCodes */ - private $checkBackupsCodes; + private IJobList&MockObject $jobList; + private CheckBackupCodes $checkBackupsCodes; protected function setUp(): void { parent::setUp(); @@ -46,11 +25,11 @@ class CheckBackupCodeTest extends TestCase { $this->checkBackupsCodes = new CheckBackupCodes($this->jobList); } - public function testGetName() { + public function testGetName(): void { $this->assertSame('Add background job to check for backup codes', $this->checkBackupsCodes->getName()); } - public function testRun() { + public function testRun(): void { $this->jobList->expects($this->once()) ->method('add') ->with( diff --git a/apps/twofactor_backupcodes/tests/Unit/Notification/NotifierTest.php b/apps/twofactor_backupcodes/tests/Unit/Notification/NotifierTest.php index a4338c07a46..b091d57dbd2 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Notification/NotifierTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Notification/NotifierTest.php @@ -3,31 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Jan-Christoph Borchardt <hey@jancborchardt.net> - * @author Joas Schilling <coding@schilljs.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Notification; use OCA\TwoFactorBackupCodes\Notifications\Notifier; @@ -39,15 +17,10 @@ use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class NotifierTest extends TestCase { - /** @var Notifier */ - protected $notifier; - - /** @var IFactory|MockObject */ - protected $factory; - /** @var IURLGenerator|MockObject */ - protected $url; - /** @var IL10N|MockObject */ - protected $l; + protected IFactory&MockObject $factory; + protected IURLGenerator&MockObject $url; + protected IL10N&MockObject $l; + protected Notifier $notifier; protected function setUp(): void { parent::setUp(); @@ -71,10 +44,10 @@ class NotifierTest extends TestCase { } - public function testPrepareWrongApp() { + public function testPrepareWrongApp(): void { $this->expectException(\InvalidArgumentException::class); - /** @var INotification|\PHPUnit\Framework\MockObject\MockObject $notification */ + /** @var INotification|MockObject $notification */ $notification = $this->createMock(INotification::class); $notification->expects($this->once()) ->method('getApp') @@ -86,10 +59,10 @@ class NotifierTest extends TestCase { } - public function testPrepareWrongSubject() { + public function testPrepareWrongSubject(): void { $this->expectException(\InvalidArgumentException::class); - /** @var INotification|\PHPUnit\Framework\MockObject\MockObject $notification */ + /** @var INotification|MockObject $notification */ $notification = $this->createMock(INotification::class); $notification->expects($this->once()) ->method('getApp') @@ -101,8 +74,8 @@ class NotifierTest extends TestCase { $this->notifier->prepare($notification, 'en'); } - public function testPrepare() { - /** @var \OCP\Notification\INotification|\PHPUnit\Framework\MockObject\MockObject $notification */ + public function testPrepare(): void { + /** @var INotification&MockObject $notification */ $notification = $this->createMock(INotification::class); $notification->expects($this->once()) diff --git a/apps/twofactor_backupcodes/tests/Unit/Provider/BackupCodesProviderTest.php b/apps/twofactor_backupcodes/tests/Unit/Provider/BackupCodesProviderTest.php index 683a196bf86..512374fca8c 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Provider/BackupCodesProviderTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Provider/BackupCodesProviderTest.php @@ -1,76 +1,60 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Provider; use OC\App\AppManager; use OCA\TwoFactorBackupCodes\Provider\BackupCodesProvider; use OCA\TwoFactorBackupCodes\Service\BackupCodeStorage; -use OCP\IInitialStateService; +use OCP\AppFramework\Services\IInitialState; use OCP\IL10N; use OCP\IUser; -use OCP\Template; +use OCP\Server; +use OCP\Template\ITemplateManager; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class BackupCodesProviderTest extends TestCase { + private string $appName; - /** @var string */ - private $appName; - - /** @var BackupCodeStorage|\PHPUnit\Framework\MockObject\MockObject */ - private $storage; - - /** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */ - private $l10n; - - /** @var AppManager|\PHPUnit\Framework\MockObject\MockObject */ - private $appManager; + private BackupCodeStorage&MockObject $storage; + private IL10N&MockObject $l10n; + private AppManager&MockObject $appManager; + private IInitialState&MockObject $initialState; - /** @var IInitialStateService|\PHPUnit\Framework\MockObject\MockObject */ - private $initialState; - - /** @var BackupCodesProvider */ - private $provider; + private ITemplateManager $templateManager; + private BackupCodesProvider $provider; protected function setUp(): void { parent::setUp(); - $this->appName = "twofactor_backupcodes"; + $this->appName = 'twofactor_backupcodes'; $this->storage = $this->createMock(BackupCodeStorage::class); $this->l10n = $this->createMock(IL10N::class); $this->appManager = $this->createMock(AppManager::class); - $this->initialState = $this->createMock(IInitialStateService::class); - - $this->provider = new BackupCodesProvider($this->appName, $this->storage, $this->l10n, $this->appManager, $this->initialState); + $this->initialState = $this->createMock(IInitialState::class); + $this->templateManager = Server::get(ITemplateManager::class); + + $this->provider = new BackupCodesProvider( + $this->appName, + $this->storage, + $this->l10n, + $this->appManager, + $this->initialState, + $this->templateManager, + ); } - public function testGetId() { + public function testGetId(): void { $this->assertEquals('backup_codes', $this->provider->getId()); } - public function testGetDisplayName() { + public function testGetDisplayName(): void { $this->l10n->expects($this->once()) ->method('t') ->with('Backup code') @@ -78,7 +62,7 @@ class BackupCodesProviderTest extends TestCase { $this->assertSame('l10n backup code', $this->provider->getDisplayName()); } - public function testGetDescription() { + public function testGetDescription(): void { $this->l10n->expects($this->once()) ->method('t') ->with('Use backup code') @@ -86,14 +70,14 @@ class BackupCodesProviderTest extends TestCase { $this->assertSame('l10n use backup code', $this->provider->getDescription()); } - public function testGetTempalte() { + public function testGetTempalte(): void { $user = $this->getMockBuilder(IUser::class)->getMock(); - $expected = new Template('twofactor_backupcodes', 'challenge'); + $expected = $this->templateManager->getTemplate('twofactor_backupcodes', 'challenge'); $this->assertEquals($expected, $this->provider->getTemplate($user)); } - public function testVerfiyChallenge() { + public function testVerfiyChallenge(): void { $user = $this->getMockBuilder(IUser::class)->getMock(); $challenge = 'xyz'; @@ -105,7 +89,7 @@ class BackupCodesProviderTest extends TestCase { $this->assertFalse($this->provider->verifyChallenge($user, $challenge)); } - public function testIsTwoFactorEnabledForUser() { + public function testIsTwoFactorEnabledForUser(): void { $user = $this->getMockBuilder(IUser::class)->getMock(); $this->storage->expects($this->once()) @@ -116,7 +100,7 @@ class BackupCodesProviderTest extends TestCase { $this->assertTrue($this->provider->isTwoFactorAuthEnabledForUser($user)); } - public function testIsActiveNoProviders() { + public function testIsActiveNoProviders(): void { $user = $this->getMockBuilder(IUser::class)->getMock(); $this->appManager->expects($this->once()) @@ -136,7 +120,7 @@ class BackupCodesProviderTest extends TestCase { $this->assertFalse($this->provider->isActive($user)); } - public function testIsActiveWithProviders() { + public function testIsActiveWithProviders(): void { $user = $this->getMockBuilder(IUser::class)->getMock(); $this->appManager->expects($this->once()) @@ -157,4 +141,13 @@ class BackupCodesProviderTest extends TestCase { $this->assertTrue($this->provider->isActive($user)); } + + public function testDisable(): void { + $user = $this->getMockBuilder(IUser::class)->getMock(); + $this->storage->expects(self::once()) + ->method('deleteCodes') + ->with($user); + + $this->provider->disableFor($user); + } } diff --git a/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php b/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php index 74dfa80a30f..069e50b71fd 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php @@ -1,28 +1,11 @@ <?php + +declare(strict_types=1); + /** - * - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\TwoFactorBackupCodes\Tests\Unit\Service; use OCA\TwoFactorBackupCodes\Db\BackupCode; @@ -33,24 +16,15 @@ use OCP\EventDispatcher\IEventDispatcher; use OCP\IUser; use OCP\Security\IHasher; use OCP\Security\ISecureRandom; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; class BackupCodeStorageTest extends TestCase { - - /** @var BackupCodeMapper|\PHPUnit\Framework\MockObject\MockObject */ - private $mapper; - - /** @var ISecureRandom|\PHPUnit\Framework\MockObject\MockObject */ - private $random; - - /** @var IHasher|\PHPUnit\Framework\MockObject\MockObject */ - private $hasher; - - /** @var IEventDispatcher|\PHPUnit\Framework\MockObject\MockObject */ - private $eventDispatcher; - - /** @var BackupCodeStorage */ - private $storage; + private BackupCodeMapper&MockObject $mapper; + private ISecureRandom&MockObject $random; + private IHasher&MockObject $hasher; + private IEventDispatcher&MockObject $eventDispatcher; + private BackupCodeStorage $storage; protected function setUp(): void { parent::setUp(); @@ -63,7 +37,7 @@ class BackupCodeStorageTest extends TestCase { $this->storage = new BackupCodeStorage($this->mapper, $this->random, $this->hasher, $this->eventDispatcher); } - public function testCreateCodes() { + public function testCreateCodes(): void { $user = $this->createMock(IUser::class); $number = 5; $user->method('getUID')->willReturn('fritz'); @@ -95,7 +69,7 @@ class BackupCodeStorageTest extends TestCase { } } - public function testHasBackupCodes() { + public function testHasBackupCodes(): void { $user = $this->createMock(IUser::class); $codes = [ new BackupCode(), @@ -110,7 +84,7 @@ class BackupCodeStorageTest extends TestCase { $this->assertTrue($this->storage->hasBackupCodes($user)); } - public function testHasBackupCodesNoCodes() { + public function testHasBackupCodesNoCodes(): void { $user = $this->createMock(IUser::class); $codes = []; @@ -122,7 +96,7 @@ class BackupCodeStorageTest extends TestCase { $this->assertFalse($this->storage->hasBackupCodes($user)); } - public function testGetBackupCodeState() { + public function testGetBackupCodeState(): void { $user = $this->createMock(IUser::class); $code1 = new BackupCode(); @@ -147,7 +121,7 @@ class BackupCodeStorageTest extends TestCase { $this->assertEquals($expected, $this->storage->getBackupCodesState($user)); } - public function testGetBackupCodeDisabled() { + public function testGetBackupCodeDisabled(): void { $user = $this->createMock(IUser::class); $codes = []; @@ -165,7 +139,7 @@ class BackupCodeStorageTest extends TestCase { $this->assertEquals($expected, $this->storage->getBackupCodesState($user)); } - public function testValidateCode() { + public function testValidateCode(): void { $user = $this->createMock(IUser::class); $code = new BackupCode(); $code->setUsed(0); @@ -191,7 +165,7 @@ class BackupCodeStorageTest extends TestCase { $this->assertEquals(1, $code->getUsed()); } - public function testValidateUsedCode() { + public function testValidateUsedCode(): void { $user = $this->createMock(IUser::class); $code = new BackupCode(); $code->setUsed('1'); @@ -212,7 +186,7 @@ class BackupCodeStorageTest extends TestCase { $this->assertFalse($this->storage->validateCode($user, 'CHALLENGE')); } - public function testValidateCodeWithWrongHash() { + public function testValidateCodeWithWrongHash(): void { $user = $this->createMock(IUser::class); $code = new BackupCode(); $code->setUsed(0); @@ -234,4 +208,13 @@ class BackupCodeStorageTest extends TestCase { $this->assertFalse($this->storage->validateCode($user, 'CHALLENGE')); } + + public function testDeleteCodes(): void { + $user = $this->createMock(IUser::class); + $this->mapper->expects($this->once()) + ->method('deleteCodes') + ->with($user); + + $this->storage->deleteCodes($user); + } } diff --git a/apps/twofactor_backupcodes/webpack.js b/apps/twofactor_backupcodes/webpack.js deleted file mode 100644 index 88d04e34091..00000000000 --- a/apps/twofactor_backupcodes/webpack.js +++ /dev/null @@ -1,11 +0,0 @@ -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'settings.js'), - output: { - path: path.resolve(__dirname, 'js'), - publicPath: '/js', - filename: 'settings.js', - jsonpFunction: 'webpackJsonpTwofactorBackupcodes' - } -} |